diff --git a/BUILD.bat b/BUILD.bat new file mode 100644 index 00000000000000..5cf28023b1353c --- /dev/null +++ b/BUILD.bat @@ -0,0 +1,19 @@ +@echo off +chcp 65001 > nul +setlocal +echo Версии сборки: +echo 1 - Debug +echo 2 - Release +:SetBuild +set /p choice="Введите номер требуемой сборки: " +if "%choice%"=="1" ( +echo Сборка Debug версии... +dotnet build -c Debug +)else if "%choice%"=="2" ( +echo Сборка Release версии... +dotnet build -c Release +)else ( +echo Некорректный номер сборки. Пожалуйста, выберите 1 или 2. +goto SetBuild) +endlocal +pause \ No newline at end of file diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index dd69521f483819..1c0d831226db73 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using System.Numerics; using Content.Client.Inventory; using Content.Shared.Clothing; using Content.Shared.Clothing.Components; @@ -113,6 +114,7 @@ private void OnGetVisuals(EntityUid uid, ClothingComponent item, GetEquipmentVis i++; } + item.MappedLayer = key; args.Layers.Add((key, layer)); } } @@ -153,13 +155,9 @@ private bool TryGetDefaultVisuals(EntityUid uid, ClothingComponent clothing, str // species specific if (speciesId != null && rsi.TryGetState($"{state}-{speciesId}", out _)) - { state = $"{state}-{speciesId}"; - } else if (!rsi.TryGetState(state, out _)) - { return false; - } var layer = new PrototypeLayerData(); layer.RsiPath = rsi.Path.ToString(); @@ -287,6 +285,8 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot if (layerData.Color != null) sprite.LayerSetColor(key, layerData.Color.Value); + if (layerData.Scale != null) + sprite.LayerSetScale(key, layerData.Scale.Value); } else index = sprite.LayerMapReserveBlank(key); diff --git a/Content.Client/Clothing/FlippableClothingVisualizerSystem.cs b/Content.Client/Clothing/FlippableClothingVisualizerSystem.cs new file mode 100644 index 00000000000000..2c3afb0324fd89 --- /dev/null +++ b/Content.Client/Clothing/FlippableClothingVisualizerSystem.cs @@ -0,0 +1,48 @@ +using Content.Shared.Clothing; +using Content.Shared.Clothing.Components; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Foldable; +using Content.Shared.Item; +using Robust.Client.GameObjects; + +namespace Content.Client.Clothing; + +public sealed class FlippableClothingVisualizerSystem : VisualizerSystem +{ + [Dependency] private readonly SharedItemSystem _itemSys = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetVisuals, after: [typeof(ClothingSystem)]); + SubscribeLocalEvent(OnFolded); + } + + private void OnFolded(Entity ent, ref FoldedEvent args) + { + _itemSys.VisualsChanged(ent); + } + + private void OnGetVisuals(Entity ent, ref GetEquipmentVisualsEvent args) + { + if (!TryComp(ent, out SpriteComponent? sprite) || + !TryComp(ent, out ClothingComponent? clothing)) + return; + + if (clothing.MappedLayer == null || + !AppearanceSystem.TryGetData(ent, FoldableSystem.FoldedVisuals.State, out var folding) || + !sprite.LayerMapTryGet(folding ? ent.Comp.FoldingLayer : ent.Comp.UnfoldingLayer, out var idx)) + return; + + // add each layer to the visuals + var spriteLayer = sprite[idx]; + foreach (var layer in args.Layers) + { + if (layer.Item1 != clothing.MappedLayer) + continue; + + layer.Item2.Scale = spriteLayer.Scale; + } + } +} diff --git a/Content.Client/Clothing/FlippableClothingVisualsComponent.cs b/Content.Client/Clothing/FlippableClothingVisualsComponent.cs new file mode 100644 index 00000000000000..33d622b8b52f20 --- /dev/null +++ b/Content.Client/Clothing/FlippableClothingVisualsComponent.cs @@ -0,0 +1,16 @@ +namespace Content.Client.Clothing; + +/// +/// Communicates folded layers data (currently only Scale to handle flipping) +/// to the wearer clothing sprite layer +/// +[RegisterComponent] +[Access(typeof(FlippableClothingVisualizerSystem))] +public sealed partial class FlippableClothingVisualsComponent : Component +{ + [DataField] + public string FoldingLayer = "foldedLayer"; + + [DataField] + public string UnfoldingLayer = "unfoldedLayer"; +} diff --git a/Content.Client/Clothing/Systems/PilotedByClothingSystem.cs b/Content.Client/Clothing/Systems/PilotedByClothingSystem.cs new file mode 100644 index 00000000000000..c04cf0a60bacc9 --- /dev/null +++ b/Content.Client/Clothing/Systems/PilotedByClothingSystem.cs @@ -0,0 +1,19 @@ +using Content.Shared.Clothing.Components; +using Robust.Client.Physics; + +namespace Content.Client.Clothing.Systems; + +public sealed partial class PilotedByClothingSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUpdatePredicted); + } + + private void OnUpdatePredicted(Entity entity, ref UpdateIsPredictedEvent args) + { + args.BlockPrediction = true; + } +} diff --git a/Content.Client/Interaction/DragDropSystem.cs b/Content.Client/Interaction/DragDropSystem.cs index 8baa4d15fe4b22..d249766bbccaf4 100644 --- a/Content.Client/Interaction/DragDropSystem.cs +++ b/Content.Client/Interaction/DragDropSystem.cs @@ -495,7 +495,7 @@ private void RemoveHighlights() // CanInteract() doesn't support checking a second "target" entity. // Doing so manually: var ev = new GettingInteractedWithAttemptEvent(user, dragged); - RaiseLocalEvent(dragged, ev, true); + RaiseLocalEvent(dragged, ref ev); if (ev.Cancelled) return false; diff --git a/Content.Client/Overlays/StencilOverlay.Weather.cs b/Content.Client/Overlays/StencilOverlay.Weather.cs index 29ed157a791213..bc514548036384 100644 --- a/Content.Client/Overlays/StencilOverlay.Weather.cs +++ b/Content.Client/Overlays/StencilOverlay.Weather.cs @@ -38,7 +38,7 @@ private void DrawWeather(in OverlayDrawArgs args, WeatherPrototype weatherProto, foreach (var tile in grid.Comp.GetTilesIntersecting(worldAABB)) { // Ignored tiles for stencil - if (_weather.CanWeatherAffect(grid, tile)) + if (_weather.CanWeatherAffect(grid.Owner, grid, tile)) { continue; } diff --git a/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs b/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs index 1427df05153422..74752ddc5343a2 100644 --- a/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs +++ b/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs @@ -482,7 +482,7 @@ public PowerMonitoringButton() { HorizontalAlignment = HAlignment.Right, Align = Label.AlignMode.Right, - SetWidth = 72f, + SetWidth = 80f, Margin = new Thickness(10, 0, 0, 0), ClipText = true, }; diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs index 2fa862f3df7f19..99d85350b5e205 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Blockers.cs @@ -17,7 +17,7 @@ private void InitializeBlockers() SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnInteractAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); @@ -27,6 +27,11 @@ private void InitializeBlockers() SubscribeLocalEvent(OnPullAttempt); } + private void OnInteractAttempt(Entity ent, ref InteractionAttemptEvent args) + { + args.Cancelled = true; + } + private void OnAttempt(EntityUid uid, ReplaySpectatorComponent component, CancellableEntityEventArgs args) { args.Cancel(); diff --git a/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs b/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs index 367114f2aa6c5e..fc7b234bccc143 100644 --- a/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs +++ b/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs @@ -134,7 +134,7 @@ private void PopulateData() BorgInfo.SetMessage(text); // how the turntables - DisableButton.Disabled = !data.HasBrain; + DisableButton.Disabled = !(data.HasBrain && data.CanDisable); DestroyButton.Disabled = _timing.CurTime < _console.Comp1.NextDestroy; } diff --git a/Content.Client/Sprite/RandomSpriteSystem.cs b/Content.Client/Sprite/RandomSpriteSystem.cs index b9be2a44b42d5a..c4aa43a65bc4bc 100644 --- a/Content.Client/Sprite/RandomSpriteSystem.cs +++ b/Content.Client/Sprite/RandomSpriteSystem.cs @@ -43,9 +43,6 @@ private void UpdateClothingComponentAppearance(EntityUid uid, RandomSpriteCompon if (!Resolve(uid, ref clothing, false)) return; - if (clothing.ClothingVisuals == null) - return; - foreach (var slotPair in clothing.ClothingVisuals) { foreach (var keyColorPair in component.Selected) diff --git a/Content.Client/Starshine/Eye/NightVision/NightVisionOverlay.cs b/Content.Client/Starshine/Eye/NightVision/NightVisionOverlay.cs new file mode 100644 index 00000000000000..7feb507c5e1c19 --- /dev/null +++ b/Content.Client/Starshine/Eye/NightVision/NightVisionOverlay.cs @@ -0,0 +1,86 @@ +using Content.Shared.Starshine.Eye.NightVision.Components; //creater - vladospupuos +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; + +namespace Content.Client.GG.Eye.NightVision +{ + public sealed class NightVisionOverlay : Overlay + { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly ILightManager _lightManager = default!; + + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _greyscaleShader; + public Color NightvisionColor = Color.Green; + + private NightVisionComponent _nightvisionComponent = default!; + + public NightVisionOverlay(Color color) + { + IoCManager.InjectDependencies(this); + _greyscaleShader = _prototypeManager.Index("GreyscaleFullscreen").InstanceUnique(); + + NightvisionColor = color; + } + protected override bool BeforeDraw(in OverlayDrawArgs args) + { + if (!_entityManager.TryGetComponent(_playerManager.LocalSession?.AttachedEntity, out EyeComponent? eyeComp)) + return false; + + if (args.Viewport.Eye != eyeComp.Eye) + return false; + + var playerEntity = _playerManager.LocalSession?.AttachedEntity; + + if (playerEntity == null) + return false; + + if (!_entityManager.TryGetComponent(playerEntity, out var nightvisionComp)) + return false; + + _nightvisionComponent = nightvisionComp; + + var nightvision = _nightvisionComponent.IsNightVision; + + if (!nightvision && _nightvisionComponent.DrawShadows) // Disable our Night Vision + { + _lightManager.DrawLighting = true; + _nightvisionComponent.DrawShadows = false; + _nightvisionComponent.GraceFrame = true; + return true; + } + + return nightvision; + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) + return; + + if (!_nightvisionComponent.GraceFrame) + { + _nightvisionComponent.DrawShadows = true; // Enable our Night Vision + _lightManager.DrawLighting = false; + } + else + { + _nightvisionComponent.GraceFrame = false; + } + + _greyscaleShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.UseShader(_greyscaleShader); + worldHandle.DrawRect(viewport, NightvisionColor); + worldHandle.UseShader(null); + } + } +} diff --git a/Content.Client/Starshine/Eye/NightVision/NightVisionSystem.cs b/Content.Client/Starshine/Eye/NightVision/NightVisionSystem.cs new file mode 100644 index 00000000000000..490db00dacf0b8 --- /dev/null +++ b/Content.Client/Starshine/Eye/NightVision/NightVisionSystem.cs @@ -0,0 +1,47 @@ +using Content.Client.Overlays; +using Content.Shared.GameTicking; +using Content.Shared.Starshine.Eye.NightVision.Components; +using Content.Shared.Inventory.Events; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Player; + +namespace Content.Client.GG.Eye.NightVision; + +public sealed class NightVisionSystem : EquipmentHudSystem +{ + [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly ILightManager _lightManager = default!; + + + private NightVisionOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + _overlay = new(Color.Green); + } + + protected override void UpdateInternal(RefreshEquipmentHudEvent component) + { + base.UpdateInternal(component); + + foreach (var comp in component.Components) + { + _overlay.NightvisionColor = comp.NightVisionColor; + } + if (!_overlayMan.HasOverlay()) + { + _overlayMan.AddOverlay(_overlay); + } + _lightManager.DrawLighting = false; + } + + protected override void DeactivateInternal() + { + base.DeactivateInternal(); + _overlayMan.RemoveOverlay(_overlay); + _lightManager.DrawLighting = true; + } +} diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 760b8d6a9fca7c..0e9ed433853558 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -16,9 +16,8 @@ using Content.Shared.Administration; using Content.Shared.CCVar; using Content.Shared.Chat; -using Content.Shared.Decals; using Content.Shared.Damage.ForceSay; -using Content.Shared.Examine; +using Content.Shared.Decals; using Content.Shared.Input; using Content.Shared.Radio; using Robust.Client.GameObjects; @@ -626,7 +625,7 @@ private void UpdateQueuedSpeechBubbles(FrameEventArgs delta) var predicate = static (EntityUid uid, (EntityUid compOwner, EntityUid? attachedEntity) data) => uid == data.compOwner || uid == data.attachedEntity; var playerPos = player != null - ? _transform?.GetMapCoordinates(player.Value) ?? MapCoordinates.Nullspace + ? _eye.CurrentEye.Position : MapCoordinates.Nullspace; var occluded = player != null && _examine.IsOccluded(player.Value); diff --git a/Content.Client/Weather/WeatherSystem.cs b/Content.Client/Weather/WeatherSystem.cs index b35483bba487d0..a0e8a44f40be63 100644 --- a/Content.Client/Weather/WeatherSystem.cs +++ b/Content.Client/Weather/WeatherSystem.cs @@ -2,16 +2,11 @@ using Content.Shared.Weather; using Robust.Client.Audio; using Robust.Client.GameObjects; -using Robust.Client.Graphics; using Robust.Client.Player; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; -using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using AudioComponent = Robust.Shared.Audio.Components.AudioComponent; @@ -62,7 +57,7 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype if (TryComp(entXform.GridUid, out var grid)) { var gridId = entXform.GridUid.Value; - // Floodfill to the nearest tile and use that for audio. + // FloodFill to the nearest tile and use that for audio. var seed = _mapSystem.GetTileRef(gridId, grid, entXform.Coordinates); var frontier = new Queue(); frontier.Enqueue(seed); @@ -75,7 +70,7 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype if (!visited.Add(node.GridIndices)) continue; - if (!CanWeatherAffect(grid, node)) + if (!CanWeatherAffect(entXform.GridUid.Value, grid, node)) { // Add neighbors // TODO: Ideally we pick some deterministically random direction and use that @@ -107,7 +102,7 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype if (nearestNode != null) { var entPos = _transform.GetMapCoordinates(entXform); - var nodePosition = nearestNode.Value.ToMap(EntityManager, _transform).Position; + var nodePosition = _transform.ToMapCoordinates(nearestNode.Value).Position; var delta = nodePosition - entPos.Position; var distance = delta.Length(); occlusion = _audio.GetOcclusion(entPos, delta, distance); diff --git a/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs b/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs index 09a27c1baea826..f660eccf30ad91 100644 --- a/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs @@ -140,6 +140,8 @@ private void OnRoundStartAttempt(RoundStartAttemptEvent args) while (query.MoveNext(out _, out _, out var gameRule)) { var minPlayers = gameRule.MinPlayers; + if (!gameRule.CancelPresetOnTooFewPlayers) + continue; if (args.Players.Length >= minPlayers) continue; diff --git a/Content.Server/Chemistry/Components/TransformableContainerComponent.cs b/Content.Server/Chemistry/Components/TransformableContainerComponent.cs index 5ea9a244878ff2..db6c9c5397659d 100644 --- a/Content.Server/Chemistry/Components/TransformableContainerComponent.cs +++ b/Content.Server/Chemistry/Components/TransformableContainerComponent.cs @@ -14,14 +14,6 @@ namespace Content.Server.Chemistry.Components; [RegisterComponent, Access(typeof(TransformableContainerSystem))] public sealed partial class TransformableContainerComponent : Component { - /// - /// This is the initial metadata name for the container. - /// It will revert to this when emptied. - /// It defaults to the name of the parent entity unless overwritten. - /// - [DataField("initialName")] - public string? InitialName; - /// /// This is the initial metadata description for the container. /// It will revert to this when emptied. diff --git a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs index c375d97b8c3f7e..32bd912b2205af 100644 --- a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Chemistry.Containers.EntitySystems; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reagent; +using Content.Shared.NameModifier.EntitySystems; using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.EntitySystems; @@ -11,6 +12,7 @@ public sealed class TransformableContainerSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SolutionContainerSystem _solutionsSystem = default!; [Dependency] private readonly MetaDataSystem _metadataSystem = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; public override void Initialize() { @@ -18,15 +20,12 @@ public override void Initialize() SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnSolutionChange); + SubscribeLocalEvent(OnRefreshNameModifiers); } - private void OnMapInit(Entity entity, ref MapInitEvent args) + private void OnMapInit(Entity entity, ref MapInitEvent args) { var meta = MetaData(entity.Owner); - if (string.IsNullOrEmpty(entity.Comp.InitialName)) - { - entity.Comp.InitialName = meta.EntityName; - } if (string.IsNullOrEmpty(entity.Comp.InitialDescription)) { entity.Comp.InitialDescription = meta.EntityDescription; @@ -58,12 +57,20 @@ private void OnSolutionChange(Entity entity, re && _prototypeManager.TryIndex(reagentId.Value.Prototype, out ReagentPrototype? proto)) { var metadata = MetaData(entity.Owner); - var val = Loc.GetString("transformable-container-component-glass", ("name", proto.LocalizedName)); - _metadataSystem.SetEntityName(entity.Owner, val, metadata); _metadataSystem.SetEntityDescription(entity.Owner, proto.LocalizedDescription, metadata); entity.Comp.CurrentReagent = proto; entity.Comp.Transformed = true; } + + _nameMod.RefreshNameModifiers(entity.Owner); + } + + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) + { + if (entity.Comp.CurrentReagent is { } currentReagent) + { + args.AddModifier("transformable-container-component-glass", priority: -1, ("reagent", currentReagent.LocalizedName)); + } } private void CancelTransformation(Entity entity) @@ -73,10 +80,8 @@ private void CancelTransformation(Entity entity var metadata = MetaData(entity); - if (!string.IsNullOrEmpty(entity.Comp.InitialName)) - { - _metadataSystem.SetEntityName(entity.Owner, entity.Comp.InitialName, metadata); - } + _nameMod.RefreshNameModifiers(entity.Owner); + if (!string.IsNullOrEmpty(entity.Comp.InitialDescription)) { _metadataSystem.SetEntityDescription(entity.Owner, entity.Comp.InitialDescription, metadata); diff --git a/Content.Server/Chemistry/ReagentEffectConditions/JobCondition.cs b/Content.Server/Chemistry/ReagentEffectConditions/JobCondition.cs new file mode 100644 index 00000000000000..0ede690049272c --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffectConditions/JobCondition.cs @@ -0,0 +1,49 @@ +using System.Linq; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Localizations; +using Robust.Shared.Prototypes; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; +using Content.Shared.Station; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.IoC; + +namespace Content.Server.Chemistry.ReagentEffectConditions +{ + public sealed partial class JobCondition : ReagentEffectCondition + { + [DataField(required: true)] public List> Job; + + public override bool Condition(ReagentEffectArgs args) + { + args.EntityManager.TryGetComponent(args.SolutionEntity, out var mindContainer); + if (mindContainer != null && mindContainer.Mind != null) + { + var prototypeManager = IoCManager.Resolve(); + if (args.EntityManager.TryGetComponent(mindContainer?.Mind, out var comp) && prototypeManager.TryIndex(comp.Prototype, out var prototype)) + { + foreach (var jobId in Job) + { + if (prototype.ID == jobId) + { + return true; + } + } + } + } + + return false; + } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + var localizedNames = Job.Select(jobId => prototype.Index(jobId).LocalizedName).ToList(); + return Loc.GetString("reagent-effect-condition-guidebook-job-condition", ("job", ContentLocalizationManager.FormatListToOr(localizedNames))); + } + } +} + diff --git a/Content.Server/Cluwne/CluwneSystem.cs b/Content.Server/Cluwne/CluwneSystem.cs index c170886a803a04..18d82659debe29 100644 --- a/Content.Server/Cluwne/CluwneSystem.cs +++ b/Content.Server/Cluwne/CluwneSystem.cs @@ -14,8 +14,8 @@ using Content.Server.Speech.EntitySystems; using Content.Shared.Cluwne; using Content.Shared.Interaction.Components; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; +using Content.Shared.NameModifier.EntitySystems; namespace Content.Server.Cluwne; @@ -30,6 +30,7 @@ public sealed class CluwneSystem : EntitySystem [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly AutoEmoteSystem _autoEmote = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; public override void Initialize() { @@ -39,6 +40,7 @@ public override void Initialize() SubscribeLocalEvent(OnMobState); SubscribeLocalEvent(OnEmote, before: new[] { typeof(VocalSystem), typeof(BodyEmotesSystem) }); + SubscribeLocalEvent(OnRefreshNameModifiers); } /// @@ -47,19 +49,19 @@ public override void Initialize() private void OnMobState(EntityUid uid, CluwneComponent component, MobStateChangedEvent args) { if (args.NewMobState == MobState.Dead) - { + { RemComp(uid); RemComp(uid); RemComp(uid); var damageSpec = new DamageSpecifier(_prototypeManager.Index("Genetic"), 300); _damageableSystem.TryChangeDamage(uid, damageSpec); - } + } } public EmoteSoundsPrototype? EmoteSounds; /// - /// OnStartup gives the cluwne outfit, ensures clumsy, gives name prefix and makes sure emote sounds are laugh. + /// OnStartup gives the cluwne outfit, ensures clumsy, and makes sure emote sounds are laugh. /// private void OnComponentStartup(EntityUid uid, CluwneComponent component, ComponentStartup args) { @@ -67,9 +69,6 @@ private void OnComponentStartup(EntityUid uid, CluwneComponent component, Compon return; _prototypeManager.TryIndex(component.EmoteSoundsId, out EmoteSounds); - var meta = MetaData(uid); - var name = meta.EntityName; - EnsureComp(uid); _autoEmote.AddEmote(uid, "CluwneGiggle"); EnsureComp(uid); @@ -77,7 +76,7 @@ private void OnComponentStartup(EntityUid uid, CluwneComponent component, Compon _popupSystem.PopupEntity(Loc.GetString("cluwne-transform", ("target", uid)), uid, PopupType.LargeCaution); _audio.PlayPvs(component.SpawnSound, uid); - _metaData.SetEntityName(uid, Loc.GetString("cluwne-name-prefix", ("target", name)), meta); + _nameMod.RefreshNameModifiers(uid); SetOutfitCommand.SetOutfit(uid, "CluwneGear", EntityManager); } @@ -104,4 +103,12 @@ private void OnEmote(EntityUid uid, CluwneComponent component, ref EmoteEvent ar _chat.TrySendInGameICMessage(uid, "spasms", InGameICChatType.Emote, ChatTransmitRange.Normal); } } + + /// + /// Applies "Cluwnified" prefix + /// + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) + { + args.AddModifier("cluwne-name-prefix"); + } } diff --git a/Content.Server/Explosion/Components/AutomatedTimerComponent.cs b/Content.Server/Explosion/Components/AutomatedTimerComponent.cs index 7019c08d43d7b2..c01aeb91e55dce 100644 --- a/Content.Server/Explosion/Components/AutomatedTimerComponent.cs +++ b/Content.Server/Explosion/Components/AutomatedTimerComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Explosion.Components; /// -/// Disallows starting the timer by hand, must be stuck or triggered by a system. +/// Disallows starting the timer by hand, must be stuck or triggered by a system using StartTimer. /// [RegisterComponent] public sealed partial class AutomatedTimerComponent : Component diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs index 8725dd1ae738ed..dcd11062bb78df 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.OnUse.cs @@ -26,13 +26,7 @@ private void OnStuck(EntityUid uid, OnUseTimerTriggerComponent component, Entity if (!component.StartOnStick) return; - HandleTimerTrigger( - uid, - args.User, - component.Delay, - component.BeepInterval, - component.InitialBeepDelay, - component.BeepSound); + StartTimer((uid, component), args.User); } private void OnExamined(EntityUid uid, OnUseTimerTriggerComponent component, ExaminedEvent args) @@ -54,14 +48,7 @@ private void OnGetAltVerbs(EntityUid uid, OnUseTimerTriggerComponent component, args.Verbs.Add(new AlternativeVerb() { Text = Loc.GetString("verb-start-detonation"), - Act = () => HandleTimerTrigger( - uid, - args.User, - component.Delay, - component.BeepInterval, - component.InitialBeepDelay, - component.BeepSound - ), + Act = () => StartTimer((uid, component), args.User), Priority = 2 }); } @@ -174,13 +161,7 @@ private void OnTimerUse(EntityUid uid, OnUseTimerTriggerComponent component, Use if (component.DoPopup) _popupSystem.PopupEntity(Loc.GetString("trigger-activated", ("device", uid)), args.User, args.User); - HandleTimerTrigger( - uid, - args.User, - component.Delay, - component.BeepInterval, - component.InitialBeepDelay, - component.BeepSound); + StartTimer((uid, component), args.User); args.Handled = true; } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index e03b8aff54460d..92e065bf4ce698 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -265,6 +265,18 @@ public void TryDelay(EntityUid uid, float amount, ActiveTimerTriggerComponent? c comp.TimeRemaining += amount; } + /// + /// Start the timer for triggering the device. + /// + public void StartTimer(Entity ent, EntityUid? user) + { + if (!Resolve(ent, ref ent.Comp, false)) + return; + + var comp = ent.Comp; + HandleTimerTrigger(ent, user, comp.Delay, comp.BeepInterval, comp.InitialBeepDelay, comp.BeepSound); + } + public void HandleTimerTrigger(EntityUid uid, EntityUid? user, float delay, float beepInterval, float? initialBeepDelay, SoundSpecifier? beepSound) { if (delay <= 0) diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index 16d2d391f65a43..82acb3c60c36ea 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -29,6 +29,7 @@ using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Content.Shared.NameModifier.Components; namespace Content.Server.Fax; @@ -464,10 +465,11 @@ public void Copy(EntityUid uid, FaxMachineComponent? component, FaxCopyMessage a return; TryComp(sendEntity, out var labelComponent); + TryComp(sendEntity, out var nameMod); // TODO: See comment in 'Send()' about not being able to copy whole entities var printout = new FaxPrintout(paper.Content, - labelComponent?.OriginalName ?? metadata.EntityName, + nameMod?.BaseName ?? metadata.EntityName, labelComponent?.CurrentLabel, metadata.EntityPrototype?.ID ?? DefaultPaperPrototypeId, paper.StampState, @@ -510,12 +512,14 @@ public void Send(EntityUid uid, FaxMachineComponent? component, FaxSendMessage a !TryComp(sendEntity, out var paper)) return; + TryComp(sendEntity, out var nameMod); + TryComp(sendEntity, out var labelComponent); var payload = new NetworkPayload() { { DeviceNetworkConstants.Command, FaxConstants.FaxPrintCommand }, - { FaxConstants.FaxPaperNameData, labelComponent?.OriginalName ?? metadata.EntityName }, + { FaxConstants.FaxPaperNameData, nameMod?.BaseName ?? metadata.EntityName }, { FaxConstants.FaxPaperLabelData, labelComponent?.CurrentLabel }, { FaxConstants.FaxPaperContentData, paper.Content }, }; diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index fffacb59dee151..6e297789528d2e 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -251,7 +251,9 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma // (If the mob survives, that's a bug. Ghosting is kept regardless.) var canReturn = canReturnGlobal && _mind.IsCharacterDeadPhysically(mind); - if (canReturnGlobal && TryComp(playerEntity, out MobStateComponent? mobState)) + if (_configurationManager.GetCVar(CCVars.GhostKillCrit) && + canReturnGlobal && + TryComp(playerEntity, out MobStateComponent? mobState)) { if (_mobState.IsCritical(playerEntity.Value, mobState)) { diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 92f78bca25c961..aaee72b1b79691 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -160,6 +160,12 @@ public IReadOnlyList LoadGameMap(GameMapPrototype map, MapId targetMa // whereas the command can also be used on an existing map. var loadOpts = loadOptions ?? new MapLoadOptions(); + if (map.MaxRandomOffset != 0f) + loadOpts.Offset = _robustRandom.NextVector2(map.MaxRandomOffset); + + if (map.RandomRotation) + loadOpts.Rotation = _robustRandom.NextAngle(); + var ev = new PreGameMapLoad(targetMapId, map, loadOpts); RaiseLocalEvent(ev); @@ -359,6 +365,7 @@ public void ShowRoundEndScoreboard(string text = "") var listOfPlayerInfo = new List(); // Grab the great big book of all the Minds, we'll need them for this. var allMinds = EntityQueryEnumerator(); + var pvsOverride = _configurationManager.GetCVar(CCVars.RoundEndPVSOverrides); while (allMinds.MoveNext(out var mindId, out var mind)) { // TODO don't list redundant observer roles? @@ -389,7 +396,7 @@ public void ShowRoundEndScoreboard(string text = "") else if (mind.CurrentEntity != null && TryName(mind.CurrentEntity.Value, out var icName)) playerIcName = icName; - if (TryGetEntity(mind.OriginalOwnedEntity, out var entity)) + if (TryGetEntity(mind.OriginalOwnedEntity, out var entity) && pvsOverride) { _pvsOverride.AddGlobalOverride(GetNetEntity(entity.Value), recursive: true); } diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index 730748ce6b9ec6..cb5b117549520b 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -41,11 +41,18 @@ private void OnStartAttempt(RoundStartAttemptEvent args) if (args.Players.Length >= minPlayers) continue; - ChatManager.SendAdminAnnouncement(Loc.GetString("preset-not-enough-ready-players", - ("readyPlayersCount", args.Players.Length), - ("minimumPlayers", minPlayers), - ("presetName", ToPrettyString(uid)))); - args.Cancel(); + if (gameRule.CancelPresetOnTooFewPlayers) + { + ChatManager.SendAdminAnnouncement(Loc.GetString("preset-not-enough-ready-players", + ("readyPlayersCount", args.Players.Length), + ("minimumPlayers", minPlayers), + ("presetName", ToPrettyString(uid)))); + args.Cancel(); + } + else + { + ForceEndSelf(uid, gameRule); + } } } diff --git a/Content.Server/GameTicking/Rules/SecretRuleSystem.cs b/Content.Server/GameTicking/Rules/SecretRuleSystem.cs index 320f9d197aac65..8608f250d486af 100644 --- a/Content.Server/GameTicking/Rules/SecretRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/SecretRuleSystem.cs @@ -164,7 +164,7 @@ private bool CanPick([NotNullWhen(true)] GamePresetPrototype? selected, int play return false; } - if (ruleComp.MinPlayers > players) + if (ruleComp.MinPlayers > players && ruleComp.CancelPresetOnTooFewPlayers) return false; } diff --git a/Content.Server/Glue/GlueSystem.cs b/Content.Server/Glue/GlueSystem.cs index ff53ef91cac6cc..79249f5bd965f2 100644 --- a/Content.Server/Glue/GlueSystem.cs +++ b/Content.Server/Glue/GlueSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Interaction; using Content.Shared.Interaction.Components; using Content.Shared.Item; +using Content.Shared.NameModifier.EntitySystems; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Verbs; @@ -20,9 +21,9 @@ public sealed class GlueSystem : SharedGlueSystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; public override void Initialize() { @@ -32,6 +33,7 @@ public override void Initialize() SubscribeLocalEvent(OnGluedInit); SubscribeLocalEvent>(OnUtilityVerb); SubscribeLocalEvent(OnHandPickUp); + SubscribeLocalEvent(OnRefreshNameModifiers); } // When glue bottle is used on item it will apply the glued and unremoveable components. @@ -95,27 +97,22 @@ public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var glue, out var _, out var meta)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var glue, out var _)) { if (_timing.CurTime < glue.Until) continue; - // Instead of string matching, just reconstruct the expected name and compare - if (meta.EntityName == Loc.GetString("glued-name-prefix", ("target", glue.BeforeGluedEntityName))) - _metaData.SetEntityName(uid, glue.BeforeGluedEntityName); - RemComp(uid); RemComp(uid); + + _nameMod.RefreshNameModifiers(uid); } } private void OnGluedInit(Entity entity, ref ComponentInit args) { - var meta = MetaData(entity); - var name = meta.EntityName; - entity.Comp.BeforeGluedEntityName = meta.EntityName; - _metaData.SetEntityName(entity.Owner, Loc.GetString("glued-name-prefix", ("target", name))); + _nameMod.RefreshNameModifiers(entity.Owner); } private void OnHandPickUp(Entity entity, ref GotEquippedHandEvent args) @@ -124,4 +121,9 @@ private void OnHandPickUp(Entity entity, ref GotEquippedHandEven comp.DeleteOnDrop = false; entity.Comp.Until = _timing.CurTime + entity.Comp.Duration; } + + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) + { + args.AddModifier("glued-name-prefix"); + } } diff --git a/Content.Server/Labels/Label/LabelSystem.cs b/Content.Server/Labels/Label/LabelSystem.cs index aee2abe7ab9f7d..17d18918fea239 100644 --- a/Content.Server/Labels/Label/LabelSystem.cs +++ b/Content.Server/Labels/Label/LabelSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Labels; using Content.Shared.Labels.Components; using Content.Shared.Labels.EntitySystems; +using Content.Shared.NameModifier.EntitySystems; using JetBrains.Annotations; using Robust.Shared.Containers; @@ -18,7 +19,7 @@ public sealed class LabelSystem : SharedLabelSystem { [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; public const string ContainerName = "paper_label"; @@ -41,6 +42,8 @@ private void OnLabelCompMapInit(EntityUid uid, LabelComponent component, MapInit component.CurrentLabel = Loc.GetString(component.CurrentLabel); Dirty(uid, component); } + + _nameMod.RefreshNameModifiers(uid); } /// @@ -52,30 +55,11 @@ private void OnLabelCompMapInit(EntityUid uid, LabelComponent component, MapInit /// metadata component for resolve public override void Label(EntityUid uid, string? text, MetaDataComponent? metadata = null, LabelComponent? label = null) { - if (!Resolve(uid, ref metadata)) - return; if (!Resolve(uid, ref label, false)) label = EnsureComp(uid); - if (string.IsNullOrEmpty(text)) - { - if (label.OriginalName is null) - return; - - // Remove label - _metaData.SetEntityName(uid, label.OriginalName, metadata); - label.CurrentLabel = null; - label.OriginalName = null; - - Dirty(uid, label); - - return; - } - - // Update label - label.OriginalName ??= metadata.EntityName; label.CurrentLabel = text; - _metaData.SetEntityName(uid, $"{label.OriginalName} ({text})", metadata); + _nameMod.RefreshNameModifiers(uid); Dirty(uid, label); } diff --git a/Content.Server/Lube/LubedSystem.cs b/Content.Server/Lube/LubedSystem.cs index f786c5f91af27e..c2d15c8a284063 100644 --- a/Content.Server/Lube/LubedSystem.cs +++ b/Content.Server/Lube/LubedSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.IdentityManagement; using Content.Shared.Lube; +using Content.Shared.NameModifier.EntitySystems; using Content.Shared.Popups; using Content.Shared.Throwing; using Robust.Shared.Containers; @@ -9,11 +10,11 @@ namespace Content.Server.Lube; public sealed class LubedSystem : EntitySystem { - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; public override void Initialize() { @@ -21,14 +22,12 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnHandPickUp); + SubscribeLocalEvent(OnRefreshNameModifiers); } private void OnInit(EntityUid uid, LubedComponent component, ComponentInit args) { - var meta = MetaData(uid); - var name = meta.EntityName; - component.BeforeLubedEntityName = meta.EntityName; - _metaData.SetEntityName(uid, Loc.GetString("lubed-name-prefix", ("target", name))); + _nameMod.RefreshNameModifiers(uid); } private void OnHandPickUp(EntityUid uid, LubedComponent component, ContainerGettingInsertedAttemptEvent args) @@ -36,7 +35,7 @@ private void OnHandPickUp(EntityUid uid, LubedComponent component, ContainerGett if (component.SlipsLeft <= 0) { RemComp(uid); - _metaData.SetEntityName(uid, component.BeforeLubedEntityName); + _nameMod.RefreshNameModifiers(uid); return; } component.SlipsLeft--; @@ -47,4 +46,9 @@ private void OnHandPickUp(EntityUid uid, LubedComponent component, ContainerGett _throwing.TryThrow(uid, _random.NextVector2(), strength: component.SlipStrength); _popup.PopupEntity(Loc.GetString("lube-slip", ("target", Identity.Entity(uid, EntityManager))), user, user, PopupType.MediumCaution); } + + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) + { + args.AddModifier("lubed-name-prefix"); + } } diff --git a/Content.Server/Maps/GameMapPrototype.cs b/Content.Server/Maps/GameMapPrototype.cs index bd15194495ecd4..5942a9930eb06f 100644 --- a/Content.Server/Maps/GameMapPrototype.cs +++ b/Content.Server/Maps/GameMapPrototype.cs @@ -3,6 +3,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Utility; using System.Diagnostics; +using System.Numerics; namespace Content.Server.Maps; @@ -21,16 +22,22 @@ public sealed partial class GameMapPrototype : IPrototype [IdDataField] public string ID { get; private set; } = default!; + [DataField] + public float MaxRandomOffset = 1000f; + + [DataField] + public bool RandomRotation = true; + /// /// Name of the map to use in generic messages, like the map vote. /// - [DataField("mapName", required: true)] + [DataField(required: true)] public string MapName { get; private set; } = default!; /// /// Relative directory path to the given map, i.e. `/Maps/saltern.yml` /// - [DataField("mapPath", required: true)] + [DataField(required: true)] public ResPath MapPath { get; private set; } = default!; [DataField("stations", required: true)] diff --git a/Content.Server/Movement/Components/PullMoverComponent.cs b/Content.Server/Movement/Components/PullMoverComponent.cs deleted file mode 100644 index 19a01c6b17db05..00000000000000 --- a/Content.Server/Movement/Components/PullMoverComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace Content.Server.Movement.Components; - -/// -/// Added to an entity that is ctrl-click moving their pulled object. -/// -/// -/// This just exists so we don't have MoveEvent subs going off for every single mob constantly. -/// -[RegisterComponent] -public sealed partial class PullMoverComponent : Component -{ - -} diff --git a/Content.Server/Movement/Systems/PullController.cs b/Content.Server/Movement/Systems/PullController.cs index 72110ff67d244c..f227d9c55cdaeb 100644 --- a/Content.Server/Movement/Systems/PullController.cs +++ b/Content.Server/Movement/Systems/PullController.cs @@ -18,6 +18,7 @@ using Robust.Shared.Physics.Dynamics.Joints; using Robust.Shared.Player; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Server.Movement.Systems; @@ -91,7 +92,7 @@ public override void Initialize() UpdatesAfter.Add(typeof(MoverController)); SubscribeLocalEvent(OnPullStop); - SubscribeLocalEvent(OnPullerMove); + SubscribeLocalEvent(OnPullerMove); base.Initialize(); } @@ -155,19 +156,22 @@ private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinate coords = fromUserCoords.WithEntityId(coords.EntityId); } - EnsureComp(player); var moving = EnsureComp(pulled!.Value); moving.MovingTo = coords; return false; } - private void OnPullerMove(EntityUid uid, PullMoverComponent component, ref MoveEvent args) + private void OnPullerMove(EntityUid uid, ActivePullerComponent component, ref MoveEvent args) { if (!_pullerQuery.TryComp(uid, out var puller)) return; if (puller.Pulling is not { } pullable) + { + DebugTools.Assert($"Failed to clean up puller: {ToPrettyString(uid)}"); + RemCompDeferred(uid, component); return; + } UpdatePulledRotation(uid, pullable); @@ -182,13 +186,7 @@ private void OnPullerMove(EntityUid uid, PullMoverComponent component, ref MoveE if (_physicsQuery.TryComp(uid, out var physics)) PhysicsSystem.WakeBody(uid, body: physics); - StopMove(uid, pullable); - } - - private void StopMove(Entity mover, Entity moving) - { - RemCompDeferred(mover.Owner); - RemCompDeferred(moving.Owner); + RemCompDeferred(pullable); } private void UpdatePulledRotation(EntityUid puller, EntityUid pulled) @@ -302,17 +300,5 @@ public override void UpdateBeforeSolve(bool prediction, float frameTime) PhysicsSystem.ApplyLinearImpulse(puller, -impulse); } } - - // Cleanup PullMover - var moverQuery = EntityQueryEnumerator(); - - while (moverQuery.MoveNext(out var uid, out _, out var puller)) - { - if (!HasComp(puller.Pulling)) - { - RemCompDeferred(uid); - continue; - } - } } } diff --git a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs index e224c7c4792796..e5f590a3626c6d 100644 --- a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs +++ b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs @@ -5,13 +5,12 @@ using Content.Shared.Interaction.Components; using Content.Shared.Mind.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.NameModifier.EntitySystems; using Content.Shared.Nutrition.AnimalHusbandry; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage; using Content.Shared.Whitelist; -using Robust.Server.GameObjects; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Random; @@ -29,12 +28,12 @@ public sealed class AnimalHusbandrySystem : EntitySystem [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; private readonly HashSet _failedAttempts = new(); private readonly HashSet _birthQueue = new(); @@ -43,8 +42,7 @@ public sealed class AnimalHusbandrySystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnMindAdded); - SubscribeLocalEvent(OnInfantStartup); - SubscribeLocalEvent(OnInfantShutdown); + SubscribeLocalEvent(OnRefreshNameModifiers); } // we express EZ-pass terminate the pregnancy if a player takes the role @@ -54,16 +52,11 @@ private void OnMindAdded(EntityUid uid, ReproductiveComponent component, MindAdd component.GestationEndTime = null; } - private void OnInfantStartup(EntityUid uid, InfantComponent component, ComponentStartup args) + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) { - var meta = MetaData(uid); - component.OriginalName = meta.EntityName; - _metaData.SetEntityName(uid, Loc.GetString("infant-name-prefix", ("name", meta.EntityName)), meta); - } - - private void OnInfantShutdown(EntityUid uid, InfantComponent component, ComponentShutdown args) - { - _metaData.SetEntityName(uid, component.OriginalName); + // This check may seem redundant, but it makes sure that the prefix is removed before the component is removed + if (_timing.CurTime < entity.Comp.InfantEndTime) + args.AddModifier("infant-name-prefix"); } /// @@ -202,6 +195,8 @@ public void Birth(EntityUid uid, ReproductiveComponent? component = null) { var infant = AddComp(offspring); infant.InfantEndTime = _timing.CurTime + infant.InfantDuration; + // Make sure the name prefix is applied + _nameMod.RefreshNameModifiers(offspring); } _adminLog.Add(LogType.Action, $"{ToPrettyString(uid)} gave birth to {ToPrettyString(offspring)}."); } @@ -249,6 +244,8 @@ public override void Update(float frameTime) if (_timing.CurTime < infant.InfantEndTime) continue; RemCompDeferred(uid, infant); + // Make sure the name prefix gets removed + _nameMod.RefreshNameModifiers(uid); } } } diff --git a/Content.Server/Physics/Controllers/ConveyorController.cs b/Content.Server/Physics/Controllers/ConveyorController.cs index b3508025cb94f3..db4307f6de5888 100644 --- a/Content.Server/Physics/Controllers/ConveyorController.cs +++ b/Content.Server/Physics/Controllers/ConveyorController.cs @@ -55,8 +55,6 @@ private void OnConveyorShutdown(EntityUid uid, ConveyorComponent component, Comp if (MetaData(uid).EntityLifeStage >= EntityLifeStage.Terminating) return; - RemComp(uid); - if (!TryComp(uid, out var physics)) return; diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 540bd6c4832ac8..02412ca5fb54b5 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -128,7 +128,6 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref // Shift ramp position based on demand and generation from previous tick. var curRamp = component.RampPosition; var lastDraw = supplier.CurrentSupply; - // Limit amount lost/gained based on power factor. curRamp = MathHelper.Clamp(lastDraw, curRamp / component.RampFactor, curRamp * component.RampFactor); curRamp = MathF.Max(curRamp, component.RampMinimum); component.RampPosition = curRamp; @@ -138,17 +137,28 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref if (airA.Pressure > 0 && airB.Pressure > 0) { var hotA = airA.Temperature > airB.Temperature; - var cHot = hotA ? cA : cB; - - // Calculate maximum amount of energy to generate this tick based on ramping above. - // This clamps the thermal energy transfer as well. - var targetEnergy = curRamp / _atmosphere.AtmosTickRate; - var transferMax = targetEnergy / (component.ThermalEfficiency * component.PowerFactor); // Calculate thermal and electrical energy transfer between the two sides. - var δT = MathF.Abs(airA.Temperature - airB.Temperature); - var transfer = Math.Min(δT * cA * cB / (cA + cB - cHot * component.ThermalEfficiency), transferMax); - electricalEnergy = transfer * component.ThermalEfficiency * component.PowerFactor; + // Assume temperature equalizes, i.e. Ta*cA + Tb*cB = Tf*(cA+cB) + var Tf = (airA.Temperature * cA + airB.Temperature * cB) / (cA + cB); + // The maximum energy we can extract is (Ta - Tf)*cA, which is equal to (Tf - Tb)*cB + var Wmax = MathF.Abs(airA.Temperature - Tf) * cA; + + var N = component.ThermalEfficiency; + + // Calculate Carnot efficiency + var Thot = hotA ? airA.Temperature : airB.Temperature; + var Tcold = hotA ? airB.Temperature : airA.Temperature; + var Nmax = 1 - Tcold / Thot; + N = MathF.Min(N, Nmax); // clamp by Carnot efficiency + + // Reduce efficiency at low temperature differences to encourage burn chambers (instead + // of just feeding the TEG room temperature gas from an infinite gas miner). + var dT = Thot - Tcold; + N *= MathF.Tanh(dT/700); // https://www.wolframalpha.com/input?i=tanh(x/700)+from+0+to+1000 + + var transfer = Wmax * N; + electricalEnergy = transfer * component.PowerFactor; var outTransfer = transfer * (1 - component.ThermalEfficiency); // Adjust thermal energy in transferred gas mixtures. @@ -169,7 +179,7 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref component.LastGeneration = electricalEnergy; // Turn energy (at atmos tick rate) into wattage. - var power = electricalEnergy * _atmosphere.AtmosTickRate; + var power = electricalEnergy / args.dt; // Add ramp factor. This magics slight power into existence, but allows us to ramp up. supplier.MaxSupply = power * component.RampFactor; diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index f372f7df1a50d8..746d75f0d856d7 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -281,15 +281,13 @@ public bool CanInsertModule(EntityUid uid, EntityUid module, BorgChassisComponen if (!TryComp(containedModuleUid, out var containedItemModuleComp)) continue; - for (int i = 0; i < itemModuleComp.Items.Count; i++) + if (containedItemModuleComp.Items.Count == itemModuleComp.Items.Count && + containedItemModuleComp.Items.All(itemModuleComp.Items.Contains)) { - if (itemModuleComp.Items[i] != containedItemModuleComp.Items[i]) - continue; + if (user != null) + Popup.PopupEntity(Loc.GetString("borg-module-duplicate"), uid, user.Value); + return false; } - - if (user != null) - Popup.PopupEntity(Loc.GetString("borg-module-duplicate"), uid, user.Value); - return false; } } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs index 1c10cbe667ef19..781f847be35ea2 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs @@ -1,5 +1,6 @@ using Content.Shared.DeviceNetwork; using Content.Shared.Emag.Components; +using Content.Shared.Movement.Components; using Content.Shared.Popups; using Content.Shared.Robotics; using Content.Shared.Silicons.Borgs.Components; @@ -26,6 +27,9 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var comp, out var chassis, out var device, out var meta)) { + if (comp.NextDisable is {} nextDisable && now >= nextDisable) + DoDisable((uid, comp, chassis, meta)); + if (now < comp.NextBroadcast) continue; @@ -33,13 +37,16 @@ public override void Update(float frameTime) if (_powerCell.TryGetBatteryFromSlot(uid, out var battery)) charge = battery.CurrentCharge / battery.MaxCharge; + var hasBrain = chassis.BrainEntity != null && !comp.FakeDisabled; + var canDisable = comp.NextDisable == null && !comp.FakeDisabling; var data = new CyborgControlData( comp.Sprite, comp.Name, meta.EntityName, charge, chassis.ModuleCount, - chassis.BrainEntity != null); + hasBrain, + canDisable); var payload = new NetworkPayload() { @@ -52,6 +59,24 @@ public override void Update(float frameTime) } } + private void DoDisable(Entity ent) + { + ent.Comp1.NextDisable = null; + if (ent.Comp1.FakeDisabling) + { + ent.Comp1.FakeDisabled = true; + ent.Comp1.FakeDisabling = false; + return; + } + + if (ent.Comp2.BrainEntity is not {} brain) + return; + + var message = Loc.GetString(ent.Comp1.DisabledPopup, ("name", Name(ent, ent.Comp3))); + Popup.PopupEntity(message, ent); + _container.Remove(brain, ent.Comp2.BrainContainer); + } + private void OnPacketReceived(Entity ent, ref DeviceNetworkPacketEvent args) { var payload = args.Data; @@ -61,28 +86,28 @@ private void OnPacketReceived(Entity ent, ref DeviceNe if (command == RoboticsConsoleConstants.NET_DISABLE_COMMAND) Disable(ent); else if (command == RoboticsConsoleConstants.NET_DESTROY_COMMAND) - Destroy(ent.Owner); + Destroy(ent); } private void Disable(Entity ent) { - if (!Resolve(ent, ref ent.Comp2) || ent.Comp2.BrainEntity is not {} brain) + if (!Resolve(ent, ref ent.Comp2) || ent.Comp2.BrainEntity == null || ent.Comp1.NextDisable != null) return; - // this won't exactly be stealthy but if you are malf its better than actually disabling you + // update ui immediately + ent.Comp1.NextBroadcast = _timing.CurTime; + + // pretend the borg is being disabled forever now if (CheckEmagged(ent, "disabled")) - return; + ent.Comp1.FakeDisabling = true; + else + Popup.PopupEntity(Loc.GetString(ent.Comp1.DisablingPopup), ent); - var message = Loc.GetString(ent.Comp1.DisabledPopup, ("name", Name(ent))); - Popup.PopupEntity(message, ent); - _container.Remove(brain, ent.Comp2.BrainContainer); + ent.Comp1.NextDisable = _timing.CurTime + ent.Comp1.DisableDelay; } - private void Destroy(Entity ent) + private void Destroy(Entity ent) { - if (!Resolve(ent, ref ent.Comp)) - return; - // this is stealthy until someone realises you havent exploded if (CheckEmagged(ent, "destroyed")) { @@ -91,7 +116,12 @@ private void Destroy(Entity ent) return; } - _explosion.TriggerExplosive(ent, ent.Comp, delete: false); + var message = Loc.GetString(ent.Comp.DestroyingPopup, ("name", Name(ent))); + Popup.PopupEntity(message, ent); + _trigger.StartTimer(ent.Owner, user: null); + + // prevent a shitter borg running into people + RemComp(ent); } private bool CheckEmagged(EntityUid uid, string name) diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 1ab7f5387f31eb..c97ca9cbc0db39 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -43,8 +43,8 @@ public sealed partial class BorgSystem : SharedBorgSystem [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; - [Dependency] private readonly ExplosionSystem _explosion = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly TriggerSystem _trigger = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedMindSystem _mind = default!; diff --git a/Content.Server/Speech/Components/AccentWearerNameClothingComponent.cs b/Content.Server/Speech/Components/AccentWearerNameClothingComponent.cs new file mode 100644 index 00000000000000..288eaa8dcbe4d5 --- /dev/null +++ b/Content.Server/Speech/Components/AccentWearerNameClothingComponent.cs @@ -0,0 +1,10 @@ +using Content.Server.Speech.EntitySystems; + +namespace Content.Server.Speech.Components; + +/// +/// Applies any accent components on this item to the name of the wearer while worn. +/// +[RegisterComponent] +[Access(typeof(AccentWearerNameClothingSystem))] +public sealed partial class AccentWearerNameClothingComponent : Component; diff --git a/Content.Server/Speech/EntitySystems/AccentWearerNameClothingSystem.cs b/Content.Server/Speech/EntitySystems/AccentWearerNameClothingSystem.cs new file mode 100644 index 00000000000000..fc381c599853f2 --- /dev/null +++ b/Content.Server/Speech/EntitySystems/AccentWearerNameClothingSystem.cs @@ -0,0 +1,39 @@ +using Content.Server.Speech.Components; +using Content.Shared.Clothing; +using Content.Shared.Inventory; +using Content.Shared.NameModifier.EntitySystems; + +namespace Content.Server.Speech.EntitySystems; + +/// +public sealed class AccentWearerNameClothingSystem : EntitySystem +{ + [Dependency] private readonly NameModifierSystem _nameMod = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent>(OnRefreshNameModifiers); + } + + private void OnGotEquipped(Entity ent, ref ClothingGotEquippedEvent args) + { + _nameMod.RefreshNameModifiers(args.Wearer); + } + + private void OnGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) + { + _nameMod.RefreshNameModifiers(args.Wearer); + } + + private void OnRefreshNameModifiers(Entity ent, ref InventoryRelayedEvent args) + { + var ev = new AccentGetEvent(ent, args.Args.BaseName); + RaiseLocalEvent(ent, ev); + // Use a negative priority since we're going to bulldoze any earlier changes + args.Args.AddModifier("comp-accent-wearer-name-clothing-format", -1, ("accentedName", ev.Message)); + } +} diff --git a/Content.Server/Station/Components/StationRandomTransformComponent.cs b/Content.Server/Station/Components/StationRandomTransformComponent.cs deleted file mode 100644 index ea0fc5f2696b11..00000000000000 --- a/Content.Server/Station/Components/StationRandomTransformComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Server.Station.Systems; - -namespace Content.Server.Station.Components; - -/// -/// Stores station parameters that can be randomized by the roundstart -/// -[RegisterComponent, Access(typeof(StationSystem))] -public sealed partial class StationRandomTransformComponent : Component -{ - [DataField] - public float? MaxStationOffset = 100.0f; - - [DataField] - public bool EnableStationRotation = true; -} diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 88e419ae39af0c..84e44b6469cdcd 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -1,10 +1,9 @@ using System.Linq; -using System.Numerics; using Content.Server.Chat.Systems; using Content.Server.GameTicking; using Content.Server.Station.Components; using Content.Server.Station.Events; -using Content.Shared.Fax; +using Content.Shared.CCVar; using Content.Shared.Station; using JetBrains.Annotations; using Robust.Server.GameObjects; @@ -28,10 +27,12 @@ namespace Content.Server.Station.Systems; [PublicAPI] public sealed class StationSystem : EntitySystem { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MapSystem _map = default!; @@ -282,51 +283,11 @@ public EntityUid InitializeNewStation(StationConfig stationConfig, IEnumerable(station); name ??= MetaData(station).EntityName; - var entry = gridIds ?? Array.Empty(); - - foreach (var grid in entry) + foreach (var grid in gridIds ?? Array.Empty()) { AddGridToStation(station, grid, null, data, name); } - if (TryComp(station, out var random)) - { - Angle? rotation = null; - Vector2? offset = null; - - if (random.MaxStationOffset != null) - offset = _random.NextVector2(-random.MaxStationOffset.Value, random.MaxStationOffset.Value); - - if (random.EnableStationRotation) - rotation = _random.NextAngle(); - - foreach (var grid in entry) - { - //planetary maps give an error when trying to change from position or rotation. - //This is still the case, but it will be irrelevant after the https://github.com/space-wizards/space-station-14/pull/26510 - if (rotation != null && offset != null) - { - var pos = _transform.GetWorldPosition(grid); - _transform.SetWorldPositionRotation(grid, pos + offset.Value, rotation.Value); - continue; - } - if (rotation != null) - { - _transform.SetWorldRotation(grid, rotation.Value); - continue; - } - if (offset != null) - { - var pos = _transform.GetWorldPosition(grid); - _transform.SetWorldPosition(grid, pos + offset.Value); - continue; - } - } - } - - if (LifeStage(station) < EntityLifeStage.MapInitialized) - throw new Exception($"Station must be man-initialized"); - var ev = new StationPostInitEvent((station, data)); RaiseLocalEvent(station, ref ev, true); diff --git a/Content.Server/StationEvents/Events/MeteorSwarmSystem.cs b/Content.Server/StationEvents/Events/MeteorSwarmSystem.cs index e085a2e159e1a0..3f51834e3a6819 100644 --- a/Content.Server/StationEvents/Events/MeteorSwarmSystem.cs +++ b/Content.Server/StationEvents/Events/MeteorSwarmSystem.cs @@ -29,7 +29,7 @@ protected override void Added(EntityUid uid, MeteorSwarmComponent component, Gam component.WaveCounter = component.Waves.Next(RobustRandom); if (component.Announcement is { } locId) - _chat.DispatchGlobalAnnouncement(Loc.GetString(locId), playSound: false, colorOverride: Color.Yellow); + _chat.DispatchGlobalAnnouncement(Loc.GetString(locId), playSound: false, colorOverride: Color.Gold); _audio.PlayGlobal(component.AnnouncementSound, Filter.Broadcast(), true); } @@ -66,7 +66,14 @@ protected override void ActiveTick(EntityUid uid, MeteorSwarmComponent component : new Random(uid.Id).NextAngle(); var offset = angle.RotateVec(new Vector2((maximumDistance - minimumDistance) * RobustRandom.NextFloat() + minimumDistance, 0)); - var subOffset = RobustRandom.NextAngle().RotateVec(new Vector2( (playableArea.TopRight - playableArea.Center).Length() / 2 * RobustRandom.NextFloat(), 0)); + + // the line at which spawns occur is perpendicular to the offset. + // This means the meteors are less likely to bunch up and hit the same thing. + var subOffsetAngle = RobustRandom.Prob(0.5f) + ? angle + Math.PI / 2 + : angle - Math.PI / 2; + var subOffset = subOffsetAngle.RotateVec(new Vector2( (playableArea.TopRight - playableArea.Center).Length() / 3 * RobustRandom.NextFloat(), 0)); + var spawnPosition = new MapCoordinates(center + offset + subOffset, mapId); var meteor = Spawn(spawnProto, spawnPosition); var physics = Comp(meteor); diff --git a/Content.Server/Weather/WeatherSystem.cs b/Content.Server/Weather/WeatherSystem.cs index bacdce2b347c57..c3af49944d99c5 100644 --- a/Content.Server/Weather/WeatherSystem.cs +++ b/Content.Server/Weather/WeatherSystem.cs @@ -1,17 +1,16 @@ -using System.Linq; using Content.Server.Administration; using Content.Shared.Administration; using Content.Shared.Weather; using Robust.Shared.Console; using Robust.Shared.GameStates; using Robust.Shared.Map; -using Robust.Shared.Map.Components; namespace Content.Server.Weather; public sealed class WeatherSystem : SharedWeatherSystem { [Dependency] private readonly IConsoleHost _console = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; public override void Initialize() { @@ -30,7 +29,7 @@ private void OnWeatherGetState(EntityUid uid, WeatherComponent component, ref Co } [AdminCommand(AdminFlags.Fun)] - private void WeatherTwo(IConsoleShell shell, string argstr, string[] args) + private void WeatherTwo(IConsoleShell shell, string argStr, string[] args) { if (args.Length < 2) { @@ -60,7 +59,8 @@ private void WeatherTwo(IConsoleShell shell, string argstr, string[] args) var maxTime = TimeSpan.MaxValue; // If it's already running then just fade out with how much time we're into the weather. - if (TryComp(MapManager.GetMapEntityId(mapId), out var weatherComp) && + if (_mapSystem.TryGetMap(mapId, out var mapUid) && + TryComp(mapUid, out var weatherComp) && weatherComp.Weather.TryGetValue(args[1], out var existing)) { maxTime = curTime - existing.StartTime; diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 0a745d5fc7da4a..a8952009e66eac 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -222,9 +222,7 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) _faction.AddFaction(target, "Zombie"); //gives it the funny "Zombie ___" name. - var meta = MetaData(target); - zombiecomp.BeforeZombifiedEntityName = meta.EntityName; - _metaData.SetEntityName(target, Loc.GetString("zombie-name-prefix", ("target", meta.EntityName)), meta); + _nameMod.RefreshNameModifiers(target); _identity.QueueIdentityUpdate(target); diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 552fd2781c0929..371c6f1222aeaa 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.NameModifier.EntitySystems; using Content.Shared.Popups; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Zombies; @@ -34,9 +35,9 @@ public sealed partial class ZombieSystem : SharedZombieSystem [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly AutoEmoteSystem _autoEmote = default!; [Dependency] private readonly EmoteOnDamageSystem _emoteOnDamage = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly NameModifierSystem _nameMod = default!; public const SlotFlags ProtectiveSlots = SlotFlags.FEET | @@ -281,7 +282,7 @@ public bool UnZombify(EntityUid source, EntityUid target, ZombieComponent? zombi _humanoidAppearance.SetSkinColor(target, zombiecomp.BeforeZombifiedSkinColor, false); _bloodstream.ChangeBloodReagent(target, zombiecomp.BeforeZombifiedBloodReagent); - _metaData.SetEntityName(target, zombiecomp.BeforeZombifiedEntityName); + _nameMod.RefreshNameModifiers(target); return true; } diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index f1c77fda43b243..005c7dc78ec75e 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -70,7 +70,7 @@ public bool CanInteract(EntityUid user, EntityUid? target) return false; var ev = new InteractionAttemptEvent(user, target); - RaiseLocalEvent(user, ev); + RaiseLocalEvent(user, ref ev); if (ev.Cancelled) return false; @@ -79,7 +79,7 @@ public bool CanInteract(EntityUid user, EntityUid? target) return true; var targetEv = new GettingInteractedWithAttemptEvent(user, target); - RaiseLocalEvent(target.Value, targetEv); + RaiseLocalEvent(target.Value, ref targetEv); return !targetEv.Cancelled; } @@ -110,7 +110,7 @@ public bool CanUseHeldEntity(EntityUid user, EntityUid used) public bool CanConsciouslyPerformAction(EntityUid user) { var ev = new ConsciousAttemptEvent(user); - RaiseLocalEvent(user, ev); + RaiseLocalEvent(user, ref ev); return !ev.Cancelled; } diff --git a/Content.Shared/Administration/SharedAdminFrozenSystem.cs b/Content.Shared/Administration/SharedAdminFrozenSystem.cs index 2fa22e00052a15..259df2bdf2ac14 100644 --- a/Content.Shared/Administration/SharedAdminFrozenSystem.cs +++ b/Content.Shared/Administration/SharedAdminFrozenSystem.cs @@ -11,6 +11,7 @@ namespace Content.Shared.Administration; +// TODO deduplicate with BlockMovementComponent public abstract class SharedAdminFrozenSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _blocker = default!; @@ -23,7 +24,7 @@ public override void Initialize() SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnInteractAttempt); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(UpdateCanMove); SubscribeLocalEvent(OnUpdateCanMove); @@ -34,6 +35,11 @@ public override void Initialize() SubscribeLocalEvent(OnSpeakAttempt); } + private void OnInteractAttempt(Entity ent, ref InteractionAttemptEvent args) + { + args.Cancelled = true; + } + private void OnSpeakAttempt(EntityUid uid, AdminFrozenComponent component, SpeakAttemptEvent args) { if (!component.Muted) diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index aac3e7bb18ccab..6008e301cfeef9 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -153,7 +153,7 @@ private void OnSlip(Entity ent, ref SlipAttemptEvent args) private void OnConsciousAttempt(Entity ent, ref ConsciousAttemptEvent args) { - args.Cancel(); + args.Cancelled = true; } private void OnExamined(Entity ent, ref ExaminedEvent args) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 3410dc3395f31a..0a4155c512b36c 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -432,6 +432,14 @@ public static readonly CVarDef public static readonly CVarDef RoundEndSoundCollection = CVarDef.Create("game.round_end_sound_collection", "RoundEnd", CVar.SERVERONLY); + /// + /// Whether or not to add every player as a global override to PVS at round end. + /// This will allow all players to see their clothing in the round screen player list screen, + /// but may cause lag during round end with very high player counts. + /// + public static readonly CVarDef RoundEndPVSOverrides = + CVarDef.Create("game.round_end_pvs_overrides", true, CVar.SERVERONLY); + /* * Discord */ @@ -1976,6 +1984,12 @@ public static readonly CVarDef public static readonly CVarDef GhostRoleTime = CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED | CVar.SERVER); + /// + /// Whether or not to kill the player's mob on ghosting, when it is in a critical health state. + /// + public static readonly CVarDef GhostKillCrit = + CVarDef.Create("ghost.kill_crit", true, CVar.REPLICATED | CVar.SERVER); + /* * Fire alarm */ diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index 6d7226e767daf7..846a78b8680c34 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -16,9 +16,14 @@ namespace Content.Shared.Clothing.Components; public sealed partial class ClothingComponent : Component { [DataField("clothingVisuals")] - [Access(typeof(ClothingSystem), typeof(InventorySystem), Other = AccessPermissions.ReadExecute)] // TODO remove execute permissions. public Dictionary> ClothingVisuals = new(); + /// + /// The name of the layer in the user that this piece of clothing will map to + /// + [DataField] + public string? MappedLayer; + [ViewVariables(VVAccess.ReadWrite)] [DataField("quickEquip")] public bool QuickEquip = true; @@ -121,4 +126,3 @@ public ClothingUnequipDoAfterEvent(string slot) public override DoAfterEvent Clone() => this; } - diff --git a/Content.Shared/Clothing/Components/FactionClothingComponent.cs b/Content.Shared/Clothing/Components/FactionClothingComponent.cs new file mode 100644 index 00000000000000..d49ee4f81d631d --- /dev/null +++ b/Content.Shared/Clothing/Components/FactionClothingComponent.cs @@ -0,0 +1,27 @@ +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.NPC.Prototypes; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Components; + +/// +/// When equipped, adds the wearer to a faction. +/// When removed, removes the wearer from a faction. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(FactionClothingSystem))] +public sealed partial class FactionClothingComponent : Component +{ + /// + /// Faction to add and remove. + /// + [DataField(required: true)] + public ProtoId Faction = string.Empty; + + /// + /// If true, the wearer was already part of the faction. + /// This prevents wrongly removing them after removing the item. + /// + [DataField] + public bool AlreadyMember; +} diff --git a/Content.Shared/Clothing/Components/PilotedByClothingComponent.cs b/Content.Shared/Clothing/Components/PilotedByClothingComponent.cs new file mode 100644 index 00000000000000..cd4d0d62030538 --- /dev/null +++ b/Content.Shared/Clothing/Components/PilotedByClothingComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Components; + +/// +/// Disables client-side physics prediction for this entity. +/// Without this, movement with is very rubberbandy. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class PilotedByClothingComponent : Component +{ +} diff --git a/Content.Shared/Clothing/Components/PilotedClothingComponent.cs b/Content.Shared/Clothing/Components/PilotedClothingComponent.cs new file mode 100644 index 00000000000000..a349e4e485ee13 --- /dev/null +++ b/Content.Shared/Clothing/Components/PilotedClothingComponent.cs @@ -0,0 +1,38 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Components; + +/// +/// Allows an entity stored in this clothing item to pass inputs to the entity wearing it. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class PilotedClothingComponent : Component +{ + /// + /// Whitelist for entities that are allowed to act as pilots when inside this entity. + /// + [DataField] + public EntityWhitelist? PilotWhitelist; + + /// + /// Should movement input be relayed from the pilot to the target? + /// + [DataField] + public bool RelayMovement = true; + + + /// + /// Reference to the entity contained in the clothing and acting as pilot. + /// + [DataField, AutoNetworkedField] + public EntityUid? Pilot; + + /// + /// Reference to the entity wearing this clothing who will be controlled by the pilot. + /// + [DataField, AutoNetworkedField] + public EntityUid? Wearer; + + public bool IsActive => Pilot != null && Wearer != null; +} diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index e8bfb789613e1d..bdcb2c8204267e 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -92,26 +92,29 @@ private void ToggleVisualLayers(EntityUid equipee, HashSet InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee); bool shouldLayerShow = true; - while (enumerator.NextItem(out EntityUid item)) + while (enumerator.NextItem(out EntityUid item, out SlotDefinition? slot)) { if (TryComp(item, out HideLayerClothingComponent? comp)) { if (comp.Slots.Contains(layer)) { - //Checks for mask toggling. TODO: Make a generic system for this - if (comp.HideOnToggle && TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) + if (TryComp(item, out ClothingComponent? clothing) && clothing.Slots == slot.SlotFlags) { - if (clothing.EquippedPrefix != mask.EquippedPrefix) + //Checks for mask toggling. TODO: Make a generic system for this + if (comp.HideOnToggle && TryComp(item, out MaskComponent? mask)) + { + if (clothing.EquippedPrefix != mask.EquippedPrefix) + { + shouldLayerShow = false; + break; + } + } + else { shouldLayerShow = false; break; } } - else - { - shouldLayerShow = false; - break; - } } } } @@ -238,9 +241,6 @@ public void CopyVisuals(EntityUid uid, ClothingComponent otherClothing, Clothing public void SetLayerColor(ClothingComponent clothing, string slot, string mapKey, Color? color) { - if (clothing.ClothingVisuals == null) - return; - foreach (var layer in clothing.ClothingVisuals[slot]) { if (layer.MapKeys == null) @@ -254,9 +254,6 @@ public void SetLayerColor(ClothingComponent clothing, string slot, string mapKey } public void SetLayerState(ClothingComponent clothing, string slot, string mapKey, string state) { - if (clothing.ClothingVisuals == null) - return; - foreach (var layer in clothing.ClothingVisuals[slot]) { if (layer.MapKeys == null) diff --git a/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs new file mode 100644 index 00000000000000..76b7b9aa66d806 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory.Events; +using Content.Shared.NPC.Components; +using Content.Shared.NPC.Systems; + +namespace Content.Shared.Clothing.EntitySystems; + +/// +/// Handles faction adding and removal. +/// +public sealed class FactionClothingSystem : EntitySystem +{ + [Dependency] private readonly NpcFactionSystem _faction = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + } + + private void OnEquipped(Entity ent, ref GotEquippedEvent args) + { + TryComp(args.Equipee, out var factionComp); + var faction = (args.Equipee, factionComp); + ent.Comp.AlreadyMember = _faction.IsMember(faction, ent.Comp.Faction); + + _faction.AddFaction(faction, ent.Comp.Faction); + } + + private void OnUnequipped(Entity ent, ref GotUnequippedEvent args) + { + if (ent.Comp.AlreadyMember) + { + ent.Comp.AlreadyMember = false; + return; + } + + _faction.RemoveFaction(args.Equipee, ent.Comp.Faction); + } +} diff --git a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs index 27ea1680188731..be55588ddd57e8 100644 --- a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs @@ -33,32 +33,32 @@ private void OnFoldAttempt(Entity ent, ref FoldAttemp private void OnFolded(Entity ent, ref FoldedEvent args) { - if (TryComp(ent.Owner, out var clothingComp) && - TryComp(ent.Owner, out var itemComp)) + if (!TryComp(ent.Owner, out var clothingComp) || + !TryComp(ent.Owner, out var itemComp)) + return; + + if (args.IsFolded) { - if (args.IsFolded) - { - if (ent.Comp.FoldedSlots.HasValue) - _clothingSystem.SetSlots(ent.Owner, ent.Comp.FoldedSlots.Value, clothingComp); + if (ent.Comp.FoldedSlots.HasValue) + _clothingSystem.SetSlots(ent.Owner, ent.Comp.FoldedSlots.Value, clothingComp); - if (ent.Comp.FoldedEquippedPrefix != null) - _clothingSystem.SetEquippedPrefix(ent.Owner, ent.Comp.FoldedEquippedPrefix, clothingComp); + if (ent.Comp.FoldedEquippedPrefix != null) + _clothingSystem.SetEquippedPrefix(ent.Owner, ent.Comp.FoldedEquippedPrefix, clothingComp); - if (ent.Comp.FoldedHeldPrefix != null) - _itemSystem.SetHeldPrefix(ent.Owner, ent.Comp.FoldedHeldPrefix, false, itemComp); - } - else - { - if (ent.Comp.UnfoldedSlots.HasValue) - _clothingSystem.SetSlots(ent.Owner, ent.Comp.UnfoldedSlots.Value, clothingComp); + if (ent.Comp.FoldedHeldPrefix != null) + _itemSystem.SetHeldPrefix(ent.Owner, ent.Comp.FoldedHeldPrefix, false, itemComp); + } + else + { + if (ent.Comp.UnfoldedSlots.HasValue) + _clothingSystem.SetSlots(ent.Owner, ent.Comp.UnfoldedSlots.Value, clothingComp); - if (ent.Comp.FoldedEquippedPrefix != null) - _clothingSystem.SetEquippedPrefix(ent.Owner, null, clothingComp); + if (ent.Comp.FoldedEquippedPrefix != null) + _clothingSystem.SetEquippedPrefix(ent.Owner, null, clothingComp); - if (ent.Comp.FoldedHeldPrefix != null) - _itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp); + if (ent.Comp.FoldedHeldPrefix != null) + _itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp); - } } } } diff --git a/Content.Shared/Clothing/EntitySystems/PilotedClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/PilotedClothingSystem.cs new file mode 100644 index 00000000000000..49df7aee9430f8 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/PilotedClothingSystem.cs @@ -0,0 +1,169 @@ +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory.Events; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Storage; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; +using Robust.Shared.Timing; + +namespace Content.Shared.Clothing.EntitySystems; + +public sealed partial class PilotedClothingSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedMoverController _moverController = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEntInserted); + SubscribeLocalEvent(OnEntRemoved); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + } + + private void OnEntInserted(Entity entity, ref EntInsertedIntoContainerMessage args) + { + // Make sure the entity was actually inserted into storage and not a different container. + if (!TryComp(entity, out StorageComponent? storage) || args.Container != storage.Container) + return; + + // Check potential pilot against whitelist, if one exists. + if (_whitelist.IsWhitelistFail(entity.Comp.PilotWhitelist, args.Entity)) + return; + + entity.Comp.Pilot = args.Entity; + Dirty(entity); + + // Attempt to setup control link, if Pilot and Wearer are both present. + StartPiloting(entity); + } + + private void OnEntRemoved(Entity entity, ref EntRemovedFromContainerMessage args) + { + // Make sure the removed entity is actually the pilot. + if (args.Entity != entity.Comp.Pilot) + return; + + StopPiloting(entity); + entity.Comp.Pilot = null; + Dirty(entity); + } + + private void OnEquipped(Entity entity, ref GotEquippedEvent args) + { + if (!TryComp(entity, out ClothingComponent? clothing)) + return; + + // Make sure the clothing item was equipped to the right slot, and not just held in a hand. + var isCorrectSlot = (clothing.Slots & args.SlotFlags) != Inventory.SlotFlags.NONE; + if (!isCorrectSlot) + return; + + entity.Comp.Wearer = args.Equipee; + Dirty(entity); + + // Attempt to setup control link, if Pilot and Wearer are both present. + StartPiloting(entity); + } + + private void OnUnequipped(Entity entity, ref GotUnequippedEvent args) + { + StopPiloting(entity); + + entity.Comp.Wearer = null; + Dirty(entity); + } + + /// + /// Attempts to establish movement/interaction relay connection(s) from Pilot to Wearer. + /// If either is missing, fails and returns false. + /// + private bool StartPiloting(Entity entity) + { + // Make sure we have both a Pilot and a Wearer + if (entity.Comp.Pilot == null || entity.Comp.Wearer == null) + return false; + + if (!_timing.IsFirstTimePredicted) + return false; + + var pilotEnt = entity.Comp.Pilot.Value; + var wearerEnt = entity.Comp.Wearer.Value; + + // Add component to block prediction of wearer + EnsureComp(wearerEnt); + + if (entity.Comp.RelayMovement) + { + // Establish movement input relay. + _moverController.SetRelay(pilotEnt, wearerEnt); + } + + var pilotEv = new StartedPilotingClothingEvent(entity, wearerEnt); + RaiseLocalEvent(pilotEnt, ref pilotEv); + + var wearerEv = new StartingBeingPilotedByClothing(entity, pilotEnt); + RaiseLocalEvent(wearerEnt, ref wearerEv); + + return true; + } + + /// + /// Removes components from the Pilot and Wearer to stop the control relay. + /// Returns false if a connection does not already exist. + /// + private bool StopPiloting(Entity entity) + { + if (entity.Comp.Pilot == null || entity.Comp.Wearer == null) + return false; + + // Clean up components on the Pilot + var pilotEnt = entity.Comp.Pilot.Value; + RemCompDeferred(pilotEnt); + + // Clean up components on the Wearer + var wearerEnt = entity.Comp.Wearer.Value; + RemCompDeferred(wearerEnt); + RemCompDeferred(wearerEnt); + + // Raise an event on the Pilot + var pilotEv = new StoppedPilotingClothingEvent(entity, wearerEnt); + RaiseLocalEvent(pilotEnt, ref pilotEv); + + // Raise an event on the Wearer + var wearerEv = new StoppedBeingPilotedByClothing(entity, pilotEnt); + RaiseLocalEvent(wearerEnt, ref wearerEv); + + return true; + } +} + +/// +/// Raised on the Pilot when they gain control of the Wearer. +/// +[ByRefEvent] +public record struct StartedPilotingClothingEvent(EntityUid Clothing, EntityUid Wearer); + +/// +/// Raised on the Pilot when they lose control of the Wearer, +/// due to the Pilot exiting the clothing or the clothing being unequipped by the Wearer. +/// +[ByRefEvent] +public record struct StoppedPilotingClothingEvent(EntityUid Clothing, EntityUid Wearer); + +/// +/// Raised on the Wearer when the Pilot gains control of them. +/// +[ByRefEvent] +public record struct StartingBeingPilotedByClothing(EntityUid Clothing, EntityUid Pilot); + +/// +/// Raised on the Wearer when the Pilot loses control of them +/// due to the Pilot exiting the clothing or the clothing being unequipped by the Wearer. +/// +[ByRefEvent] +public record struct StoppedBeingPilotedByClothing(EntityUid Clothing, EntityUid Pilot); diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index 0d074ff38b69a2..b3fb607a38be4c 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -20,4 +20,10 @@ public sealed partial class MagbootsComponent : Component [DataField] public ProtoId MagbootsAlert = "Magboots"; + + /// + /// If true, the user must be standing on a grid or planet map to experience the weightlessness-canceling effect + /// + [DataField] + public bool RequiresGrid = true; } diff --git a/Content.Shared/Clothing/SharedMagbootsSystem.cs b/Content.Shared/Clothing/SharedMagbootsSystem.cs index bb3b05074f2f3f..68145936152e40 100644 --- a/Content.Shared/Clothing/SharedMagbootsSystem.cs +++ b/Content.Shared/Clothing/SharedMagbootsSystem.cs @@ -17,6 +17,7 @@ public sealed class SharedMagbootsSystem : EntitySystem [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; [Dependency] private readonly ClothingSystem _clothing = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly SharedActionsSystem _sharedActions = default!; [Dependency] private readonly SharedActionsSystem _actionContainer = default!; @@ -147,6 +148,10 @@ private void OnIsWeightless(Entity ent, ref InventoryRelayedE if (!ent.Comp.On) return; + // do not cancel weightlessness if the person is in off-grid. + if (ent.Comp.RequiresGrid && !_gravity.EntityOnGravitySupportingGridOrMap(ent.Owner)) + return; + args.Args.IsWeightless = false; args.Args.Handled = true; } diff --git a/Content.Shared/Conveyor/ActiveConveyorComponent.cs b/Content.Shared/Conveyor/ActiveConveyorComponent.cs deleted file mode 100644 index 1c94be97642ea5..00000000000000 --- a/Content.Shared/Conveyor/ActiveConveyorComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Conveyor; - -/// -/// Used to track which conveyors are relevant in case there's a lot of them. -/// -[RegisterComponent] -public sealed partial class ActiveConveyorComponent : Component -{ - -} diff --git a/Content.Shared/Conveyor/ConveyedComponent.cs b/Content.Shared/Conveyor/ConveyedComponent.cs new file mode 100644 index 00000000000000..25189d2182a591 --- /dev/null +++ b/Content.Shared/Conveyor/ConveyedComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Conveyor; + +/// +/// Indicates this entity is currently being conveyed. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ConveyedComponent : Component +{ + [ViewVariables, AutoNetworkedField] + public List Colliding = new(); +} diff --git a/Content.Shared/Conveyor/ConveyorComponent.cs b/Content.Shared/Conveyor/ConveyorComponent.cs index 6c95d68c9824c8..797fefa5855733 100644 --- a/Content.Shared/Conveyor/ConveyorComponent.cs +++ b/Content.Shared/Conveyor/ConveyorComponent.cs @@ -39,9 +39,6 @@ public sealed partial class ConveyorComponent : Component [DataField] public ProtoId OffPort = "Off"; - - [ViewVariables] - public readonly HashSet Intersecting = new(); } [Serializable, NetSerializable] diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 0e506f938e65af..be169deb0e5be7 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -79,7 +79,7 @@ public override void Initialize() SubscribeLocalEvent(CheckAct); SubscribeLocalEvent(CheckAct); SubscribeLocalEvent(CheckAct); - SubscribeLocalEvent(CheckAct); + SubscribeLocalEvent(CheckInteract); SubscribeLocalEvent(OnCuffAfterInteract); SubscribeLocalEvent(OnCuffMeleeHit); @@ -87,6 +87,12 @@ public override void Initialize() SubscribeLocalEvent(OnCuffVirtualItemDeleted); } + private void CheckInteract(Entity ent, ref InteractionAttemptEvent args) + { + if (!ent.Comp.CanStillInteract) + args.Cancelled = true; + } + private void OnUncuffAttempt(ref UncuffAttemptEvent args) { if (args.Cancelled) diff --git a/Content.Shared/GameTicking/Components/GameRuleComponent.cs b/Content.Shared/GameTicking/Components/GameRuleComponent.cs index 4e93c2b0038202..87a5822d4747de 100644 --- a/Content.Shared/GameTicking/Components/GameRuleComponent.cs +++ b/Content.Shared/GameTicking/Components/GameRuleComponent.cs @@ -23,6 +23,13 @@ public sealed partial class GameRuleComponent : Component [DataField] public int MinPlayers; + /// + /// If true, this rule not having enough players will cancel the preset selection. + /// If false, it will simply not run silently. + /// + [DataField] + public bool CancelPresetOnTooFewPlayers = true; + /// /// A delay for when the rule the is started and when the starting logic actually runs. /// diff --git a/Content.Shared/Ghost/SharedGhostSystem.cs b/Content.Shared/Ghost/SharedGhostSystem.cs index ad8b86f7ddab0b..6e62bee1310175 100644 --- a/Content.Shared/Ghost/SharedGhostSystem.cs +++ b/Content.Shared/Ghost/SharedGhostSystem.cs @@ -19,12 +19,18 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnAttempt); - SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttemptInteract); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); } + private void OnAttemptInteract(Entity ent, ref InteractionAttemptEvent args) + { + if (!ent.Comp.CanGhostInteract) + args.Cancelled = true; + } + private void OnAttempt(EntityUid uid, GhostComponent component, CancellableEntityEventArgs args) { if (!component.CanGhostInteract) diff --git a/Content.Shared/Glue/GluedComponent.cs b/Content.Shared/Glue/GluedComponent.cs index fd7a52fdb139dc..4b46f0aa5b0ef4 100644 --- a/Content.Shared/Glue/GluedComponent.cs +++ b/Content.Shared/Glue/GluedComponent.cs @@ -6,11 +6,6 @@ namespace Content.Shared.Glue; [Access(typeof(SharedGlueSystem))] public sealed partial class GluedComponent : Component { - /// - /// Reverts name to before prefix event (essentially removes prefix). - /// - [DataField("beforeGluedEntityName"), ViewVariables(VVAccess.ReadOnly)] - public string BeforeGluedEntityName = string.Empty; [DataField("until", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] public TimeSpan Until; diff --git a/Content.Shared/Gravity/SharedGravitySystem.cs b/Content.Shared/Gravity/SharedGravitySystem.cs index 42a6d5d1f8024e..2f532d0f1d3414 100644 --- a/Content.Shared/Gravity/SharedGravitySystem.cs +++ b/Content.Shared/Gravity/SharedGravitySystem.cs @@ -17,6 +17,8 @@ public abstract partial class SharedGravitySystem : EntitySystem [ValidatePrototypeId] public const string WeightlessAlert = "Weightless"; + private EntityQuery _gravityQuery; + public bool IsWeightless(EntityUid uid, PhysicsComponent? body = null, TransformComponent? xform = null) { Resolve(uid, ref body, false); @@ -36,15 +38,35 @@ public bool IsWeightless(EntityUid uid, PhysicsComponent? body = null, Transform return true; // If grid / map has gravity - if (TryComp(xform.GridUid, out var gravity) && gravity.Enabled || - TryComp(xform.MapUid, out var mapGravity) && mapGravity.Enabled) - { + if (EntityGridOrMapHaveGravity((uid, xform))) return false; - } return true; } + /// + /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. + /// + public bool EntityOnGravitySupportingGridOrMap(Entity entity) + { + entity.Comp ??= Transform(entity); + + return _gravityQuery.HasComp(entity.Comp.GridUid) || + _gravityQuery.HasComp(entity.Comp.MapUid); + } + + + /// + /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. + /// + public bool EntityGridOrMapHaveGravity(Entity entity) + { + entity.Comp ??= Transform(entity); + + return _gravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || + _gravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; + } + public override void Initialize() { base.Initialize(); @@ -54,6 +76,8 @@ public override void Initialize() SubscribeLocalEvent(OnGravityChange); SubscribeLocalEvent(OnGetState); SubscribeLocalEvent(OnHandleState); + + _gravityQuery = GetEntityQuery(); } public override void Update(float frameTime) diff --git a/Content.Shared/Interaction/Events/InteractionAttemptEvent.cs b/Content.Shared/Interaction/Events/InteractionAttemptEvent.cs index 0024811c369e53..a04c0536354f0d 100644 --- a/Content.Shared/Interaction/Events/InteractionAttemptEvent.cs +++ b/Content.Shared/Interaction/Events/InteractionAttemptEvent.cs @@ -3,39 +3,33 @@ /// /// Event raised directed at a user to see if they can perform a generic interaction. /// - public sealed class InteractionAttemptEvent : CancellableEntityEventArgs + [ByRefEvent] + public struct InteractionAttemptEvent(EntityUid uid, EntityUid? target) { - public InteractionAttemptEvent(EntityUid uid, EntityUid? target) - { - Uid = uid; - Target = target; - } - - public EntityUid Uid { get; } - public EntityUid? Target { get; } + public bool Cancelled; + public readonly EntityUid Uid = uid; + public readonly EntityUid? Target = target; } /// /// Raised to determine whether an entity is conscious to perform an action. /// - public sealed class ConsciousAttemptEvent(EntityUid Uid) : CancellableEntityEventArgs + [ByRefEvent] + public struct ConsciousAttemptEvent(EntityUid uid) { - public EntityUid Uid { get; } = Uid; + public bool Cancelled; + public readonly EntityUid Uid = uid; } /// /// Event raised directed at the target entity of an interaction to see if the user is allowed to perform some /// generic interaction. /// - public sealed class GettingInteractedWithAttemptEvent : CancellableEntityEventArgs + [ByRefEvent] + public struct GettingInteractedWithAttemptEvent(EntityUid uid, EntityUid? target) { - public GettingInteractedWithAttemptEvent(EntityUid uid, EntityUid? target) - { - Uid = uid; - Target = target; - } - - public EntityUid Uid { get; } - public EntityUid? Target { get; } + public bool Cancelled; + public readonly EntityUid Uid = uid; + public readonly EntityUid? Target = target; } } diff --git a/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs b/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs index 9a84789adfca12..a682bf981597c6 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs @@ -6,6 +6,7 @@ namespace Content.Shared.Interaction; +// TODO deduplicate with AdminFrozenComponent /// /// Handles , which prevents various /// kinds of movement and interactions when attached to an entity. @@ -16,7 +17,7 @@ public void InitializeBlocking() { SubscribeLocalEvent(OnMoveAttempt); SubscribeLocalEvent(CancelEvent); - SubscribeLocalEvent(CancelEvent); + SubscribeLocalEvent(CancelInteractEvent); SubscribeLocalEvent(CancelEvent); SubscribeLocalEvent(CancelEvent); SubscribeLocalEvent(CancelEvent); @@ -25,6 +26,11 @@ public void InitializeBlocking() SubscribeLocalEvent(OnBlockingShutdown); } + private void CancelInteractEvent(Entity ent, ref InteractionAttemptEvent args) + { + args.Cancelled = true; + } + private void OnMoveAttempt(EntityUid uid, BlockMovementComponent component, UpdateCanMoveEvent args) { if (component.LifeStage > ComponentLifeStage.Running) diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index ea368884e0506a..fa5e660b2a70a9 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -7,6 +7,8 @@ using Content.Shared.IdentityManagement.Components; using Content.Shared.Inventory.Events; using Content.Shared.Movement.Systems; +using Content.Shared.NameModifier.EntitySystems; +using Content.Shared.Starshine.Eye.NightVision.Systems; // NightVision using Content.Shared.Overlays; using Content.Shared.Radio; using Content.Shared.Slippery; @@ -28,6 +30,7 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); @@ -39,6 +42,10 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + // NightVision-Start + SubscribeLocalEvent(RelayInventoryEvent); + // NightVision-End + // ComponentActivatedClientSystems SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); diff --git a/Content.Shared/Labels/Components/LabelComponent.cs b/Content.Shared/Labels/Components/LabelComponent.cs index c0dccd348154e1..d57023c8ab1528 100644 --- a/Content.Shared/Labels/Components/LabelComponent.cs +++ b/Content.Shared/Labels/Components/LabelComponent.cs @@ -14,11 +14,4 @@ public sealed partial class LabelComponent : Component /// [DataField, AutoNetworkedField] public string? CurrentLabel { get; set; } - - /// - /// The original name of the entity - /// Used for reverting the modified entity name when the label is removed - /// - [DataField, AutoNetworkedField] - public string? OriginalName { get; set; } } diff --git a/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs b/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs index 1189bb46d043ba..f1998e524d9096 100644 --- a/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs +++ b/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Examine; using Content.Shared.Labels.Components; +using Content.Shared.NameModifier.EntitySystems; using Robust.Shared.Utility; namespace Content.Shared.Labels.EntitySystems; @@ -11,6 +12,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnRefreshNameModifiers); } public virtual void Label(EntityUid uid, string? text, MetaDataComponent? metadata = null, LabelComponent? label = null){} @@ -27,4 +29,10 @@ private void OnExamine(EntityUid uid, LabelComponent? label, ExaminedEvent args) message.AddText(Loc.GetString("hand-labeler-has-label", ("label", label.CurrentLabel))); args.PushMessage(message); } + + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) + { + if (!string.IsNullOrEmpty(entity.Comp.CurrentLabel)) + args.AddModifier("comp-label-format", extraArgs: ("label", entity.Comp.CurrentLabel)); + } } diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 6d54c360e698bb..c1b40c60f2bb6d 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -1,4 +1,4 @@ -using System.Globalization; +using System.Globalization; using System.Linq; using System.Text.RegularExpressions; using Robust.Shared.Utility; @@ -124,6 +124,20 @@ public static string FormatList(List list) }; } + /// + /// Formats a list as per english grammar rules, but uses or instead of and. + /// + public static string FormatListToOr(List list) + { + return list.Count switch + { + <= 0 => string.Empty, + 1 => list[0], + 2 => $"{list[0]} or {list[1]}", + _ => $"{string.Join(" or ", list)}" + }; + } + /// /// Formats a direction struct as a human-readable string. /// diff --git a/Content.Shared/Lube/LubedComponent.cs b/Content.Shared/Lube/LubedComponent.cs index fe1946ddb15424..9d032a077ecd8d 100644 --- a/Content.Shared/Lube/LubedComponent.cs +++ b/Content.Shared/Lube/LubedComponent.cs @@ -3,12 +3,6 @@ namespace Content.Shared.Lube; [RegisterComponent] public sealed partial class LubedComponent : Component { - /// - /// Reverts name to before prefix event (essentially removes prefix). - /// - [DataField("beforeLubedEntityName")] - public string BeforeLubedEntityName = string.Empty; - [DataField("slipsLeft"), ViewVariables(VVAccess.ReadWrite)] public int SlipsLeft; diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs b/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs index 2fa522dea59655..5928b3871ff151 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.StateMachine.cs @@ -16,7 +16,8 @@ public partial class MobStateSystem /// If the entity can be set to that MobState public bool HasState(EntityUid entity, MobState mobState, MobStateComponent? component = null) { - return Resolve(entity, ref component, false) && component.AllowedStates.Contains(mobState); + return _mobStateQuery.Resolve(entity, ref component, false) && + component.AllowedStates.Contains(mobState); } /// @@ -27,7 +28,7 @@ public bool HasState(EntityUid entity, MobState mobState, MobStateComponent? com /// Entity that caused the state update (if applicable) public void UpdateMobState(EntityUid entity, MobStateComponent? component = null, EntityUid? origin = null) { - if (!Resolve(entity, ref component)) + if (!_mobStateQuery.Resolve(entity, ref component)) return; var ev = new UpdateMobStateEvent {Target = entity, Component = component, Origin = origin}; @@ -46,7 +47,7 @@ public void UpdateMobState(EntityUid entity, MobStateComponent? component = null public void ChangeMobState(EntityUid entity, MobState mobState, MobStateComponent? component = null, EntityUid? origin = null) { - if (!Resolve(entity, ref component)) + if (!_mobStateQuery.Resolve(entity, ref component)) return; ChangeState(entity, component, mobState, origin: origin); diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs index 08b351e61e85e7..155cfede01578d 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs @@ -31,7 +31,7 @@ private void SubscribeEvents() SubscribeLocalEvent(CheckAct); SubscribeLocalEvent(CheckAct); SubscribeLocalEvent(CheckAct); - SubscribeLocalEvent(CheckAct); + SubscribeLocalEvent(CheckConcious); SubscribeLocalEvent(CheckAct); SubscribeLocalEvent(OnSpeakAttempt); SubscribeLocalEvent(OnEquipAttempt); @@ -48,6 +48,17 @@ private void SubscribeEvents() SubscribeLocalEvent(OnAttemptPacifiedAttack); } + private void CheckConcious(Entity ent, ref ConsciousAttemptEvent args) + { + switch (ent.Comp.CurrentState) + { + case MobState.Dead: + case MobState.Critical: + args.Cancelled = true; + break; + } + } + private void OnStateExitSubscribers(EntityUid target, MobStateComponent component, MobState state) { switch (state) diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.cs b/Content.Shared/Mobs/Systems/MobStateSystem.cs index a3886dd42e1856..323efa22428428 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.cs @@ -2,7 +2,6 @@ using Content.Shared.Administration.Logs; using Content.Shared.Mobs.Components; using Content.Shared.Standing; -using Robust.Shared.GameStates; using Robust.Shared.Physics.Systems; using Robust.Shared.Timing; @@ -20,9 +19,12 @@ public partial class MobStateSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; private ISawmill _sawmill = default!; + private EntityQuery _mobStateQuery; + public override void Initialize() { _sawmill = _logManager.GetSawmill("MobState"); + _mobStateQuery = GetEntityQuery(); base.Initialize(); SubscribeEvents(); } @@ -37,7 +39,7 @@ public override void Initialize() /// If the entity is alive public bool IsAlive(EntityUid target, MobStateComponent? component = null) { - if (!Resolve(target, ref component, false)) + if (!_mobStateQuery.Resolve(target, ref component, false)) return false; return component.CurrentState == MobState.Alive; } @@ -50,7 +52,7 @@ public bool IsAlive(EntityUid target, MobStateComponent? component = null) /// If the entity is Critical public bool IsCritical(EntityUid target, MobStateComponent? component = null) { - if (!Resolve(target, ref component, false)) + if (!_mobStateQuery.Resolve(target, ref component, false)) return false; return component.CurrentState == MobState.Critical; } @@ -63,7 +65,7 @@ public bool IsCritical(EntityUid target, MobStateComponent? component = null) /// If the entity is Dead public bool IsDead(EntityUid target, MobStateComponent? component = null) { - if (!Resolve(target, ref component, false)) + if (!_mobStateQuery.Resolve(target, ref component, false)) return false; return component.CurrentState == MobState.Dead; } @@ -76,7 +78,7 @@ public bool IsDead(EntityUid target, MobStateComponent? component = null) /// If the entity is Critical or Dead public bool IsIncapacitated(EntityUid target, MobStateComponent? component = null) { - if (!Resolve(target, ref component, false)) + if (!_mobStateQuery.Resolve(target, ref component, false)) return false; return component.CurrentState is MobState.Critical or MobState.Dead; } @@ -89,14 +91,10 @@ public bool IsIncapacitated(EntityUid target, MobStateComponent? component = nul /// If the entity is in an Invalid State public bool IsInvalidState(EntityUid target, MobStateComponent? component = null) { - if (!Resolve(target, ref component, false)) + if (!_mobStateQuery.Resolve(target, ref component, false)) return false; return component.CurrentState is MobState.Invalid; } #endregion - - #region Private Implementation - - #endregion } diff --git a/Content.Shared/Movement/Pulling/Components/ActivePullerComponent.cs b/Content.Shared/Movement/Pulling/Components/ActivePullerComponent.cs new file mode 100644 index 00000000000000..83bfd9f79542ae --- /dev/null +++ b/Content.Shared/Movement/Pulling/Components/ActivePullerComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Movement.Pulling.Components; + +/// +/// Component that indicates that an entity is currently pulling some other entity. +/// +[RegisterComponent] +public sealed partial class ActivePullerComponent : Component; diff --git a/Content.Shared/Movement/Pulling/Components/PullerComponent.cs b/Content.Shared/Movement/Pulling/Components/PullerComponent.cs index f47ae32f90bf5d..32e4d9b1f31677 100644 --- a/Content.Shared/Movement/Pulling/Components/PullerComponent.cs +++ b/Content.Shared/Movement/Pulling/Components/PullerComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Movement.Pulling.Components; /// /// Specifies an entity as being able to pull another entity with /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] [Access(typeof(PullingSystem))] public sealed partial class PullerComponent : Component { diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index 161868370eaddc..72b87476bb0a1d 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -61,6 +61,7 @@ public override void Initialize() SubscribeLocalEvent(OnPullableContainerInsert); SubscribeLocalEvent(OnModifyUncuffDuration); + SubscribeLocalEvent(OnAfterState); SubscribeLocalEvent(OnPullerContainerInsert); SubscribeLocalEvent(OnPullerUnpaused); SubscribeLocalEvent(OnVirtualItemDeleted); @@ -72,6 +73,14 @@ public override void Initialize() .Register(); } + private void OnAfterState(Entity ent, ref AfterAutoHandleStateEvent args) + { + if (ent.Comp.Pulling == null) + RemComp(ent.Owner); + else + EnsureComp(ent.Owner); + } + private void OnDropHandItems(EntityUid uid, PullerComponent pullerComp, DropHandItemsEvent args) { if (pullerComp.Pulling == null || pullerComp.NeedsHands) @@ -228,6 +237,9 @@ private void StopPulling(EntityUid pullableUid, PullableComponent pullableComp) } var oldPuller = pullableComp.Puller; + if (oldPuller != null) + RemComp(oldPuller.Value); + pullableComp.PullJointId = null; pullableComp.Puller = null; Dirty(pullableUid, pullableComp); @@ -410,6 +422,7 @@ public bool TryStartPull(EntityUid pullerUid, EntityUid pullableUid, // Use net entity so it's consistent across client and server. pullableComp.PullJointId = $"pull-joint-{GetNetEntity(pullableUid)}"; + EnsureComp(pullerUid); pullerComp.Pulling = pullableUid; pullableComp.Puller = pullerUid; diff --git a/Content.Shared/NameModifier/Components/ModifyWearerNameComponent.cs b/Content.Shared/NameModifier/Components/ModifyWearerNameComponent.cs new file mode 100644 index 00000000000000..781ed3daae15ea --- /dev/null +++ b/Content.Shared/NameModifier/Components/ModifyWearerNameComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.NameModifier.Components; + +/// +/// Adds a modifier to the wearer's name when this item is equipped, +/// and removes it when it is unequipped. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class ModifyWearerNameComponent : Component +{ + /// + /// The localization ID of the text to be used as the modifier. + /// The base name will be passed in as $baseName + /// + [DataField, AutoNetworkedField] + public LocId LocId = string.Empty; + + /// + /// Priority of the modifier. See for more information. + /// + [DataField, AutoNetworkedField] + public int Priority; +} diff --git a/Content.Shared/NameModifier/Components/NameModifierComponent.cs b/Content.Shared/NameModifier/Components/NameModifierComponent.cs new file mode 100644 index 00000000000000..3a9dd9712b6807 --- /dev/null +++ b/Content.Shared/NameModifier/Components/NameModifierComponent.cs @@ -0,0 +1,20 @@ +using Content.Shared.NameModifier.EntitySystems; +using Robust.Shared.GameStates; + +namespace Content.Shared.NameModifier.Components; + +/// +/// Used to manage modifiers on an entity's name and handle renaming in a way +/// that survives being renamed by multiple systems. +/// +[RegisterComponent] +[NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(NameModifierSystem))] +public sealed partial class NameModifierComponent : Component +{ + /// + /// The entity's name without any modifiers applied. + /// + [DataField, AutoNetworkedField] + public string BaseName = string.Empty; +} diff --git a/Content.Shared/NameModifier/EntitySystems/ModifyWearerNameSystem.cs b/Content.Shared/NameModifier/EntitySystems/ModifyWearerNameSystem.cs new file mode 100644 index 00000000000000..e728e6cdb51665 --- /dev/null +++ b/Content.Shared/NameModifier/EntitySystems/ModifyWearerNameSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.Clothing; +using Content.Shared.Inventory; +using Content.Shared.NameModifier.Components; + +namespace Content.Shared.NameModifier.EntitySystems; + +public sealed partial class ModifyWearerNameSystem : EntitySystem +{ + [Dependency] private readonly NameModifierSystem _nameMod = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnRefreshNameModifiers); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + } + + private void OnGotEquipped(Entity entity, ref ClothingGotEquippedEvent args) + { + _nameMod.RefreshNameModifiers(args.Wearer); + } + + private void OnGotUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) + { + _nameMod.RefreshNameModifiers(args.Wearer); + } + + private void OnRefreshNameModifiers(Entity entity, ref InventoryRelayedEvent args) + { + args.Args.AddModifier(entity.Comp.LocId, entity.Comp.Priority); + } +} diff --git a/Content.Shared/NameModifier/EntitySystems/NameModifierSystem.cs b/Content.Shared/NameModifier/EntitySystems/NameModifierSystem.cs new file mode 100644 index 00000000000000..4dffb51805c168 --- /dev/null +++ b/Content.Shared/NameModifier/EntitySystems/NameModifierSystem.cs @@ -0,0 +1,143 @@ +using System.Linq; +using Content.Shared.Inventory; +using Content.Shared.NameModifier.Components; + +namespace Content.Shared.NameModifier.EntitySystems; + +/// +public sealed partial class NameModifierSystem : EntitySystem +{ + [Dependency] private readonly MetaDataSystem _metaData = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEntityRenamed); + } + + private void OnEntityRenamed(Entity entity, ref EntityRenamedEvent args) + { + SetBaseName((entity, entity.Comp), args.NewName); + RefreshNameModifiers((entity, entity.Comp)); + } + + private void SetBaseName(Entity entity, string name) + { + if (name == entity.Comp.BaseName) + return; + + // Set the base name to the new name + entity.Comp.BaseName = name; + Dirty(entity); + } + + /// + /// Raises a to gather modifiers and + /// updates the entity's name to its base name with modifiers applied. + /// This will add a if any modifiers are added. + /// + /// + /// Call this to update the entity's name when adding or removing a modifier. + /// + public void RefreshNameModifiers(Entity entity) + { + var meta = MetaData(entity); + var baseName = meta.EntityName; + if (Resolve(entity, ref entity.Comp, logMissing: false)) + baseName = entity.Comp.BaseName; + + // Raise an event to get any modifiers + // If the entity already has the component, use its BaseName, otherwise use the entity's name from metadata + var modifierEvent = new RefreshNameModifiersEvent(baseName); + RaiseLocalEvent(entity, ref modifierEvent); + + // Nothing added a modifier, so we can just use the base name + if (modifierEvent.ModifierCount == 0) + { + // If the entity doesn't have the component, we're done + if (entity.Comp == null) + return; + + // Restore the base name + _metaData.SetEntityName(entity, entity.Comp.BaseName, meta, raiseEvents: false); + // The component isn't doing anything anymore, so remove it + RemComp(entity); + return; + } + // We have at least one modifier, so we need to apply it to the entity. + + // Get the final name with modifiers applied + var modifiedName = modifierEvent.GetModifiedName(); + + // Add the component if needed, and initialize it with the base name + if (!EnsureComp(entity, out var comp)) + SetBaseName((entity, comp), meta.EntityName); + + // Set the entity's name with modifiers applied + _metaData.SetEntityName(entity, modifiedName, meta, raiseEvents: false); + } +} + +/// +/// Raised on an entity when is called. +/// Subscribe to this event and use its methods to add modifiers to the entity's name. +/// +[ByRefEvent] +public sealed class RefreshNameModifiersEvent : IInventoryRelayEvent +{ + /// + /// The entity's name without any modifiers applied. + /// If you want to base a modifier on the entity's name, use + /// this so you don't include other modifiers. + /// + public readonly string BaseName; + + private readonly List<(LocId LocId, int Priority, (string, object)[] ExtraArgs)> _modifiers = []; + + /// + public SlotFlags TargetSlots => ~SlotFlags.POCKET; + + /// + /// How many modifiers have been added to this event. + /// + public int ModifierCount => _modifiers.Count; + + public RefreshNameModifiersEvent(string baseName) + { + BaseName = baseName; + } + + /// + /// Adds a modifier to the entity's name. + /// The original name will be passed to Fluent as $baseName along with any . + /// Modifiers with a higher will be applied later. + /// + public void AddModifier(LocId locId, int priority = 0, params (string, object)[] extraArgs) + { + _modifiers.Add((locId, priority, extraArgs)); + } + + /// + /// Returns the final name with all modifiers applied. + /// + public string GetModifiedName() + { + // Start out with the entity's name name + var name = BaseName; + + // Iterate through all the modifiers in priority order + foreach (var modifier in _modifiers.OrderBy(n => n.Priority)) + { + // Grab any extra args needed by the Loc string + var args = modifier.ExtraArgs; + // Add the current version of the entity name as an arg + Array.Resize(ref args, args.Length + 1); + args[^1] = ("baseName", name); + // Resolve the Loc string and use the result as the base in the next iteration. + name = Loc.GetString(modifier.LocId, args); + } + + return name; + } +} diff --git a/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs b/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs index 2708c823d2c83a..06c533e6460f3a 100644 --- a/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs +++ b/Content.Shared/Nutrition/AnimalHusbandry/InfantComponent.cs @@ -35,10 +35,4 @@ public sealed partial class InfantComponent : Component [DataField("infantEndTime", customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan InfantEndTime; - - /// - /// The entity's name before the "baby" prefix is added. - /// - [DataField("originalName")] - public string OriginalName = string.Empty; } diff --git a/Content.Shared/Physics/Controllers/SharedConveyorController.cs b/Content.Shared/Physics/Controllers/SharedConveyorController.cs index e3b22d84319e8e..abcd2bc4a2112e 100644 --- a/Content.Shared/Physics/Controllers/SharedConveyorController.cs +++ b/Content.Shared/Physics/Controllers/SharedConveyorController.cs @@ -1,7 +1,9 @@ using System.Numerics; using Content.Shared.Conveyor; using Content.Shared.Gravity; +using Content.Shared.Magic; using Content.Shared.Movement.Systems; +using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; @@ -9,6 +11,7 @@ using Robust.Shared.Physics.Controllers; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; +using Robust.Shared.Utility; namespace Content.Shared.Physics.Controllers; @@ -16,15 +19,23 @@ public abstract class SharedConveyorController : VirtualController { [Dependency] protected readonly IMapManager MapManager = default!; [Dependency] protected readonly EntityLookupSystem Lookup = default!; + [Dependency] private readonly SharedMapSystem _maps = default!; [Dependency] protected readonly SharedPhysicsSystem Physics = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; protected const string ConveyorFixture = "conveyor"; - private static readonly Vector2 _expansion = new Vector2(0.1f, 0.1f); + private EntityQuery _gridQuery; + private EntityQuery _xformQuery; + + private ValueList _ents = new(); + private HashSet> _conveyors = new(); public override void Initialize() { + _gridQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + UpdatesAfter.Add(typeof(SharedMoverController)); SubscribeLocalEvent(OnConveyorStartCollide); @@ -37,74 +48,125 @@ private void OnConveyorStartCollide(EntityUid uid, ConveyorComponent component, { var otherUid = args.OtherEntity; - if (args.OtherBody.BodyType == BodyType.Static || component.State == ConveyorState.Off) + if (!args.OtherFixture.Hard || args.OtherBody.BodyType == BodyType.Static || component.State == ConveyorState.Off) + return; + + var conveyed = EnsureComp(otherUid); + + if (conveyed.Colliding.Contains(uid)) return; - component.Intersecting.Add(otherUid); - EnsureComp(uid); + conveyed.Colliding.Add(uid); + Dirty(otherUid, conveyed); } - private void OnConveyorEndCollide(EntityUid uid, ConveyorComponent component, ref EndCollideEvent args) + private void OnConveyorEndCollide(Entity ent, ref EndCollideEvent args) { - component.Intersecting.Remove(args.OtherEntity); + if (!TryComp(args.OtherEntity, out ConveyedComponent? conveyed)) + return; - if (component.Intersecting.Count == 0) - RemComp(uid); + if (!conveyed.Colliding.Remove(ent.Owner)) + return; + + Dirty(args.OtherEntity, conveyed); } public override void UpdateBeforeSolve(bool prediction, float frameTime) { base.UpdateBeforeSolve(prediction, frameTime); - var conveyed = new HashSet(); - // Don't use it directly in EntityQuery because we may be able to save getcomponents. - var xformQuery = GetEntityQuery(); - var bodyQuery = GetEntityQuery(); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); + _ents.Clear(); - while (query.MoveNext(out var uid, out var _, out var comp)) + while (query.MoveNext(out var uid, out var comp, out var xform, out var physics)) { - Convey(uid, comp, xformQuery, bodyQuery, conveyed, frameTime, prediction); + if (TryConvey((uid, comp, physics, xform), prediction, frameTime)) + continue; + + _ents.Add(uid); + } + + foreach (var ent in _ents) + { + RemComp(ent); } } - private void Convey(EntityUid uid, ConveyorComponent comp, EntityQuery xformQuery, EntityQuery bodyQuery, HashSet conveyed, float frameTime, bool prediction) + private bool TryConvey(Entity entity, bool prediction, float frameTime) { - // Use an event for conveyors to know what needs to run - if (!CanRun(comp)) - return; + var physics = entity.Comp2; + var xform = entity.Comp3; + var contacting = entity.Comp1.Colliding.Count > 0; - var speed = comp.Speed; + if (!contacting) + return false; - if (speed <= 0f || !xformQuery.TryGetComponent(uid, out var xform) || xform.GridUid == null) - return; + // Client moment + if (!physics.Predict && prediction) + return true; + + if (physics.BodyType == BodyType.Static) + return false; + + if (!_gridQuery.TryComp(xform.GridUid, out var grid)) + return true; + + var gridTile = _maps.TileIndicesFor(xform.GridUid.Value, grid, xform.Coordinates); + _conveyors.Clear(); - var conveyorPos = xform.LocalPosition; - var conveyorRot = xform.LocalRotation; + // Check for any conveyors on the attached tile. + Lookup.GetLocalEntitiesIntersecting(xform.GridUid.Value, gridTile, _conveyors); + DebugTools.Assert(_conveyors.Count <= 1); - conveyorRot += comp.Angle; + // No more conveyors. + if (_conveyors.Count == 0) + return true; + + if (physics.BodyStatus == BodyStatus.InAir || + _gravity.IsWeightless(entity, physics, xform)) + { + return true; + } + + Entity bestConveyor = default; + var bestSpeed = 0f; + + foreach (var conveyor in _conveyors) + { + if (conveyor.Comp.Speed > bestSpeed && CanRun(conveyor)) + { + bestSpeed = conveyor.Comp.Speed; + bestConveyor = conveyor; + } + } + + if (bestSpeed == 0f || bestConveyor == default) + return true; + + var comp = bestConveyor.Comp!; + var conveyorXform = _xformQuery.GetComponent(bestConveyor.Owner); + var conveyorPos = conveyorXform.LocalPosition; + var conveyorRot = conveyorXform.LocalRotation; + + conveyorRot += bestConveyor.Comp!.Angle; if (comp.State == ConveyorState.Reverse) conveyorRot += MathF.PI; var direction = conveyorRot.ToWorldVec(); - foreach (var (entity, transform, body) in GetEntitiesToMove(comp, xform, xformQuery, bodyQuery)) - { - if (!conveyed.Add(entity) || prediction && !body.Predict) - continue; + var localPos = xform.LocalPosition; + var itemRelative = conveyorPos - localPos; - var localPos = transform.LocalPosition; - var itemRelative = conveyorPos - localPos; + localPos += Convey(direction, bestSpeed, frameTime, itemRelative); - localPos += Convey(direction, speed, frameTime, itemRelative); - transform.LocalPosition = localPos; + TransformSystem.SetLocalPosition(entity, localPos, xform); - // Force it awake for collisionwake reasons. - Physics.SetAwake((entity, body), true); - Physics.SetSleepTime(body, 0f); - } - Dirty(uid, comp); + // Force it awake for collisionwake reasons. + Physics.SetAwake((entity, physics), true); + Physics.SetSleepTime(physics, 0f); + + return true; } private static Vector2 Convey(Vector2 direction, float speed, float frameTime, Vector2 itemRelative) @@ -140,36 +202,6 @@ private static Vector2 Convey(Vector2 direction, float speed, float frameTime, V } } - private IEnumerable<(EntityUid, TransformComponent, PhysicsComponent)> GetEntitiesToMove( - ConveyorComponent comp, - TransformComponent xform, - EntityQuery xformQuery, - EntityQuery bodyQuery) - { - // Check if the thing's centre overlaps the grid tile. - var grid = Comp(xform.GridUid!.Value); - var tile = grid.GetTileRef(xform.Coordinates); - var conveyorBounds = Lookup.GetLocalBounds(tile, grid.TileSize); - - foreach (var entity in comp.Intersecting) - { - if (!xformQuery.TryGetComponent(entity, out var entityXform) || entityXform.ParentUid != xform.GridUid!.Value) - continue; - - if (!bodyQuery.TryGetComponent(entity, out var physics) || physics.BodyType == BodyType.Static || physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity, physics, entityXform)) - continue; - - // Yes there's still going to be the occasional rounding issue where it stops getting conveyed - // When you fix the corner issue that will fix this anyway. - var gridAABB = new Box2(entityXform.LocalPosition - _expansion, entityXform.LocalPosition + _expansion); - - if (!conveyorBounds.Intersects(gridAABB)) - continue; - - yield return (entity, entityXform, physics); - } - } - public bool CanRun(ConveyorComponent component) { return component.State != ConveyorState.Off && component.Powered; diff --git a/Content.Shared/Puppet/SharedVentriloquistPuppetSystem.cs b/Content.Shared/Puppet/SharedVentriloquistPuppetSystem.cs index 430c2b1b17d675..e3fa21ed3777e0 100644 --- a/Content.Shared/Puppet/SharedVentriloquistPuppetSystem.cs +++ b/Content.Shared/Puppet/SharedVentriloquistPuppetSystem.cs @@ -7,6 +7,7 @@ namespace Content.Shared.Puppet; +// TODO deduplicate with BlockMovementComponent public abstract class SharedVentriloquistPuppetSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _blocker = default!; @@ -15,7 +16,7 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(Cancel); - SubscribeLocalEvent(Cancel); + SubscribeLocalEvent(CancelInteract); SubscribeLocalEvent(Cancel); SubscribeLocalEvent(Cancel); SubscribeLocalEvent(Cancel); @@ -24,6 +25,11 @@ public override void Initialize() SubscribeLocalEvent(OnStartup); } + private void CancelInteract(Entity ent, ref InteractionAttemptEvent args) + { + args.Cancelled = true; + } + private void OnStartup(EntityUid uid, VentriloquistPuppetComponent component, ComponentStartup args) { _blocker.UpdateCanMove(uid); @@ -33,4 +39,4 @@ private void Cancel(EntityUid uid, VentriloquistPuppetComponent component, T { args.Cancel(); } -} \ No newline at end of file +} diff --git a/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs b/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs index 4329e437a29077..9e4b51866f3adf 100644 --- a/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs +++ b/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs @@ -36,7 +36,7 @@ public sealed partial class RoboticsConsoleComponent : Component /// Radio message sent when destroying a borg. /// [DataField] - public LocId DestroyMessage = "robotics-console-cyborg-destroyed"; + public LocId DestroyMessage = "robotics-console-cyborg-destroying"; /// /// Cooldown on destroying borgs to prevent complete abuse. diff --git a/Content.Shared/Robotics/RoboticsConsoleUi.cs b/Content.Shared/Robotics/RoboticsConsoleUi.cs index 1be89beff0beeb..996c65cb0e68ff 100644 --- a/Content.Shared/Robotics/RoboticsConsoleUi.cs +++ b/Content.Shared/Robotics/RoboticsConsoleUi.cs @@ -97,6 +97,13 @@ public record struct CyborgControlData [DataField] public bool HasBrain; + /// + /// Whether the borg can currently be disabled if the brain is installed, + /// if on cooldown then can't queue up multiple disables. + /// + [DataField] + public bool CanDisable; + /// /// When this cyborg's data will be deleted. /// Set by the console when receiving the packet. @@ -104,7 +111,7 @@ public record struct CyborgControlData [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan Timeout = TimeSpan.Zero; - public CyborgControlData(SpriteSpecifier? chassisSprite, string chassisName, string name, float charge, int moduleCount, bool hasBrain) + public CyborgControlData(SpriteSpecifier? chassisSprite, string chassisName, string name, float charge, int moduleCount, bool hasBrain, bool canDisable) { ChassisSprite = chassisSprite; ChassisName = chassisName; @@ -112,6 +119,7 @@ public CyborgControlData(SpriteSpecifier? chassisSprite, string chassisName, str Charge = charge; ModuleCount = moduleCount; HasBrain = hasBrain; + CanDisable = canDisable; } } diff --git a/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs index 8c15e20d5d0740..577056bb46d33c 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs @@ -23,12 +23,25 @@ public sealed partial class BorgTransponderComponent : Component public string Name = string.Empty; /// - /// Popup shown to everyone when a borg is disabled. + /// Popup shown to everyone after a borg is disabled. /// Gets passed a string "name". /// [DataField] public LocId DisabledPopup = "borg-transponder-disabled-popup"; + /// + /// Popup shown to the borg when it is being disabled. + /// + [DataField] + public LocId DisablingPopup = "borg-transponder-disabling-popup"; + + /// + /// Popup shown to everyone when a borg is being destroyed. + /// Gets passed a string "name". + /// + [DataField] + public LocId DestroyingPopup = "borg-transponder-destroying-popup"; + /// /// How long to wait between each broadcast. /// @@ -40,4 +53,28 @@ public sealed partial class BorgTransponderComponent : Component /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextBroadcast = TimeSpan.Zero; + + /// + /// When to next disable the borg. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan? NextDisable; + + /// + /// How long to wait to disable the borg after RD has ordered it. + /// + [DataField] + public TimeSpan DisableDelay = TimeSpan.FromSeconds(5); + + /// + /// Pretend that the borg cannot be disabled due to being on delay. + /// + [DataField] + public bool FakeDisabling; + + /// + /// Pretend that the borg has no brain inserted. + /// + [DataField] + public bool FakeDisabled; } diff --git a/Content.Shared/Starshine/Eye/NightVision/Components/NightVisionComponent.cs b/Content.Shared/Starshine/Eye/NightVision/Components/NightVisionComponent.cs new file mode 100644 index 00000000000000..3e88efc1454fd6 --- /dev/null +++ b/Content.Shared/Starshine/Eye/NightVision/Components/NightVisionComponent.cs @@ -0,0 +1,35 @@ +using Content.Shared.Actions; +using Content.Shared.Starshine.Eye.NightVision.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Starshine.Eye.NightVision.Components; + +[RegisterComponent] +[NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(NightVisionSystem))] +public sealed partial class NightVisionComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite), DataField("isOn"), AutoNetworkedField] + public bool IsNightVision; + + [DataField("color")] + public Color NightVisionColor = Color.Green; + + [DataField] + public bool IsToggle = false; + + [DataField] public EntityUid? ActionContainer; + + [Access(Other = AccessPermissions.ReadWriteExecute)] + public bool DrawShadows = false; + + [Access(Other = AccessPermissions.ReadWriteExecute)] + public bool GraceFrame = false; + + [DataField("playSoundOn")] + public bool PlaySoundOn = true; + public SoundSpecifier OnOffSound = new SoundPathSpecifier("/Audio/Backmen/Misc/night-vision-sound-effect_E_minor.ogg"); +} + +public sealed partial class NVInstantActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Starshine/Eye/NightVision/Components/PNVComponent.cs b/Content.Shared/Starshine/Eye/NightVision/Components/PNVComponent.cs new file mode 100644 index 00000000000000..08a1bca44dafa2 --- /dev/null +++ b/Content.Shared/Starshine/Eye/NightVision/Components/PNVComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Actions; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Starshine.Eye.NightVision.Components; + + +[RegisterComponent, NetworkedComponent] +public sealed partial class PNVComponent : Component +{ + [DataField] public EntProtoId ActionProto = "NVToggleAction"; + [DataField] public EntityUid? ActionContainer; +} diff --git a/Content.Shared/Starshine/Eye/NightVision/Systems/NightVisionSystem.cs b/Content.Shared/Starshine/Eye/NightVision/Systems/NightVisionSystem.cs new file mode 100644 index 00000000000000..5786269320923d --- /dev/null +++ b/Content.Shared/Starshine/Eye/NightVision/Systems/NightVisionSystem.cs @@ -0,0 +1,79 @@ +using Content.Shared.Starshine.Eye.NightVision.Components; +using Content.Shared.Inventory; +using Content.Shared.Actions; +using JetBrains.Annotations; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Starshine.Eye.NightVision.Systems; + +public sealed class NightVisionSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + base.Initialize(); + + if(_net.IsServer) + SubscribeLocalEvent(OnComponentStartup); + SubscribeLocalEvent(OnActionToggle); + } + + [ValidatePrototypeId] + private const string SwitchNightVisionAction = "SwitchNightVision"; + + private void OnComponentStartup(EntityUid uid, NightVisionComponent component, ComponentStartup args) + { + if (component.IsToggle) + _actionsSystem.AddAction(uid, ref component.ActionContainer, SwitchNightVisionAction); + } + + private void OnActionToggle(EntityUid uid, NightVisionComponent component, NVInstantActionEvent args) + { + component.IsNightVision = !component.IsNightVision; + var changeEv = new NightVisionnessChangedEvent(component.IsNightVision); + RaiseLocalEvent(uid, ref changeEv); + Dirty(uid, component); + _actionsSystem.SetCooldown(component.ActionContainer, TimeSpan.FromSeconds(1)); + if (component is { IsNightVision: true, PlaySoundOn: true }) + { + if(_net.IsServer) + _audioSystem.PlayPvs(component.OnOffSound, uid); + } + } + + [PublicAPI] + public void UpdateIsNightVision(EntityUid uid, NightVisionComponent? component = null) + { + if (!Resolve(uid, ref component, false)) + return; + + var old = component.IsNightVision; + + + var ev = new CanVisionAttemptEvent(); + RaiseLocalEvent(uid, ev); + component.IsNightVision = ev.NightVision; + + if (old == component.IsNightVision) + return; + + var changeEv = new NightVisionnessChangedEvent(component.IsNightVision); + RaiseLocalEvent(uid, ref changeEv); + Dirty(uid, component); + } +} + +[ByRefEvent] +public record struct NightVisionnessChangedEvent(bool NightVision); + + +public sealed class CanVisionAttemptEvent : CancellableEntityEventArgs, IInventoryRelayEvent +{ + public bool NightVision => Cancelled; + public SlotFlags TargetSlots => SlotFlags.EYES | SlotFlags.MASK | SlotFlags.HEAD; +} diff --git a/Content.Shared/Starshine/Eye/NightVision/Systems/PNVSystem.cs b/Content.Shared/Starshine/Eye/NightVision/Systems/PNVSystem.cs new file mode 100644 index 00000000000000..7276a1900cb29d --- /dev/null +++ b/Content.Shared/Starshine/Eye/NightVision/Systems/PNVSystem.cs @@ -0,0 +1,68 @@ +using Content.Shared.Starshine.Eye.NightVision.Components; +using Content.Shared.Inventory; +using Content.Shared.Actions; +using Content.Shared.Inventory.Events; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Network; + +namespace Content.Shared.Starshine.Eye.NightVision.Systems; + +public sealed class PNVSystem : EntitySystem +{ + [Dependency] private readonly NightVisionSystem _nightvisionableSystem = default!; + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent>(OnPNVTrySee); + } + + private void OnPNVTrySee(EntityUid uid, PNVComponent component, InventoryRelayedEvent args) + { + args.Args.Cancel(); + } + + private void OnEquipped(EntityUid uid, PNVComponent component, GotEquippedEvent args) + { + if (args.Slot is not ("eyes" or "mask" or "head")) + return; + + if (HasComp(args.Equipee)) + return; + + var nvcomp = EnsureComp(args.Equipee); + + _nightvisionableSystem.UpdateIsNightVision(args.Equipee, nvcomp); + if(component.ActionContainer == null) + _actionsSystem.AddAction(args.Equipee, ref component.ActionContainer, component.ActionProto); + _actionsSystem.SetCooldown(component.ActionContainer, TimeSpan.FromSeconds(1)); // GCD? + + if (nvcomp.PlaySoundOn) + { + if(_net.IsServer) + _audioSystem.PlayPvs(nvcomp.OnOffSound, uid); + } + + } + + private void OnUnequipped(EntityUid uid, PNVComponent component, GotUnequippedEvent args) + { + if (args.Slot is not ("eyes" or "mask" or "head")) + return; + + if (!TryComp(args.Equipee, out var nvcomp)) + return; + + _nightvisionableSystem.UpdateIsNightVision(args.Equipee, nvcomp); + _actionsSystem.RemoveAction(args.Equipee, component.ActionContainer); + component.ActionContainer = null; + + RemCompDeferred(args.Equipee); + } +} diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 9190427d321486..092da8fe5ab396 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -54,7 +54,7 @@ public override void Initialize() // Attempt event subscriptions. SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnMoveAttempt); - SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttemptInteract); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); @@ -65,7 +65,10 @@ public override void Initialize() SubscribeLocalEvent(OnMobStateChanged); } - + private void OnAttemptInteract(Entity ent, ref InteractionAttemptEvent args) + { + args.Cancelled = true; + } private void OnMobStateChanged(EntityUid uid, MobStateComponent component, MobStateChangedEvent args) { diff --git a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs index ba78ff651f5989..cebc84ecb93e61 100644 --- a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs +++ b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs @@ -45,11 +45,11 @@ private void OnAttackAttempt(EntityUid uid, SubFloorHideComponent component, ref args.Cancelled = true; } - private void OnInteractionAttempt(EntityUid uid, SubFloorHideComponent component, GettingInteractedWithAttemptEvent args) + private void OnInteractionAttempt(EntityUid uid, SubFloorHideComponent component, ref GettingInteractedWithAttemptEvent args) { // No interactions with entities hidden under floor tiles. if (component.BlockInteractions && component.IsUnderCover) - args.Cancel(); + args.Cancelled = true; } private void OnSubFloorStarted(EntityUid uid, SubFloorHideComponent component, ComponentStartup _) diff --git a/Content.Shared/Weather/SharedWeatherSystem.cs b/Content.Shared/Weather/SharedWeatherSystem.cs index 19671bd77b0f2a..61419021247fad 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -1,9 +1,7 @@ using Content.Shared.Maps; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; @@ -18,15 +16,14 @@ public abstract class SharedWeatherSystem : EntitySystem [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; private EntityQuery _blockQuery; - private EntityQuery _physicsQuery; public override void Initialize() { base.Initialize(); _blockQuery = GetEntityQuery(); - _physicsQuery = GetEntityQuery(); SubscribeLocalEvent(OnWeatherUnpaused); } @@ -41,9 +38,7 @@ private void OnWeatherUnpaused(EntityUid uid, WeatherComponent component, ref En } } - public bool CanWeatherAffect( - MapGridComponent grid, - TileRef tileRef) + public bool CanWeatherAffect(EntityUid uid, MapGridComponent grid, TileRef tileRef) { if (tileRef.Tile.IsEmpty) return true; @@ -53,9 +48,9 @@ public bool CanWeatherAffect( if (!tileDef.Weather) return false; - var anchoredEnts = grid.GetAnchoredEntitiesEnumerator(tileRef.GridIndices); + var anchoredEntities = _mapSystem.GetAnchoredEntitiesEnumerator(uid, grid, tileRef.GridIndices); - while (anchoredEnts.MoveNext(out var ent)) + while (anchoredEntities.MoveNext(out var ent)) { if (_blockQuery.HasComponent(ent.Value)) return false; @@ -154,20 +149,22 @@ public override void Update(float frameTime) /// public void SetWeather(MapId mapId, WeatherPrototype? proto, TimeSpan? endTime) { - var mapUid = MapManager.GetMapEntityId(mapId); - var weatherComp = EnsureComp(mapUid); + if (!_mapSystem.TryGetMap(mapId, out var mapUid)) + return; + + var weatherComp = EnsureComp(mapUid.Value); foreach (var (eProto, weather) in weatherComp.Weather) { // Reset cooldown if it's an existing one. - if (eProto == proto?.ID) + if (proto == null || eProto == proto.ID) { weather.EndTime = endTime; if (weather.State == WeatherState.Ending) weather.State = WeatherState.Running; - Dirty(mapUid, weatherComp); + Dirty(mapUid.Value, weatherComp); continue; } @@ -177,12 +174,12 @@ public void SetWeather(MapId mapId, WeatherPrototype? proto, TimeSpan? endTime) if (weather.EndTime == null || weather.EndTime > end) { weather.EndTime = end; - Dirty(mapUid, weatherComp); + Dirty(mapUid.Value, weatherComp); } } if (proto != null) - StartWeather(mapUid, weatherComp, proto, endTime); + StartWeather(mapUid.Value, weatherComp, proto, endTime); } /// @@ -229,9 +226,9 @@ protected virtual bool SetState(EntityUid uid, WeatherState state, WeatherCompon [Serializable, NetSerializable] protected sealed class WeatherComponentState : ComponentState { - public Dictionary Weather; + public Dictionary, WeatherData> Weather; - public WeatherComponentState(Dictionary weather) + public WeatherComponentState(Dictionary, WeatherData> weather) { Weather = weather; } diff --git a/Content.Shared/Weather/WeatherComponent.cs b/Content.Shared/Weather/WeatherComponent.cs index df73109ac4949d..eaf901fb4245c9 100644 --- a/Content.Shared/Weather/WeatherComponent.cs +++ b/Content.Shared/Weather/WeatherComponent.cs @@ -1,8 +1,7 @@ -using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Shared.Weather; @@ -12,8 +11,8 @@ public sealed partial class WeatherComponent : Component /// /// Currently running weathers /// - [ViewVariables, DataField("weather", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] - public Dictionary Weather = new(); + [DataField] + public Dictionary, WeatherData> Weather = new(); public static readonly TimeSpan StartupTime = TimeSpan.FromSeconds(15); public static readonly TimeSpan ShutdownTime = TimeSpan.FromSeconds(15); @@ -29,19 +28,19 @@ public sealed partial class WeatherData /// /// When the weather started if relevant. /// - [ViewVariables, DataField("startTime", customTypeSerializer: typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] //TODO: Remove Custom serializer public TimeSpan StartTime = TimeSpan.Zero; /// /// When the applied weather will end. /// - [ViewVariables(VVAccess.ReadWrite), DataField("endTime", customTypeSerializer: typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] //TODO: Remove Custom serializer public TimeSpan? EndTime; [ViewVariables] public TimeSpan Duration => EndTime == null ? TimeSpan.MaxValue : EndTime.Value - StartTime; - [DataField("state")] + [DataField] public WeatherState State = WeatherState.Invalid; } diff --git a/Content.Shared/Zombies/SharedZombieSystem.cs b/Content.Shared/Zombies/SharedZombieSystem.cs index 6d9103639f6cdf..0388450a8c41cc 100644 --- a/Content.Shared/Zombies/SharedZombieSystem.cs +++ b/Content.Shared/Zombies/SharedZombieSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Movement.Systems; +using Content.Shared.NameModifier.EntitySystems; namespace Content.Shared.Zombies; @@ -10,6 +11,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnRefreshSpeed); + SubscribeLocalEvent(OnRefreshNameModifiers); } private void OnRefreshSpeed(EntityUid uid, ZombieComponent component, RefreshMovementSpeedModifiersEvent args) @@ -17,4 +19,9 @@ private void OnRefreshSpeed(EntityUid uid, ZombieComponent component, RefreshMov var mod = component.ZombieMovementSpeedDebuff; args.ModifySpeed(mod, mod); } + + private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) + { + args.AddModifier("zombie-name-prefix"); + } } diff --git a/Content.Shared/Zombies/ZombieComponent.cs b/Content.Shared/Zombies/ZombieComponent.cs index 2cd0cdb96d7761..f510d65d6dcd4b 100644 --- a/Content.Shared/Zombies/ZombieComponent.cs +++ b/Content.Shared/Zombies/ZombieComponent.cs @@ -62,12 +62,6 @@ public sealed partial class ZombieComponent : Component [DataField("zombieRoleId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string ZombieRoleId = "Zombie"; - /// - /// The EntityName of the humanoid to restore in case of cloning - /// - [DataField("beforeZombifiedEntityName"), ViewVariables(VVAccess.ReadOnly)] - public string BeforeZombifiedEntityName = string.Empty; - /// /// The CustomBaseLayers of the humanoid to restore in case of cloning /// diff --git a/Content.Tests/Shared/Alert/ServerAlertsComponentTests.cs b/Content.Tests/Shared/Alert/ServerAlertsComponentTests.cs deleted file mode 100644 index bcc32e13deeda1..00000000000000 --- a/Content.Tests/Shared/Alert/ServerAlertsComponentTests.cs +++ /dev/null @@ -1,83 +0,0 @@ -using System.IO; -using Content.Server.Alert; -using Content.Shared.Alert; -using NUnit.Framework; -using Robust.Shared.GameObjects; -using Robust.Shared.GameStates; -using Robust.Shared.IoC; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.Manager; - -namespace Content.Tests.Shared.Alert -{ - [TestFixture] - [TestOf(typeof(AlertsComponent))] - public sealed class ServerAlertsComponentTests : ContentUnitTest - { - const string PROTOTYPES = @" -- type: alertCategory - id: Pressure - -- type: alert - id: LowPressure - category: Pressure - icon: /Textures/Interface/Alerts/Pressure/lowpressure.png - -- type: alert - id: HighPressure - category: Pressure - icon: /Textures/Interface/Alerts/Pressure/highpressure.png -"; - - [Test] - [Ignore("There is no way to load extra Systems in a unit test, fixing RobustUnitTest is out of scope.")] - public void ShowAlerts() - { - // this is kind of unnecessary because there's integration test coverage of Alert components - // but wanted to keep it anyway to see what's possible w.r.t. testing components - // in a unit test - - var entManager = IoCManager.Resolve(); - IoCManager.Resolve().Initialize(); - var prototypeManager = IoCManager.Resolve(); - prototypeManager.Initialize(); - var factory = IoCManager.Resolve(); - factory.RegisterClass(); - prototypeManager.LoadFromStream(new StringReader(PROTOTYPES)); - prototypeManager.ResolveResults(); - - var entSys = entManager.EntitySysManager; - entSys.LoadExtraSystemType(); - - var alertsComponent = new AlertsComponent(); - alertsComponent = IoCManager.InjectDependencies(alertsComponent); - - Assert.That(entManager.System().TryGet("LowPressure", out var lowpressure)); - Assert.That(entManager.System().TryGet("HighPressure", out var highpressure)); - - entManager.System().ShowAlert(alertsComponent.Owner, "LowPressure"); - - var getty = new ComponentGetState(); - entManager.EventBus.RaiseComponentEvent(alertsComponent, getty); - - var alertState = (AlertsComponent.AlertsComponent_AutoState) getty.State!; - Assert.That(alertState, Is.Not.Null); - Assert.That(alertState.Alerts.Count, Is.EqualTo(1)); - Assert.That(alertState.Alerts.ContainsKey(lowpressure!.AlertKey)); - - entManager.System().ShowAlert(alertsComponent.Owner, "HighPressure"); - - // Lazy - entManager.EventBus.RaiseComponentEvent(alertsComponent, getty); - alertState = (AlertsComponent.AlertsComponent_AutoState) getty.State!; - Assert.That(alertState.Alerts.Count, Is.EqualTo(1)); - Assert.That(alertState.Alerts.ContainsKey(highpressure!.AlertKey)); - - entManager.System().ClearAlertCategory(alertsComponent.Owner, "Pressure"); - - entManager.EventBus.RaiseComponentEvent(alertsComponent, getty); - alertState = (AlertsComponent.AlertsComponent_AutoState) getty.State!; - Assert.That(alertState.Alerts.Count, Is.EqualTo(0)); - } - } -} diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 15928df1888942..4790f603a07150 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,185 +1,4 @@ Entries: -- author: Crotalus - changes: - - message: Reagent grinder auto-modes - type: Add - id: 6250 - time: '2024-03-29T06:30:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26290 -- author: deltanedas - changes: - - message: Multiple bombs exploding at once on a tile now combine to have a larger - explosion rather than stacking the same small explosion. - type: Tweak - id: 6251 - time: '2024-03-29T23:46:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25664 -- author: Mephisto72 - changes: - - message: Ion Storms are now more likely to alter a Borg's laws. - type: Tweak - id: 6252 - time: '2024-03-30T00:01:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26539 -- author: arimah - changes: - - message: Holoparasites, holoclowns and other guardians correctly transfer damage - to their hosts again. - type: Fix - id: 6253 - time: '2024-03-30T01:25:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26541 -- author: Boaz1111 - changes: - - message: Added an industrial reagent grinder to the basic hydroponics research. - It grinds things into reagents like a recycler. - type: Add - id: 6254 - time: '2024-03-30T02:46:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25020 -- author: SonicHDC - changes: - - message: Added unzipping for lab coats! - type: Add - id: 6255 - time: '2024-03-30T03:31:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26494 -- author: Zealith-Gamer - changes: - - message: Items being pulled no longer spin when being thrown. - type: Fix - id: 6256 - time: '2024-03-30T03:35:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26504 -- author: Plykiya - changes: - - message: Hyposprays can now be toggled to draw from solution containers like jugs - and beakers. - type: Tweak - id: 6257 - time: '2024-03-30T03:59:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25544 -- author: EdenTheLiznerd - changes: - - message: Amanita toxin now kills you slightly slower, providing you time to seek - charcoal before it's too late - type: Tweak - id: 6258 - time: '2024-03-30T04:00:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25830 -- author: liltenhead - changes: - - message: Changed the syndicate hardbomb to have less of a chance to completely - destroy tiles. - type: Tweak - id: 6259 - time: '2024-03-30T04:36:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26548 -- author: takemysoult - changes: - - message: stimulants removes chloral hydrate from body - type: Tweak - id: 6260 - time: '2024-03-30T06:52:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25886 -- author: Flareguy - changes: - - message: Removed SCAF armor. - type: Remove - id: 6261 - time: '2024-03-31T02:01:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26566 -- author: lzk228 - changes: - - message: Syndicate duffelbag storage increased from 8x5 to 9x5. - type: Tweak - id: 6262 - time: '2024-03-31T02:21:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26565 -- author: Velcroboy - changes: - - message: Changed plastic flaps to be completely constructable/deconstructable - type: Tweak - id: 6263 - time: '2024-03-31T02:24:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26341 -- author: Flareguy - changes: - - message: Security glasses have been moved from research to roundstart gear. All - officers now start with them instead of sunglasses by default. - type: Tweak - - message: You can now craft security glasses. - type: Add - id: 6264 - time: '2024-03-31T03:00:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26487 -- author: brainfood1183 - changes: - - message: Toilets can now be connected to the disposal system. - type: Add - id: 6265 - time: '2024-03-31T03:21:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22133 -- author: DrMelon - changes: - - message: Syndicate Uplinks now have a searchbar to help those dirty, rotten antagonists - find appropriate equipment more easily! - type: Tweak - id: 6266 - time: '2024-03-31T04:09:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24287 -- author: chromiumboy - changes: - - message: Additional construction options have been added to the Rapid Construction - Device (RCD), along with a radial style UI for fast navigation - type: Add - - message: The number of charges and the length of time required to build a structure - with the RCD now vary depending on the complexity of the constructed fixture - type: Tweak - id: 6267 - time: '2024-03-31T04:29:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22799 -- author: UBlueberry - changes: - - message: Nanotransen is now recruitin' personnel that speak with a Southern drawl. - type: Add - id: 6268 - time: '2024-03-31T04:39:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26543 -- author: Tayrtahn - changes: - - message: You can no longer drink out of or put liquids into buckets worn on your - head. - type: Fix - id: 6269 - time: '2024-03-31T04:40:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24412 -- author: DrTeaspoon - changes: - - message: Hypopen no longer shows chemical contents when examined, when not held - by the examinee. - type: Fix - id: 6270 - time: '2024-03-31T04:59:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26453 -- author: lzk228 - changes: - - message: Hairflower was removed. - type: Remove - - message: Now you can wear poppy (and other flowers) on your head instead of crafting - hairflower with it. - type: Tweak - id: 6271 - time: '2024-03-31T05:33:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25475 -- author: EmoGarbage404 - changes: - - message: Borgs, Emitters, and APEs can no longer have their panels opened while - locked. APEs and Emitters additionally cannot be unanchored either. - type: Add - id: 6272 - time: '2024-03-31T06:34:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26600 - author: lzk228 changes: - message: Flower crown and wreath were combined. Now you can wear wreath both on @@ -3860,3 +3679,175 @@ id: 6749 time: '2024-06-15T17:50:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29004 +- author: notafet + changes: + - message: The TEG must now be operated at higher temperatures to generate power. + type: Tweak + id: 6750 + time: '2024-06-15T21:05:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29050 +- author: lzk228 + changes: + - message: Fixed ability for mime to not choose any mask. + type: Fix + id: 6751 + time: '2024-06-15T21:32:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29056 +- author: FunTust + changes: + - message: Fixed hair disappearing when hats are tucked away in a pocket. + type: Fix + id: 6752 + time: '2024-06-15T21:42:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28949 +- author: Cojoke-dot + changes: + - message: You can now find Jackboots in the security load-outs + type: Add + - message: The Sec drobe no longer has a Cowboy hat or boots + type: Remove + id: 6753 + time: '2024-06-15T22:38:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29018 +- author: Keer-Sar + changes: + - message: Fixed a spelling error in the cargo bounty for lungs. + type: Fix + id: 6754 + time: '2024-06-16T00:24:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29064 +- author: Keer-Sar + changes: + - message: Non-humanoids' names are now capitalized when inserting materials into + machines. + type: Fix + id: 6755 + time: '2024-06-16T02:06:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29071 +- author: EmoGarbage404 + changes: + - message: Magboots no longer work when off-grid. + type: Fix + id: 6756 + time: '2024-06-16T03:38:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29034 +- author: deltanedas + changes: + - message: Tarantulas now use Mechanotoxin, a venom that slows you down over time. + type: Tweak + id: 6757 + time: '2024-06-16T11:26:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29066 +- author: Cojoke-dot + changes: + - message: Musicians can now select instruments in their loadout + type: Add + id: 6758 + time: '2024-06-16T11:27:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29059 +- author: ElectroJr + changes: + - message: Fixed pianos, office chairs & other objects not rotating while being + pulled. + type: Fix + id: 6759 + time: '2024-06-16T11:30:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29032 +- author: deltanedas + changes: + - message: Added the Carp Hardsuit to the uplink which is spaceproof and makes carp + think you are one of them. + type: Add + id: 6760 + time: '2024-06-16T11:57:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25155 +- author: Futuristic + changes: + - message: RandomSentience event was removed + type: Remove + id: 6761 + time: '2024-06-16T23:24:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28982 +- author: notafet + changes: + - message: Adjust TEG power generation levels. + type: Tweak + id: 6762 + time: '2024-06-17T01:13:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29112 +- author: Cojoke-dot, AJCM-git + changes: + - message: You can now flip your eyepatches to the other eye! Yarrrrr! + type: Add + id: 6763 + time: '2024-06-17T03:21:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26277 +- author: deltanedas + changes: + - message: Borgs now have a 10 second beeping timer that paralyzes them when being + exploded with the robotics console and a 5 second delay when being disabled + with it. + type: Tweak + id: 6764 + time: '2024-06-17T03:30:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27876 +- author: EmoGarbage404 + changes: + - message: Changed meteor swarm spawning to be less clumped up and favor hitting + multiple areas more. + type: Tweak + id: 6765 + time: '2024-06-17T05:20:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29057 +- author: Ubaser + changes: + - message: Added new reptilian horns, "Demonic". + type: Add + id: 6766 + time: '2024-06-17T10:53:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29022 +- author: Tayrtahn + changes: + - message: Chemical jugs no longer spawn with two labels. + type: Fix + id: 6767 + time: '2024-06-17T23:09:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29137 +- author: Tayrtahn + changes: + - message: Mice and hamsters inside chef's hats can now steer the hat's wearer. + type: Add + id: 6768 + time: '2024-06-18T10:59:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25950 +- author: metalgearsloth + changes: + - message: Fix conveyors mispredicting movement. + type: Fix + id: 6769 + time: '2024-06-18T12:11:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28157 +- author: lzk228 + changes: + - message: Warning cones added to the Engivend. + type: Add + id: 6770 + time: '2024-06-18T14:02:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29085 +- author: Errant + changes: + - message: The strip interface layout of arachnids is now consistent with other + species. + type: Tweak + id: 6771 + time: '2024-06-18T14:10:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29165 +- author: IProduceWidgets + changes: + - message: Foam Force rifle to cargo lottery! + type: Add + - message: Foam darts now stick to things they hit! + type: Tweak + id: 6772 + time: '2024-06-18T15:04:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29103 diff --git a/Resources/Changelog/ChangelogStarshine.yml b/Resources/Changelog/ChangelogStarshine.yml index 58e36da671a345..461b28d40062dc 100644 --- a/Resources/Changelog/ChangelogStarshine.yml +++ b/Resources/Changelog/ChangelogStarshine.yml @@ -2001,3 +2001,39 @@ id: 151 time: '2024-06-08T11:41:24.0000000+00:00' url: null +- author: Tenteratus + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u043D\u043E\u0432\ + \u043E\u0435 \u0441\u043E\u0431\u044B\u0442\u0438\u0435 - \u041A\u0441\u0435\ + \u043D\u043E\u043C\u043E\u0440\u0444! \u041E\u043F\u0430\u0441\u043D\u044B\u0439\ + \ \u0445\u0438\u0449\u043D\u0438\u043A, \u0441\u043F\u043E\u0441\u043E\u0431\ + \u043D\u044B\u0439 \u043B\u0435\u0433\u043A\u043E \u0432\u044B\u0432\u0435\u0441\ + \u0442\u0438 \u0438\u0437 \u0441\u0442\u0440\u043E\u044F \u0447\u043B\u0435\u043D\ + \u043E\u0432 \u044D\u043A\u0438\u043F\u0430\u0436\u0430 \u043F\u043E \u043E\u0434\ + \u043D\u043E\u043C\u0443!" + type: Add + id: 152 + time: '2024-06-19T19:10:54.0000000+00:00' + url: null +- author: Elst28 + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u0441\u0442\u0430\ + \u043D\u0446\u0438\u044F ELstation" + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u0441\u0442\u0430\ + \u043D\u0446\u0438\u044F: ELstation" + type: Add + id: 153 + time: '2024-06-22T16:42:05.0000000+00:00' + url: null +- author: Astr0naut + changes: + - message: "\u0422\u0430\u043A\u0438\u0435 \u0441\u043E\u043A\u0438 \u043A\u0430\ + \u043A \u0423\u043D\u0430\u0442\u0438 \u0438 \u041C\u043E\u0444\u0444 \u043D\ + \u0430\u043D\u043E\u0441\u044F\u0442 \u0435\u0449\u0451 \u043C\u0435\u043D\u044C\ + \u0448\u0435 \u0443\u0440\u043E\u043D\u0430 (1 \u0443\u043D\u0446\u0438\u044F\ + \ = 0,40 \u044F\u0434\u044B)" + type: Tweak + id: 154 + time: '2024-06-22T16:57:42.0000000+00:00' + url: null diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index f240c9524751ff..15d75d4487aae6 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, DuskyJay, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, waylon531, weaversam8, whateverusername0, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, waylon531, weaversam8, whateverusername0, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem diff --git a/Resources/Locale/en-US/borg/borg.ftl b/Resources/Locale/en-US/borg/borg.ftl index 72667f318e353c..6c495510b05aee 100644 --- a/Resources/Locale/en-US/borg/borg.ftl +++ b/Resources/Locale/en-US/borg/borg.ftl @@ -21,5 +21,7 @@ borg-ui-module-counter = {$actual}/{$max} # Transponder borg-transponder-disabled-popup = A brain shoots out the top of {$name}! +borg-transponder-disabling-popup = Your transponder begins to lock you out of the chassis! +borg-transponder-destroying-popup = The self destruct of {$name} starts beeping! borg-transponder-emagged-disabled-popup = Your transponder's lights go out! borg-transponder-emagged-destroyed-popup = Your transponder's fuse blows! diff --git a/Resources/Locale/en-US/cargo/bounties.ftl b/Resources/Locale/en-US/cargo/bounties.ftl index b332517c70d2e2..09424e49097fc5 100644 --- a/Resources/Locale/en-US/cargo/bounties.ftl +++ b/Resources/Locale/en-US/cargo/bounties.ftl @@ -89,7 +89,7 @@ bounty-description-instrument = The hottest new band in the galaxy, Cindy Kate a bounty-description-knife = One of our top commanders recently won a brand new set of knives on an official Nanotrasen gameshow. Unforunately, we don't have a set on hand. Send us a bunch of sharp things so we can throw something together, bounty-description-lemon = Dr Jones's kid is starting up a lemonade stand. Small issue: lemons don't get shipped to this sector. Fix that for a nice reward. bounty-description-lime = After a heavy drinking session, Admiral Pastich developed a strong addiction to fresh lime wedges. Send us some limes so we can prepare him his new favorite snack. -bounty-description-lung = The pro-smoking league has been fighting to keep cigarettes on our stations for millennia. Unfortunately, they're lungs aren't fighting so hard anymore. Send them some new ones. +bounty-description-lung = The pro-smoking league has been fighting to keep cigarettes on our stations for millennia. Unfortunately, their lungs aren't fighting so hard anymore. Send them some new ones. bounty-description-monkey-cube = Due to a recent genetics accident, Central Command is in serious need of monkeys. Your mission is to ship monkey cubes. bounty-description-mouse = Station 13 ran out of freeze-dried mice. Ship some fresh ones so their janitor doesn't go on strike. bounty-description-pancake = Here at Nanotrasen we consider employees to be family. And you know what families love? Pancakes. Ship a baker's dozen. diff --git a/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl b/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl index 21f096273d1b6a..ce43bd714adb0d 100644 --- a/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl @@ -1 +1 @@ -transformable-container-component-glass = {$name} glass +transformable-container-component-glass = {$reagent} glass diff --git a/Resources/Locale/en-US/cluwne/cluwne.ftl b/Resources/Locale/en-US/cluwne/cluwne.ftl index 206df8657dd376..0ffd3f32dfb2f6 100644 --- a/Resources/Locale/en-US/cluwne/cluwne.ftl +++ b/Resources/Locale/en-US/cluwne/cluwne.ftl @@ -1,2 +1,2 @@ cluwne-transform = {CAPITALIZE(THE($target))} turned into a cluwne! -cluwne-name-prefix = Cluwnified {$target} +cluwne-name-prefix = cluwnified {$baseName} diff --git a/Resources/Locale/en-US/glue/glue.ftl b/Resources/Locale/en-US/glue/glue.ftl index 1a711d51c21d5d..158ebc9ed85b7e 100644 --- a/Resources/Locale/en-US/glue/glue.ftl +++ b/Resources/Locale/en-US/glue/glue.ftl @@ -1,5 +1,5 @@ glue-success = {THE($target)} has been covered in glue! -glued-name-prefix = Glued {$target} +glued-name-prefix = glued {$baseName} glue-failure = Can't cover {THE($target)} in glue! glue-verb-text = Apply Glue glue-verb-message = Glue an object diff --git a/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl b/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl index 6cbfc13a797433..95aaf9126d7e05 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl @@ -28,6 +28,9 @@ reagent-effect-condition-guidebook-reagent-threshold = reagent-effect-condition-guidebook-mob-state-condition = the mob is { $state } +reagent-effect-condition-guidebook-job-condition = + the target's job is { $job } + reagent-effect-condition-guidebook-solution-temperature = the solution's temperature is { $max -> [2147483648] at least {NATURALFIXED($min, 2)}k diff --git a/Resources/Locale/en-US/label/label-component.ftl b/Resources/Locale/en-US/label/label-component.ftl new file mode 100644 index 00000000000000..ff3a250c7b83ae --- /dev/null +++ b/Resources/Locale/en-US/label/label-component.ftl @@ -0,0 +1 @@ +comp-label-format = {$baseName} ({$label}) diff --git a/Resources/Locale/en-US/lube/lube.ftl b/Resources/Locale/en-US/lube/lube.ftl index 92dd2802ec77a8..1b5b66e069f15c 100644 --- a/Resources/Locale/en-US/lube/lube.ftl +++ b/Resources/Locale/en-US/lube/lube.ftl @@ -1,5 +1,5 @@ lube-success = {THE($target)} has been covered in lube! -lubed-name-prefix = Lubed {$target} +lubed-name-prefix = lubed {$baseName} lube-failure = Can't cover {THE($target)} in lube! lube-slip = {THE($target)} slips out of your hands! lube-verb-text = Apply Lube diff --git a/Resources/Locale/en-US/machine/machine.ftl b/Resources/Locale/en-US/machine/machine.ftl index ce8873df6f87b4..13d9e76b9d2590 100644 --- a/Resources/Locale/en-US/machine/machine.ftl +++ b/Resources/Locale/en-US/machine/machine.ftl @@ -1,4 +1,4 @@ -machine-insert-item = {THE($user)} inserted {THE($item)} into {THE($machine)}. +machine-insert-item = {CAPITALIZE(THE($user))} inserted {THE($item)} into {THE($machine)}. machine-upgrade-examinable-verb-text = Upgrades machine-upgrade-examinable-verb-message = Examine the machine upgrades. diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index 470af07361d0d5..d66d3cb9e649c9 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -93,6 +93,9 @@ marking-LizardHornsMyrsore = Lizard Horns (Myrsore) marking-LizardHornsBighorn-horns_bighorn = Lizard Horns (Bighorn) marking-LizardHornsBighorn = Lizard Horns (Bighorn) +marking-LizardHornsDemonic-horns_demonic = Lizard Horns (Demonic) +marking-LizardHornsDemonic = Lizard Horns (Demonic) + marking-LizardHornsKoboldEars-horns_kobold_ears = Lizard Ears (Kobold) marking-LizardHornsKoboldEars = Lizard Ears (Kobold) diff --git a/Resources/Locale/en-US/nutrition/components/animal-husbandry.ftl b/Resources/Locale/en-US/nutrition/components/animal-husbandry.ftl index 6ca108b653a352..cf7bf2d03acbea 100644 --- a/Resources/Locale/en-US/nutrition/components/animal-husbandry.ftl +++ b/Resources/Locale/en-US/nutrition/components/animal-husbandry.ftl @@ -1,3 +1,3 @@ -infant-name-prefix = baby {$name} +infant-name-prefix = baby {$baseName} reproductive-birth-popup = {CAPITALIZE(THE($parent))} gave birth! reproductive-laid-egg-popup = {CAPITALIZE(THE($parent))} lays an egg! diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index ec06d6e352cfa8..32743e8d1740e2 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -2,6 +2,7 @@ loadout-group-trinkets = Trinkets loadout-group-glasses = Glasses loadout-group-backpack = Backpack +loadout-group-instruments = Instruments # CentCom loadout-group-consultant-head = Consultant head diff --git a/Resources/Locale/en-US/reagents/meta/toxins.ftl b/Resources/Locale/en-US/reagents/meta/toxins.ftl index 09b135e7f542d6..85dd9a3b6fbfbc 100644 --- a/Resources/Locale/en-US/reagents/meta/toxins.ftl +++ b/Resources/Locale/en-US/reagents/meta/toxins.ftl @@ -78,3 +78,6 @@ reagent-desc-tazinide = A highly dangerous metallic mixture which can interfere reagent-name-lipolicide = lipolicide reagent-desc-lipolicide = A powerful toxin that will destroy fat cells, massively reducing body weight in a short time. Deadly to those without nutriment in their body. + +reagent-name-mechanotoxin = mechanotoxin +reagent-desc-mechanotoxin = A neurotoxin used as venom by some species of spider. Degrades movement when built up. diff --git a/Resources/Locale/en-US/research/components/robotics-console.ftl b/Resources/Locale/en-US/research/components/robotics-console.ftl index 978fa9a43c078c..a4c82bd03229ac 100644 --- a/Resources/Locale/en-US/research/components/robotics-console.ftl +++ b/Resources/Locale/en-US/research/components/robotics-console.ftl @@ -16,4 +16,4 @@ robotics-console-locked-message = Controls locked, swipe ID. robotics-console-disable = Disable robotics-console-destroy = Destroy -robotics-console-cyborg-destroyed = The cyborg {$name} has been remotely destroyed. +robotics-console-cyborg-destroying = {$name} is being remotely detonated! diff --git a/Resources/Locale/en-US/speech/accent-wearer-name-clothing.ftl b/Resources/Locale/en-US/speech/accent-wearer-name-clothing.ftl new file mode 100644 index 00000000000000..49b0fb31aac5f4 --- /dev/null +++ b/Resources/Locale/en-US/speech/accent-wearer-name-clothing.ftl @@ -0,0 +1 @@ +comp-accent-wearer-name-clothing-format = {$accentedName} diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl index e7e3f33a99b074..99dfece95d8a00 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/misc.ftl @@ -1,6 +1,13 @@ ent-ClothingShoesBootsCombatFilled = { ent-ClothingShoesBootsCombat } - .suffix = Filled .desc = { ent-ClothingShoesBootsCombat.desc } +ent-ClothingShoesBootsJackFilled = { ent-ClothingShoesBootsJack } + .desc = { ent-ClothingShoesBootsJack.desc } +ent-ClothingShoesBootsWinterSecFilled = { ent-ClothingShoesBootsWinterSec } + .desc = { ent-ClothingShoesBootsWinterSec.desc } +ent-ClothingShoesBootsCowboyBlackFilled = { ent-ClothingShoesBootsCowboyBlack } + .desc = { ent-ClothingShoesBootsCowboyBlack.desc } +ent-ClothingShoesHighheelBootsFilled = { ent-ClothingShoesHighheelBoots } + .desc = { ent-ClothingShoesHighheelBoots.desc } ent-ClothingShoesBootsMercFilled = { ent-ClothingShoesBootsMerc } .suffix = Filled .desc = { ent-ClothingShoesBootsMerc.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl index 35521191276b53..b578a7c5e6e9a3 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl @@ -1,2 +1,7 @@ ent-ClothingEyesBase = { ent-Clothing } .desc = { ent-Clothing.desc } +ent-ClothingHeadEyeBaseFlippable = { ent-ClothingEyesBase } + .desc = { ent-ClothingEyesBase.desc } +ent-ClothingHeadEyeBaseFlipped = { ent-ClothingHeadEyeBaseFlippable } + .suffix = flipped + .desc = { ent-ClothingHeadEyeBaseFlippable.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl index 0dc91a1587aa6d..18eb7e4afd01f2 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl @@ -33,9 +33,17 @@ ent-ClothingEyesGlassesHiddenSecurity = { ent-ClothingEyesGlassesSunglasses } .desc = { ent-ClothingEyesGlassesSunglasses.desc } ent-ClothingEyesEyepatchHudMedical = medical hud eyepatch .desc = A heads-up display that scans the humanoids in view and provides accurate data about their health status. For true patriots. +ent-ClothingEyesEyepatchHudMedicalFlipped = medical hud eyepatch + .desc = { ent-ClothingEyesEyepatchHudMedical.desc } ent-ClothingEyesEyepatchHudSecurity = security hud eyepatch .desc = A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. For true patriots. +ent-ClothingEyesEyepatchHudSecurityFlipped = security hud eyepatch + .desc = { ent-ClothingEyesEyepatchHudSecurity.desc } ent-ClothingEyesEyepatchHudBeer = beer hud eyepatch .desc = A pair of sunHud outfitted with apparatus to scan reagents, as well as providing an innate understanding of liquid viscosity while in motion. For true patriots. +ent-ClothingEyesEyepatchHudBeerFlipped = beer hud eyepatch + .desc = { ent-ClothingEyesEyepatchHudBeer.desc } ent-ClothingEyesEyepatchHudDiag = diagnostic hud eyepatch .desc = A heads-up display capable of analyzing the integrity and status of robotics and exosuits. Made out of see-borg-ium. +ent-ClothingEyesEyepatchHudDiagFlipped = diagnostic hud eyepatch + .desc = { ent-ClothingEyesEyepatchHudDiag.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl index 74e51836c24104..d7814fa38670b7 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl @@ -1,4 +1,7 @@ -ent-ClothingEyesEyepatch = eyepatch - .desc = Yarr. ent-ClothingEyesBlindfold = blindfold .desc = The bind leading the blind. +ent-ClothingEyesEyepatch = eyepatch + .desc = Yarr. +ent-ClothingEyesEyepatchFlipped = { ent-ClothingEyesEyepatch } + .suffix = flipped + .desc = { ent-ClothingEyesEyepatch.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl index 87ec8ffc3aca06..e309fe6ab9e4e1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hoods.ftl @@ -30,6 +30,8 @@ ent-ClothingHeadHatHoodIan = ian hood .desc = A hood to complete the 'Good boy' look. ent-ClothingHeadHatHoodCarp = carp hood .desc = A gnarly hood adorned with plastic space carp teeth. +ent-ClothingHeadHelmetHardsuitCarp = { ent-ClothingHeadHatHoodCarp } + .desc = { ent-ClothingHeadHatHoodCarp.desc } ent-ClothingHeadHatHoodMoth = moth mask .desc = A mask in the form of a moths head is usually made of lightweight materials. It mimics the shape of a moths head with large eyes and long antennae. Such masks are often used in cosplay, or when shooting movies and videos. ent-ClothingHeadHatHoodWinterDefault = default winter coat hood diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl index 12c166add7c1d1..5dcc5b1ddad54f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl @@ -23,3 +23,6 @@ ent-ClothingOuterSuitIan = ian suit .desc = Who's a good boy? ent-ClothingOuterSuitCarp = carp suit .desc = A special suit that makes you look just like a space carp, if your eyesight is bad. +ent-ClothingOuterHardsuitCarp = { ent-ClothingOuterSuitCarp } + .suffix = Hardsuit, DO NOT MAP + .desc = { ent-ClothingOuterSuitCarp.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl index c9db4ecb32a8db..8debb0cf2f1f5d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl @@ -4,5 +4,8 @@ ent-ClothingShoesBaseButcherable = { ent-ClothingShoesBase } .desc = { ent-ClothingShoesBase.desc } ent-ClothingShoesMilitaryBase = { ent-ClothingShoesBase } .desc = { ent-ClothingShoesBase.desc } +ent-ClothingShoesBootsSecFilled = { "" } + .suffix = Filled + .desc = { "" } ent-ClothingShoesBaseWinterBoots = { ent-ClothingShoesBaseButcherable } .desc = Fluffy boots to help survive even the coldest of winters. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl index cfbc2dc52907ca..a0cdd47cee8083 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl @@ -1,50 +1,74 @@ ent-Jug = jug .desc = Used to contain a very large amount of chemicals or solutions. Chugging is extremely ill-advised. -ent-JugCarbon = jug (carbon) +ent-JugCarbon = jug + .suffix = carbon .desc = { ent-Jug.desc } -ent-JugIodine = jug (iodine) +ent-JugIodine = jug + .suffix = iodine .desc = { ent-Jug.desc } -ent-JugFluorine = jug (fluorine) +ent-JugFluorine = jug + .suffix = fluorine .desc = { ent-Jug.desc } -ent-JugChlorine = jug (chlorine) +ent-JugChlorine = jug + .suffix = chlorine .desc = { ent-Jug.desc } -ent-JugAluminium = jug (aluminium) +ent-JugAluminium = jug + .suffix = aluminium .desc = { ent-Jug.desc } -ent-JugPhosphorus = jug (phosphorus) +ent-JugPhosphorus = jug + .suffix = phosphorus .desc = { ent-Jug.desc } -ent-JugSulfur = jug (sulfur) +ent-JugSulfur = jug + .suffix = sulfur .desc = { ent-Jug.desc } -ent-JugSilicon = jug (silicon) +ent-JugSilicon = jug + .suffix = silicon .desc = { ent-Jug.desc } -ent-JugHydrogen = jug (hydrogen) +ent-JugHydrogen = jug + .suffix = hydrogen .desc = { ent-Jug.desc } -ent-JugLithium = jug (lithium) +ent-JugLithium = jug + .suffix = lithium .desc = { ent-Jug.desc } -ent-JugSodium = jug (sodium) +ent-JugSodium = jug + .suffix = sodium .desc = { ent-Jug.desc } -ent-JugPotassium = jug (potassium) +ent-JugPotassium = jug + .suffix = potassium .desc = { ent-Jug.desc } -ent-JugRadium = jug (radium) +ent-JugRadium = jug + .suffix = radium .desc = { ent-Jug.desc } -ent-JugIron = jug (iron) +ent-JugIron = jug + .suffix = iron .desc = { ent-Jug.desc } -ent-JugCopper = jug (copper) +ent-JugCopper = jug + .suffix = copper .desc = { ent-Jug.desc } -ent-JugGold = jug (gold) +ent-JugGold = jug + .suffix = gold .desc = { ent-Jug.desc } -ent-JugMercury = jug (mercury) +ent-JugMercury = jug + .suffix = mercury .desc = { ent-Jug.desc } -ent-JugSilver = jug (silver) +ent-JugSilver = jug + .suffix = silver .desc = { ent-Jug.desc } -ent-JugEthanol = jug (ethanol) +ent-JugEthanol = jug + .suffix = ethanol .desc = { ent-Jug.desc } -ent-JugSugar = jug (sugar) +ent-JugSugar = jug + .suffix = sugar .desc = { ent-Jug.desc } -ent-JugNitrogen = jug (nitrogen) +ent-JugNitrogen = jug + .suffix = nitrogen .desc = { ent-Jug.desc } -ent-JugOxygen = jug (oxygen) +ent-JugOxygen = jug + .suffix = oxygen .desc = { ent-Jug.desc } -ent-JugPlantBGone = jug (Plant-B-Gone) +ent-JugPlantBGone = jug + .suffix = Plant-B-Gone .desc = { ent-Jug.desc } -ent-JugWeldingFuel = jug (welding fuel) +ent-JugWeldingFuel = jug + .suffix = welding fuel .desc = { ent-Jug.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/toy.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/toy.ftl new file mode 100644 index 00000000000000..c96e8709a751c3 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/toy.ftl @@ -0,0 +1,2 @@ +ent-MagazineFoamBox = ammunition box (foam) + .desc = { ent-MagazineLightRifleBox.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl index 70feb9db1a8847..e000dddbd63d53 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl @@ -6,8 +6,5 @@ ent-WeaponRifleM90GrenadeLauncher = M-90gl .desc = An older bullpup carbine model, with an attached underbarrel grenade launcher. Uses .20 rifle ammo. ent-WeaponRifleLecter = Lecter .desc = A high end military grade assault rifle. Uses .20 rifle ammo. -ent-WeaponRifleLecterRubber = Lecter - .suffix = Non-lethal - .desc = { ent-WeaponRifleLecter.desc } -ent-WeaponRifleKR51 = KR51 - .desc = Silent automatic rifle. Uses .25 caseless ammo +ent-WeaponRifleFoam = Foam Force Astro Ace + .desc = A premium foam rifle of the highest quality. Its plastic feels rugged, and its mechanisms sturdy. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl index c636824940e0c2..f9960330e0fbfe 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl @@ -15,3 +15,5 @@ ent-GrenadeShrapnel = shrapnel grenade .desc = Releases a deadly spray of shrapnel that causes severe bleeding. ent-SlipocalypseClusterSoap = slipocalypse clustersoap .desc = Spreads small pieces of syndicate soap over an area upon landing on the floor. +ent-GrenadeFoamDart = foam dart grenade + .desc = Releases a bothersome spray of foam darts that cause severe welching. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl index e89548db24d68f..9e61de12d78281 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl @@ -1,7 +1,5 @@ ent-BaseStation = { "" } .desc = { "" } -ent-BaseRandomStation = { "" } - .desc = { "" } ent-BaseStationCargo = { "" } .desc = { "" } ent-BaseStationJobsSpawning = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl index bbe7554de90332..8b268c84e845e9 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl @@ -36,8 +36,6 @@ ent-CockroachMigration = { ent-BaseStationEventShortDelay } .desc = { ent-BaseStationEventShortDelay.desc } ent-PowerGridCheck = { ent-BaseStationEventShortDelay } .desc = { ent-BaseStationEventShortDelay.desc } -ent-RandomSentience = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-SolarFlare = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-VentClog = { ent-BaseStationEventLongDelay } diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 91af974b405862..a27574cb72fa15 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -318,6 +318,9 @@ uplink-clothing-shoes-boots-mag-syndie-desc = A pair of boots that prevent slipp uplink-eva-syndie-name = Syndicate EVA Bundle uplink-eva-syndie-desc = A simple EVA suit that offers no protection other than what's needed to survive in space. +uplink-hardsuit-carp-name = Carp Hardsuit +uplink-hardsuit-carp-desc = Looks like an ordinary carp suit, except fully spaceproof and tricks space carp into thinking you are one of them. + uplink-hardsuit-syndie-name = Syndicate Hardsuit uplink-hardsuit-syndie-desc = The Syndicate's well known armored blood red hardsuit, capable of space walks and bullet resistant. diff --git a/Resources/Locale/en-US/zombies/zombie.ftl b/Resources/Locale/en-US/zombies/zombie.ftl index a391a95b0dae6f..d45943e825de3b 100644 --- a/Resources/Locale/en-US/zombies/zombie.ftl +++ b/Resources/Locale/en-US/zombies/zombie.ftl @@ -2,7 +2,7 @@ zombie-transform = {CAPITALIZE(THE($target))} turned into a zombie! zombie-infection-greeting = You have become a zombie. Your goal is to seek out the living and to try to infect them. Work together with the other zombies to overtake the station. zombie-generic = zombie -zombie-name-prefix = Zombified {$target} +zombie-name-prefix = zombified {$baseName} zombie-role-desc = A malevolent creature of the dead. zombie-role-rules = You are an antagonist. Search out the living and bite them in order to infect them and turn them into zombies. Work together with the other zombies to overtake the station. diff --git a/Resources/Locale/ru-RU/borg/borg.ftl b/Resources/Locale/ru-RU/borg/borg.ftl index 710d2b46bd1e22..5dbbb3f1ff9883 100644 --- a/Resources/Locale/ru-RU/borg/borg.ftl +++ b/Resources/Locale/ru-RU/borg/borg.ftl @@ -15,5 +15,7 @@ borg-ui-modules-label = Модули: borg-ui-module-counter = { $actual }/{ $max } # Transponder borg-transponder-disabled-popup = Мозг вылетает из верхушки { $name }! +borg-transponder-disabling-popup = Ваш транспондер начинает блокировать доступ к корпусу! +borg-transponder-destroying-popup = Механизм самоуничтожения { $name } начинает пищать! borg-transponder-emagged-disabled-popup = Огни вашего транспондера погасли! borg-transponder-emagged-destroyed-popup = Предохранитель вашего транспондера перегорел! diff --git a/Resources/Locale/ru-RU/chemistry/components/transformable-container-component.ftl b/Resources/Locale/ru-RU/chemistry/components/transformable-container-component.ftl index de88f9fb97f97b..8c72b95ad039a3 100644 --- a/Resources/Locale/ru-RU/chemistry/components/transformable-container-component.ftl +++ b/Resources/Locale/ru-RU/chemistry/components/transformable-container-component.ftl @@ -1 +1 @@ -transformable-container-component-glass = стакан { $name } +transformable-container-component-glass = стакан { $reagent } diff --git a/Resources/Locale/ru-RU/cluwne/cluwne.ftl b/Resources/Locale/ru-RU/cluwne/cluwne.ftl index 1660c5ec4d5828..338264fcca7c0d 100644 --- a/Resources/Locale/ru-RU/cluwne/cluwne.ftl +++ b/Resources/Locale/ru-RU/cluwne/cluwne.ftl @@ -1,2 +1,2 @@ -cluwne-transform = { CAPITALIZE(THE($target)) } превратился в клувна! -cluwne-name-prefix = Клувнирован { $target } +cluwne-transform = { CAPITALIZE($target) } превратился в клувна! +cluwne-name-prefix = клувн { $baseName } diff --git a/Resources/Locale/ru-RU/glue/glue.ftl b/Resources/Locale/ru-RU/glue/glue.ftl index 94b034eeb0362c..0ed38faab2bd98 100644 --- a/Resources/Locale/ru-RU/glue/glue.ftl +++ b/Resources/Locale/ru-RU/glue/glue.ftl @@ -1,5 +1,5 @@ glue-success = { $target } был покрыт клеем. -glued-name-prefix = Приклеен { $target } +glued-name-prefix = приклеенный { $baseName } glue-failure = { $target } уже в клее. glue-verb-text = Нанести клей glue-verb-message = Приклеить предмет diff --git a/Resources/Locale/ru-RU/guidebook/chemistry/conditions.ftl b/Resources/Locale/ru-RU/guidebook/chemistry/conditions.ftl index d9de2b05d07a16..9253e35249ae22 100644 --- a/Resources/Locale/ru-RU/guidebook/chemistry/conditions.ftl +++ b/Resources/Locale/ru-RU/guidebook/chemistry/conditions.ftl @@ -26,6 +26,7 @@ reagent-effect-condition-guidebook-reagent-threshold = } } reagent-effect-condition-guidebook-mob-state-condition = состояние существа { $state } +reagent-effect-condition-guidebook-job-condition = работа цели { $job } reagent-effect-condition-guidebook-solution-temperature = температура раствора { $max -> [2147483648] не менее { NATURALFIXED($min, 2) }К diff --git a/Resources/Locale/ru-RU/label/label-component.ftl b/Resources/Locale/ru-RU/label/label-component.ftl new file mode 100644 index 00000000000000..b5bf09d4d5c7f8 --- /dev/null +++ b/Resources/Locale/ru-RU/label/label-component.ftl @@ -0,0 +1 @@ +comp-label-format = { $baseName } ({ $label }) diff --git a/Resources/Locale/ru-RU/lube/lube.ftl b/Resources/Locale/ru-RU/lube/lube.ftl index 56028dae5fb455..15fb861487131d 100644 --- a/Resources/Locale/ru-RU/lube/lube.ftl +++ b/Resources/Locale/ru-RU/lube/lube.ftl @@ -1,5 +1,5 @@ lube-success = { $target } было покрыто смазкой! -lubed-name-prefix = Смазано { $target } +lubed-name-prefix = смазанный { $baseName } lube-failure = Не получается покрыть { $target } смазкой! lube-slip = { $target } выскальзывает из рук! lube-verb-text = Применить смазку diff --git a/Resources/Locale/ru-RU/machine/machine.ftl b/Resources/Locale/ru-RU/machine/machine.ftl index 38a276e543b961..4f8df17a8c78d1 100644 --- a/Resources/Locale/ru-RU/machine/machine.ftl +++ b/Resources/Locale/ru-RU/machine/machine.ftl @@ -1,4 +1,4 @@ -machine-insert-item = { $user } помещает { $item } в { $machine }. +machine-insert-item = { CAPITALIZE($user) } помещает { $item } в { $machine }. machine-upgrade-examinable-verb-text = Улучшения machine-upgrade-examinable-verb-message = Узнайте, какие характеристики устройства были улучшены. machine-upgrade-increased-by-percentage = [color=yellow]{ CAPITALIZE($upgraded) }[/color] увеличено на { $percent }%. diff --git a/Resources/Locale/ru-RU/markings/reptilian.ftl b/Resources/Locale/ru-RU/markings/reptilian.ftl index 9f1c08d4153093..32f160b62d16bc 100644 --- a/Resources/Locale/ru-RU/markings/reptilian.ftl +++ b/Resources/Locale/ru-RU/markings/reptilian.ftl @@ -62,6 +62,8 @@ marking-LizardHornsMyrsore-horns_myrsore = Унатх, рожки (Мирзор marking-LizardHornsMyrsore = Унатх, рожки (Мирзора) marking-LizardHornsBighorn-horns_bighorn = Унатх, рожки (Толсторог) marking-LizardHornsBighorn = Унатх, рожки (Толсторог) +marking-LizardHornsDemonic-horns_demonic = Унатх, рожки (Демонические) +marking-LizardHornsDemonic = Унатх, рожки (Демонические) marking-LizardHornsKoboldEars-horns_kobold_ears = Унатх, уши (Кобольд) marking-LizardHornsKoboldEars = Унатх, уши (Кобольд) marking-LizardHornsFloppyKoboldEars-horns_floppy_kobold_ears = Унатх, уши (Вислоухий кобольд) diff --git a/Resources/Locale/ru-RU/nutrition/components/animal-husbandry.ftl b/Resources/Locale/ru-RU/nutrition/components/animal-husbandry.ftl index fb3eee70d3aeb7..96dd3e03ef5211 100644 --- a/Resources/Locale/ru-RU/nutrition/components/animal-husbandry.ftl +++ b/Resources/Locale/ru-RU/nutrition/components/animal-husbandry.ftl @@ -1,3 +1,3 @@ -infant-name-prefix = ребёнок { $name } +infant-name-prefix = ребёнок { $baseName } reproductive-birth-popup = { CAPITALIZE($parent) } родила! reproductive-laid-egg-popup = { CAPITALIZE($parent) } отложила яйцо! diff --git a/Resources/Locale/ru-RU/preferences/loadout-groups.ftl b/Resources/Locale/ru-RU/preferences/loadout-groups.ftl index e5a31444d85663..69ed8fe8f142c6 100644 --- a/Resources/Locale/ru-RU/preferences/loadout-groups.ftl +++ b/Resources/Locale/ru-RU/preferences/loadout-groups.ftl @@ -2,6 +2,7 @@ loadout-group-trinkets = Безделушки loadout-group-glasses = Очки loadout-group-backpack = Рюкзак +loadout-group-instruments = Инструменты # Command loadout-group-captain-head = Голова капитана loadout-group-captain-jumpsuit = Комбинезон капитана diff --git a/Resources/Locale/ru-RU/reagents/meta/toxins.ftl b/Resources/Locale/ru-RU/reagents/meta/toxins.ftl index 3aa1813634c228..077ba8ffdfc841 100644 --- a/Resources/Locale/ru-RU/reagents/meta/toxins.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/toxins.ftl @@ -52,5 +52,5 @@ reagent-name-tazinide = тазинид reagent-desc-tazinide = Очень опасная металлическая смесь, которая может нарушить возможность передвигаться благодаря электризующему воздействию. reagent-name-lipolicide = липолицид reagent-desc-lipolicide = Мощный токсин, разрушающий жировые клетки и способствующий снижению массы тела в сжатые сроки. Смертельно опасен для тех, у кого в организме нет питательных веществ. -reagent-name-live-slime = живая слизь -reagent-desc-live-slime = Слизь, прожившая не один век, которую так и хочется пожарить. +reagent-name-mechanotoxin = механотоксин +reagent-desc-mechanotoxin = Нейротоксин, используемый в качестве яда некоторыми видами пауков. При накоплении замедляет движение. diff --git a/Resources/Locale/ru-RU/research/components/robotics-console.ftl b/Resources/Locale/ru-RU/research/components/robotics-console.ftl index 4207e5ed3395c3..64e67b3a4240b1 100644 --- a/Resources/Locale/ru-RU/research/components/robotics-console.ftl +++ b/Resources/Locale/ru-RU/research/components/robotics-console.ftl @@ -14,4 +14,4 @@ robotics-console-brain = robotics-console-locked-message = Управление заблокировано, проведите ID-картой. robotics-console-disable = Отключить robotics-console-destroy = Уничтожить -robotics-console-cyborg-destroyed = Киборг { $name } был дистанционно уничтожен. +robotics-console-cyborg-destroying = Киборг { $name } был дистанционно сдетонирован! diff --git a/Resources/Locale/ru-RU/speech/accent-wearer-name-clothing.ftl b/Resources/Locale/ru-RU/speech/accent-wearer-name-clothing.ftl new file mode 100644 index 00000000000000..49995f971f250b --- /dev/null +++ b/Resources/Locale/ru-RU/speech/accent-wearer-name-clothing.ftl @@ -0,0 +1 @@ +comp-accent-wearer-name-clothing-format = { $accentedName } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/items/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/items/misc.ftl index 2dc2a1e9f7efd1..f483c138fc5189 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/items/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/items/misc.ftl @@ -1,6 +1,13 @@ ent-ClothingShoesBootsCombatFilled = { ent-ClothingShoesBootsCombat } - .suffix = Заполненный .desc = { ent-ClothingShoesBootsCombat.desc } +ent-ClothingShoesBootsJackFilled = { ent-ClothingShoesBootsJack } + .desc = { ent-ClothingShoesBootsJack.desc } +ent-ClothingShoesBootsWinterSecFilled = { ent-ClothingShoesBootsWinterSec } + .desc = { ent-ClothingShoesBootsWinterSec.desc } +ent-ClothingShoesBootsCowboyBlackFilled = { ent-ClothingShoesBootsCowboyBlack } + .desc = { ent-ClothingShoesBootsCowboyBlack.desc } +ent-ClothingShoesHighheelBootsFilled = { ent-ClothingShoesHighheelBoots } + .desc = { ent-ClothingShoesHighheelBoots.desc } ent-ClothingShoesBootsMercFilled = { ent-ClothingShoesBootsMerc } .suffix = Заполненный .desc = { ent-ClothingShoesBootsMerc.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl index 35521191276b53..8cb2beab041e2d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/base_clothingeyes.ftl @@ -1,2 +1,7 @@ ent-ClothingEyesBase = { ent-Clothing } .desc = { ent-Clothing.desc } +ent-ClothingHeadEyeBaseFlippable = { ent-ClothingEyesBase } + .desc = { ent-ClothingEyesBase.desc } +ent-ClothingHeadEyeBaseFlipped = { ent-ClothingHeadEyeBaseFlippable } + .suffix = Перевёрнутая + .desc = { ent-ClothingHeadEyeBaseFlippable.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl index 8234cd897f1e7d..7d307a05269ce8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl @@ -35,9 +35,17 @@ ent-ClothingEyesGlassesHiddenSecurity = { ent-ClothingEyesGlassesSunglasses } .desc = { ent-ClothingEyesGlassesSunglasses.desc } ent-ClothingEyesEyepatchHudMedical = медицинский моновизор .desc = Окуляр с индикатором на стекле, который сканирует гуманоидов в поле зрения и предоставляет точные данные о состоянии их здоровья. Для настоящих патриотов. +ent-ClothingEyesEyepatchHudMedicalFlipped = { ent-ClothingEyesEyepatchHudMedical } + .desc = { ent-ClothingEyesEyepatchHudMedical.desc } ent-ClothingEyesEyepatchHudSecurity = моновизор охраны .desc = Окуляр с индикатором на стекле, который сканирует гуманоидов в поле зрения и предоставляет точные данные об их идентификационном статусе и записях в системе безопасности. Для настоящих патриотов. +ent-ClothingEyesEyepatchHudSecurityFlipped = { ent-ClothingEyesEyepatchHudSecurity } + .desc = { ent-ClothingEyesEyepatchHudSecurity.desc } ent-ClothingEyesEyepatchHudBeer = пивной монокуляр .desc = Пара солнцезащитных очков, оснащенных сканером реагентов, а также дающих понимание вязкости жидкости во время движения. Для настоящих патриотов. +ent-ClothingEyesEyepatchHudBeerFlipped = { ent-ClothingEyesEyepatchHudBeer } + .desc = { ent-ClothingEyesEyepatchHudBeer.desc } ent-ClothingEyesEyepatchHudDiag = диагностический моновизор .desc = Окуляр с индикатором на стекле, способный анализировать целостность и состояние роботов и экзокостюмов. Сделан из си-боргия. +ent-ClothingEyesEyepatchHudDiagFlipped = { ent-ClothingEyesEyepatchHudDiag } + .desc = { ent-ClothingEyesEyepatchHudDiag.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl index ea84561313d39c..48a48d0e1d4a8f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/misc.ftl @@ -1,4 +1,7 @@ -ent-ClothingEyesEyepatch = глазная повязка - .desc = Яррр. ent-ClothingEyesBlindfold = повязка на глаза .desc = Полоса непроницаемого материала. +ent-ClothingEyesEyepatch = глазная повязка + .desc = Яррр. +ent-ClothingEyesEyepatchFlipped = { ent-ClothingEyesEyepatch } + .suffix = Перевёрнутая + .desc = { ent-ClothingEyesEyepatch.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hoods.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hoods.ftl index 5f943e24b972ee..8e64223306f694 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hoods.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hoods.ftl @@ -30,6 +30,8 @@ ent-ClothingHeadHatHoodIan = капюшон иана .desc = Капюшон для завершения образа 'Хороший мальчик'. ent-ClothingHeadHatHoodCarp = капюшон карпа .desc = Капюшон, украшенный пластиковыми зубами космического карпа. +ent-ClothingHeadHelmetHardsuitCarp = { ent-ClothingHeadHatHoodCarp } + .desc = { ent-ClothingHeadHatHoodCarp.desc } ent-ClothingHeadHatHoodMoth = маска моли .desc = Маска в виде головы моли обычно изготавливается из легких материалов. Она имитирует форму головы моли с большими глазами и длинными усиками. Такие маски часто используются в косплее или при съемках кино и видео. ent-ClothingHeadHatHoodWinterDefault = стандартный капюшон зимнего пальто diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl index aee41c4da741e5..420b95bcaf853e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/suits.ftl @@ -23,3 +23,6 @@ ent-ClothingOuterSuitIan = костюм иана .desc = Кто хороший мальчик? ent-ClothingOuterSuitCarp = костюм карпа .desc = Специальный костюм, который делает вас похожим на космического карпа. +ent-ClothingOuterHardsuitCarp = { ent-ClothingOuterSuitCarp } + .suffix = Скафандр, НЕ МАППИТЬ + .desc = { ent-ClothingOuterSuitCarp.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl index 4c7a98cc388c52..8dd00dcfd2731c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/base_clothingshoes.ftl @@ -4,5 +4,8 @@ ent-ClothingShoesBaseButcherable = { ent-ClothingShoesBase } .desc = { ent-ClothingShoesBase.desc } ent-ClothingShoesMilitaryBase = { ent-ClothingShoesBase } .desc = { ent-ClothingShoesBase.desc } +ent-ClothingShoesBootsSecFilled = { "" } + .suffix = Заполненные + .desc = { "" } ent-ClothingShoesBaseWinterBoots = { ent-ClothingShoesBaseButcherable } .desc = Меховые сапоги помогут пережить даже самую холодную зиму. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl index 694d5655683e6e..9f0ade56161e3b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemical-containers.ftl @@ -1,50 +1,74 @@ ent-Jug = кувшин .desc = Используется для хранения очень большого количества химических веществ или растворов. Пить залпом крайне не рекомендуется. -ent-JugCarbon = кувшин (углерод) +ent-JugCarbon = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugIodine = кувшин (йод) + .suffix = углерод +ent-JugIodine = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugFluorine = кувшин (фтор) + .suffix = йод +ent-JugFluorine = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugChlorine = кувшин (хлор) + .suffix = фтор +ent-JugChlorine = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugAluminium = кувшин (алюминий) + .suffix = хлор +ent-JugAluminium = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugPhosphorus = кувшин (фосфор) + .suffix = алюминий +ent-JugPhosphorus = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugSulfur = кувшин (сера) + .suffix = фосфор +ent-JugSulfur = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugSilicon = кувшин (кремний) + .suffix = сера +ent-JugSilicon = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugHydrogen = кувшин (водород) + .suffix = кремний +ent-JugHydrogen = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugLithium = кувшин (литий) + .suffix = водород +ent-JugLithium = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugSodium = кувшин (натрий) + .suffix = литий +ent-JugSodium = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugPotassium = кувшин (калий) + .suffix = натрий +ent-JugPotassium = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugRadium = кувшин (радий) + .suffix = калий +ent-JugRadium = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugIron = кувшин (железо) + .suffix = радий +ent-JugIron = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugCopper = кувшин (медь) + .suffix = железо +ent-JugCopper = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugGold = кувшин (золото) + .suffix = медь +ent-JugGold = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugMercury = кувшин (ртуть) + .suffix = золото +ent-JugMercury = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugSilver = кувшин (серебро) + .suffix = ртуть +ent-JugSilver = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugEthanol = кувшин (этанол) + .suffix = серебро +ent-JugEthanol = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugSugar = кувшин (сахар) + .suffix = этанол +ent-JugSugar = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugNitrogen = кувшин (азот) + .suffix = сахар +ent-JugNitrogen = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugOxygen = кувшин (кислород) + .suffix = азот +ent-JugOxygen = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugPlantBGone = кувшин (Plant-B-Gone) + .suffix = кислород +ent-JugPlantBGone = { ent-Jug } .desc = { ent-Jug.desc } -ent-JugWeldingFuel = кувшин (сварочное топливо) + .suffix = Plant-B-Gone +ent-JugWeldingFuel = { ent-Jug } .desc = { ent-Jug.desc } + .suffix = сварочное топливо diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/toy.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/toy.ftl new file mode 100644 index 00000000000000..0aeb680e2154b0 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/toy.ftl @@ -0,0 +1,2 @@ +ent-MagazineFoamBox = коробка патронов (пена) + .desc = { ent-MagazineLightRifleBox.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl index 10292b7e3a415a..7c4a585e4d7334 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl @@ -9,15 +9,5 @@ ent-WeaponRifleM90GrenadeLauncher = М-90gl ent-WeaponRifleLecter = Лектер .desc = Первоклассная армейская штурмовая винтовка. Использует патроны калибра .20 винтовочный. .suffix = Автомат -ent-WeaponRifleLecterRubber = Лектер - .suffix = Травматический - .desc = { ent-WeaponRifleLecter.desc } -ent-WeaponRifleKR51 = КР51 - .desc = Тихая автоматическая винтовка. Использует .25 безгильзовые патроны. - .suffix = Автомат -ent-WeaponRifleAsh9 = АШ9 - .desc = Громкий и грубый безгильзовый автомат. Использует 12.7 безгильзовые. - .suffix = Автомат -ent-WeaponSniperVssk14 = ВССК - .desc = Медленная, но чертовски меткая винтовка. Использует 12.7 безгильзовые. - .suffix = Винтовка +ent-WeaponRifleFoam = Пенопласовый принудитель Astro Ace + .desc = Поролоновая винтовка премиум-класса высочайшего качества. Ее пластик кажется прочным, а механизмы - надежными. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl index f6a0b4e7981637..1bcefd3331ca2f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/clusterbang.ftl @@ -15,3 +15,5 @@ ent-GrenadeShrapnel = шрапнелевая граната .desc = Выпускает смертоносную шрапнель, вызывающую сильное кровотечение. ent-SlipocalypseClusterSoap = кластерное мыло Скользкопокалипсис .desc = После приземления разбрасывает вокруг себя маленькие кусочки мыла Синдиката. +ent-GrenadeFoamDart = граната с поролоновыми дротиками + .desc = Выпускает рой надоедливых поролоновых дротиков, которые приводят к образованию серьёзных засосов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl index e89548db24d68f..9e61de12d78281 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl @@ -1,7 +1,5 @@ ent-BaseStation = { "" } .desc = { "" } -ent-BaseRandomStation = { "" } - .desc = { "" } ent-BaseStationCargo = { "" } .desc = { "" } ent-BaseStationJobsSpawning = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl index f3c10234c5c2b5..4d5448f74765d4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl @@ -36,8 +36,6 @@ ent-CockroachMigration = { ent-BaseStationEventShortDelay } .desc = { ent-BaseStationEventShortDelay.desc } ent-PowerGridCheck = { ent-BaseStationEventShortDelay } .desc = { ent-BaseStationEventShortDelay.desc } -ent-RandomSentience = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-SolarFlare = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-VentClog = { ent-BaseStationEventLongDelay } diff --git a/Resources/Locale/ru-RU/starshine/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/starshine/ghost/roles/ghost-role-component.ftl index 1eeef9a7e6d68a..3c5c0291a89565 100644 --- a/Resources/Locale/ru-RU/starshine/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/ru-RU/starshine/ghost/roles/ghost-role-component.ftl @@ -55,3 +55,7 @@ ghost-role-information-mimic-clown-rules = Вы - антагонист, убив ghost-role-information-mimic-greytide-name = ассистент-мимик ghost-role-information-mimic-greytide-description = Вы - одна из самых страшных и загадочных вещей из тех. тоннелей. ghost-role-information-mimic-greytide-rules = Вы - антагонист, убивайте и охотьтесь на экипаж. + +ghost-role-information-xenomorph-hunter-name = Ксеноморф охотник +ghost-role-information-xenomorph-hunter-description = Вы - ксеноморф охотник. Вы - идеальный организм, созданный лишь для одной цели - убивать! +ghost-role-information-xenomorph-hunter-rules = Вы - антагонист, убивайте и охотьтесь на экипаж, старайтесь устравивать засады и не лезть в открытый бой. diff --git a/Resources/Locale/ru-RU/starshine/reagents/meta/toxins.ftl b/Resources/Locale/ru-RU/starshine/reagents/meta/toxins.ftl new file mode 100644 index 00000000000000..ccde9f80ae73ab --- /dev/null +++ b/Resources/Locale/ru-RU/starshine/reagents/meta/toxins.ftl @@ -0,0 +1,2 @@ +reagent-name-live-slime = живая слизь +reagent-desc-live-slime = Слизь, прожившая не один век, которую так и хочется пожарить. diff --git a/Resources/Locale/ru-RU/starshine/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl b/Resources/Locale/ru-RU/starshine/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl new file mode 100644 index 00000000000000..4cc4e776be1c75 --- /dev/null +++ b/Resources/Locale/ru-RU/starshine/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl @@ -0,0 +1,2 @@ +ent-MobXenoHunter = ксеноморф охотник + .desc = Обычно они приходят ночью. Обычно... diff --git a/Resources/Locale/ru-RU/starshine/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl b/Resources/Locale/ru-RU/starshine/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl new file mode 100644 index 00000000000000..2d1aee7217c966 --- /dev/null +++ b/Resources/Locale/ru-RU/starshine/ss14-ru/prototypes/entities/objects/weapons/guns/rifles/rifles.ftl @@ -0,0 +1,12 @@ +ent-WeaponRifleLecterRubber = Лектер + .suffix = Травматический + .desc = { ent-WeaponRifleLecter.desc } +ent-WeaponRifleKR51 = КР51 + .desc = Тихая автоматическая винтовка. Использует .25 безгильзовые патроны. + .suffix = Автомат +ent-WeaponRifleAsh9 = АШ9 + .desc = Громкий и грубый безгильзовый автомат. Использует 12.7 безгильзовые. + .suffix = Автомат +ent-WeaponSniperVssk14 = ВССК + .desc = Медленная, но чертовски меткая винтовка. Использует 12.7 безгильзовые. + .suffix = Винтовка diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index 3499c0c3ba5014..b31a9ebf21ec03 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -218,6 +218,8 @@ uplink-hardsuit-syndie-name = Скафандр Синдиката uplink-hardsuit-syndie-desc = Широко известный бронированный кроваво-красный скафандр Синдиката, позволяющий выходить в открытый космос и устойчивый к пулям. uplink-clothing-shoes-boots-mag-syndie-name = Кроваво-красные магнитные сапоги uplink-clothing-shoes-boots-mag-syndie-desc = Пара ботинок, которые предотвращают поскальзывание и позволяют нормально передвигаться в условиях невесомости за счёт небольшого замедления. Кроме этого, они обладают функционалом реактивного ранца и поставляются заправленными, но хватает их ненадолго. +uplink-hardsuit-carp-name = Скафандр карпа +uplink-hardsuit-carp-desc = Выглядит как обычный костюм карпа, только полностью космический и обманывает космических карпов, заставляя их думать, что вы один из них. uplink-eva-syndie-name = Набор EVA Синдиката uplink-eva-syndie-desc = Простой EVA-скафандр, который не даёт никакой защиты, кроме той, что необходима для выживания в космосе. uplink-hardsuit-syndieelite-name = Элитный скафандр Синдиката diff --git a/Resources/Locale/ru-RU/zombies/zombie.ftl b/Resources/Locale/ru-RU/zombies/zombie.ftl index fac5452ac8f3e6..4c08c01b71a762 100644 --- a/Resources/Locale/ru-RU/zombies/zombie.ftl +++ b/Resources/Locale/ru-RU/zombies/zombie.ftl @@ -1,7 +1,7 @@ zombie-transform = { CAPITALIZE($target) } стал зомби! zombie-infection-greeting = Вы стали зомби. Ваша задача - искать и заражать живых. Работайте сообща со своими воскресшими коллегами, чтобы одолеть оставшихся членов экипажа. zombie-generic = зомби -zombie-name-prefix = зомби { $target } +zombie-name-prefix = зомби { $baseName } zombie-role-desc = Зловещий мертвец. zombie-role-rules = Вы - антагонист. Ищите и кусайте живых людей, чтобы заразить их и превратить в зомби. Работайте сообща с другими зомби, чтобы захватить станцию. zombie-permadeath = На этот раз, Вы действительно мертвы. diff --git a/Resources/Maps/Shuttles/emergency_meta.yml b/Resources/Maps/Shuttles/emergency_meta.yml index a85c607195e0fa..84b6ff02e668b3 100644 --- a/Resources/Maps/Shuttles/emergency_meta.yml +++ b/Resources/Maps/Shuttles/emergency_meta.yml @@ -465,85 +465,6 @@ entities: - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 -- proto: ActionToggleLight - entities: - - uid: 4 - components: - - type: Transform - parent: 3 - - type: InstantAction - container: 3 - - uid: 5 - components: - - type: Transform - parent: 3 - - type: InstantAction - container: 3 - - uid: 12 - components: - - type: Transform - parent: 11 - - type: InstantAction - container: 11 - - uid: 13 - components: - - type: Transform - parent: 11 - - type: InstantAction - container: 11 - - uid: 22 - components: - - type: Transform - parent: 21 - - type: InstantAction - container: 21 - - uid: 23 - components: - - type: Transform - parent: 21 - - type: InstantAction - container: 21 - - uid: 32 - components: - - type: Transform - parent: 31 - - type: InstantAction - container: 31 - - uid: 33 - components: - - type: Transform - parent: 31 - - type: InstantAction - container: 31 - - uid: 42 - components: - - type: Transform - parent: 41 - - type: InstantAction - container: 41 - - uid: 43 - components: - - type: Transform - parent: 41 - - type: InstantAction - container: 41 -- proto: ActionToggleSuitPiece - entities: - - uid: 51 - components: - - type: Transform - parent: 50 - - type: InstantAction - container: 50 - entIcon: 52 -- proto: ActionVendingThrow - entities: - - uid: 54 - components: - - type: Transform - parent: 53 - - type: InstantAction - container: 53 - proto: AirCanister entities: - uid: 55 @@ -2604,27 +2525,8 @@ entities: components: - type: Transform parent: 2 - - type: HandheldLight - selfToggleActionEntity: 5 - toggleActionEntity: 4 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 6 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 4 - - 5 - type: Physics canCollide: False - - type: ActionsContainer - - type: Actions - actions: - - 5 - type: InsideEntityStorage - proto: ClothingMaskBreath entities: @@ -2755,23 +2657,8 @@ entities: - type: Transform pos: 11.467667,-10.363369 parent: 1 - - type: ToggleableClothing - clothingUid: 52 - actionEntity: 51 - - type: ContainerContainer - containers: - toggleable-clothing: !type:ContainerSlot - showEnts: False - occludes: True - ent: 52 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 51 - type: Physics canCollide: False - - type: ActionsContainer - proto: ClothingOuterSuitFire entities: - uid: 8 @@ -3291,102 +3178,26 @@ entities: components: - type: Transform parent: 10 - - type: HandheldLight - selfToggleActionEntity: 13 - toggleActionEntity: 12 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 14 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 12 - - 13 - type: Physics canCollide: False - - type: ActionsContainer - - type: Actions - actions: - - 13 - uid: 21 components: - type: Transform parent: 20 - - type: HandheldLight - selfToggleActionEntity: 23 - toggleActionEntity: 22 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 22 - - 23 - type: Physics canCollide: False - - type: ActionsContainer - - type: Actions - actions: - - 23 - uid: 31 components: - type: Transform parent: 30 - - type: HandheldLight - selfToggleActionEntity: 33 - toggleActionEntity: 32 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 34 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 32 - - 33 - type: Physics canCollide: False - - type: ActionsContainer - - type: Actions - actions: - - 33 - uid: 41 components: - type: Transform parent: 40 - - type: HandheldLight - selfToggleActionEntity: 43 - toggleActionEntity: 42 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 44 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 42 - - 43 - type: Physics canCollide: False - - type: ActionsContainer - - type: Actions - actions: - - 43 - proto: FoodBoxDonut entities: - uid: 583 @@ -7517,17 +7328,6 @@ entities: - type: Transform pos: 16.5,-0.5 parent: 1 - - type: VendingMachine - actionEntity: 54 - - type: Actions - actions: - - 54 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 54 - proto: VendingMachineWallMedical entities: - uid: 926 diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index 2db45c0308f173..d220057d5e92e8 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -77,7 +77,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: eQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA + tiles: eQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA version: 6 2,0: ind: 2,0 @@ -2261,10 +2261,10 @@ entities: 0: 57582 7,-4: 0: 4353 - 2: 16384 + 2: 50176 7,-3: - 0: 273 - 2: 16452 + 0: 497 + 2: 16384 7,-2: 0: 40209 2: 12 @@ -2574,7 +2574,8 @@ entities: -12,-1: 0: 65535 -13,-1: - 0: 47288 + 0: 34952 + 4: 12336 -12,0: 0: 65535 -12,-5: @@ -2610,7 +2611,7 @@ entities: -13,-6: 2: 61680 -13,-5: - 0: 61152 + 4: 61152 -11,-6: 2: 49 0: 56320 @@ -2639,8 +2640,8 @@ entities: 0: 305 -13,0: 0: 34952 - 4: 48 - 5: 12288 + 5: 48 + 6: 12288 -12,1: 0: 30576 -13,1: @@ -2703,12 +2704,13 @@ entities: 2: 3140 -14,0: 0: 13107 - 4: 128 - 5: 32768 + 5: 128 + 6: 32768 -14,1: 0: 243 -14,-1: - 0: 46003 + 0: 13107 + 4: 32896 -14,2: 0: 52352 2: 8 @@ -2798,6 +2800,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -2838,14 +2855,6 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap -- proto: ActionToggleLight - entities: - - uid: 7876 - components: - - type: Transform - parent: 7875 - - type: InstantAction - container: 7875 - proto: AirAlarm entities: - uid: 1942 @@ -3032,11 +3041,9 @@ entities: devices: - 1989 - 845 - - 7333 - 1231 - 3817 - 3815 - - 929 - 7599 - uid: 7372 components: @@ -3342,6 +3349,11 @@ entities: - type: Transform pos: 16.5,-9.5 parent: 30 + - uid: 8524 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 30 - proto: Airlock entities: - uid: 33 @@ -3657,11 +3669,17 @@ entities: parent: 30 - proto: AirlockExternalGlass entities: - - uid: 5372 + - uid: 1296 components: - type: Transform pos: 7.5,28.5 parent: 30 + - uid: 7393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 30 - uid: 7775 components: - type: Transform @@ -3757,11 +3775,6 @@ entities: parent: 30 - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 1296 - components: - - type: Transform - pos: 7.5,30.5 - parent: 30 - uid: 7628 components: - type: Transform @@ -3796,6 +3809,20 @@ entities: - type: Transform pos: 21.5,-24.5 parent: 30 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 2908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 30 + - uid: 6972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 30 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 1328 @@ -4743,12 +4770,14 @@ entities: - uid: 8507 components: - type: Transform - pos: 22.5,34.5 + rot: 1.5707963267948966 rad + pos: 31.5,-10.5 parent: 30 - uid: 8508 components: - type: Transform - pos: 15.5,34.5 + rot: 3.141592653589793 rad + pos: 7.5,30.5 parent: 30 - proto: AtmosFixBlockerMarker entities: @@ -16863,6 +16892,11 @@ entities: - type: Transform pos: -55.5,-7.5 parent: 30 + - uid: 8527 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 30 - proto: Carpet entities: - uid: 160 @@ -20989,6 +21023,11 @@ entities: - type: Transform pos: 7.5,29.5 parent: 30 + - uid: 8522 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 30 - proto: DefaultStationBeaconEVAStorage entities: - uid: 7600 @@ -23922,22 +23961,6 @@ entities: parent: 6004 - type: Physics canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 7113 - components: - - type: Transform - parent: 6972 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 7393 - components: - - type: Transform - parent: 7379 - - type: Physics - canCollide: False - proto: EncryptionKeySecurity entities: - uid: 6530 @@ -24659,6 +24682,13 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 8523 + components: + - type: Transform + pos: -15.5,6.5 + parent: 30 + - type: Fixtures + fixtures: {} - proto: FloorTileItemCarpetClown entities: - uid: 4155 @@ -25974,6 +26004,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8670 + components: + - type: Transform + pos: 2.5,9.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 391 @@ -33465,6 +33502,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 8671 + components: + - type: Transform + pos: 2.5,8.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 388 @@ -34663,6 +34707,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7336 components: - type: Transform @@ -35598,6 +35650,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8669 + components: + - type: Transform + pos: 2.5,6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 373 @@ -35703,10 +35762,10 @@ entities: - uid: 929 components: - type: Transform - pos: 2.5,6.5 + pos: 1.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 1099 components: - type: Transform @@ -36150,14 +36209,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 7333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7349 components: - type: Transform @@ -36270,6 +36321,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 8668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 7730 @@ -38288,6 +38347,18 @@ entities: - type: Transform pos: -53.5,6.5 parent: 30 + - uid: 8515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 30 + - uid: 8516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 30 - uid: 8538 components: - type: Transform @@ -39025,22 +39096,8 @@ entities: - type: Transform pos: -43.645462,-17.224262 parent: 30 - - type: HandheldLight - toggleActionEntity: 7876 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 7876 - type: Physics canCollide: True - - type: ActionsContainer - proto: LemonSeeds entities: - uid: 8448 @@ -39670,6 +39727,18 @@ entities: - type: Transform pos: -51.5,-6.5 parent: 30 + - uid: 8525 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 30 +- proto: NitrousOxideCanister + entities: + - uid: 8650 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 30 - proto: NoticeBoard entities: - uid: 7632 @@ -39747,6 +39816,11 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 30 + - uid: 8526 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 30 - proto: PaintingCafeTerraceAtNight entities: - uid: 4137 @@ -40004,6 +40078,11 @@ entities: - type: Transform pos: -51.5,-9.5 parent: 30 + - uid: 8651 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 30 - proto: PlasmaTankFilled entities: - uid: 6099 @@ -42070,6 +42149,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 5372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 30 - uid: 5409 components: - type: Transform @@ -44320,6 +44405,18 @@ entities: - type: Transform pos: -53.5,6.5 parent: 30 + - uid: 8519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 30 + - uid: 8521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 30 - uid: 8542 components: - type: Transform @@ -47003,6 +47100,16 @@ entities: - type: Transform pos: -52.5,-11.5 parent: 30 + - uid: 8662 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 30 + - uid: 8663 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 30 - proto: SubstationBasic entities: - uid: 1695 @@ -48686,46 +48793,6 @@ entities: showEnts: False occludes: True ents: [] - - uid: 6972 - components: - - type: Transform - pos: -48.5,7.5 - parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7113 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7379 - components: - - type: Transform - pos: -48.5,8.5 - parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7393 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TelecomServerFilledCargo entities: - uid: 7438 @@ -48733,6 +48800,13 @@ entities: - type: Transform pos: -48.5,6.5 parent: 30 +- proto: TelecomServerFilledEngineering + entities: + - uid: 7113 + components: + - type: Transform + pos: -48.5,7.5 + parent: 30 - proto: TelecomServerFilledMedical entities: - uid: 7915 @@ -48740,6 +48814,13 @@ entities: - type: Transform pos: -47.5,6.5 parent: 30 +- proto: TelecomServerFilledScience + entities: + - uid: 7379 + components: + - type: Transform + pos: -48.5,8.5 + parent: 30 - proto: ToiletDirtyWater entities: - uid: 7674 @@ -50854,11 +50935,6 @@ entities: - type: Transform pos: 29.5,-12.5 parent: 30 - - uid: 2908 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 30 - uid: 2910 components: - type: Transform @@ -52899,6 +52975,18 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,19.5 parent: 30 + - uid: 8517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 30 + - uid: 8518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 30 - uid: 8603 components: - type: Transform diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 3dfb5c154a1927..51a2b8ba6c2bc3 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -9395,14 +9395,6 @@ entities: - type: Transform pos: 31.477634,-79.4623 parent: 60 -- proto: ActionToggleLight - entities: - - uid: 3189 - components: - - type: Transform - parent: 19193 - - type: InstantAction - container: 19193 - proto: AirAlarm entities: - uid: 249 @@ -70806,20 +70798,6 @@ entities: - type: Transform pos: 20.983997,21.51571 parent: 60 - - type: HandheldLight - toggleActionEntity: 3189 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 3189 - - type: ActionsContainer - uid: 21240 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index cdc847e9106ce5..07a5cd9d35fa6a 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -8446,14 +8446,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8469,14 +8461,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8492,14 +8476,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -8515,14 +8491,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8538,14 +8506,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -8561,14 +8521,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: Joint joints: @@ -11589,7 +11541,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -648.6603 + secondsUntilStateChange: -706.3356 state: Opening - type: DeviceLinkSource lastSignals: @@ -12819,10 +12771,10 @@ entities: - type: Transform pos: 41.5,-21.5 parent: 8364 +- proto: AirlockMedicalMorgueLocked + entities: - uid: 18321 components: - - type: MetaData - name: Morgue - type: Transform pos: 44.5,-15.5 parent: 8364 @@ -64372,14 +64324,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 25912 components: - type: Transform @@ -64408,14 +64352,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetChefFilled entities: - uid: 10660 @@ -64448,14 +64384,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 618 components: - type: Transform @@ -64479,14 +64407,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 619 components: - type: Transform @@ -64510,14 +64430,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1181 components: - type: Transform @@ -64541,14 +64453,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64586,14 +64490,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1513 components: - type: Transform @@ -64617,14 +64513,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2357 components: - type: Transform @@ -64653,14 +64541,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6518 components: - type: Transform @@ -64684,14 +64564,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64729,14 +64601,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64784,14 +64648,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64829,14 +64685,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64874,14 +64722,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64919,14 +64759,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -64964,14 +64796,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65009,14 +64833,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65054,14 +64870,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65099,14 +64907,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65144,14 +64944,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13891 components: - type: Transform @@ -65175,14 +64967,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65220,14 +65004,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 14563 components: - type: Transform @@ -65251,14 +65027,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65301,14 +65069,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65346,14 +65106,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65391,14 +65143,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16859 components: - type: Transform @@ -65427,14 +65171,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65472,14 +65208,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65517,14 +65245,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65562,14 +65282,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65607,14 +65319,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65652,14 +65356,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65697,14 +65393,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65742,14 +65430,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65787,14 +65467,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -65872,14 +65544,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22546 components: - type: Transform @@ -65903,14 +65567,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22945 components: - type: Transform @@ -65939,14 +65595,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 27598 components: - type: Transform @@ -66019,14 +65667,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 5310 components: - type: Transform @@ -66050,14 +65690,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6517 components: - type: Transform @@ -66081,14 +65713,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66126,14 +65750,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66171,14 +65787,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16658 components: - type: Transform @@ -66212,14 +65820,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66257,14 +65857,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66302,14 +65894,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66347,14 +65931,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66402,14 +65978,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21216 components: - type: Transform @@ -66433,14 +66001,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66509,14 +66069,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 5506 components: - type: Transform @@ -66540,14 +66092,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3SecurityFilled entities: - uid: 9261 @@ -66573,14 +66117,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3VirologyFilled entities: - uid: 4109 @@ -66616,14 +66152,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66661,14 +66189,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66706,14 +66226,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66753,14 +66265,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1026 @@ -66786,14 +66290,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66831,14 +66327,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10527 components: - type: Transform @@ -66862,14 +66350,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66907,14 +66387,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66952,14 +66424,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -66997,14 +66461,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67042,14 +66498,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67087,14 +66535,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67132,14 +66572,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67177,14 +66609,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67222,14 +66646,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67267,14 +66683,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15935 components: - type: Transform @@ -67298,14 +66706,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67353,14 +66753,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67398,14 +66790,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67443,14 +66827,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67488,14 +66864,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67533,14 +66901,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67578,14 +66938,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67623,14 +66975,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67680,14 +67024,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21290 components: - type: Transform @@ -67711,14 +67047,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21762 components: - type: Transform @@ -67742,14 +67070,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21769 components: - type: Transform @@ -67773,14 +67093,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 25992 components: - type: Transform @@ -67804,14 +67116,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 27373 components: - type: Transform @@ -67862,14 +67166,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67907,14 +67203,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67952,14 +67240,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -67997,14 +67277,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68042,14 +67314,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68087,14 +67351,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68132,14 +67388,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68177,14 +67425,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68222,14 +67462,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68270,14 +67502,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68315,14 +67539,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68360,14 +67576,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68405,14 +67613,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetToolFilled entities: - uid: 12434 @@ -68438,14 +67638,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68483,14 +67675,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68528,14 +67712,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68573,14 +67749,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -68618,14 +67786,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70367,12 +69527,6 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 8364 - - uid: 6491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 8364 - uid: 19091 components: - type: Transform @@ -70412,6 +69566,11 @@ entities: - type: Transform pos: 39.5,-16.5 parent: 8364 + - uid: 8751 + components: + - type: Transform + pos: -9.5,32.5 + parent: 8364 - uid: 20882 components: - type: Transform @@ -70485,12 +69644,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 8364 - - uid: 8750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 8364 - uid: 8928 components: - type: Transform @@ -70520,6 +69673,12 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-41.5 parent: 8364 + - uid: 20698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-25.5 + parent: 8364 - proto: ComputerCriminalRecords entities: - uid: 9075 @@ -70622,12 +69781,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 8364 - - uid: 26738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 8364 - proto: ComputerPowerMonitoring entities: - uid: 595 @@ -70721,6 +69874,14 @@ entities: rot: 1.5707963267948966 rad pos: 69.5,-20.5 parent: 8364 +- proto: ComputerRoboticsControl + entities: + - uid: 6491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-34.5 + parent: 8364 - proto: ComputerSalvageExpedition entities: - uid: 24680 @@ -71238,14 +70399,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateCoffin entities: - uid: 11610 @@ -71354,14 +70507,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: Construction containers: - EntityStorageComponent @@ -71401,14 +70546,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateFilledSpawner entities: - uid: 17768 @@ -71501,14 +70638,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19056 components: - type: Transform @@ -71544,14 +70673,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71597,14 +70718,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71650,6 +70763,25 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 15937 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 - 0 - 0 - 0 @@ -71658,14 +70790,32 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - type: Construction containers: - EntityStorageComponent - entity_storage - - uid: 15937 + - uid: 15951 components: - type: Transform - pos: -32.5,-43.5 + pos: -20.5,-58.5 parent: 8364 - type: EntityStorage air: @@ -71685,6 +70835,43 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 16395 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 - 0 - 0 - 0 @@ -71715,169 +70902,10 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15951 + - uid: 16398 components: - type: Transform - pos: -20.5,-58.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 16395 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 16398 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 20015 - components: - - type: Transform - pos: 90.5,-31.5 + pos: -9.5,-41.5 parent: 8364 - type: EntityStorage air: @@ -71897,6 +70925,43 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 20015 + components: + - type: Transform + pos: 90.5,-31.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 - 0 - 0 - 0 @@ -71950,14 +71015,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72009,14 +71066,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72062,14 +71111,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72109,6 +71150,11 @@ entities: parent: 8364 - proto: CrateMedicalSurgery entities: + - uid: 9539 + components: + - type: Transform + pos: -9.5,30.5 + parent: 8364 - uid: 19237 components: - type: Transform @@ -72157,14 +71203,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 25913 components: - type: Transform @@ -72214,14 +71252,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72327,14 +71357,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringServer entities: - uid: 26796 @@ -81773,56 +80795,70 @@ entities: parent: 8364 - proto: Dresser entities: - - uid: 776 + - uid: 5190 components: - type: Transform - pos: -30.5,-24.5 + pos: 4.5,8.5 parent: 8364 - - uid: 5190 + - uid: 6675 components: - type: Transform - pos: 4.5,8.5 + pos: 15.5,15.5 parent: 8364 - - uid: 5289 + - uid: 6676 components: - type: Transform - pos: -11.5,-25.5 + pos: 4.5,5.5 parent: 8364 + - uid: 6987 + components: + - type: Transform + pos: 20.5,4.5 + parent: 8364 +- proto: DresserCaptainFilled + entities: - uid: 5341 components: - type: Transform pos: 6.5,-20.5 parent: 8364 +- proto: DresserChiefEngineerFilled + entities: - uid: 5638 components: - type: Transform pos: -3.5,-61.5 parent: 8364 +- proto: DresserChiefMedicalOfficerFilled + entities: - uid: 6391 components: - type: Transform pos: 34.5,-38.5 parent: 8364 - - uid: 6675 - components: - - type: Transform - pos: 15.5,15.5 - parent: 8364 - - uid: 6676 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 5289 components: - type: Transform - pos: 4.5,5.5 + pos: -11.5,-25.5 parent: 8364 - - uid: 6987 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 9238 components: - type: Transform - pos: 20.5,4.5 + pos: 16.5,40.5 parent: 8364 - - uid: 9238 +- proto: DresserQuarterMasterFilled + entities: + - uid: 776 components: - type: Transform - pos: 16.5,40.5 + pos: -30.5,-24.5 parent: 8364 +- proto: DresserResearchDirectorFilled + entities: - uid: 17575 components: - type: Transform @@ -97624,14 +96660,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 23915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-6.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 23916 components: - type: Transform @@ -106706,11 +105734,15 @@ entities: - uid: 25784 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 14.5,31.5 parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 25785 components: - type: Transform @@ -122548,13 +121580,6 @@ entities: - type: Transform pos: 5.5,-49.5 parent: 8364 -- proto: LockerBlueShieldFilled - entities: - - uid: 9539 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 8364 - proto: LockerBoozeFilled entities: - uid: 1718 @@ -122580,14 +121605,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10571 components: - type: Transform @@ -122611,14 +121628,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13255 components: - type: Transform @@ -122642,14 +121651,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -122676,13 +121677,6 @@ entities: - type: Transform pos: 49.5,-0.5 parent: 8364 -- proto: LockerBrigmedicFilledHardsuit - entities: - - uid: 8751 - components: - - type: Transform - pos: -9.5,31.5 - parent: 8364 - proto: LockerCaptainFilled entities: - uid: 10526 @@ -122708,14 +121702,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerChemistryFilled entities: - uid: 18772 @@ -122741,14 +121727,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -122802,14 +121780,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -122849,14 +121819,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18726 components: - type: Transform @@ -122880,14 +121842,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26863 components: - type: Transform @@ -122965,14 +121919,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8554 components: - type: Transform @@ -122996,14 +121942,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8555 components: - type: Transform @@ -123027,14 +121965,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8961 components: - type: Transform @@ -123058,14 +121988,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8964 components: - type: Transform @@ -123089,14 +122011,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9118 components: - type: Transform @@ -123120,14 +122034,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9356 components: - type: Transform @@ -123156,14 +122062,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13293 components: - type: Transform @@ -123187,14 +122085,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13854 components: - type: Transform @@ -123218,14 +122108,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 14312 components: - type: Transform @@ -123249,14 +122131,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 25719 components: - type: Transform @@ -123280,14 +122154,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 8156 @@ -123323,14 +122189,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123380,14 +122238,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -123431,14 +122281,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123478,14 +122320,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123525,14 +122359,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123594,14 +122420,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21408 components: - type: Transform @@ -123625,14 +122443,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerParamedicFilled entities: - uid: 27687 @@ -123696,14 +122506,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13409 components: - type: Transform @@ -123727,14 +122529,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13410 components: - type: Transform @@ -123758,14 +122552,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 17888 components: - type: Transform @@ -123809,14 +122595,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSecurity entities: - uid: 15388 @@ -123842,14 +122620,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123899,14 +122669,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123944,14 +122706,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -123989,14 +122743,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -124034,14 +122780,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -124079,14 +122817,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 27288 components: - type: Transform @@ -124110,14 +122840,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWardenFilled entities: - uid: 9234 @@ -124143,14 +122865,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -124195,14 +122909,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16146 components: - type: Transform @@ -124226,14 +122932,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MachineAnomalyGenerator entities: - uid: 21980 @@ -124908,14 +123606,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -124954,14 +123644,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10575 components: - type: Transform @@ -124986,14 +123668,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10790 components: - type: Transform @@ -125018,14 +123692,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10791 components: - type: Transform @@ -125050,14 +123716,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18623 components: - type: Transform @@ -125082,14 +123740,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18624 components: - type: Transform @@ -125114,14 +123764,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18713 components: - type: Transform @@ -125146,14 +123788,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18714 components: - type: Transform @@ -125178,14 +123812,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18715 components: - type: Transform @@ -125210,14 +123836,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18717 components: - type: Transform @@ -125242,14 +123860,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18718 components: - type: Transform @@ -125274,14 +123884,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18719 components: - type: Transform @@ -125306,14 +123908,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18720 components: - type: Transform @@ -125338,14 +123932,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19862 components: - type: Transform @@ -125370,14 +123956,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MouseTimedSpawner entities: - uid: 420 @@ -125559,6 +124137,11 @@ entities: - type: Transform pos: 19.5,-32.5 parent: 8364 + - uid: 8750 + components: + - type: Transform + pos: -9.5,31.5 + parent: 8364 - uid: 19015 components: - type: Transform @@ -144485,13 +143068,6 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 8364 -- proto: SpawnPointBlueShield - entities: - - uid: 20699 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 8364 - proto: SpawnPointBorg entities: - uid: 27671 @@ -144521,13 +143097,6 @@ entities: - type: Transform pos: 47.5,-4.5 parent: 8364 -- proto: SpawnPointBrigmedic - entities: - - uid: 20698 - components: - - type: Transform - pos: -8.5,31.5 - parent: 8364 - proto: SpawnPointCaptain entities: - uid: 11766 @@ -170257,14 +168826,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeBlackFilled entities: - uid: 13885 @@ -170290,14 +168851,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeBlueFilled entities: - uid: 16368 @@ -170337,14 +168890,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -170384,14 +168929,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeGreyFilled entities: - uid: 13886 @@ -170417,14 +168954,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21615 components: - type: Transform @@ -170448,14 +168977,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeMixedFilled entities: - uid: 6927 @@ -170481,14 +169002,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9109 components: - type: Transform @@ -170512,14 +169025,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13888 components: - type: Transform @@ -170543,14 +169048,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobePinkFilled entities: - uid: 6926 @@ -170576,14 +169073,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobePrisonFilled entities: - uid: 8546 @@ -170609,14 +169098,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8547 components: - type: Transform @@ -170640,14 +169121,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8760 components: - type: Transform @@ -170681,14 +169154,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26345 components: - type: Transform @@ -170712,14 +169177,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26346 components: - type: Transform @@ -170743,14 +169200,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26347 components: - type: Transform @@ -170774,14 +169223,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26348 components: - type: Transform @@ -170805,14 +169246,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeSalvageFilled entities: - uid: 14570 @@ -170838,14 +169271,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeScienceFilled entities: - uid: 21412 @@ -170871,14 +169296,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -170916,14 +169333,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -170963,14 +169372,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13911 components: - type: Transform @@ -170994,14 +169395,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeYellowFilled entities: - uid: 6920 @@ -171027,14 +169420,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WarningAir entities: - uid: 22914 diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 78fdcc4fd1c041..655c0ff53d237b 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -4499,20 +4499,6 @@ entities: - type: Transform pos: 3.5402613,7.6028175 parent: 1 -- proto: ActionToggleLight - entities: - - uid: 9312 - components: - - type: Transform - parent: 12532 - - type: InstantAction - container: 12532 - - uid: 9313 - components: - - type: Transform - parent: 12533 - - type: InstantAction - container: 12533 - proto: AirAlarm entities: - uid: 8049 @@ -35985,39 +35971,11 @@ entities: - type: Transform pos: 16.59333,23.726284 parent: 1 - - type: HandheldLight - toggleActionEntity: 9312 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9312 - - type: ActionsContainer - uid: 12533 components: - type: Transform pos: 16.59333,23.476284 parent: 1 - - type: HandheldLight - toggleActionEntity: 9313 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9313 - - type: ActionsContainer - proto: Floodlight entities: - uid: 7307 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 93c917fb4def5b..68fe4bc783fd1e 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -28757,11 +28757,10 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,57.5 parent: 13329 - - uid: 15487 + - uid: 15462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-43.5 + pos: 49.5,-37.5 parent: 13329 - uid: 31586 components: @@ -97651,11 +97650,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-22.5 parent: 13329 - - uid: 15462 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 13329 - uid: 15485 components: - type: Transform @@ -97689,6 +97683,14 @@ entities: - type: Transform pos: 77.5,57.5 parent: 13329 +- proto: ComputerRoboticsControl + entities: + - uid: 15487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-43.5 + parent: 13329 - proto: ComputerSalvageExpedition entities: - uid: 13473 diff --git a/Resources/Maps/lighthouse.yml b/Resources/Maps/lighthouse.yml index 7d62729d79eaef..b89a504e1943ad 100644 --- a/Resources/Maps/lighthouse.yml +++ b/Resources/Maps/lighthouse.yml @@ -2375,7 +2375,8 @@ entities: -2,2: 0: 32527 -2,3: - 0: 21588 + 2: 16 + 0: 21572 -2,4: 0: 29781 -1,4: @@ -2545,15 +2546,15 @@ entities: -7,-5: 0: 36863 -7,-8: - 2: 224 + 3: 224 0: 57344 -7,-7: - 3: 224 - 4: 57344 + 4: 224 + 5: 57344 -7,-6: - 5: 224 + 6: 224 -7,-9: - 3: 57344 + 4: 57344 -6,-5: 0: 40953 -6,-8: @@ -3285,11 +3286,11 @@ entities: 0: 56793 -12,14: 0: 1143 - 6: 24576 + 7: 24576 -13,14: 0: 57309 -12,15: - 6: 1638 + 7: 1638 -13,15: 0: 56829 -12,16: @@ -3379,11 +3380,14 @@ entities: 0,17: 0: 61007 -1,17: - 0: 65311 + 0: 30495 + 2: 2048 + 8: 32768 0,18: 0: 61006 -1,18: - 0: 32767 + 0: 30583 + 8: 2184 0,19: 0: 39176 -1,19: @@ -3429,7 +3433,8 @@ entities: -3,19: 0: 65295 -3,17: - 0: 61160 + 0: 44776 + 9: 16384 -3,20: 0: 2047 -2,17: @@ -3439,7 +3444,8 @@ entities: -2,19: 0: 13091 -2,20: - 0: 47747 + 0: 47745 + 10: 2 -8,17: 0: 65535 -9,17: @@ -3467,7 +3473,8 @@ entities: -6,20: 0: 65532 -5,20: - 0: 52509 + 0: 52501 + 11: 8 -12,17: 0: 3855 -13,17: @@ -3674,7 +3681,8 @@ entities: -7,22: 0: 48048 -7,23: - 0: 47931 + 0: 47923 + 12: 8 -6,21: 0: 32759 -6,22: @@ -3908,6 +3916,29 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -4023,6 +4054,121 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14984 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.803423 + - 82.02241 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.823984 + - 82.09976 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: BecomesStation @@ -4077,31 +4223,33 @@ entities: - 86 - 1524 - 1525 + - uid: 5759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,80.5 + parent: 2 + - type: DeviceList + devices: + - 13763 + - 13762 + - 17125 - uid: 13613 components: - type: Transform pos: -34.5,66.5 parent: 2 + - uid: 16896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,82.5 + parent: 2 - type: DeviceList devices: - - 17120 - - 17121 - - 17131 - - 17134 - - 17118 - - 17119 - - 13149 - - 13150 - - 13151 - - 17124 - - 10834 - - 17123 - - 17122 - - 13697 - - 13698 - - 13693 - - 13694 - - 17705 + - 13780 + - 13779 + - 17128 - uid: 17049 components: - type: Transform @@ -4595,37 +4743,31 @@ entities: parent: 2 - type: DeviceList devices: - - 7789 - - 7788 - - 7787 - - 9769 - - 11342 - - 11343 - - 11344 - - 11339 - - 11341 - - 11340 - - 17111 - - 11351 - 11427 - 11428 - 11429 - 11327 - 11326 - 11325 - - 9357 + - 11351 + - 17111 + - 11339 + - 11340 + - 11341 + - 11344 + - 11343 + - 11342 + - 9769 + - 7789 + - 7788 + - 7787 - 9355 + - 9357 - 10745 - 10743 - 10744 - 10823 - 10822 - - 10820 - - 10821 - - 11416 - - 11417 - - 17701 - - 17700 - uid: 17113 components: - type: Transform @@ -4652,35 +4794,24 @@ entities: parent: 2 - type: DeviceList devices: - - 17122 - - 17123 - - 17124 - - 10834 - - 17139 - - 17127 - - 17125 - - 17128 + - 17130 - 17117 - 17129 - - 17130 - - 15799 + - 17128 + - 17125 + - 17139 + - 17126 + - 17127 + - 10834 + - 17124 + - 17123 + - 17122 + - 3343 + - 3340 + - 13774 + - 13775 - 13715 - 13716 - - 13775 - - 13774 - - 13810 - - 13817 - - 13811 - - 13818 - - 13819 - - 13820 - - 13795 - - 13794 - - 13780 - - 13779 - - 13763 - - 13762 - - 17704 - uid: 17141 components: - type: Transform @@ -4963,6 +5094,152 @@ entities: - 4009 - 4008 - 17694 + - uid: 17722 + components: + - type: Transform + pos: -39.5,77.5 + parent: 2 + - type: DeviceList + devices: + - 13749 + - 13750 + - 17126 + - uid: 17723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,82.5 + parent: 2 + - type: DeviceList + devices: + - 13795 + - 13794 + - 17117 + - uid: 17724 + components: + - type: Transform + pos: -45.5,76.5 + parent: 2 + - type: DeviceList + devices: + - 3639 + - 3342 + - 17130 + - uid: 17725 + components: + - type: Transform + pos: -45.5,80.5 + parent: 2 + - type: DeviceList + devices: + - 13819 + - 13820 + - 17129 + - uid: 17726 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 13694 + - 13693 + - 11359 + - 13151 + - 13150 + - 13149 + - 17127 + - uid: 17731 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 10821 + - 10820 + - 11351 + - 11349 + - 11350 + - 11347 + - 11348 + - uid: 17733 + components: + - type: Transform + pos: -46.5,58.5 + parent: 2 + - type: DeviceList + devices: + - 10778 + - 10777 + - 10828 + - 10827 + - 11350 + - 11349 + - 17111 + - uid: 17735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 6589 + - 6588 + - 17737 + - 17738 + - uid: 17741 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 4773 + - 4774 + - 4775 + - 7276 + - 7277 + - 7278 + - 7327 + - 7328 + - 7329 + - 7268 + - 7267 + - 6382 + - 6383 + - 6384 + - 17696 + - 17740 + - uid: 17742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 9350 + - 9351 + - 5534 + - 5244 + - uid: 17743 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 9349 + - 9352 + - 5533 + - 5534 + - uid: 17744 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 - proto: AirCanister entities: - uid: 5627 @@ -5157,6 +5434,11 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: + - uid: 14647 + components: + - type: Transform + pos: -39.5,99.5 + parent: 2 - uid: 14668 components: - type: Transform @@ -7041,13 +7323,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,52.5 parent: 2 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 14647 - components: - - type: Transform - pos: -39.5,99.5 - parent: 2 - proto: AirlockServiceLocked entities: - uid: 9531 @@ -7289,6 +7564,7 @@ entities: deviceLists: - 17078 - 17071 + - 17741 - uid: 17697 components: - type: Transform @@ -7325,8 +7601,6 @@ entities: deviceLists: - 17112 - 17110 - - 17109 - - 17107 - uid: 17701 components: - type: Transform @@ -7336,8 +7610,6 @@ entities: deviceLists: - 17112 - 17110 - - 17109 - - 17107 - uid: 17702 components: - type: Transform @@ -7365,9 +7637,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 - 17137 - - 17138 - uid: 17705 components: - type: Transform @@ -7375,7 +7645,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13613 - 17132 - uid: 17706 components: @@ -36693,22 +36962,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingBeltSecurityWebbing - entities: - - uid: 11984 - components: - - type: Transform - parent: 11980 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12276 - components: - - type: Transform - parent: 12274 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingBeltUtility entities: - uid: 2169 @@ -36822,12 +37075,12 @@ entities: - type: Transform pos: -33.48447,107.04391 parent: 2 -- proto: ClothingEyesHudSyndicate +- proto: ClothingEyesVisorNinja entities: - uid: 1714 components: - type: Transform - pos: -10.429275,5.574158 + pos: -10.486563,5.520951 parent: 2 - proto: ClothingHandsGlovesAtmos entities: @@ -43764,11 +44017,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-17.5 parent: 2 - - uid: 16303 - components: - - type: Transform - pos: -1.5,48.5 - parent: 2 - uid: 16304 components: - type: Transform @@ -45833,6 +46081,17 @@ entities: - 1519 - 17683 - 17682 + - uid: 3339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,80.5 + parent: 2 + - type: DeviceList + devices: + - 13763 + - 13762 + - 17125 - uid: 17004 components: - type: Transform @@ -46340,26 +46599,31 @@ entities: parent: 2 - type: DeviceList devices: + - 11325 + - 11351 + - 17111 + - 11339 + - 11340 + - 11341 + - 11344 + - 11343 + - 11342 + - 9769 - 7789 - 7788 - 7787 - - 9769 - - 11342 - - 11343 - - 11344 - - 11339 - - 11341 - - 11340 - - 17111 - - 11351 - - 11427 - - 11428 - - 11429 - - 11327 + - 9355 + - 9357 + - 10745 + - 10743 + - 10744 + - 10823 + - 10822 - 11326 - - 11325 - - 17701 - - 17700 + - 11327 + - 11429 + - 11428 + - 11427 - uid: 17108 components: - type: Transform @@ -46515,19 +46779,24 @@ entities: parent: 2 - type: DeviceList devices: + - 3343 - 17122 - 17123 - 17124 - 10834 - - 17139 - 17127 + - 17126 + - 17139 - 17125 - 17128 - - 17117 - 17129 + - 17117 - 17130 - - 15799 - - 17704 + - 3340 + - 13774 + - 13775 + - 13715 + - 13716 - uid: 17140 components: - type: Transform @@ -46753,6 +47022,125 @@ entities: - 4009 - 4008 - 17694 + - uid: 17727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,81.5 + parent: 2 + - type: DeviceList + devices: + - 13780 + - 13779 + - 17128 + - uid: 17728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,81.5 + parent: 2 + - type: DeviceList + devices: + - 13780 + - 13779 + - 17128 + - uid: 17729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,74.5 + parent: 2 + - type: DeviceList + devices: + - 13749 + - 13750 + - 17126 + - uid: 17730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 13694 + - 13693 + - 11359 + - 13151 + - 13150 + - 13149 + - 17127 + - uid: 17732 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 10821 + - 10820 + - 11351 + - 11349 + - 11350 + - 11347 + - 11348 + - uid: 17734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 10778 + - 10777 + - 17111 + - 10828 + - 10827 + - 11350 + - 11349 + - uid: 17736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 6589 + - 6588 + - 17737 + - 17738 + - uid: 17745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,28.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 9349 + - 9352 + - 5533 + - 5534 + - uid: 17747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 9350 + - 9351 + - 5534 + - 5244 - proto: FireAxeCabinetFilled entities: - uid: 1183 @@ -46878,6 +47266,10 @@ entities: - type: Transform pos: -28.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17746 + - 17743 - uid: 5938 components: - type: Transform @@ -47080,11 +47472,19 @@ entities: - type: Transform pos: -43.5,66.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17731 + - 17732 - uid: 11348 components: - type: Transform pos: -43.5,69.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17731 + - 17732 - uid: 11356 components: - type: Transform @@ -47222,8 +47622,6 @@ entities: - type: DeviceNetwork deviceLists: - 17137 - - 17138 - - 17136 - uid: 15800 components: - type: Transform @@ -47472,6 +47870,10 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17742 + - 17747 - uid: 5528 components: - type: Transform @@ -47543,6 +47945,7 @@ entities: - 17072 - 17071 - 17078 + - 17741 - uid: 7277 components: - type: Transform @@ -47554,6 +47957,7 @@ entities: - 17072 - 17071 - 17078 + - 17741 - uid: 7278 components: - type: Transform @@ -47567,6 +47971,7 @@ entities: - 17078 - 17079 - 17080 + - 17741 - uid: 9749 components: - type: Transform @@ -47645,6 +48050,8 @@ entities: deviceLists: - 17103 - 17104 + - 17734 + - 17733 - uid: 10828 components: - type: Transform @@ -47655,6 +48062,8 @@ entities: deviceLists: - 17103 - 17104 + - 17734 + - 17733 - uid: 11003 components: - type: Transform @@ -47751,12 +48160,24 @@ entities: rot: 3.141592653589793 rad pos: -49.5,59.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17731 + - 17732 + - 17734 + - 17733 - uid: 11350 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,59.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17731 + - 17732 + - 17734 + - 17733 - uid: 11352 components: - type: Transform @@ -47803,6 +48224,10 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,68.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17726 + - 17730 - uid: 13149 components: - type: Transform @@ -47813,7 +48238,8 @@ entities: deviceLists: - 17132 - 17133 - - 13613 + - 17726 + - 17730 - uid: 13150 components: - type: Transform @@ -47824,7 +48250,8 @@ entities: deviceLists: - 17132 - 17133 - - 13613 + - 17726 + - 17730 - uid: 13151 components: - type: Transform @@ -47835,7 +48262,8 @@ entities: deviceLists: - 17132 - 17133 - - 13613 + - 17726 + - 17730 - uid: 14275 components: - type: Transform @@ -47981,8 +48409,9 @@ entities: - type: DeviceNetwork deviceLists: - 17137 - - 17138 + - 17723 - 17136 + - 17138 - uid: 17139 components: - type: Transform @@ -47994,6 +48423,32 @@ entities: - 17137 - 17138 - 17136 + - uid: 17737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17735 + - 17736 + - uid: 17738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17735 + - 17736 + - uid: 17739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,28.5 + parent: 2 - proto: FirelockGlass entities: - uid: 86 @@ -48370,6 +48825,7 @@ entities: - 17078 - 17692 - 17693 + - 17741 - uid: 4774 components: - type: Transform @@ -48383,6 +48839,7 @@ entities: - 17078 - 17692 - 17693 + - 17741 - uid: 4775 components: - type: Transform @@ -48396,11 +48853,18 @@ entities: - 17078 - 17692 - 17693 + - 17741 - uid: 5534 components: - type: Transform pos: -25.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17742 + - 17747 + - 17746 + - 17743 - uid: 5535 components: - type: Transform @@ -48616,6 +49080,7 @@ entities: - 17078 - 17084 - 17083 + - 17741 - uid: 6383 components: - type: Transform @@ -48629,6 +49094,7 @@ entities: - 17078 - 17084 - 17083 + - 17741 - uid: 6384 components: - type: Transform @@ -48642,6 +49108,7 @@ entities: - 17078 - 17084 - 17083 + - 17741 - uid: 7267 components: - type: Transform @@ -48657,6 +49124,7 @@ entities: - 17099 - 17098 - 17097 + - 17741 - uid: 7268 components: - type: Transform @@ -48672,6 +49140,7 @@ entities: - 17099 - 17098 - 17097 + - 17741 - uid: 7269 components: - type: Transform @@ -48741,6 +49210,7 @@ entities: - 17078 - 17082 - 17081 + - 17741 - uid: 7328 components: - type: Transform @@ -48754,6 +49224,7 @@ entities: - 17078 - 17082 - 17081 + - 17741 - uid: 7329 components: - type: Transform @@ -48767,6 +49238,7 @@ entities: - 17078 - 17082 - 17081 + - 17741 - uid: 7787 components: - type: Transform @@ -48962,7 +49434,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - 17137 - 17138 - 17136 @@ -49168,6 +49639,8 @@ entities: - 17110 - 17112 - 17109 + - 17731 + - 17732 - uid: 11361 components: - type: Transform @@ -49854,6 +50327,8 @@ entities: - 17110 - 17112 - 17109 + - 17734 + - 17733 - uid: 17118 components: - type: Transform @@ -49865,7 +50340,6 @@ entities: - 17113 - 17132 - 17133 - - 13613 - uid: 17119 components: - type: Transform @@ -49877,7 +50351,6 @@ entities: - 17113 - 17132 - 17133 - - 13613 - uid: 17120 components: - type: Transform @@ -49887,7 +50360,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - uid: 17121 components: - type: Transform @@ -49897,7 +50369,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - uid: 17122 components: - type: Transform @@ -49907,7 +50378,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - 17137 - 17138 - 17136 @@ -49920,7 +50390,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - 17137 - 17138 - 17136 @@ -49933,7 +50402,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - 17137 - 17138 - 17136 @@ -49945,13 +50413,21 @@ entities: - type: DeviceNetwork deviceLists: - 17137 - - 17138 + - 3339 - 17136 + - 5759 + - 17138 - uid: 17126 components: - type: Transform pos: -34.5,75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17136 + - 17722 + - 17138 + - 17729 - uid: 17127 components: - type: Transform @@ -49961,7 +50437,9 @@ entities: deviceLists: - 17137 - 17138 + - 17726 - 17136 + - 17730 - uid: 17128 components: - type: Transform @@ -49970,8 +50448,11 @@ entities: - type: DeviceNetwork deviceLists: - 17137 - - 17138 + - 16896 - 17136 + - 17138 + - 17728 + - 17727 - uid: 17129 components: - type: Transform @@ -49980,8 +50461,9 @@ entities: - type: DeviceNetwork deviceLists: - 17137 - - 17138 + - 17725 - 17136 + - 17138 - uid: 17130 components: - type: Transform @@ -49990,8 +50472,9 @@ entities: - type: DeviceNetwork deviceLists: - 17137 - - 17138 + - 17724 - 17136 + - 17138 - uid: 17131 components: - type: Transform @@ -50001,7 +50484,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - 17142 - 17143 - uid: 17134 @@ -50013,7 +50495,6 @@ entities: deviceLists: - 17132 - 17133 - - 13613 - 17142 - 17143 - uid: 17166 @@ -50027,6 +50508,15 @@ entities: - 17164 - 17004 - 17167 + - uid: 17740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17741 - proto: Fireplace entities: - uid: 6008 @@ -67431,6 +67921,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 3340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17136 + - 17138 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17724 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3893 components: - type: Transform @@ -67565,6 +68078,8 @@ entities: - type: DeviceNetwork deviceLists: - 17073 + - 17735 + - 17736 - type: AtmosPipeColor color: '#FF0000FF' - uid: 6668 @@ -67856,6 +68371,8 @@ entities: - type: DeviceNetwork deviceLists: - 17079 + - 17742 + - 17747 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9352 @@ -67867,6 +68384,8 @@ entities: - type: DeviceNetwork deviceLists: - 17079 + - 17746 + - 17743 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9357 @@ -67878,6 +68397,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9406 @@ -67969,6 +68489,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10744 @@ -67980,6 +68501,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10768 @@ -67999,6 +68521,8 @@ entities: - type: DeviceNetwork deviceLists: - 17104 + - 17734 + - 17733 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10783 @@ -68020,7 +68544,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17109 + - 17731 + - 17732 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10822 @@ -68032,6 +68557,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11417 @@ -68039,9 +68565,6 @@ entities: - type: Transform pos: -61.5,70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17109 - type: AtmosPipeColor color: '#0000FFFF' - uid: 11422 @@ -68260,7 +68783,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13613 + - 17726 + - 17730 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13697 @@ -68269,9 +68793,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13613 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13715 @@ -68282,6 +68803,7 @@ entities: - type: DeviceNetwork deviceLists: - 17136 + - 17138 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13734 @@ -68297,6 +68819,10 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,76.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17722 + - 17729 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13763 @@ -68306,7 +68832,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 5759 + - 3339 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13775 @@ -68318,6 +68845,7 @@ entities: - type: DeviceNetwork deviceLists: - 17136 + - 17138 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13780 @@ -68327,7 +68855,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 16896 + - 17728 + - 17727 - type: AtmosPipeColor color: '#0000FFFF' - uid: 13795 @@ -68337,31 +68867,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 17723 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,72.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17136 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,74.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17136 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 13820 components: - type: Transform @@ -68370,7 +68878,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 17725 - type: AtmosPipeColor color: '#0000FFFF' - uid: 14313 @@ -68727,6 +69235,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 3342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17724 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17136 + - 17138 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3894 components: - type: Transform @@ -68866,6 +69397,8 @@ entities: - type: DeviceNetwork deviceLists: - 17073 + - 17735 + - 17736 - uid: 6669 components: - type: Transform @@ -69159,6 +69692,8 @@ entities: - type: DeviceNetwork deviceLists: - 17079 + - 17746 + - 17743 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9350 @@ -69170,6 +69705,8 @@ entities: - type: DeviceNetwork deviceLists: - 17079 + - 17742 + - 17747 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9355 @@ -69181,6 +69718,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9387 @@ -69260,6 +69798,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#FF0000FF' - uid: 10767 @@ -69279,6 +69818,8 @@ entities: - type: DeviceNetwork deviceLists: - 17104 + - 17734 + - 17733 - type: AtmosPipeColor color: '#FF0000FF' - uid: 10784 @@ -69300,7 +69841,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17109 + - 17731 + - 17732 - type: AtmosPipeColor color: '#FF0000FF' - uid: 10823 @@ -69312,6 +69854,7 @@ entities: - type: DeviceNetwork deviceLists: - 17109 + - 17107 - type: AtmosPipeColor color: '#FF0000FF' - uid: 11416 @@ -69319,9 +69862,6 @@ entities: - type: Transform pos: -59.5,70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17109 - type: AtmosPipeColor color: '#FF0000FF' - uid: 11423 @@ -69541,7 +70081,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13613 + - 17726 + - 17730 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13698 @@ -69549,9 +70090,6 @@ entities: - type: Transform pos: -30.5,71.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13613 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13716 @@ -69562,6 +70100,7 @@ entities: - type: DeviceNetwork deviceLists: - 17136 + - 17138 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13733 @@ -69577,6 +70116,10 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17722 + - 17729 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13762 @@ -69586,7 +70129,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 5759 + - 3339 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13774 @@ -69597,6 +70141,7 @@ entities: - type: DeviceNetwork deviceLists: - 17136 + - 17138 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13779 @@ -69606,7 +70151,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 16896 + - 17728 + - 17727 - type: AtmosPipeColor color: '#FF0000FF' - uid: 13794 @@ -69616,31 +70163,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 17723 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,72.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17136 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,73.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17136 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13819 components: - type: Transform @@ -69649,7 +70174,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17136 + - 17725 - type: AtmosPipeColor color: '#FF0000FF' - uid: 14312 @@ -74769,15 +75294,15 @@ entities: parent: 2 - proto: HandHeldMassScanner entities: - - uid: 14005 + - uid: 5804 components: - type: Transform - pos: -53.799175,14.498358 + pos: -53.777954,14.726119 parent: 2 - - uid: 14006 + - uid: 5828 components: - type: Transform - pos: -53.799175,14.779804 + pos: -19.3686,112.585915 parent: 2 - uid: 14007 components: @@ -75731,6 +76256,32 @@ entities: - type: Transform pos: -16.5,80.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerCaptainFilled entities: - uid: 14801 @@ -75966,8 +76517,8 @@ entities: immutable: False temperature: 293.1478 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -76088,8 +76639,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -76115,7 +76666,7 @@ entities: occludes: True ents: - 16447 - - 14472 + - 5825 - 14473 paper_label: !type:ContainerSlot showEnts: False @@ -76141,8 +76692,8 @@ entities: immutable: False temperature: 293.1478 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -76167,9 +76718,8 @@ entities: showEnts: False occludes: True ents: - - 12275 - - 12276 - 12277 + - 12275 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -76505,10 +77055,10 @@ entities: air: volume: 200 immutable: False - temperature: 93.465614 + temperature: 293.1478 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -76547,10 +77097,10 @@ entities: air: volume: 200 immutable: False - temperature: 93.465614 + temperature: 293.1478 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -76591,8 +77141,8 @@ entities: immutable: False temperature: 293.1478 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -76631,10 +77181,10 @@ entities: air: volume: 200 immutable: False - temperature: 98.0039 + temperature: 293.14783 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -76673,10 +77223,10 @@ entities: air: volume: 200 immutable: False - temperature: 93.465614 + temperature: 293.1478 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -76726,8 +77276,8 @@ entities: immutable: False temperature: 293.1462 moles: - - 1.8744951 - - 7.051672 + - 1.8959498 + - 7.1323833 - 0 - 0 - 0 @@ -76752,7 +77302,6 @@ entities: showEnts: False occludes: True ents: - - 11984 - 11983 - 11981 - 11982 @@ -76907,6 +77456,15 @@ entities: - type: Transform pos: -59.5,8.5 parent: 2 +- proto: MagazineBoxMagnum + entities: + - uid: 5825 + components: + - type: Transform + parent: 14471 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolHighCapacityRubber entities: - uid: 11981 @@ -77035,13 +77593,6 @@ entities: - type: Transform pos: -73.5,38.5 parent: 2 -- proto: MechaAnalyzer9000 - entities: - - uid: 16896 - components: - - type: Transform - pos: -19.358662,112.56182 - parent: 2 - proto: MechEquipmentGrabber entities: - uid: 17719 @@ -88344,13 +88895,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14472 - components: - - type: Transform - parent: 14471 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: SS13Memorial entities: - uid: 5709 @@ -93338,6 +93882,13 @@ entities: - type: Transform pos: -25.5,38.5 parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 16303 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 - proto: VendingMachineWinter entities: - uid: 16107 @@ -96316,6 +96867,71 @@ entities: - type: Transform pos: -48.5,20.5 parent: 2 + - uid: 5829 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 - uid: 6083 components: - type: Transform @@ -99014,6 +99630,11 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,66.5 parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 - uid: 12005 components: - type: Transform @@ -99571,6 +100192,11 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,81.5 parent: 2 + - uid: 12276 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 - uid: 12307 components: - type: Transform @@ -100016,6 +100642,26 @@ entities: - type: Transform pos: 10.5,56.5 parent: 2 + - uid: 13810 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 - uid: 13955 components: - type: Transform @@ -100087,6 +100733,16 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,57.5 parent: 2 + - uid: 14005 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 - uid: 14024 components: - type: Transform @@ -100454,6 +101110,11 @@ entities: - type: Transform pos: -24.5,93.5 parent: 2 + - uid: 14472 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 - uid: 14489 components: - type: Transform @@ -106652,26 +107313,6 @@ entities: - type: Transform pos: -10.5,11.5 parent: 2 - - uid: 3339 - components: - - type: Transform - pos: -10.5,12.5 - parent: 2 - - uid: 3340 - components: - - type: Transform - pos: -9.5,12.5 - parent: 2 - - uid: 3342 - components: - - type: Transform - pos: -7.5,12.5 - parent: 2 - - uid: 3343 - components: - - type: Transform - pos: -6.5,12.5 - parent: 2 - uid: 3344 components: - type: Transform @@ -106779,11 +107420,6 @@ entities: - type: Transform pos: -46.5,-1.5 parent: 2 - - uid: 3639 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - uid: 3826 components: - type: Transform @@ -107362,11 +107998,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,30.5 parent: 2 - - uid: 5759 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - uid: 5760 components: - type: Transform @@ -107483,11 +108114,6 @@ entities: - type: Transform pos: -8.5,22.5 parent: 2 - - uid: 5804 - components: - - type: Transform - pos: -8.5,18.5 - parent: 2 - uid: 5815 components: - type: Transform @@ -107508,91 +108134,21 @@ entities: - type: Transform pos: -9.5,19.5 parent: 2 - - uid: 5825 - components: - - type: Transform - pos: -11.5,18.5 - parent: 2 - - uid: 5828 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - uid: 5829 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - - uid: 5830 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 5831 - components: - - type: Transform - pos: -11.5,14.5 - parent: 2 - - uid: 5833 - components: - - type: Transform - pos: -7.5,18.5 - parent: 2 - - uid: 5835 - components: - - type: Transform - pos: -6.5,18.5 - parent: 2 - - uid: 5838 - components: - - type: Transform - pos: -6.5,17.5 - parent: 2 - - uid: 5839 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - - uid: 5840 - components: - - type: Transform - pos: -6.5,15.5 - parent: 2 - uid: 5843 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 5844 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - uid: 5862 - components: - - type: Transform - pos: -12.5,14.5 - parent: 2 - uid: 5863 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 5864 - components: - - type: Transform - pos: -12.5,13.5 - parent: 2 - uid: 5899 components: - type: Transform pos: -22.5,12.5 parent: 2 - - uid: 5900 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - uid: 5901 components: - type: Transform @@ -107644,11 +108200,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,30.5 parent: 2 - - uid: 6026 - components: - - type: Transform - pos: -6.5,13.5 - parent: 2 - uid: 6028 components: - type: Transform diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 2076482b50a5c3..f7a2a6056467ae 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -39,7 +39,6 @@ tilemap: 79: FloorReinforced 81: FloorRockVault 82: FloorShowroom - 91: FloorSnow 93: FloorSteel 95: FloorSteelCheckerDark 96: FloorSteelCheckerLight @@ -55,8 +54,6 @@ tilemap: 112: FloorWhite 115: FloorWhiteHerringbone 116: FloorWhiteMini - 117: FloorWhiteMono - 118: FloorWhiteOffset 121: FloorWhitePlastic 122: FloorWood 125: Lattice @@ -75,51 +72,51 @@ entities: chunks: -1,0: ind: -1,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAYAAAAAACYAAAAAACYAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACHwAAAAAAfgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAADHwAAAAABXQAAAAACHwAAAAABXQAAAAAAHwAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABfgAAAAAAHwAAAAABXQAAAAACHwAAAAADXQAAAAABHwAAAAABXQAAAAABHwAAAAACXQAAAAABHwAAAAABXQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAADHwAAAAACXQAAAAABHwAAAAACXQAAAAABHwAAAAACXQAAAAACHwAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABfgAAAAAAHwAAAAACXQAAAAAAHwAAAAADXQAAAAAAHwAAAAAAXQAAAAADHwAAAAABXQAAAAACHwAAAAADXQAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABfgAAAAAAXQAAAAAAHwAAAAACXQAAAAADHwAAAAADXQAAAAAAHwAAAAADXQAAAAADHwAAAAADXQAAAAADHwAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACfgAAAAAAHwAAAAADXQAAAAABHwAAAAACXQAAAAACHwAAAAADXQAAAAABHwAAAAABXQAAAAAAHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACLgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAACLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAACegAAAAAAegAAAAACLgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAYAAAAAAAYAAAAAABYAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAABfgAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABfgAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAADXQAAAAABHwAAAAABXQAAAAABHwAAAAAAXQAAAAACHwAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAAAXQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABHwAAAAACXQAAAAAAHwAAAAAAXQAAAAACHwAAAAACXQAAAAABHwAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABfgAAAAAAHwAAAAACXQAAAAACHwAAAAAAXQAAAAABHwAAAAADXQAAAAACHwAAAAADXQAAAAABHwAAAAACXQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAABHwAAAAADXQAAAAADHwAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACfgAAAAAAHwAAAAACXQAAAAAAHwAAAAACXQAAAAACHwAAAAABXQAAAAACHwAAAAABXQAAAAAAHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAADegAAAAABegAAAAACLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAADLgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAAB version: 6 0,0: ind: 0,0 - tiles: XQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAABHwAAAAABXQAAAAAAHwAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAADXQAAAAAAHwAAAAABXQAAAAACHwAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAABXQAAAAADHwAAAAAAXQAAAAABHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABXQAAAAACHwAAAAADfgAAAAAAHwAAAAABXQAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAADHwAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADHwAAAAAC + tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: cAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACcAAAAAACcAAAAAACfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAABcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAA + tiles: cAAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAABeQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABeQAAAAADeQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAADeQAAAAAAeQAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAMwAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAegAAAAACegAAAAACegAAAAAAJgAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABHwAAAAADXQAAAAAAHwAAAAADHwAAAAADHwAAAAACegAAAAAAegAAAAACegAAAAACJgAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAegAAAAADegAAAAACegAAAAAAJgAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAAAMwAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACHwAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAAAMwAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAADgAAAAADDgAAAAABDgAAAAAAMwAAAAAAJgAAAAAAMwAAAAAAMwAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADMwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADegAAAAABegAAAAACegAAAAABJgAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAABJgAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABegAAAAADegAAAAABegAAAAAAJgAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAABMwAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAABMwAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADDgAAAAADDgAAAAACDgAAAAACMwAAAAAAJgAAAAABMwAAAAAAMwAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAYAAAAAAAYAAAAAADHwAAAAAAHwAAAAABfgAAAAAATQAAAAABTQAAAAADTQAAAAACTQAAAAADTQAAAAAATQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABYAAAAAADYAAAAAAAJAAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAACagAAAAACagAAAAACagAAAAADTQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAYAAAAAABYAAAAAADJAAAAAADHwAAAAAAfgAAAAAAPAAAAAAATQAAAAAAagAAAAAAagAAAAADagAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAAAYAAAAAABJAAAAAACHwAAAAACfgAAAAAAPAAAAAAATQAAAAADagAAAAAAagAAAAACagAAAAABTQAAAAACTQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAYAAAAAAAYAAAAAADHwAAAAADHwAAAAAAfgAAAAAAPAAAAAAATQAAAAADagAAAAABagAAAAADagAAAAACTQAAAAAATQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAYAAAAAACYAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAPAAAAAAATQAAAAACagAAAAAAagAAAAACagAAAAABTQAAAAAATQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAYAAAAAABYAAAAAABHwAAAAACHwAAAAABfgAAAAAATQAAAAAATQAAAAACTQAAAAADTQAAAAACTQAAAAADTQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAACPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJgAAAAACPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAABTQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAPAAAAAAATQAAAAACagAAAAABagAAAAAAagAAAAADTQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAAAagAAAAADagAAAAABagAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAPAAAAAAATQAAAAADagAAAAADagAAAAAAagAAAAADTQAAAAACTQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAACagAAAAADagAAAAADagAAAAAATQAAAAABTQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAPAAAAAAATQAAAAABagAAAAAAagAAAAABagAAAAAATQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAADTQAAAAABTQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJgAAAAABPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABHwAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAADHwAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAADKAAAAAADXQAAAAADXQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABKAAAAAABXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACHwAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAADTQAAAAABTQAAAAACTQAAAAADTQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAABKAAAAAAAXQAAAAAAXQAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAKAAAAAACXQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAABXQAAAAADHwAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADTQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABTQAAAAADTQAAAAAATQAAAAADTQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: LgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAADegAAAAABegAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABTQAAAAAAXQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAADTQAAAAAAXQAAAAABTQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAATQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAKAAAAAAAHwAAAAABfgAAAAAATQAAAAADTQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACegAAAAAC + tiles: LgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAADegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAADDAAAAAABDAAAAAADDAAAAAACfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABTQAAAAAAXQAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAAATQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAATQAAAAABHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAKAAAAAADHwAAAAABfgAAAAAATQAAAAABTQAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAegAAAAAC version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAJgAAAAADJgAAAAADJgAAAAABJgAAAAACJgAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABTQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABTQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAADegAAAAAAfgAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABHwAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAADHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABXQAAAAACbQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADbQAAAAAAfgAAAAAA + tiles: AAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAXQAAAAABbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABbQAAAAAAfgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: fgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAABXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAADegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAKAAAAAAAKAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAKAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAB + tiles: fgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAADKAAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAKAAAAAABKAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAKAAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAABKAAAAAADKAAAAAACKAAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAADfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAD version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAACXQAAAAACMgAAAAAAXQAAAAABNAAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAABMgAAAAAAXQAAAAABNAAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: fgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAAALwAAAAABHwAAAAACfgAAAAAAcwAAAAACcwAAAAAAfgAAAAAAeQAAAAABTQAAAAACTQAAAAAATQAAAAACeQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAcwAAAAADcwAAAAABeQAAAAABeQAAAAABTQAAAAABTQAAAAABTQAAAAAAeQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAADLwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAABeQAAAAACeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcwAAAAABcwAAAAABfgAAAAAAeQAAAAABeQAAAAAAeQAAAAADeQAAAAABeQAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAcwAAAAABcwAAAAACeQAAAAABeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAACTQAAAAABTQAAAAADTQAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAAAeQAAAAABfgAAAAAATQAAAAACTQAAAAABHwAAAAADXQAAAAAAXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABeQAAAAABeQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABeQAAAAABeQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAA + tiles: fgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAHwAAAAACLwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAALwAAAAACHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACcAAAAAABAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -127,107 +124,107 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: MQAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADdQAAAAAAcAAAAAACfgAAAAAAMQAAAAAAfgAAAAAAbAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAACcAAAAAABMQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAACdQAAAAABdQAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACeQAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAADfgAAAAAAXQAAAAADcAAAAAACdQAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACfgAAAAAATQAAAAABfgAAAAAAcAAAAAADdQAAAAABcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAATQAAAAACTQAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAcAAAAAADdQAAAAABcAAAAAAAcAAAAAADTQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAADeQAAAAABeQAAAAADeQAAAAACeQAAAAADeQAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAADeQAAAAAAeQAAAAADeQAAAAACeQAAAAADeQAAAAAAcAAAAAACcAAAAAACdQAAAAACcAAAAAADcAAAAAAAQAAAAAAAfgAAAAAAcAAAAAAAdQAAAAACcAAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAQAAAAAAAXQAAAAACcAAAAAAAdQAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAQAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAADQAAAAAAAfgAAAAAAfgAAAAAAeQAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXwAAAAAAXwAAAAACegAAAAABegAAAAABegAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXwAAAAABXwAAAAABegAAAAABegAAAAADegAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXwAAAAABXwAAAAAAegAAAAACegAAAAAAegAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAD + tiles: fgAAAAAAcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAAAcAAAAAADeQAAAAAAeQAAAAACeQAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAcAAAAAAAeQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAAAeQAAAAACcAAAAAADfgAAAAAAHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACcAAAAAABeQAAAAACeQAAAAABeQAAAAACeQAAAAAAeQAAAAADeQAAAAADeQAAAAADcAAAAAAAcAAAAAACHwAAAAACHwAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADcAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAADcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACeQAAAAACeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAABcAAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXwAAAAABXwAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXwAAAAADXwAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXwAAAAADXwAAAAABegAAAAABegAAAAACegAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAD version: 6 -2,2: ind: -2,2 - tiles: XQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAJgAAAAACegAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAdAAAAAADcwAAAAABdAAAAAACdAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABJAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAJAAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAABfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA + tiles: XQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADJgAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACegAAAAACegAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAdAAAAAACcwAAAAAAdAAAAAADdAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADJAAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAJAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAABfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAABXQAAAAACHwAAAAABHwAAAAACHwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADXQAAAAAAHwAAAAACHwAAAAACHwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAC version: 6 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAACXQAAAAACNAAAAAACXQAAAAABMQAAAAAAXQAAAAACXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAABegAAAAACegAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAADXQAAAAABNAAAAAACXQAAAAAAMQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAegAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAD version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA + tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAADcAAAAAACcAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACcAAAAAACcAAAAAACcAAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACfQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAAAcAAAAAACcAAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAABcAAAAAACcAAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAB version: 6 -3,3: ind: -3,3 - tiles: XQAAAAADXQAAAAADfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,3: ind: -2,3 - tiles: XQAAAAACXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: XQAAAAACXQAAAAACXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HwAAAAACHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAJAAAAAACHwAAAAADegAAAAACHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAADQAAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACegAAAAABHwAAAAABHwAAAAACfgAAAAAAQAAAAAAAegAAAAABLwAAAAADLwAAAAADLwAAAAABegAAAAADQAAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAQAAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABegAAAAADQAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAACegAAAAACHwAAAAABHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABJAAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABJAAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACDAAAAAAADAAAAAAADAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: HwAAAAAAHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAAAJAAAAAADHwAAAAACegAAAAADHwAAAAACHwAAAAADfgAAAAAAQAAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAACQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACegAAAAABHwAAAAADHwAAAAABfgAAAAAAQAAAAAAAegAAAAACLwAAAAAALwAAAAADLwAAAAADegAAAAACQAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAegAAAAACegAAAAADegAAAAABegAAAAAAegAAAAABQAAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAABegAAAAAAHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADJAAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAACJAAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADDAAAAAACDAAAAAACDAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABJAAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 0,2: ind: 0,2 - tiles: egAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAABegAAAAADegAAAAABKAAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAABOAAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA + tiles: egAAAAADegAAAAADegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAACegAAAAACegAAAAABKAAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAADOAAAAAAAHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAB + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAA version: 6 1,1: ind: 1,1 - tiles: fgAAAAAAeQAAAAADeQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAACeQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABcAAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAACTQAAAAACHwAAAAACHwAAAAAAHwAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAJAAAAAADJAAAAAABJAAAAAADTQAAAAAATQAAAAABHwAAAAABHwAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAJAAAAAADJAAAAAAAJAAAAAABTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAcAAAAAAAcwAAAAADEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABcAAAAAAAcAAAAAACdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAcAAAAAAAdAAAAAADfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAABfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAcAAAAAACcAAAAAADdAAAAAAAcwAAAAACdAAAAAABdAAAAAACcwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAcAAAAAACcAAAAAACcwAAAAADdAAAAAADcwAAAAADcwAAAAACdAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAD + tiles: fgAAAAAAeQAAAAABeQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAZwAAAAABZwAAAAADZwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAZwAAAAABZwAAAAACZwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACegAAAAADegAAAAABegAAAAABegAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACegAAAAACegAAAAACegAAAAABegAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAZwAAAAADZwAAAAABZwAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAZwAAAAADZwAAAAABZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAZwAAAAAAZwAAAAACZwAAAAABegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAACJgAAAAAAJgAAAAAAJgAAAAACJgAAAAACJgAAAAADJgAAAAABJgAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAJgAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACJgAAAAACJgAAAAAAfgAAAAAAXQAAAAADHwAAAAAAfgAAAAAAZwAAAAABZwAAAAADfgAAAAAAJgAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAABJgAAAAAAHwAAAAACHwAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACJgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABJgAAAAADfgAAAAAAXQAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAABHwAAAAADHwAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAHwAAAAAAHwAAAAAAXQAAAAADfgAAAAAAZwAAAAADZwAAAAADfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAABegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAABegAAAAABegAAAAABegAAAAADegAAAAABegAAAAADegAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAADHwAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADJgAAAAABJgAAAAACfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAZwAAAAADZwAAAAADfgAAAAAAJgAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABJgAAAAADHwAAAAAAHwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACJgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACJgAAAAABfgAAAAAAXQAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAADXQAAAAACfgAAAAAAZwAAAAAAZwAAAAABfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAcwAAAAADdAAAAAABfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADdAAAAAAAcwAAAAABfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAATQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAAAHwAAAAAAHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACcAAAAAACcAAAAAACXQAAAAABXQAAAAABXQAAAAADcAAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABcAAAAAAAcAAAAAABXQAAAAABXQAAAAAAXQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACbAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAABegAAAAACfgAAAAAAEQAAAAAA + tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAA + tiles: fQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: HwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAACHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAeQAAAAABeQAAAAABcAAAAAADeQAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: HwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAcAAAAAADeQAAAAADcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAADcAAAAAAALgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAACfgAAAAAAcAAAAAADcAAAAAABcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACeQAAAAADcAAAAAACfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAcAAAAAADcAAAAAACcAAAAAADfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAADLwAAAAADHwAAAAADfgAAAAAAegAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAWwAAAAAAfgAAAAAAWwAAAAAIWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAHwAAAAADLwAAAAAAHwAAAAADfgAAAAAAegAAAAADWwAAAAAAWwAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAUgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADLwAAAAAAHwAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAHwAAAAADLwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAHwAAAAABLwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAHwAAAAADLwAAAAABHwAAAAACbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADHwAAAAABfgAAAAAA + tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 @@ -235,23 +232,23 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: fgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADTgAAAAACTgAAAAACTgAAAAAATgAAAAACTgAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADTQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACTQAAAAADXQAAAAACXQAAAAADHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAA + tiles: fgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADTgAAAAAATgAAAAAATgAAAAACTgAAAAAATgAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAACZgAAAAABZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAABZgAAAAAAZgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACZgAAAAADZgAAAAACZgAAAAACZgAAAAACZgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAZgAAAAACZgAAAAABZgAAAAABZgAAAAABZgAAAAACZgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZgAAAAACZgAAAAACZgAAAAACZgAAAAABZgAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAB version: 6 -2,-4: ind: -2,-4 - tiles: XQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAHwAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAB + tiles: XQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAHwAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 @@ -271,7 +268,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADcAAAAAADcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAABTQAAAAACTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABEQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,-3: ind: 2,-3 @@ -283,15 +280,15 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: BwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMCQAAAAAACQAAAAAACQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAJAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAACQAAAAAACQAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAACQAAAAAFBwAAAAAABwAAAAAEBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAECQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAACQAAAAABCQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAMfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAACCQAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAFBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAABBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAFBwAAAAAJBwAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAACfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAACfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAADegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAABfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 3,2: ind: 3,2 @@ -303,7 +300,7 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 @@ -319,7 +316,7 @@ entities: version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 -6,3: ind: -6,3 @@ -327,71 +324,71 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: BwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAACwAAAAAABwAAAAAKBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAATgAAAAABTgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAABTgAAAAACXQAAAAAAHwAAAAABHwAAAAABXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAAAXQAAAAACXQAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAATgAAAAACTgAAAAADTgAAAAACTgAAAAABTgAAAAAATgAAAAABTgAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAIBwAAAAAKBwAAAAALBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: HwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAALfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAEfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: fgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAABwAAAAAMCwAAAAAABwAAAAAKfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAICwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAJCwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAABwAAAAAICwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAABwAAAAALCwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAABwAAAAACCwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAGfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMCwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJgAAAAABJgAAAAADJgAAAAACJgAAAAAAJgAAAAACJgAAAAABJgAAAAABJgAAAAACIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAagAAAAAAagAAAAACagAAAAACagAAAAADagAAAAACagAAAAACagAAAAABZQAAAAABJwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAABJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAADTAAAAAAATAAAAAACfgAAAAAAawAAAAABJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAABKgAAAAAATAAAAAAATAAAAAABTAAAAAADTAAAAAACfgAAAAAAawAAAAACJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAABKgAAAAAATAAAAAADTAAAAAACTAAAAAAATAAAAAAAfgAAAAAAawAAAAABJwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAADKgAAAAABKgAAAAACHwAAAAADawAAAAADJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABKgAAAAADTAAAAAADTAAAAAAATAAAAAADfgAAAAAAawAAAAABJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAAfgAAAAAAawAAAAAAJwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAADTAAAAAACTAAAAAAATAAAAAAAfgAAAAAAawAAAAADJwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAACagAAAAACagAAAAAAagAAAAADZQAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAACIgAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAABfgAAAAAA + tiles: bAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAACHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAABHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAAB + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD version: 6 -5,-4: ind: -5,-4 - tiles: fgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAIgAAAAACJgAAAAACJgAAAAACJgAAAAAAJgAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAJwAAAAABZQAAAAADagAAAAAAagAAAAAAagAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADJwAAAAAAawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAJwAAAAAAawAAAAADfgAAAAAATAAAAAADTAAAAAAAPgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAJwAAAAABawAAAAADfgAAAAAATAAAAAACTAAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABHwAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAABHwAAAAADJwAAAAAAawAAAAADHwAAAAAAKgAAAAADKgAAAAACPAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAJwAAAAAAawAAAAADfgAAAAAATAAAAAAATAAAAAADPAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABfgAAAAAAJwAAAAAAawAAAAABfgAAAAAATAAAAAAATAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAACfgAAAAAAJwAAAAADawAAAAABfgAAAAAATAAAAAABTAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAAAZQAAAAACagAAAAADagAAAAADagAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAAB + tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAKfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAMfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAC version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAADfgAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAABwAAAAAJBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAABfgAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAACEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAEQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAHwAAAAACEQAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACEQAAAAAAEQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 0,4: ind: 0,4 - tiles: HwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACTwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACTwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADTwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAATwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: fgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAACEQAAAAAATwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAADEQAAAAAATwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 @@ -399,7 +396,7 @@ entities: version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAACQAAAAAABwAAAAADBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAACCQAAAAAEBwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAACQAAAAAICQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAGBwAAAAAAfwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAALCQAAAAAIBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAECQAAAAAACQAAAAAIfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAHCQAAAAAJBwAAAAAABwAAAAAIfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfwAAAAAABwAAAAACCQAAAAAABwAAAAALCQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAJCQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAA version: 6 1,-5: ind: 1,-5 @@ -407,7 +404,7 @@ entities: version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 @@ -446,59 +443,60 @@ entities: color: '#DE3A3A96' id: Arrows decals: - 354: -37,37 - 355: -35,37 - 356: -37,40 - 357: -35,40 + 349: -37,37 + 350: -35,37 + 351: -37,40 + 352: -35,40 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 771: -8,-44 - 1540: 23,23 - 1541: 21,23 - 2673: -35,40 - 2674: -37,40 + 657: -8,-44 + 1390: 23,23 + 1391: 21,23 + 2506: -35,40 + 2507: -37,40 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2369: 5,-30 - 2999: -3,-55 - 3033: 20,-24 - 3034: 20,-26 - 3035: 20,-28 - 3036: 20,-30 - 3037: 20,-32 - 3038: 20,-34 - 3039: 20,-36 + 2208: 5,-30 + 2737: -3,-55 + 2771: 20,-24 + 2772: 20,-26 + 2773: 20,-28 + 2774: 20,-30 + 2775: 20,-32 + 2776: 20,-34 + 2777: 20,-36 - node: color: '#FFFFFFFF' id: Arrows decals: - 1538: 23,25 - 1539: 21,25 - 2023: 31,21 + 1388: 23,25 + 1389: 21,25 + 1873: 31,21 + 3064: -31,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1372: 33,-3 - 3026: 21,-35 - 3027: 21,-33 - 3028: 21,-31 - 3029: 21,-29 - 3030: 21,-27 - 3031: 21,-25 - 3032: 21,-23 + 1236: 33,-3 + 2764: 21,-35 + 2765: 21,-33 + 2766: 21,-31 + 2767: 21,-29 + 2768: 21,-27 + 2769: 21,-25 + 2770: 21,-23 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 3051: -19,-67 + 2789: -19,-67 - node: color: '#FFFFFFFF' id: Bot @@ -508,1340 +506,1488 @@ entities: 56: -34,19 57: -34,4 84: -58,25 - 111: -41,46 - 119: -25,53 - 120: -36,46 - 358: -25,29 - 359: -36,46 - 360: -41,46 - 386: 0,29 - 387: 1,29 - 388: 2,29 - 389: 3,29 - 396: 9,41 - 487: -8,-9 - 658: -12,-1 - 665: -26,-11 - 700: 6,-1 - 772: -11,-44 - 773: -12,-44 - 774: -13,-44 - 775: -14,-44 - 854: 19,0 - 865: 12,14 - 921: -30,37 - 1167: 5,43 - 1168: 3,41 - 1169: 7,41 - 1277: -41,59 - 1279: 14,-2 - 1280: 15,-2 - 1328: 23,-6 - 1329: 23,-5 - 1330: 23,-4 - 1331: 25,-6 - 1332: 25,-5 - 1333: 25,-4 - 1334: 27,-6 - 1335: 27,-5 - 1336: 27,-4 - 1337: 29,-6 - 1338: 29,-5 - 1339: 29,-4 - 1391: 21,-20 - 1392: 18,-20 - 1393: 18,-18 - 1394: 18,-17 - 1395: 19,-17 - 1396: 19,-18 - 1397: 20,-18 - 1398: 20,-17 - 1399: 20,-15 - 1400: 20,-14 - 1401: 21,-14 - 1402: 21,-15 - 1403: 22,-15 - 1404: 22,-14 - 1453: 36,7 - 1454: 35,7 - 1461: 22,20 - 1462: 22,21 - 1463: 23,21 - 1464: 23,20 - 1469: 27,9 - 1470: 27,10 - 1570: 12,12 - 1571: 20,23 - 1738: -1,29 - 1939: 5,-26 - 1940: 5,-25 - 1941: 7,-30 - 2014: 33,17 - 2015: 32,17 - 2016: 31,17 - 2343: -40,54 - 2398: 3,-41 - 2402: -4,-38 - 2403: -2,-38 - 2419: -22,-45 - 2458: -26,-47 - 2459: -26,-48 - 2561: 1,-7 - 2562: -1,-7 - 2688: -13,38 - 2689: -12,31 - 2700: 12,-30 - 2701: 12,-29 - 2702: 12,-28 - 2703: 11,-23 - 2704: 10,-23 - 2714: 32,21 - 2715: 32,22 - 2716: 32,23 - 2732: 41,12 - 2733: 41,13 - 2734: 41,14 - 2796: 32,39 - 2797: 24,33 - 2950: -34,-12 - 2955: -40,-10 - 2956: -40,-9 - 3023: -15,-49 - 3024: -15,-48 - 3025: -15,-47 - 3058: 15,-22 - 3070: 7,35 - 3103: -4,-29 - 3104: -8,-20 - 3105: -33,10 - 3106: -26,13 - 3107: -14,5 - 3108: 6,6 - 3109: -6,-9 + 106: -41,46 + 114: -25,53 + 115: -36,46 + 353: -25,29 + 354: -36,46 + 355: -41,46 + 381: 0,29 + 382: 1,29 + 383: 2,29 + 384: 3,29 + 391: 9,41 + 482: -8,-9 + 552: -12,-1 + 587: 6,-1 + 658: -11,-44 + 659: -12,-44 + 660: -13,-44 + 661: -14,-44 + 740: 19,0 + 751: 12,14 + 807: -30,37 + 1031: 5,43 + 1032: 3,41 + 1033: 7,41 + 1141: -41,59 + 1143: 14,-2 + 1144: 15,-2 + 1192: 23,-6 + 1193: 23,-5 + 1194: 23,-4 + 1195: 25,-6 + 1196: 25,-5 + 1197: 25,-4 + 1198: 27,-6 + 1199: 27,-5 + 1200: 27,-4 + 1201: 29,-6 + 1202: 29,-5 + 1203: 29,-4 + 1241: 21,-20 + 1242: 18,-20 + 1243: 18,-18 + 1244: 18,-17 + 1245: 19,-17 + 1246: 19,-18 + 1247: 20,-18 + 1248: 20,-17 + 1249: 20,-15 + 1250: 20,-14 + 1251: 21,-14 + 1252: 21,-15 + 1253: 22,-15 + 1254: 22,-14 + 1303: 36,7 + 1304: 35,7 + 1311: 22,20 + 1312: 22,21 + 1313: 23,21 + 1314: 23,20 + 1319: 27,9 + 1320: 27,10 + 1420: 12,12 + 1421: 20,23 + 1588: -1,29 + 1789: 5,-26 + 1790: 5,-25 + 1791: 7,-30 + 1864: 33,17 + 1865: 32,17 + 1866: 31,17 + 2185: -40,54 + 2237: 3,-41 + 2241: -4,-38 + 2242: -2,-38 + 2258: -22,-45 + 2297: -26,-47 + 2298: -26,-48 + 2400: 1,-7 + 2401: -1,-7 + 2521: -13,38 + 2522: -12,31 + 2533: 12,-30 + 2534: 12,-29 + 2535: 12,-28 + 2536: 11,-23 + 2537: 10,-23 + 2547: 32,21 + 2548: 32,22 + 2549: 32,23 + 2565: 41,12 + 2566: 41,13 + 2567: 41,14 + 2629: 32,39 + 2630: 24,33 + 2761: -15,-49 + 2762: -15,-48 + 2763: -15,-47 + 2790: 15,-22 + 2802: 7,35 + 2835: -4,-29 + 2836: -33,10 + 2837: -26,13 + 2838: -14,5 + 2839: 6,6 + 2840: -6,-9 + 2861: -43,19 + 2862: -41,19 + 3063: -33,-12 + 3082: -28,-14 + 3083: -23,-15 + 3084: -19,-23 + 3157: -20,-5 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 748: 14,-19 + 634: 14,-19 - node: color: '#52B4E996' id: BotGreyscale decals: - 2995: -4,-52 - 2996: -5,-52 + 2733: -4,-52 + 2734: -5,-52 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 2997: -11,-52 - 2998: -12,-52 + 2735: -11,-52 + 2736: -12,-52 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2590: -22,-1 - 3047: -18,-69 - 3048: -18,-68 - 3049: -18,-67 + 2429: -22,-1 + 2785: -18,-69 + 2786: -18,-68 + 2787: -18,-67 - node: color: '#FFFFFFFF' id: BotLeft decals: - 2341: -39,56 - 2342: -41,56 - 2399: 2,-38 - 2400: 0,-38 - 2420: -26,-45 - 2421: -26,-44 - 2422: -26,-43 - 2608: -57,-22 - 2670: -42,42 - 2671: -46,42 - 2672: -49,42 - 2717: 33,20 - 2718: 33,19 - 2735: 40,14 - 3020: -15,-52 - 3021: -15,-51 - 3022: -15,-50 + 2183: -39,56 + 2184: -41,56 + 2238: 2,-38 + 2239: 0,-38 + 2259: -26,-45 + 2260: -26,-44 + 2261: -26,-43 + 2447: -57,-22 + 2503: -42,42 + 2504: -46,42 + 2505: -49,42 + 2550: 33,20 + 2551: 33,19 + 2568: 40,14 + 2758: -15,-52 + 2759: -15,-51 + 2760: -15,-50 + 2863: -44,19 + 2864: -42,19 + 2865: -40,19 - node: color: '#FFFFFFFF' id: BotRight decals: - 2401: 3,-40 - 2423: -23,-40 - 2424: -22,-40 - 2667: -45,51 - 2668: -45,52 - 2669: -45,53 + 2240: 3,-40 + 2262: -23,-40 + 2263: -22,-40 + 2500: -45,51 + 2501: -45,52 + 2502: -45,53 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2896: -24,-5 - 3050: -19,-68 + 2729: -24,-5 + 2788: -19,-68 - node: color: '#FFFFFFFF' id: Box decals: - 2450: -12,-38 - 2451: -14,-38 - 2736: 39,9 - 3111: -5,-50 - 3112: -12,-56 - 3113: -10,-56 - 3114: -6,-56 - 3115: -4,-56 + 2289: -12,-38 + 2290: -14,-38 + 2569: 39,9 + 2842: -5,-50 + 2843: -12,-56 + 2844: -10,-56 + 2845: -6,-56 + 2846: -4,-56 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 3044: -19,-70 - 3045: -18,-70 - 3046: -17,-70 + 2782: -19,-70 + 2783: -18,-70 + 2784: -17,-70 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1995: -6,40 - 1996: -14,40 - 2271: -46,-13 - 2272: -46,-15 - 2273: -46,-17 - 2274: -46,-19 - 2275: -46,-21 + 1845: -6,40 + 1846: -14,40 + 2113: -46,-13 + 2114: -46,-15 + 2115: -46,-17 + 2116: -46,-19 + 2117: -46,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1680: -7,36 - 1847: -57,-50 - 1957: -50,24 + 1530: -7,36 + 1697: -57,-50 + 1807: -50,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1679: -13,36 - 1864: -68,-50 + 1529: -13,36 + 1714: -68,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1675: -7,32 - 1855: -57,-60 - 1972: -50,12 + 1525: -7,32 + 1705: -57,-60 + 1822: -50,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1674: -13,32 - 1865: -68,-60 + 1524: -13,32 + 1715: -68,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1770: -12,40 - 1881: -66,-50 + 1620: -12,40 + 1731: -66,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1772: -8,40 - 1879: -64,-50 - 1880: -59,-50 + 1622: -8,40 + 1729: -64,-50 + 1730: -59,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1769: -12,42 - 1856: -57,-59 + 1619: -12,42 + 1706: -57,-59 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1771: -8,42 - 1849: -59,-60 + 1621: -8,42 + 1699: -59,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1593: -17,37 - 1676: -7,33 - 1677: -7,34 - 1678: -7,35 - 1768: -12,41 - 1798: -17,39 - 1799: -17,40 - 1857: -57,-58 - 1949: -50,16 - 1950: -50,17 - 1951: -50,18 - 1952: -50,19 - 1953: -50,20 - 1954: -50,21 - 1955: -50,22 - 1956: -50,23 + 1443: -17,37 + 1526: -7,33 + 1527: -7,34 + 1528: -7,35 + 1618: -12,41 + 1648: -17,39 + 1649: -17,40 + 1707: -57,-58 + 1799: -50,16 + 1800: -50,17 + 1801: -50,18 + 1802: -50,19 + 1803: -50,20 + 1804: -50,21 + 1805: -50,22 + 1806: -50,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1681: -8,36 - 1682: -9,36 - 1683: -10,36 - 1684: -11,36 - 1685: -12,36 - 1764: -9,40 - 1765: -10,40 - 1766: -11,40 - 1875: -60,-50 - 1876: -61,-50 - 1877: -65,-50 - 1878: -62,-50 - 1958: -52,24 - 1959: -51,24 - 1960: -53,24 - 1961: -54,24 - 1962: -55,24 - 1963: -57,24 - 1964: -56,24 - 1965: -58,24 + 1531: -8,36 + 1532: -9,36 + 1533: -10,36 + 1534: -11,36 + 1535: -12,36 + 1614: -9,40 + 1615: -10,40 + 1616: -11,40 + 1725: -60,-50 + 1726: -61,-50 + 1727: -65,-50 + 1728: -62,-50 + 1808: -52,24 + 1809: -51,24 + 1810: -53,24 + 1811: -54,24 + 1812: -55,24 + 1813: -57,24 + 1814: -56,24 + 1815: -58,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1616: -23,38 - 1663: -7,32 - 1664: -8,32 - 1665: -9,32 - 1666: -10,32 - 1667: -11,32 - 1668: -12,32 - 1669: -13,32 - 1761: -10,42 - 1762: -9,42 - 1763: -11,42 - 1848: -60,-60 - 1850: -64,-60 - 1851: -66,-60 - 1966: -58,12 - 1967: -57,12 - 1968: -56,12 - 1969: -55,12 - 1970: -54,12 - 1971: -51,12 + 1466: -23,38 + 1513: -7,32 + 1514: -8,32 + 1515: -9,32 + 1516: -10,32 + 1517: -11,32 + 1518: -12,32 + 1519: -13,32 + 1611: -10,42 + 1612: -9,42 + 1613: -11,42 + 1698: -60,-60 + 1700: -64,-60 + 1701: -66,-60 + 1816: -58,12 + 1817: -57,12 + 1818: -56,12 + 1819: -55,12 + 1820: -54,12 + 1821: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1670: -13,32 - 1671: -13,33 - 1672: -13,34 - 1673: -13,35 - 1767: -8,41 - - node: - color: '#52B4E996' - id: BrickTileSteelBox - decals: - 2976: -12,-19 + 1520: -13,32 + 1521: -13,33 + 1522: -13,34 + 1523: -13,35 + 1617: -8,41 - node: color: '#9FED5896' id: BrickTileSteelBox decals: - 2558: 2,-9 - 2559: 2,-10 - 2560: 2,-11 + 2397: 2,-9 + 2398: 2,-10 + 2399: 2,-11 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 2549: 1,-7 - 2613: -31,10 - 2624: -31,13 + 2388: 1,-7 + 2452: -31,10 + 2463: -31,13 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2722: 33,9 + 2555: 33,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2610: -62,-24 - 2810: -25,11 + 2449: -62,-24 + 2643: -25,11 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 2550: -1,-7 - 2614: -33,10 - 2625: -33,13 + 2389: -1,-7 + 2453: -33,10 + 2464: -33,13 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2723: 31,9 + 2556: 31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2611: -63,-24 - 2809: -27,11 + 2450: -63,-24 + 2642: -27,11 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 2616: -31,6 - 2627: -31,12 + 2455: -31,6 + 2466: -31,12 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2725: 33,7 + 2558: 33,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2612: -62,-25 - 2811: -25,7 + 2451: -62,-25 + 2644: -25,7 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2553: -1,-10 - 2615: -33,6 - 2626: -33,12 + 2392: -1,-10 + 2454: -33,6 + 2465: -33,12 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2724: 31,7 + 2557: 31,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2609: -63,-25 - 2808: -27,7 + 2448: -63,-25 + 2641: -27,7 - node: color: '#9FED5896' id: BrickTileSteelEndS decals: - 2557: 1,-12 + 2396: 1,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1873: -69,-52 - 1874: -69,-58 + 1723: -69,-52 + 1724: -69,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1854: -61,-61 - 1861: -56,-56 + 1704: -61,-61 + 1711: -56,-56 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1866: -68,-60 - 1871: -69,-53 - 1872: -69,-51 + 1716: -68,-60 + 1721: -69,-53 + 1722: -69,-51 - node: color: '#9FED5896' id: BrickTileSteelInnerSw decals: - 2555: 1,-10 + 2394: 1,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1862: -56,-55 - 1863: -56,-52 + 1712: -56,-55 + 1713: -56,-52 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 2545: 1,-11 - 2546: 1,-10 - 2547: 1,-9 - 2548: 1,-8 - 2618: -31,7 - 2619: -31,8 - 2620: -31,9 + 2384: 1,-11 + 2385: 1,-10 + 2386: 1,-9 + 2387: 1,-8 + 2457: -31,7 + 2458: -31,8 + 2459: -31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1867: -69,-57 - 1868: -69,-56 - 1870: -69,-54 - 2816: -25,8 - 2817: -25,9 - 2818: -25,10 + 1717: -69,-57 + 1718: -69,-56 + 1720: -69,-54 + 2649: -25,8 + 2650: -25,9 + 2651: -25,10 - node: color: '#334E6DC8' id: BrickTileSteelLineN decals: - 1594: -18,37 - 1595: -19,37 - 1596: -20,37 - 1597: -21,37 - 1598: -22,37 - 1599: -24,37 - 1600: -25,37 - 1601: -26,37 - 1602: -28,37 - - node: - color: '#52B4E996' - id: BrickTileSteelLineN - decals: - 2971: -8,-20 - 2972: -9,-20 - 2973: -10,-20 - 2974: -11,-20 - 2975: -12,-20 + 1444: -18,37 + 1445: -19,37 + 1446: -20,37 + 1447: -21,37 + 1448: -22,37 + 1449: -24,37 + 1450: -25,37 + 1451: -26,37 + 1452: -28,37 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 2628: -32,13 + 2467: -32,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1818: 26,32 - 1853: -62,-61 - 2819: -26,11 + 1668: 26,32 + 1703: -62,-61 + 2652: -26,11 - node: color: '#9FED5896' id: BrickTileSteelLineS decals: - 2554: 0,-10 - 2617: -32,6 + 2393: 0,-10 + 2456: -32,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1816: -27,24 - 1897: 8,-18 - 2815: -26,7 + 1666: -27,24 + 1747: 8,-18 + 2648: -26,7 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 2551: -1,-8 - 2552: -1,-9 - 2556: 1,-11 - 2621: -33,9 + 2390: -1,-8 + 2391: -1,-9 + 2395: 1,-11 + 2460: -33,9 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2726: 31,8 + 2559: 31,8 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1817: 25,26 - 1860: -56,-53 - 2812: -27,8 - 2813: -27,9 - 2814: -27,10 + 1667: 25,26 + 1710: -56,-53 + 2645: -27,8 + 2646: -27,9 + 2647: -27,10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2798: -19,40 + 2631: -19,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2959: -11,-22 - 2960: -8,-22 + 2952: -21,-15 + 2962: -13,-15 + 3018: -13,-19 + 3046: -29,-16 + 3091: -12,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2352: -2,-33 + 2191: -2,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2408: -22,-41 - 2429: -16,-39 - 2461: -6,-28 + 2247: -22,-41 + 2268: -16,-39 + 2300: -6,-28 + 2849: -40,19 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 2951: -21,-15 + 2997: -13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2799: -21,40 + 2632: -21,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2957: -12,-22 - 2958: -9,-22 + 2953: -23,-15 + 2961: -15,-15 + 3019: -19,-19 + 3047: -31,-16 + 3090: -16,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2353: -4,-33 + 2192: -4,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2407: -25,-41 - 2428: -20,-39 - 2462: -14,-28 - 2690: 5,-24 - 2695: 9,-23 + 2246: -25,-41 + 2267: -20,-39 + 2301: -14,-28 + 2523: 5,-24 + 2528: 9,-23 + 2853: -44,19 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 2950: -23,-15 + 2990: -19,-19 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2962: -8,-24 + 2949: -21,-24 + 2964: -13,-17 + 3016: -13,-23 + 3055: -29,-24 + 3093: -12,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 2354: -2,-36 + 2193: -2,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1935: 7,-30 - 2392: 3,-45 - 2410: -22,-45 - 2430: -16,-45 - 2464: -6,-32 + 1785: 7,-30 + 2231: 3,-45 + 2249: -22,-45 + 2269: -16,-45 + 2303: -6,-32 + 2856: -40,17 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 2946: -21,-24 + 2996: -13,-23 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2637: -37,0 - 2966: -12,-24 + 2476: -37,0 + 2948: -23,-24 + 2965: -15,-17 + 3017: -19,-23 + 3054: -31,-24 + 3092: -16,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 2355: -4,-36 + 2194: -4,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1934: 5,-30 - 2393: 0,-45 - 2409: -25,-45 - 2433: -20,-45 - 2463: -14,-32 + 1784: 5,-30 + 2232: 0,-45 + 2248: -25,-45 + 2272: -20,-45 + 2302: -14,-32 + 2854: -44,17 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 2947: -23,-24 + 2991: -19,-23 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1758: -3,32 - 1782: -12,40 + 1608: -3,32 + 1632: -12,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2970: -11,-23 + 2939: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2830: 12,20 + 2663: 12,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2540: -11,-42 + 2379: -11,-42 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 2911: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1756: -3,32 - 1784: -8,40 + 1606: -3,32 + 1634: -8,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 2969: -9,-23 + 2940: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 2572: 7,-9 + 2411: 7,-9 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2829: 14,20 + 2662: 14,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2539: -5,-42 - 2694: 9,-24 + 2378: -5,-42 + 2527: 9,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 2912: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1759: -3,32 - 1783: -12,42 + 1609: -3,32 + 1633: -12,42 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 2937: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2828: 12,23 + 2661: 12,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1938: 7,-25 - 2538: -11,-40 + 1788: 7,-25 + 2377: -11,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 2909: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1757: -3,32 - 1781: -8,42 + 1607: -3,32 + 1631: -8,42 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 2938: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 2571: 7,-4 - 2573: 7,-11 + 2410: 7,-4 + 2412: 7,-11 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2827: 14,23 + 2660: 14,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1937: 9,-25 - 2537: -5,-40 + 1787: 9,-25 + 2376: -5,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 2910: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1692: -4,29 - 1693: -4,30 - 1694: -4,31 - 1695: -4,33 - 1696: -4,35 - 1697: -15,29 - 1698: -15,30 - 1699: -15,31 - 1700: -15,33 - 1701: -15,35 - 1779: -12,41 - 2839: -40,-61 + 1542: -4,29 + 1543: -4,30 + 1544: -4,31 + 1545: -4,33 + 1546: -4,35 + 1547: -15,29 + 1548: -15,30 + 1549: -15,31 + 1550: -15,33 + 1551: -15,35 + 1629: -12,41 + 2672: -40,-61 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2842: -40,-63 - 2961: -8,-23 + 2675: -40,-63 + 2929: -21,-17 + 2930: -21,-18 + 2931: -21,-19 + 2932: -21,-20 + 2933: -21,-22 + 2934: -21,-23 + 2963: -13,-16 + 3005: -13,-22 + 3006: -13,-21 + 3007: -13,-20 + 3041: -29,-22 + 3042: -29,-21 + 3043: -29,-20 + 3044: -29,-19 + 3045: -29,-18 + 3094: -12,-12 + 3095: -12,-10 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 2851: -37,-60 - 2852: -37,-59 - 2853: -37,-58 + 2684: -37,-60 + 2685: -37,-59 + 2686: -37,-58 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 2838: -40,-59 + 2671: -40,-59 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2822: 12,21 - 2823: 12,22 - 2843: -40,-64 + 2655: 12,21 + 2656: 12,22 + 2676: -40,-64 - node: color: '#D4D4D428' id: BrickTileWhiteLineE decals: - 2863: -42,-60 - 2864: -42,-59 - 2865: -42,-58 + 2696: -42,-60 + 2697: -42,-59 + 2698: -42,-58 - node: color: '#D4D4D496' id: BrickTileWhiteLineE decals: - 2860: -42,-64 - 2861: -42,-63 - 2862: -42,-62 + 2693: -42,-64 + 2694: -42,-63 + 2695: -42,-62 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 2358: -2,-35 - 2359: -2,-34 - 2848: -37,-64 - 2849: -37,-63 - 2850: -37,-62 + 2197: -2,-35 + 2198: -2,-34 + 2681: -37,-64 + 2682: -37,-63 + 2683: -37,-62 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1925: 7,-29 - 1926: 7,-28 - 1927: 7,-27 - 1928: 7,-26 - 2362: -4,-35 - 2363: -4,-34 - 2386: 3,-42 - 2387: 3,-41 - 2388: 3,-40 - 2389: 3,-39 - 2390: 3,-43 - 2391: 3,-44 - 2413: -22,-44 - 2436: -16,-44 - 2437: -16,-43 - 2472: -6,-31 - 2473: -6,-30 - 2474: -6,-29 - 2835: -40,-58 + 1775: 7,-29 + 1776: 7,-28 + 1777: 7,-27 + 1778: 7,-26 + 2201: -4,-35 + 2202: -4,-34 + 2225: 3,-42 + 2226: 3,-41 + 2227: 3,-40 + 2228: 3,-39 + 2229: 3,-43 + 2230: 3,-44 + 2252: -22,-44 + 2275: -16,-44 + 2276: -16,-43 + 2311: -6,-31 + 2312: -6,-30 + 2313: -6,-29 + 2668: -40,-58 + 2858: -40,18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 2903: -21,-23 + 2904: -21,-22 + 2905: -21,-20 + 2906: -21,-19 + 2915: -21,-18 + 2916: -21,-17 + 3002: -13,-22 + 3003: -13,-21 + 3004: -13,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1653: -18,37 - 1654: -19,37 - 1655: -20,37 - 1656: -21,37 - 1657: -22,37 - 1658: -25,37 - 1659: -26,37 - 1660: -28,37 - 1661: -24,37 - 1776: -9,40 - 1777: -10,40 - 1778: -11,40 + 1503: -18,37 + 1504: -19,37 + 1505: -20,37 + 1506: -21,37 + 1507: -22,37 + 1508: -25,37 + 1509: -26,37 + 1510: -28,37 + 1511: -24,37 + 1626: -9,40 + 1627: -10,40 + 1628: -11,40 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2968: -10,-23 + 2941: -20,-21 + 3008: -15,-19 + 3009: -16,-19 + 3010: -17,-19 + 3011: -18,-19 + 3096: -13,-9 + 3097: -14,-9 + 3098: -15,-9 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2720: 17,16 - 2721: 18,16 - 2820: 13,20 + 2553: 17,16 + 2554: 18,16 + 2653: 13,20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 2360: -3,-33 - 2404: -3,-39 + 2199: -3,-33 + 2243: -3,-39 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2366: -3,-34 - 2417: -24,-41 - 2418: -23,-41 - 2434: -17,-39 - 2435: -18,-39 - 2475: -7,-28 - 2476: -8,-28 - 2477: -9,-28 - 2478: -10,-28 - 2479: -11,-28 - 2480: -12,-28 - 2481: -13,-28 - 2532: -6,-42 - 2533: -7,-42 - 2534: -8,-42 - 2535: -9,-42 - 2536: -10,-42 - 2691: 8,-24 - 2693: 7,-24 - 2696: 10,-23 - 2697: 11,-23 - 2698: 12,-23 - 2699: 13,-23 + 2205: -3,-34 + 2256: -24,-41 + 2257: -23,-41 + 2273: -17,-39 + 2274: -18,-39 + 2314: -7,-28 + 2315: -8,-28 + 2316: -9,-28 + 2317: -10,-28 + 2318: -11,-28 + 2319: -12,-28 + 2320: -13,-28 + 2371: -6,-42 + 2372: -7,-42 + 2373: -8,-42 + 2374: -9,-42 + 2375: -10,-42 + 2524: 8,-24 + 2526: 7,-24 + 2529: 10,-23 + 2530: 11,-23 + 2531: 12,-23 + 2532: 13,-23 + 2850: -41,19 + 2851: -42,19 + 2852: -43,19 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1609: -26,39 - 1610: -28,39 - 1611: -27,39 + 1459: -26,39 + 1460: -28,39 + 1461: -27,39 + 2914: -20,-21 + 2998: -15,-19 + 2999: -16,-19 + 3000: -17,-19 + 3001: -18,-19 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1773: -9,42 - 1774: -10,42 - 1775: -11,42 + 1623: -9,42 + 1624: -10,42 + 1625: -11,42 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2635: -34,0 - 2636: -36,0 - 2963: -9,-24 - 2964: -10,-24 - 2965: -11,-24 + 2474: -34,0 + 2475: -36,0 + 2942: -20,-21 + 3012: -17,-23 + 3013: -16,-23 + 3014: -15,-23 + 3015: -14,-23 + 3056: -30,-24 + 3100: -13,-13 + 3101: -15,-13 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2568: 6,-4 - 2569: 5,-4 - 2570: 3,-4 + 2407: 6,-4 + 2408: 5,-4 + 2409: 3,-4 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2719: 17,14 - 2821: 13,23 + 2552: 17,14 + 2654: 13,23 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2361: -3,-36 + 2200: -3,-36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2367: -3,-35 - 2396: 2,-45 - 2397: 1,-45 - 2411: -23,-45 - 2412: -24,-45 - 2431: -19,-45 - 2432: -17,-45 - 2465: -7,-32 - 2466: -8,-32 - 2467: -9,-32 - 2468: -10,-32 - 2469: -11,-32 - 2470: -12,-32 - 2471: -13,-32 - 2527: -6,-40 - 2528: -7,-40 - 2529: -8,-40 - 2530: -9,-40 - 2531: -10,-40 - 2692: 8,-25 + 2206: -3,-35 + 2235: 2,-45 + 2236: 1,-45 + 2250: -23,-45 + 2251: -24,-45 + 2270: -19,-45 + 2271: -17,-45 + 2304: -7,-32 + 2305: -8,-32 + 2306: -9,-32 + 2307: -10,-32 + 2308: -11,-32 + 2309: -12,-32 + 2310: -13,-32 + 2366: -6,-40 + 2367: -7,-40 + 2368: -8,-40 + 2369: -9,-40 + 2370: -10,-40 + 2525: 8,-25 + 2855: -43,17 + 2857: -42,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1608: -27,39 + 1458: -27,39 + 2913: -20,-21 + 2992: -17,-23 + 2993: -16,-23 + 2994: -15,-23 + 2995: -14,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1686: -16,29 - 1687: -16,30 - 1688: -16,31 - 1689: -16,32 - 1690: -16,33 - 1691: -16,35 - 1702: -5,29 - 1703: -5,30 - 1704: -5,31 - 1705: -5,33 - 1706: -5,35 - 1780: -8,41 - 2840: -37,-61 + 1536: -16,29 + 1537: -16,30 + 1538: -16,31 + 1539: -16,32 + 1540: -16,33 + 1541: -16,35 + 1552: -5,29 + 1553: -5,30 + 1554: -5,31 + 1555: -5,33 + 1556: -5,35 + 1630: -8,41 + 2673: -37,-61 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2841: -37,-63 - 2967: -12,-23 + 2674: -37,-63 + 2923: -23,-22 + 2924: -23,-21 + 2925: -23,-20 + 2926: -23,-19 + 2927: -23,-18 + 2928: -23,-16 + 2935: -19,-22 + 2936: -19,-20 + 3048: -31,-17 + 3049: -31,-19 + 3050: -31,-20 + 3051: -31,-21 + 3052: -31,-22 + 3053: -31,-23 + 3099: -16,-12 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 2563: 7,-12 - 2564: 7,-8 - 2565: 7,-7 - 2566: 7,-6 - 2567: 7,-5 + 2402: 7,-12 + 2403: 7,-8 + 2404: 7,-7 + 2405: 7,-6 + 2406: 7,-5 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 2854: -35,-60 - 2855: -35,-59 - 2856: -35,-58 + 2687: -35,-60 + 2688: -35,-59 + 2689: -35,-58 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 2837: -37,-59 + 2670: -37,-59 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2825: 14,21 - 2826: 14,22 - 2844: -37,-64 + 2658: 14,21 + 2659: 14,22 + 2677: -37,-64 - node: color: '#D4D4D428' id: BrickTileWhiteLineW decals: - 2866: -40,-60 - 2867: -40,-59 - 2868: -40,-58 + 2699: -40,-60 + 2700: -40,-59 + 2701: -40,-58 - node: color: '#D4D4D496' id: BrickTileWhiteLineW decals: - 2857: -40,-64 - 2858: -40,-63 - 2859: -40,-62 + 2690: -40,-64 + 2691: -40,-63 + 2692: -40,-62 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 2356: -4,-35 - 2357: -4,-34 - 2845: -35,-64 - 2846: -35,-63 - 2847: -35,-62 + 2195: -4,-35 + 2196: -4,-34 + 2678: -35,-64 + 2679: -35,-63 + 2680: -35,-62 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1929: 5,-28 - 1930: 5,-27 - 1931: 5,-29 - 1932: 5,-26 - 1933: 5,-25 - 1936: 9,-26 - 2364: -2,-35 - 2365: -2,-34 - 2394: 0,-44 - 2395: 0,-43 - 2414: -25,-44 - 2415: -25,-43 - 2416: -25,-42 - 2425: -20,-44 - 2426: -20,-41 - 2427: -20,-40 - 2482: -14,-31 - 2483: -14,-29 - 2836: -37,-58 + 1779: 5,-28 + 1780: 5,-27 + 1781: 5,-29 + 1782: 5,-26 + 1783: 5,-25 + 1786: 9,-26 + 2203: -2,-35 + 2204: -2,-34 + 2233: 0,-44 + 2234: 0,-43 + 2253: -25,-44 + 2254: -25,-43 + 2255: -25,-42 + 2264: -20,-44 + 2265: -20,-41 + 2266: -20,-40 + 2321: -14,-31 + 2322: -14,-29 + 2669: -37,-58 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 2938: -35,-15 - 2939: -35,-14 + 2907: -19,-22 + 2908: -19,-20 + 2917: -23,-22 + 2918: -23,-21 + 2919: -23,-20 + 2920: -23,-19 + 2921: -23,-18 + 2922: -23,-16 - node: color: '#FFFFFFFF' id: Busha1 decals: - 372: -40.05385,30.256437 + 367: -40.05385,30.256437 - node: color: '#FFFFFFFF' id: Busha2 decals: - 1240: -25.204376,3.9985995 + 1104: -25.204376,3.9985995 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1181: -67.012436,-29.136745 + 1045: -67.012436,-29.136745 - node: color: '#9FED5896' id: Bushb1 decals: - 1214: 5.955755,-11.904804 + 1078: 5.955755,-11.904804 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 369: -39.0226,31.318937 + 364: -39.0226,31.318937 - node: color: '#9FED5896' id: Bushb3 decals: - 1212: 5.424505,-4.9673038 + 1076: 5.424505,-4.9673038 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 370: -39.256973,28.912687 - 1176: -71.06114,-43.947823 - 1883: -52.14543,-42.415432 + 365: -39.256973,28.912687 + 1040: -71.06114,-43.947823 + 1733: -52.14543,-42.415432 - node: color: '#9FED5896' id: Bushc1 decals: - 1211: 6.03388,-7.2173038 + 1075: 6.03388,-7.2173038 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 1063: -12.158052,22.978218 + 949: -12.158052,22.978218 - node: color: '#9FED5896' id: Bushc2 decals: - 1210: 6,-8 - 1213: 2.9401298,-4.9985538 + 1074: 6,-8 + 1077: 2.9401298,-4.9985538 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 371: -39.1476,33.037685 - 1062: -9.158052,23.040718 + 366: -39.1476,33.037685 + 948: -9.158052,23.040718 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 373: -39.11635,29.006437 - 1202: -65.91299,-37.046043 - 2936: -33.95476,-14.128889 + 368: -39.11635,29.006437 + 1066: -65.91299,-37.046043 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 1194: -67.06147,-29.881145 + 1058: -67.06147,-29.881145 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 1248: -27.485626,3.9673495 + 1112: -27.485626,3.9673495 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 1188: -65.58819,-29.014542 - 1247: -28.454376,3.9517245 - 2935: -34.282887,-16.06639 + 1052: -65.58819,-29.014542 + 1111: -28.454376,3.9517245 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1179: -71.81257,-43.137188 - 1189: -65.66631,-32.030167 - 1190: -59.71319,-35.530167 + 1043: -71.81257,-43.137188 + 1053: -65.66631,-32.030167 + 1054: -59.71319,-35.530167 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1191: -65.26006,-35.280167 - 1192: -59.36944,-31.748917 - 1251: -24.141876,3.9673495 - 2934: -33.95476,-16.050764 + 1055: -65.26006,-35.280167 + 1056: -59.36944,-31.748917 + 1115: -24.141876,3.9673495 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1434: -59.021492,-29.650486 + 1284: -59.021492,-29.650486 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1183: -65.58819,-32.131794 - 1184: -59.291313,-31.866169 + 1047: -65.58819,-32.131794 + 1048: -59.291313,-31.866169 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1185: -59.74444,-35.631794 - 1186: -65.52569,-29.053669 - 1433: -59.068367,-29.628086 + 1049: -59.74444,-35.631794 + 1050: -65.52569,-29.053669 + 1283: -59.068367,-29.628086 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1187: -65.27569,-35.350544 + 1051: -65.27569,-35.350544 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1195: -50.04093,-42.20576 + 1059: -50.04093,-42.20576 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 1193: -66.616165,-27.440277 - 1196: -53.009384,-36.94919 + 1057: -66.616165,-27.440277 + 1060: -53.009384,-36.94919 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 380: -38.850723,30.881437 - 1054: -10.897953,23.01216 - 1055: -7.147953,23.059034 - 1057: -12.769052,22.88716 + 375: -38.850723,30.881437 + 940: -10.897953,23.01216 + 941: -7.147953,23.059034 + 943: -12.769052,22.88716 + 3188: -20,-22 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 379: -40.131973,32.52206 - 1215: 5.9999943,-7.451386 - 2931: -31.876637,-14.785139 - 2932: -31.907887,-15.472639 - 2933: -33.595387,-15.160139 + 374: -40.131973,32.52206 + 1079: 5.9999943,-7.451386 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 377: -38.850723,29.881437 - 378: -40.05385,31.053312 - 1250: -28.032501,3.9673495 + 372: -38.850723,29.881437 + 373: -40.05385,31.053312 + 1114: -28.032501,3.9673495 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 1056: -9.757328,22.85591 - 1216: 5.4999943,-5.029511 - 1249: -25.548126,3.9829745 + 942: -9.757328,22.85591 + 1080: 5.4999943,-5.029511 + 1113: -25.548126,3.9829745 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 1180: -73.48444,-43.855938 - 1197: -68.11463,-38.9754 - 1203: -69.40792,-34.063843 + 1044: -73.48444,-43.855938 + 1061: -68.11463,-38.9754 + 1067: -69.40792,-34.063843 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 1198: -57.046288,-37.982056 + 1062: -57.046288,-37.982056 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1199: -49.987144,-48.963146 + 1063: -49.987144,-48.963146 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 366: -39.256973,30.272062 - 368: -39.9601,29.068937 + 361: -39.256973,30.272062 + 363: -39.9601,29.068937 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 367: -39.850723,33.05331 + 362: -39.850723,33.05331 - node: color: '#FFFFFFFF' id: Bushl1 decals: - 1003: -59.13713,-56.211792 - 1217: 3.0098214,-4.939097 - 1749: -9.9612665,40.993107 + 889: -59.13713,-56.211792 + 1081: 3.0098214,-4.939097 + 1599: -9.9612665,40.993107 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 1004: -59.79338,-57.039917 - 1218: 6.009821,-11.977411 + 890: -59.79338,-57.039917 + 1082: 6.009821,-11.977411 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 1005: -59.16838,-57.789917 + 891: -59.16838,-57.789917 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 1006: -65.91838,-51.868042 + 892: -65.91838,-51.868042 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 1064: -10.126802,23.012297 + 950: -10.126802,23.012297 - node: color: '#FFFFFFFF' id: Caution decals: - 776: -8,-45 - - node: - color: '#52B4E944' - id: CheckerNESW - decals: - 2640: -35,-3 - 2641: -36,-3 - 2642: -36,-2 - 2643: -34,-2 - 2644: -34,-3 - 2645: -35,-2 + 662: -8,-45 - node: color: '#52B4E996' id: CheckerNESW decals: - 488: -16,-13 - 489: -16,-14 - 490: -16,-15 - 491: -16,-16 - 492: -16,-17 - 493: -15,-17 - 494: -15,-16 - 495: -15,-15 - 496: -15,-14 - 497: -15,-13 - 498: -14,-13 - 499: -14,-14 - 500: -14,-15 - 501: -14,-16 - 502: -14,-17 - 503: -13,-17 - 504: -13,-16 - 505: -13,-15 - 506: -13,-14 - 507: -13,-13 - 508: -12,-13 - 509: -12,-14 - 510: -12,-15 - 511: -12,-16 - 512: -12,-17 - 551: -11,-2 - 2977: -39,-12 - 2978: -38,-12 - 2979: -37,-12 - 2980: -37,-11 - 2981: -38,-11 - 2982: -39,-11 + 520: -11,-2 + 2966: -19,-17 + 2967: -19,-16 + 2968: -19,-15 + 2969: -18,-15 + 2970: -17,-15 + 2971: -17,-16 + 2972: -18,-16 + 2973: -18,-17 + 2974: -17,-17 + 2975: -18,-22 + 2976: -18,-21 + 2977: -18,-20 + 2978: -17,-20 + 2979: -17,-21 + 2980: -17,-22 + 2981: -16,-22 + 2982: -16,-21 + 2983: -16,-20 + 2984: -15,-20 + 2985: -15,-21 + 2986: -15,-22 + 2987: -14,-22 + 2988: -14,-21 + 2989: -14,-20 + 3026: -33,-20 + 3027: -34,-20 + 3028: -35,-20 + 3029: -35,-19 + 3030: -34,-19 + 3031: -33,-19 + 3032: -33,-18 + 3033: -34,-18 + 3034: -35,-18 + 3035: -35,-17 + 3036: -34,-17 + 3037: -33,-17 + 3038: -33,-16 + 3039: -34,-16 + 3040: -35,-16 - node: color: '#D4D4D496' id: CheckerNESW decals: - 1945: -15,8 + 1795: -15,8 - node: color: '#EFB34196' id: CheckerNESW decals: - 1150: -20,-37 - 1151: -19,-37 - 1152: -18,-37 - 1153: -17,-37 - 1154: -16,-37 - 1155: -16,-36 - 1156: -17,-36 - 1157: -19,-36 - 1158: -19,-36 - 1159: -20,-36 - 1160: -20,-35 - 1161: -19,-35 - 1162: -18,-35 - 1163: -17,-35 - 1164: -16,-35 + 1014: -20,-37 + 1015: -19,-37 + 1016: -18,-37 + 1017: -17,-37 + 1018: -16,-37 + 1019: -16,-36 + 1020: -17,-36 + 1021: -19,-36 + 1022: -19,-36 + 1023: -20,-36 + 1024: -20,-35 + 1025: -19,-35 + 1026: -18,-35 + 1027: -17,-35 + 1028: -16,-35 - node: color: '#52B4E996' id: CheckerNWSE decals: - 547: -9,-4 + 516: -9,-4 + 3118: -32,-8 + 3119: -32,-7 + 3120: -32,-6 + 3121: -31,-6 + 3122: -30,-6 + 3123: -29,-6 + 3124: -28,-6 + 3125: -28,-7 + 3126: -28,-8 + 3127: -29,-8 + 3128: -29,-7 + 3129: -30,-7 + 3130: -30,-8 + 3131: -31,-8 + 3132: -31,-7 - node: color: '#79150096' id: CheckerNWSE @@ -1860,401 +2006,419 @@ entities: 31: -13,14 32: -14,13 33: -14,14 - - node: - color: '#9FED5896' - id: CheckerNWSE - decals: - 1377: -35,-25 - 1378: -34,-25 - 1379: -34,-24 - 1380: -35,-24 - 1381: -35,-23 - 1382: -34,-23 - 1383: -34,-22 - 1384: -32,-22 - 1385: -32,-23 - 1386: -31,-23 - 1387: -32,-24 - 1388: -31,-24 - 1389: -32,-25 - 1390: -31,-25 - node: color: '#A4610696' id: CheckerNWSE decals: - 1220: 30,0 - 1221: 29,0 - 1222: 29,1 - 1223: 29,2 - 1224: 30,2 - 1225: 30,1 - 1226: 31,0 - 1227: 31,1 - 1228: 31,2 + 1084: 30,0 + 1085: 29,0 + 1086: 29,1 + 1087: 29,2 + 1088: 30,2 + 1089: 30,1 + 1090: 31,0 + 1091: 31,1 + 1092: 31,2 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1255: 3,-28 + 1119: 3,-28 - node: color: '#FFFFFFFF' id: Delivery decals: - 104: -39,50 - 105: -41,50 - 112: -31,56 - 113: -35,56 - 114: -35,60 - 115: -34,60 - 116: -33,60 - 117: -32,60 - 118: -31,60 - 227: -40,41 - 228: -44,41 - 229: -48,41 - 390: 4,29 - 395: 11,41 - 725: 7,-22 - 726: 6,-22 - 727: 5,-22 - 739: 0,-36 - 740: 1,-36 - 741: 2,-36 - 742: 3,-35 - 743: 3,-34 - 744: 3,-33 - 826: 14,-12 - 827: 14,-11 - 828: 14,-10 - 1281: 16,-2 - 1282: 17,-2 - 1374: 31,-6 - 1375: 31,-5 - 1376: 31,-4 - 1405: 18,-15 - 1406: 18,-14 - 1407: 19,-14 - 1408: 19,-15 - 1450: 38,7 - 1451: 39,7 - 1452: 40,7 - 1471: 28,9 - 1472: 28,10 - 1473: 26,9 - 1474: 26,10 - 2368: 4,-30 - 2452: -15,-42 - 2453: -15,-41 - 2454: -15,-40 - 2455: -1,-42 - 2456: -1,-41 - 2457: -1,-40 - 2897: -21,-10 - 2898: -21,-9 - 2899: -27,-10 - 2900: -27,-9 - 2901: -20,-12 - 2902: -19,-12 - 2903: -18,-12 - 2904: -17,-11 - 2905: -17,-10 - 2906: -17,-9 - 3110: -8,-49 + 99: -39,50 + 100: -41,50 + 107: -31,56 + 108: -35,56 + 109: -35,60 + 110: -34,60 + 111: -33,60 + 112: -32,60 + 113: -31,60 + 222: -40,41 + 223: -44,41 + 224: -48,41 + 385: 4,29 + 390: 11,41 + 611: 7,-22 + 612: 6,-22 + 613: 5,-22 + 625: 0,-36 + 626: 1,-36 + 627: 2,-36 + 628: 3,-35 + 629: 3,-34 + 630: 3,-33 + 712: 14,-12 + 713: 14,-11 + 714: 14,-10 + 1145: 16,-2 + 1146: 17,-2 + 1238: 31,-6 + 1239: 31,-5 + 1240: 31,-4 + 1255: 18,-15 + 1256: 18,-14 + 1257: 19,-14 + 1258: 19,-15 + 1300: 38,7 + 1301: 39,7 + 1302: 40,7 + 1321: 28,9 + 1322: 28,10 + 1323: 26,9 + 1324: 26,10 + 2207: 4,-30 + 2291: -15,-42 + 2292: -15,-41 + 2293: -15,-40 + 2294: -1,-42 + 2295: -1,-41 + 2296: -1,-40 + 2841: -8,-49 + 3180: -13,-8 + 3181: -12,-8 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay decals: - 1808: -29,22 - 1809: -28,22 - 1810: -27,22 - 1811: -26,22 - 1812: -26,23 - 1813: -27,23 - 1814: -28,23 - 1815: -29,23 + 1658: -29,22 + 1659: -28,22 + 1660: -27,22 + 1661: -26,22 + 1662: -26,23 + 1663: -27,23 + 1664: -28,23 + 1665: -29,23 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 1037: -27,-36 - 1038: -28,-38 - 1039: -23,-36 - 1040: -25,-38 + 923: -27,-36 + 924: -28,-38 + 925: -23,-36 + 926: -25,-38 + 2888: -41,-11 + 2889: -42,-13 + 2890: -43,-17 + 2891: -42,-16 + 2892: -42,-17 + 2893: -41,-16 + 2894: -42,-12 + 2895: -41,-9 + 2896: -42,-8 + 2897: -42,-7 + 2898: -39,-7 + 2899: -39,-6 + 2900: -38,-7 + 2901: -38,-8 + 2902: -40,-7 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 234: -40,39 - 235: -39,40 - 236: -44,39 - 237: -49,40 - 250: -34,57 - 251: -31,59 - 795: 1,-38 - 876: 53,19 - 877: 53,20 + 229: -40,39 + 230: -39,40 + 231: -44,39 + 232: -49,40 + 245: -34,57 + 246: -31,59 + 681: 1,-38 + 762: 53,19 + 763: 53,20 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 406: -26,29 - 407: -33,32 - 408: -28,32 - 409: -28,31 - 410: -31,30 - 1007: -76,-57 - 1008: -76,-56 - 1009: -77,-55 - 1010: -79,-54 - 1024: -22,-38 - 1025: -23,-38 - 1026: -24,-36 - 1027: -25,-36 - 1028: -25,-36 - 1301: 23,-12 - 1302: 23,-11 - 1303: 24,-12 - 1304: 34,-12 - 1305: 35,-11 - 1306: 32,-12 - 1307: 31,-10 - 2492: -13,-31 - 2493: -11,-32 - 2648: -19,19 - 2649: -14,19 - 2650: -21,18 - 2653: -15,19 + 401: -26,29 + 402: -33,32 + 403: -28,32 + 404: -28,31 + 405: -31,30 + 893: -76,-57 + 894: -76,-56 + 895: -77,-55 + 896: -79,-54 + 910: -22,-38 + 911: -23,-38 + 912: -24,-36 + 913: -25,-36 + 914: -25,-36 + 1165: 23,-12 + 1166: 23,-11 + 1167: 24,-12 + 1168: 34,-12 + 1169: 35,-11 + 1170: 32,-12 + 1171: 31,-10 + 2331: -13,-31 + 2332: -11,-32 + 2481: -19,19 + 2482: -14,19 + 2483: -21,18 + 2486: -15,19 + 2866: -40,-8 + 2867: -41,-7 + 2868: -42,-14 + 2869: -42,-17 - node: color: '#FFFFFFFF' id: DirtLight decals: - 238: -48,40 - 239: -48,39 - 240: -43,40 - 241: -45,40 - 242: -41,39 - 243: -40,40 - 244: -40,41 - 245: -36,56 - 246: -36,57 - 247: -30,56 - 252: -33,57 - 253: -35,57 - 254: -31,58 - 255: -30,59 - 256: -29,59 - 257: -30,54 - 259: -36,53 - 260: -35,54 - 261: -36,50 - 262: -33,46 - 263: -33,43 - 264: -34,44 - 265: -40,42 - 267: -48,42 - 268: -37,40 - 804: -19,-44 - 805: -17,-42 - 806: -14,-40 - 807: -19,-42 - 808: -23,-43 - 809: -1,-40 - 810: -4,-41 - 811: 1,-40 - 812: 0,-39 - 813: 2,-38 - 814: 2,-39 - 815: 1,-34 - 816: 1,-31 - 872: 43,22 - 873: 45,22 - 874: 52,19 - 875: 51,20 - 878: 50,19 - 884: 45,23 + 233: -48,40 + 234: -48,39 + 235: -43,40 + 236: -45,40 + 237: -41,39 + 238: -40,40 + 239: -40,41 + 240: -36,56 + 241: -36,57 + 242: -30,56 + 247: -33,57 + 248: -35,57 + 249: -31,58 + 250: -30,59 + 251: -29,59 + 252: -30,54 + 254: -36,53 + 255: -35,54 + 256: -36,50 + 257: -33,46 + 258: -33,43 + 259: -34,44 + 260: -40,42 + 262: -48,42 + 263: -37,40 + 690: -19,-44 + 691: -17,-42 + 692: -14,-40 + 693: -19,-42 + 694: -23,-43 + 695: -1,-40 + 696: -4,-41 + 697: 1,-40 + 698: 0,-39 + 699: 2,-38 + 700: 2,-39 + 701: 1,-34 + 702: 1,-31 + 758: 43,22 + 759: 45,22 + 760: 52,19 + 761: 51,20 + 764: 50,19 + 770: 45,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 416: -32,30 - 417: -27,30 - 418: -26,31 - 419: -28,30 - 420: -29,31 - 421: -29,32 - 422: -27,32 - 423: -32,32 - 424: -32,27 - 425: -26,28 - 426: -33,27 - 856: 20,-11 - 857: 21,-10 - 858: 17,-11 - 859: 17,-12 - 860: 19,-8 - 1017: -78,-53 - 1018: -76,-53 - 1019: -78,-56 - 1020: -79,-56 - 1021: -80,-53 - 1022: -79,-52 - 1023: -76,-55 - 1116: 27,0 - 1117: 28,1 - 1118: 29,1 - 1313: 24,-11 - 1314: 24,-10 - 1315: 23,-10 - 1316: 26,-12 - 1317: 31,-12 - 1318: 32,-11 - 1319: 33,-10 - 1320: 34,-11 - 1321: 33,-12 - 1322: 32,-9 - 1323: 33,-9 - 1324: 24,-9 - 1325: 21,-9 - 1326: 24,-8 - 1327: 23,-8 - 1359: 29,-2 - 1360: 30,-3 - 1361: 31,-4 - 1362: 32,-4 - 1363: 30,0 - 1364: 33,-7 - 1365: 32,-8 - 1366: 24,-8 - 1367: 25,-7 - 1368: 26,-6 - 1369: 23,-3 - 1370: 22,-2 - 1371: 21,-2 - 1739: -1,29 - 1985: -58,15 - 1986: -57,16 - 1987: -58,21 - 1988: -57,20 - 1989: -57,23 - 1991: -51,14 - 1992: -51,15 - 1993: -56,20 - 1997: -4,27 - 1998: -6,27 - 1999: -14,26 - 2000: -19,27 - 2001: -26,28 - 2002: -26,27 - 2003: -27,26 - 2004: -25,25 - 2005: -27,31 - 2006: -39,37 - 2007: -37,36 - 2008: -36,35 - 2009: -41,43 - 2010: -47,52 - 2011: -49,53 - 2012: -47,56 - 2499: -13,-32 - 2500: -11,-31 - 2501: -9,-32 - 2502: -10,-30 - 2503: -10,-31 - 2504: -11,-29 - 2505: -11,-28 - 2506: -13,-29 - 2507: -14,-30 - 2508: -13,-33 - 2509: -13,-34 - 2510: -19,-41 - 2511: -20,-42 - 2512: -20,-44 - 2513: -20,-44 - 2514: -22,-44 - 2515: -22,-43 - 2516: -22,-41 - 2517: -25,-41 - 2518: -26,-41 - 2519: -26,-42 - 2520: -24,-43 - 2521: -24,-45 - 2522: -25,-44 - 2523: -12,-39 - 2524: -12,-40 - 2525: -9,-39 - 2526: -8,-39 - 2651: -18,19 - 2652: -21,19 - 2654: -16,19 - 2655: -22,19 - 2656: -31,16 - 2657: -31,17 - 2658: -7,18 + 411: -32,30 + 412: -27,30 + 413: -26,31 + 414: -28,30 + 415: -29,31 + 416: -29,32 + 417: -27,32 + 418: -32,32 + 419: -32,27 + 420: -26,28 + 421: -33,27 + 742: 20,-11 + 743: 21,-10 + 744: 17,-11 + 745: 17,-12 + 746: 19,-8 + 903: -78,-53 + 904: -76,-53 + 905: -78,-56 + 906: -79,-56 + 907: -80,-53 + 908: -79,-52 + 909: -76,-55 + 1002: 27,0 + 1003: 28,1 + 1004: 29,1 + 1177: 24,-11 + 1178: 24,-10 + 1179: 23,-10 + 1180: 26,-12 + 1181: 31,-12 + 1182: 32,-11 + 1183: 33,-10 + 1184: 34,-11 + 1185: 33,-12 + 1186: 32,-9 + 1187: 33,-9 + 1188: 24,-9 + 1189: 21,-9 + 1190: 24,-8 + 1191: 23,-8 + 1223: 29,-2 + 1224: 30,-3 + 1225: 31,-4 + 1226: 32,-4 + 1227: 30,0 + 1228: 33,-7 + 1229: 32,-8 + 1230: 24,-8 + 1231: 25,-7 + 1232: 26,-6 + 1233: 23,-3 + 1234: 22,-2 + 1235: 21,-2 + 1589: -1,29 + 1835: -58,15 + 1836: -57,16 + 1837: -58,21 + 1838: -57,20 + 1839: -57,23 + 1841: -51,14 + 1842: -51,15 + 1843: -56,20 + 1847: -4,27 + 1848: -6,27 + 1849: -14,26 + 1850: -19,27 + 1851: -26,28 + 1852: -26,27 + 1853: -27,26 + 1854: -25,25 + 1855: -27,31 + 1856: -39,37 + 1857: -37,36 + 1858: -36,35 + 1859: -41,43 + 1860: -47,52 + 1861: -49,53 + 1862: -47,56 + 2338: -13,-32 + 2339: -11,-31 + 2340: -9,-32 + 2341: -10,-30 + 2342: -10,-31 + 2343: -11,-29 + 2344: -11,-28 + 2345: -13,-29 + 2346: -14,-30 + 2347: -13,-33 + 2348: -13,-34 + 2349: -19,-41 + 2350: -20,-42 + 2351: -20,-44 + 2352: -20,-44 + 2353: -22,-44 + 2354: -22,-43 + 2355: -22,-41 + 2356: -25,-41 + 2357: -26,-41 + 2358: -26,-42 + 2359: -24,-43 + 2360: -24,-45 + 2361: -25,-44 + 2362: -12,-39 + 2363: -12,-40 + 2364: -9,-39 + 2365: -8,-39 + 2484: -18,19 + 2485: -21,19 + 2487: -16,19 + 2488: -22,19 + 2489: -31,16 + 2490: -31,17 + 2491: -7,18 + 2870: -41,-13 + 2871: -42,-10 + 2872: -42,-9 + 2873: -41,-8 + 2874: -40,-7 + 2884: -42,-15 + 2885: -42,-15 + 2886: -42,-14 + 2887: -42,-13 + 3158: -18,-9 + 3159: -23,-12 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 230: -39,39 - 231: -41,40 - 232: -45,39 - 233: -47,40 - 248: -31,57 - 249: -35,58 - 258: -36,54 - 266: -48,41 - 796: 0,-38 - 797: 1,-39 - 798: 0,-40 - 799: -18,-44 - 800: -19,-43 - 801: -23,-44 - 802: -18,-42 - 803: -16,-41 - 870: 46,23 - 871: 43,21 - 879: 52,19 - 880: 43,22 - 881: 46,23 - 882: 46,22 - 883: 44,23 + 225: -39,39 + 226: -41,40 + 227: -45,39 + 228: -47,40 + 243: -31,57 + 244: -35,58 + 253: -36,54 + 261: -48,41 + 682: 0,-38 + 683: 1,-39 + 684: 0,-40 + 685: -18,-44 + 686: -19,-43 + 687: -23,-44 + 688: -18,-42 + 689: -16,-41 + 756: 46,23 + 757: 43,21 + 765: 52,19 + 766: 43,22 + 767: 46,23 + 768: 46,22 + 769: 44,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 411: -27,29 - 412: -26,30 - 413: -30,30 - 414: -32,29 - 415: -31,32 - 855: 21,-11 - 1011: -78,-54 - 1012: -79,-55 - 1013: -79,-53 - 1014: -80,-53 - 1015: -76,-54 - 1016: -77,-53 - 1029: -26,-36 - 1030: -27,-37 - 1115: 27,1 - 1308: 32,-10 - 1309: 31,-11 - 1310: 30,-11 - 1311: 25,-12 - 1312: 26,-11 - 1356: 34,-7 - 1357: 30,-2 - 1358: 31,-3 - 1740: 3,29 - 1990: -58,13 - 2494: -10,-32 - 2495: -12,-31 - 2496: -12,-32 - 2497: -14,-31 - 2498: -12,-29 + 406: -27,29 + 407: -26,30 + 408: -30,30 + 409: -32,29 + 410: -31,32 + 741: 21,-11 + 897: -78,-54 + 898: -79,-55 + 899: -79,-53 + 900: -80,-53 + 901: -76,-54 + 902: -77,-53 + 915: -26,-36 + 916: -27,-37 + 1001: 27,1 + 1172: 32,-10 + 1173: 31,-11 + 1174: 30,-11 + 1175: 25,-12 + 1176: 26,-11 + 1220: 34,-7 + 1221: 30,-2 + 1222: 31,-3 + 1590: 3,29 + 1840: -58,13 + 2333: -10,-32 + 2334: -12,-31 + 2335: -12,-32 + 2336: -14,-31 + 2337: -12,-29 + 2875: -39,-8 + 2876: -42,-6 + 2877: -42,-7 + 2878: -41,-8 + 2879: -41,-12 + 2880: -42,-11 + 2881: -38,-8 + 2882: -38,-6 + 2883: -39,-7 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 3186: -20,-20 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2262,53 +2426,54 @@ entities: 75: -55,17 76: -53,18 77: -54.752693,18.73386 - 996: -59.152756,-56.526844 + 882: -59.152756,-56.526844 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 991: -64.66838,-52.26122 - 992: -65.559006,-53.82372 - 993: -64.94963,-56.339344 - 994: -59.777756,-52.66747 - 1246: -24.157501,3.9829745 - 1748: -10.5706415,40.97748 + 877: -64.66838,-52.26122 + 878: -65.559006,-53.82372 + 879: -64.94963,-56.339344 + 880: -59.777756,-52.66747 + 1110: -24.157501,3.9829745 + 1598: -10.5706415,40.97748 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: 62: -53,22 63: -55,14 - 995: -60.121506,-53.44872 + 881: -60.121506,-53.44872 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 997: -62.184006,-55.76122 - 998: -61.777756,-56.370594 - 999: -62.152756,-53.308094 - 1747: -9.3987665,40.961857 + 883: -62.184006,-55.76122 + 884: -61.777756,-56.370594 + 885: -62.152756,-53.308094 + 1597: -9.3987665,40.961857 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 81: -54.471443,18.20261 82: -53.533943,17.17136 - 1000: -58.996506,-57.370594 - 1001: -62.88713,-57.995594 + 886: -58.996506,-57.370594 + 887: -62.88713,-57.995594 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 64: -53,14 65: -55,22 - 1002: -59.809006,-54.414917 - 1243: -25.970001,3.9985995 + 888: -59.809006,-54.414917 + 1107: -25.970001,3.9985995 + 3187: -20,-23 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 1061: -13.0907,22.978218 + 947: -13.0907,22.978218 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -2319,96 +2484,104 @@ entities: 61: -53,22 78: -53.471443,17.280735 79: -54.76832,17.48386 - 381: -39.80385,29.303312 - 983: -64.98088,-57.620594 - 984: -62.090256,-57.776844 - 985: -61.10588,-57.13622 - 986: -60.090256,-57.91747 - 987: -64.152756,-53.683094 - 988: -62.69963,-52.51122 - 1244: -28.032501,3.9985995 - 1746: -9.9456415,40.993107 - 2926: -32.126637,-14.222639 + 376: -39.80385,29.303312 + 869: -64.98088,-57.620594 + 870: -62.090256,-57.776844 + 871: -61.10588,-57.13622 + 872: -60.090256,-57.91747 + 873: -64.152756,-53.683094 + 874: -62.69963,-52.51122 + 1108: -28.032501,3.9985995 + 1596: -9.9456415,40.993107 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 382: -39.4601,29.881437 - 990: -65.652756,-52.401844 - 1058: -7.856325,22.931343 + 377: -39.4601,29.881437 + 876: -65.652756,-52.401844 + 944: -7.856325,22.931343 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 80: -53.61207,18.499485 - 383: -39.069473,32.17831 - 989: -63.26213,-53.76122 - 1059: -10.293825,23.009468 - 1060: -11.18445,22.978218 - 1245: -28.938751,3.9985995 - 2925: -34.251637,-15.222639 + 378: -39.069473,32.17831 + 875: -63.26213,-53.76122 + 945: -10.293825,23.009468 + 946: -11.18445,22.978218 + 1109: -28.938751,3.9985995 + 3185: -20,-19 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 2885: -30,-62 + 2718: -30,-62 - node: color: '#4A8F37B1' id: FullTileOverlayGreyscale decals: - 2035: 5,23 - 2036: 6,23 - 2037: 3,23 - 2038: 2,23 - 2039: 2,20 - 2040: 2,21 - 2041: 3,20 - 2042: 5,20 - 2043: 6,20 - 2044: 6,21 + 1885: 5,23 + 1886: 6,23 + 1887: 3,23 + 1888: 2,23 + 1889: 2,20 + 1890: 2,21 + 1891: 3,20 + 1892: 5,20 + 1893: 6,20 + 1894: 6,21 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 513: -17,-15 - 701: -13,-21 + 3085: -14,-12 + 3086: -14,-11 + 3087: -14,-10 + 3088: -15,-11 + 3089: -13,-11 + 3133: -25,-14 + 3134: -26,-14 + 3155: -20,-5 + 3156: -18,-5 + 3160: -20,-7 + 3161: -18,-7 - node: color: '#79150096' id: FullTileOverlayGreyscale decals: - 922: -76,-46 - 923: -77,-46 - 924: -78,-46 - 925: -79,-46 - 926: -80,-46 - 927: -81,-46 + 808: -76,-46 + 809: -77,-46 + 810: -78,-46 + 811: -79,-46 + 812: -80,-46 + 813: -81,-46 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1229: 28,1 - 1230: 30,-1 - 1231: 20,-1 + 1093: 28,1 + 1094: 30,-1 + 1095: 20,-1 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2574: -22,-6 - 2575: -23,-6 - 2576: -24,-6 - 2577: -25,-6 - 2578: -26,-6 - 2579: -25,-5 - 2580: -25,-4 - 2581: -25,-3 - 2582: -25,-2 - 2583: -25,-1 - 2584: -23,-5 - 2585: -23,-4 - 2586: -23,-3 - 2587: -23,-2 - 2588: -23,-1 - 2589: -24,-1 + 2413: -22,-6 + 2414: -23,-6 + 2415: -24,-6 + 2416: -25,-6 + 2417: -26,-6 + 2418: -25,-5 + 2419: -25,-4 + 2420: -25,-3 + 2421: -25,-2 + 2422: -25,-1 + 2423: -23,-5 + 2424: -23,-4 + 2425: -23,-3 + 2426: -23,-2 + 2427: -23,-1 + 2428: -24,-1 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale @@ -2418,70 +2591,67 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 121: -30,54 - 122: -36,54 - 123: -36,46 - 124: -30,46 - 190: -37,38 - 191: -35,38 - 192: -35,41 - 193: -37,41 - 484: -19,-4 - 485: 13,19 - 486: -38,10 - 794: -1,-34 - 1219: -19,0 - 2350: -3,-37 - 2351: -3,-32 + 116: -30,54 + 117: -36,54 + 118: -36,46 + 119: -30,46 + 185: -37,38 + 186: -35,38 + 187: -35,41 + 188: -37,41 + 479: -19,-4 + 480: 13,19 + 481: -38,10 + 680: -1,-34 + 1083: -19,0 + 2189: -3,-37 + 2190: -3,-32 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 825: -11,-34 - 2405: -26,-42 - 2406: -26,-41 + 711: -11,-34 + 2244: -26,-42 + 2245: -26,-41 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 375: -39.100723,32.30331 - 1050: -7.3405266,22.973469 - 1053: -11.434277,23.035969 - 1200: -56.986298,-31.010326 - 1201: -59.069237,-37.03042 - 1885: -70.08625,-34.436035 + 370: -39.100723,32.30331 + 936: -7.3405266,22.973469 + 939: -11.434277,23.035969 + 1064: -56.986298,-31.010326 + 1065: -59.069237,-37.03042 + 1735: -70.08625,-34.436035 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1174: -74.07677,-44.072823 - 1182: -67.18431,-28.324245 - 1238: -29.016876,3.9360995 - 1882: -53.955444,-43.088474 - 2942: -35,-16 + 1038: -74.07677,-44.072823 + 1046: -67.18431,-28.324245 + 1102: -29.016876,3.9360995 + 1732: -53.955444,-43.088474 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1175: -71.98302,-44.010323 - 1239: -24.048126,3.9673495 + 1039: -71.98302,-44.010323 + 1103: -24.048126,3.9673495 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1052: -8.387402,22.973469 - 1177: -70.92052,-43.057198 - 1884: -52.942307,-42.899807 - 2924: -33.782887,-15.988264 + 938: -8.387402,22.973469 + 1041: -70.92052,-43.057198 + 1734: -52.942307,-42.899807 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 374: -39.881973,31.162687 - 376: -40.0851,28.850187 - 1051: -12.856152,23.020344 - 1178: -73.10302,-35.91218 - 2937: -32.032887,-13.910139 + 369: -39.881973,31.162687 + 371: -40.0851,28.850187 + 937: -12.856152,23.020344 + 1042: -73.10302,-35.91218 - node: color: '#FFFFFFFF' id: Grassd1 @@ -2495,220 +2665,195 @@ entities: 72: -55,19 73: -54,18 74: -54,17 - 362: -39.2726,29.881437 - 363: -39.694473,32.58456 - 364: -39.163223,31.818935 - 980: -65.69963,-54.183094 - 981: -59.934006,-54.276844 - 982: -60.98088,-57.745594 - 1236: -24.516876,4.0142245 + 357: -39.2726,29.881437 + 358: -39.694473,32.58456 + 359: -39.163223,31.818935 + 866: -65.69963,-54.183094 + 867: -59.934006,-54.276844 + 868: -60.98088,-57.745594 + 1100: -24.516876,4.0142245 - node: color: '#FFFFFFFF' id: Grassd2 decals: 83: -53.596443,17.79636 - 361: -39.7726,29.178312 - 962: -65.01213,-58.04247 - 963: -62.29338,-52.69872 - 964: -61.684006,-53.433094 - 965: -65.027756,-53.464344 - 966: -62.809006,-53.32372 - 1046: -12.746777,23.114094 - 1047: -6.8249016,22.957844 - 1235: -24.048126,4.0298495 - 2923: -33.11101,-15.941389 + 356: -39.7726,29.178312 + 848: -65.01213,-58.04247 + 849: -62.29338,-52.69872 + 850: -61.684006,-53.433094 + 851: -65.027756,-53.464344 + 852: -62.809006,-53.32372 + 932: -12.746777,23.114094 + 933: -6.8249016,22.957844 + 1099: -24.048126,4.0298495 + 3182: -20,-23 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 967: -63.38713,-53.72997 - 968: -59.98088,-52.35497 - 969: -65.01213,-57.19872 - 970: -60.19963,-57.464344 - 971: -59.41838,-56.79247 - 1048: -9.168652,22.942219 - 1049: -10.309277,23.067219 - 2922: -33.782887,-14.628889 - 2930: -32.20476,-14.097639 + 853: -63.38713,-53.72997 + 854: -59.98088,-52.35497 + 855: -65.01213,-57.19872 + 856: -60.19963,-57.464344 + 857: -59.41838,-56.79247 + 934: -9.168652,22.942219 + 935: -10.309277,23.067219 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 972: -65.652756,-52.41747 - 973: -58.98088,-57.97997 - 974: -64.69963,-56.44872 - 975: -62.98088,-57.776844 - 1208: 6,-7 - 1209: 3,-5 - 1234: -27.532501,4.0298495 - 2921: -34.657887,-15.035139 - 2929: -33.282887,-14.144514 + 858: -65.652756,-52.41747 + 859: -58.98088,-57.97997 + 860: -64.69963,-56.44872 + 861: -62.98088,-57.776844 + 1072: 6,-7 + 1073: 3,-5 + 1098: -27.532501,4.0298495 + 3183: -20,-22 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 365: -39.881973,31.74081 - 1044: -11.340527,23.020344 - 1045: -7.8092766,22.989094 - 1204: 6,-8 - 1205: 5,-5 - 1233: -28.532501,3.9829745 - 1237: -25.938751,4.0923495 - 1743: -9,41 - 1744: -10.480507,40.958054 - 2920: -33.845387,-15.582014 - 2927: -34.626637,-13.957014 - 2928: -32.01726,-15.972639 + 360: -39.881973,31.74081 + 930: -11.340527,23.020344 + 931: -7.8092766,22.989094 + 1068: 6,-8 + 1069: 5,-5 + 1097: -28.532501,3.9829745 + 1101: -25.938751,4.0923495 + 1593: -9,41 + 1594: -10.480507,40.958054 + 3184: -20,-20 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 976: -60.277756,-56.558094 - 977: -63.340256,-52.22997 - 978: -65.82463,-53.29247 - 979: -60.23088,-53.433094 - 1041: -7.3717766,23.020344 - 1042: -8.434277,22.973469 - 1043: -11.918652,23.051594 - 1206: 6,-5 - 1207: 6,-12 - 1232: -29.001251,3.9829745 - 1741: -11,41 - 1742: -10,41 - 1745: -9.464882,40.926804 - 2941: -35,-16 + 862: -60.277756,-56.558094 + 863: -63.340256,-52.22997 + 864: -65.82463,-53.29247 + 865: -60.23088,-53.433094 + 927: -7.3717766,23.020344 + 928: -8.434277,22.973469 + 929: -11.918652,23.051594 + 1070: 6,-5 + 1071: 6,-12 + 1096: -29.001251,3.9829745 + 1591: -11,41 + 1592: -10,41 + 1595: -9.464882,40.926804 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 397: -10,27 - 398: -9,27 - 399: -11,27 - 400: -8,27 - 401: -7,27 - 402: -6,27 - 403: -12,27 - 404: -13,27 - 405: -14,27 - 1077: -1,66 - 1715: -3,27 - 1717: -17,27 - 2883: -31,-63 + 392: -10,27 + 393: -9,27 + 394: -11,27 + 395: -8,27 + 396: -7,27 + 397: -6,27 + 398: -12,27 + 399: -13,27 + 400: -14,27 + 963: -1,66 + 1565: -3,27 + 1567: -17,27 + 2716: -31,-63 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale decals: - 1551: 33,20 - 1552: 32,20 - 1553: 31,20 - 1554: 30,20 - 1555: 29,20 - 1556: 28,20 - 1557: 27,20 + 1401: 33,20 + 1402: 32,20 + 1403: 31,20 + 1404: 30,20 + 1405: 29,20 + 1406: 28,20 + 1407: 27,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 514: -9,-1 - 515: -10,-1 - 516: -11,-1 - 517: -12,-1 - 518: -13,-1 - 519: -14,-1 - 520: -15,-1 - 521: -6,-2 - 522: -7,-2 - 523: -8,-2 - 581: -16,-5 - 583: -18,-5 - 584: -19,-5 - 585: -20,-5 - 631: -22,-17 - 632: -23,-17 - 633: -24,-17 - 634: -25,-17 - 635: -26,-17 - 645: -22,-13 - 646: -23,-13 - 2907: -22,-9 - 2908: -23,-9 - 2909: -24,-9 - 2910: -26,-9 - 2911: -25,-9 + 483: -9,-1 + 484: -10,-1 + 485: -11,-1 + 486: -12,-1 + 487: -13,-1 + 488: -14,-1 + 489: -15,-1 + 490: -6,-2 + 491: -7,-2 + 492: -8,-2 + 550: -16,-5 + 3147: -25,-8 + 3148: -24,-8 + 3149: -23,-8 + 3150: -22,-8 + 3151: -21,-8 + 3152: -20,-8 - node: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 933: -76,-47 - 934: -77,-47 - 935: -78,-47 - 936: -79,-47 - 937: -80,-47 - 938: -81,-47 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 1134: -29,-19 - 1135: -34,-20 - 1136: -33,-20 - 1137: -32,-20 - 1138: -31,-20 - 1143: -27,-22 + 819: -76,-47 + 820: -77,-47 + 821: -78,-47 + 822: -79,-47 + 823: -80,-47 + 824: -81,-47 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 669: 0,-2 - 670: 1,-2 - 671: 2,-2 - 672: 9,-2 - 673: 8,-2 - 674: 7,-2 - 678: 6,-2 - 836: 21,2 - 837: 20,2 - 838: 19,2 - 839: 18,2 - 840: 17,2 - 841: 16,2 - 842: 15,2 - 1286: 26,-10 - 1287: 27,-10 - 1288: 28,-10 - 1289: 29,-10 - 1290: 30,-10 + 556: 0,-2 + 557: 1,-2 + 558: 2,-2 + 559: 9,-2 + 560: 8,-2 + 561: 7,-2 + 565: 6,-2 + 722: 21,2 + 723: 20,2 + 724: 19,2 + 725: 18,2 + 726: 17,2 + 727: 16,2 + 728: 15,2 + 1150: 26,-10 + 1151: 27,-10 + 1152: 28,-10 + 1153: 29,-10 + 1154: 30,-10 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale decals: - 1508: 12,12 - 1509: 13,12 - 1510: 14,12 - 1511: 15,12 - 1512: 16,12 - 1513: 17,12 - 1514: 18,12 - 1515: 19,12 - 1516: 20,12 - 1518: 20,16 - 1533: 18,23 - 1534: 17,23 - 1535: 16,23 + 1358: 12,12 + 1359: 13,12 + 1360: 14,12 + 1361: 15,12 + 1362: 16,12 + 1363: 17,12 + 1364: 18,12 + 1365: 19,12 + 1366: 20,12 + 1368: 20,16 + 1383: 18,23 + 1384: 17,23 + 1385: 16,23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 1481: 29,11 - 1482: 28,11 - 1483: 27,11 - 1484: 26,11 - 1485: 25,11 - 1486: 24,11 - 1529: 24,23 - 1530: 25,23 - 1531: 20,23 - 1532: 19,23 + 1331: 29,11 + 1332: 28,11 + 1333: 27,11 + 1334: 26,11 + 1335: 25,11 + 1336: 24,11 + 1379: 24,23 + 1380: 25,23 + 1381: 20,23 + 1382: 19,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2718,132 +2863,127 @@ entities: 42: -41,11 43: -42,11 44: -43,11 - 129: -31,54 - 130: -32,54 - 131: -33,54 - 132: -34,54 - 133: -35,54 - 152: -22,48 - 153: -23,48 - 154: -24,48 - 155: -25,48 - 156: -26,48 - 198: -31,44 - 199: -32,44 - 200: -34,44 - 201: -35,44 - 202: -36,44 - 203: -37,44 - 204: -38,44 - 205: -39,44 - 206: -41,44 - 207: -42,44 - 208: -43,44 - 209: -44,44 - 210: -45,44 - 292: -51,53 - 293: -52,53 - 294: -53,53 - 335: -34,37 - 336: -33,37 - 337: -32,37 - 338: -31,37 - 339: -30,37 - 340: -38,37 - 341: -39,37 - 342: -40,37 - 343: -41,37 - 344: -42,37 - 345: -43,37 - 346: -44,37 - 347: -45,37 - 348: -46,37 - 349: -47,37 - 350: -48,37 - 351: -49,37 - 427: 14,23 - 428: 13,23 - 429: 12,23 - 478: -18,-1 - 479: -19,-1 + 124: -31,54 + 125: -32,54 + 126: -33,54 + 127: -34,54 + 128: -35,54 + 147: -22,48 + 148: -23,48 + 149: -24,48 + 150: -25,48 + 151: -26,48 + 193: -31,44 + 194: -32,44 + 195: -34,44 + 196: -35,44 + 197: -36,44 + 198: -37,44 + 199: -38,44 + 200: -39,44 + 201: -41,44 + 202: -42,44 + 203: -43,44 + 204: -44,44 + 205: -45,44 + 287: -51,53 + 288: -52,53 + 289: -53,53 + 330: -34,37 + 331: -33,37 + 332: -32,37 + 333: -31,37 + 334: -30,37 + 335: -38,37 + 336: -39,37 + 337: -40,37 + 338: -41,37 + 339: -42,37 + 340: -43,37 + 341: -44,37 + 342: -45,37 + 343: -46,37 + 344: -47,37 + 345: -48,37 + 346: -49,37 + 422: 14,23 + 423: 13,23 + 424: 12,23 + 473: -18,-1 + 474: -19,-1 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale decals: - 455: -7,-7 - 456: -8,-7 - 457: -9,-7 + 450: -7,-7 + 451: -8,-7 + 452: -9,-7 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 784: -5,-39 - 785: -4,-39 - 786: -1,-39 - 787: -2,-39 - 788: -6,-39 - 789: -7,-39 - 790: -8,-39 - 791: -9,-39 - 792: -10,-39 - 793: -11,-39 - 2448: -12,-39 - 2449: -14,-39 - 2870: -31,-58 + 670: -5,-39 + 671: -4,-39 + 672: -1,-39 + 673: -2,-39 + 674: -6,-39 + 675: -7,-39 + 676: -8,-39 + 677: -9,-39 + 678: -10,-39 + 679: -11,-39 + 2287: -12,-39 + 2288: -14,-39 + 2703: -31,-58 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 2884: -31,-64 + 2717: -31,-64 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale180 decals: - 1544: 27,18 - 1545: 28,18 - 1546: 29,18 - 1547: 30,18 - 1548: 31,18 - 1549: 32,18 - 1550: 33,18 + 1394: 27,18 + 1395: 28,18 + 1396: 29,18 + 1397: 30,18 + 1398: 31,18 + 1399: 32,18 + 1400: 33,18 - node: color: '#52B4E935' id: HalfTileOverlayGreyscale180 decals: - 96: -47,39 - 97: -48,39 - 98: -49,39 + 91: -47,39 + 92: -48,39 + 93: -49,39 - node: color: '#52B4E957' id: HalfTileOverlayGreyscale180 decals: - 2663: -49,42 + 2496: -49,42 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 541: -11,-5 - 542: -10,-5 - 543: -9,-5 - 544: -8,-5 - 545: -7,-5 - 557: -9,0 - 558: -10,0 - 559: -11,0 - 560: -7,0 - 561: -6,0 - 562: -5,0 - 636: -26,-20 - 637: -25,-20 - 638: -24,-20 - 639: -23,-20 - 640: -22,-20 - 641: -22,-15 - 642: -23,-15 - 643: -24,-15 - 644: -25,-15 - 647: -22,-11 - 648: -23,-11 + 510: -11,-5 + 511: -10,-5 + 512: -9,-5 + 513: -8,-5 + 514: -7,-5 + 526: -9,0 + 527: -10,0 + 528: -11,0 + 529: -7,0 + 530: -6,0 + 531: -5,0 + 3139: -19,-13 + 3140: -20,-13 + 3141: -21,-13 + 3142: -23,-13 + 3143: -24,-13 + 3144: -25,-13 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -2854,109 +2994,103 @@ entities: 37: -3,15 38: -2,15 39: -1,15 - 928: -80,-45 - 929: -79,-45 - 930: -78,-45 - 931: -77,-45 - 932: -76,-45 - 939: -81,-45 - 1892: 0,15 + 814: -80,-45 + 815: -79,-45 + 816: -78,-45 + 817: -77,-45 + 818: -76,-45 + 825: -81,-45 + 1742: 0,15 - node: color: '#9FED582F' id: HalfTileOverlayGreyscale180 decals: - 93: -43,39 - 94: -44,39 - 95: -45,39 + 88: -43,39 + 89: -44,39 + 90: -45,39 - node: color: '#9FED5844' id: HalfTileOverlayGreyscale180 decals: - 2662: -46,42 + 2495: -46,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 1128: -28,-13 - 1129: -29,-13 - 1130: -30,-13 - 1147: -27,-25 - 1148: -28,-25 - 1149: -29,-25 - 3040: -20,9 - 3041: -21,9 - 3042: -22,9 + 2778: -20,9 + 2779: -21,9 + 2780: -22,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 666: -1,0 - 667: 0,0 - 668: 1,0 - 829: 21,0 - 830: 20,0 - 831: 19,0 - 832: 18,0 - 833: 17,0 - 834: 16,0 - 835: 15,0 - 843: 19,-12 - 844: 20,-12 - 845: 21,-12 - 846: 16,-12 - 847: 17,-12 - 1291: 23,-12 - 1292: 24,-12 - 1293: 25,-12 - 1294: 26,-12 - 1295: 27,-12 - 1296: 28,-12 - 1297: 29,-12 - 1298: 30,-12 - 1299: 31,-12 - 1340: 26,-8 - 1341: 27,-8 - 1342: 28,-8 - 1343: 29,-8 - 1344: 30,-8 + 553: -1,0 + 554: 0,0 + 555: 1,0 + 715: 21,0 + 716: 20,0 + 717: 19,0 + 718: 18,0 + 719: 17,0 + 720: 16,0 + 721: 15,0 + 729: 19,-12 + 730: 20,-12 + 731: 21,-12 + 732: 16,-12 + 733: 17,-12 + 1155: 23,-12 + 1156: 24,-12 + 1157: 25,-12 + 1158: 26,-12 + 1159: 27,-12 + 1160: 28,-12 + 1161: 29,-12 + 1162: 30,-12 + 1163: 31,-12 + 1204: 26,-8 + 1205: 27,-8 + 1206: 28,-8 + 1207: 29,-8 + 1208: 30,-8 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale180 decals: - 1492: 23,7 - 1493: 22,7 - 1494: 21,7 - 1499: 20,10 - 1500: 19,10 - 1501: 18,10 - 1502: 17,10 - 1503: 16,10 - 1504: 15,10 - 1505: 14,10 - 1506: 13,10 - 1507: 12,10 - 1517: 20,14 - 1562: 12,14 - 1563: 13,14 - 1564: 14,14 + 1342: 23,7 + 1343: 22,7 + 1344: 21,7 + 1349: 20,10 + 1350: 19,10 + 1351: 18,10 + 1352: 17,10 + 1353: 16,10 + 1354: 15,10 + 1355: 14,10 + 1356: 13,10 + 1357: 12,10 + 1367: 20,14 + 1412: 12,14 + 1413: 13,14 + 1414: 14,14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1119: 24,25 - 1120: 20,25 - 1121: 19,25 - 1122: 18,25 - 1123: 17,25 - 1124: 16,25 - 1125: 15,25 - 1126: 14,25 - 1127: 13,25 - 1524: 21,18 - 1525: 22,18 - 1526: 23,18 - 1527: 24,18 - 1528: 25,18 + 1005: 24,25 + 1006: 20,25 + 1007: 19,25 + 1008: 18,25 + 1009: 17,25 + 1010: 16,25 + 1011: 15,25 + 1012: 14,25 + 1013: 13,25 + 1374: 21,18 + 1375: 22,18 + 1376: 23,18 + 1377: 24,18 + 1378: 25,18 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2966,475 +3100,426 @@ entities: 47: -41,9 48: -42,9 49: -43,9 - 125: -31,46 - 126: -32,46 - 127: -34,46 - 128: -35,46 - 157: -22,52 - 158: -23,52 - 159: -24,52 - 160: -25,52 - 161: -26,52 - 216: -33,42 - 217: -34,42 - 218: -36,42 - 219: -38,42 - 220: -39,42 - 221: -41,42 - 222: -45,42 - 223: -47,42 - 224: -44,41 - 225: -48,41 - 226: -40,41 - 295: -51,50 - 296: -52,50 - 305: -50,56 - 306: -51,56 - 307: -52,56 - 308: -53,56 - 309: -46,56 - 310: -45,56 - 432: 13,20 - 433: 12,20 - 434: 14,20 - 476: -18,-3 - 477: -19,-3 - 2660: -43,42 + 120: -31,46 + 121: -32,46 + 122: -34,46 + 123: -35,46 + 152: -22,52 + 153: -23,52 + 154: -24,52 + 155: -25,52 + 156: -26,52 + 211: -33,42 + 212: -34,42 + 213: -36,42 + 214: -38,42 + 215: -39,42 + 216: -41,42 + 217: -45,42 + 218: -47,42 + 219: -44,41 + 220: -48,41 + 221: -40,41 + 290: -51,50 + 291: -52,50 + 300: -50,56 + 301: -51,56 + 302: -52,56 + 303: -53,56 + 304: -46,56 + 305: -45,56 + 427: 13,20 + 428: 12,20 + 429: 14,20 + 471: -18,-3 + 472: -19,-3 + 2493: -43,42 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale180 decals: - 458: -9,-13 - 459: -8,-13 - 460: -6,-11 + 453: -9,-13 + 454: -8,-13 + 455: -6,-11 - node: color: '#EFB34144' id: HalfTileOverlayGreyscale180 decals: - 90: -39,39 - 91: -40,39 - 92: -41,39 + 85: -39,39 + 86: -40,39 + 87: -41,39 - node: color: '#EFB3415D' id: HalfTileOverlayGreyscale180 decals: - 2661: -42,42 + 2494: -42,42 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 85: -40,17 - 86: -41,17 - 87: -42,17 - 88: -43,17 - 89: -44,17 - 2886: -28,-60 - 2887: -27,-60 - 2888: -26,-60 + 2719: -28,-60 + 2720: -27,-60 + 2721: -26,-60 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 1073: -2,63 - 1074: -2,64 - 1075: -2,65 - 1076: -2,66 - 1708: -5,28 - 1711: -16,28 - 1720: -5,34 - 1721: -16,34 - 1785: -5,36 - 1786: -16,36 + 959: -2,63 + 960: -2,64 + 961: -2,65 + 962: -2,66 + 1558: -5,28 + 1561: -16,28 + 1570: -5,34 + 1571: -16,34 + 1635: -5,36 + 1636: -16,36 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 555: -5,-4 - 556: -5,-3 - 586: -20,-6 - 612: -20,-15 - 613: -20,-16 - 614: -20,-17 - 615: -20,-20 - 616: -20,-21 - 617: -20,-22 - 618: -20,-23 - 619: -20,-24 - 649: -30,-6 - 650: -30,-8 - 651: -30,-9 - 2347: -30,-10 + 524: -5,-4 + 525: -5,-3 + 3145: -26,-12 + 3146: -26,-9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 676: 3,-1 - 691: 11,-8 - 692: 11,-7 - 693: 11,-6 - 694: 11,-5 - 695: 11,-4 - 696: 11,-3 - 697: 11,-2 - 1112: 27,0 - 1113: 27,1 - 1114: 27,2 + 563: 3,-1 + 578: 11,-8 + 579: 11,-7 + 580: 11,-6 + 581: 11,-5 + 582: 11,-4 + 583: 11,-3 + 584: 11,-2 + 998: 27,0 + 999: 27,1 + 1000: 27,2 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale270 decals: - 1496: 21,8 - 1497: 21,9 - 1519: 21,13 - 1520: 21,17 + 1346: 21,8 + 1347: 21,9 + 1369: 21,13 + 1370: 21,17 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 2017: 30,21 - 2018: 30,22 - 2019: 30,23 + 1867: 30,21 + 1868: 30,22 + 1869: 30,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: 52: -43,10 - 134: -36,47 - 135: -36,48 - 136: -36,49 - 137: -36,50 - 138: -36,51 - 139: -36,52 - 140: -36,53 - 196: -37,39 - 197: -37,40 - 279: -49,46 - 280: -49,47 - 281: -49,48 - 282: -49,49 - 283: -49,50 - 284: -49,53 - 285: -49,54 - 299: -53,52 - 300: -52,51 - 320: -48,60 - 321: -48,61 - 322: -52,60 - 323: -52,61 - 324: -53,63 - 325: -53,64 - 326: -53,65 - 327: -53,66 - 328: -53,67 - 329: -53,57 - 330: -53,58 - 438: 12,21 - 439: 12,22 - 473: -20,-3 - 474: -20,-2 - 475: -20,-1 + 129: -36,47 + 130: -36,48 + 131: -36,49 + 132: -36,50 + 133: -36,51 + 134: -36,52 + 135: -36,53 + 191: -37,39 + 192: -37,40 + 274: -49,46 + 275: -49,47 + 276: -49,48 + 277: -49,49 + 278: -49,50 + 279: -49,53 + 280: -49,54 + 294: -53,52 + 295: -52,51 + 315: -48,60 + 316: -48,61 + 317: -52,60 + 318: -52,61 + 319: -53,63 + 320: -53,64 + 321: -53,65 + 322: -53,66 + 323: -53,67 + 324: -53,57 + 325: -53,58 + 433: 12,21 + 434: 12,22 + 468: -20,-3 + 469: -20,-2 + 470: -20,-1 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale270 decals: - 440: -10,-8 - 441: -10,-7 - 442: -10,-12 - 443: -10,-13 + 435: -10,-8 + 436: -10,-7 + 437: -10,-12 + 438: -10,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 702: 9,-30 - 703: 9,-29 - 704: 9,-28 - 817: -10,-37 - 818: -10,-36 - 819: -10,-35 - 820: -10,-34 - 2869: -31,-60 + 588: 9,-30 + 589: 9,-29 + 590: 9,-28 + 703: -10,-37 + 704: -10,-36 + 705: -10,-35 + 706: -10,-34 + 2702: -31,-60 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 1078: 0,66 - 1079: 0,65 - 1080: 0,64 - 1081: 0,63 - 1709: -4,28 - 1710: -15,28 - 1719: -4,34 - 1722: -15,34 - 1787: -15,36 - 1788: -4,36 + 964: 0,66 + 965: 0,65 + 966: 0,64 + 967: 0,63 + 1559: -4,28 + 1560: -15,28 + 1569: -4,34 + 1572: -15,34 + 1637: -15,36 + 1638: -4,36 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 524: -6,-5 - 525: -6,-4 - 526: -6,-3 - 578: -15,-7 - 579: -15,-6 - 580: -15,-5 - 587: -18,-6 - 620: -18,-24 - 621: -18,-23 - 622: -18,-22 - 623: -18,-20 - 624: -18,-19 - 625: -18,-18 - 626: -18,-17 - 627: -18,-16 - 628: -18,-14 - 654: -28,-11 - 655: -28,-8 - 656: -28,-7 - 657: -28,-6 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1140: -28,-20 - 1141: -28,-21 - 1145: -26,-23 - 1146: -26,-24 + 493: -6,-5 + 494: -6,-4 + 495: -6,-3 + 547: -15,-7 + 548: -15,-6 + 549: -15,-5 + 3153: -18,-9 + 3154: -18,-12 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 677: 5,-1 - 1285: 21,-4 + 564: 5,-1 + 1149: 21,-4 - node: cleanable: True color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1283: 21,-6 - 1284: 21,-5 + 1147: 21,-6 + 1148: 21,-5 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale90 decals: - 1542: 23,17 - 1566: 15,15 - 1567: 15,16 - 1568: 15,17 - 1569: 15,18 + 1392: 23,17 + 1416: 15,15 + 1417: 15,16 + 1418: 15,17 + 1419: 15,18 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 2020: 32,21 - 2021: 32,22 - 2022: 32,23 + 1870: 32,21 + 1871: 32,22 + 1872: 32,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: 53: -39,10 - 141: -30,47 - 142: -30,48 - 143: -30,49 - 144: -30,50 - 145: -30,51 - 146: -30,52 - 147: -30,53 - 162: -27,49 - 163: -27,50 - 164: -27,51 - 194: -35,39 - 195: -35,40 - 213: -31,43 - 214: -31,42 - 270: -47,46 - 271: -47,47 - 272: -47,48 - 273: -47,49 - 274: -47,50 - 275: -47,51 - 276: -47,52 - 277: -47,53 - 278: -47,54 - 286: -50,50 - 287: -50,51 - 288: -50,52 - 289: -50,53 - 311: -46,63 - 312: -46,64 - 313: -46,65 - 314: -46,66 - 315: -46,67 - 316: -46,61 - 317: -46,60 - 318: -50,61 - 319: -50,60 - 331: -45,57 - 332: -45,58 - 437: 14,22 - 470: -17,-3 - 471: -17,-2 - 472: -17,-1 - 2824: 14,21 + 136: -30,47 + 137: -30,48 + 138: -30,49 + 139: -30,50 + 140: -30,51 + 141: -30,52 + 142: -30,53 + 157: -27,49 + 158: -27,50 + 159: -27,51 + 189: -35,39 + 190: -35,40 + 208: -31,43 + 209: -31,42 + 265: -47,46 + 266: -47,47 + 267: -47,48 + 268: -47,49 + 269: -47,50 + 270: -47,51 + 271: -47,52 + 272: -47,53 + 273: -47,54 + 281: -50,50 + 282: -50,51 + 283: -50,52 + 284: -50,53 + 306: -46,63 + 307: -46,64 + 308: -46,65 + 309: -46,66 + 310: -46,67 + 311: -46,61 + 312: -46,60 + 313: -50,61 + 314: -50,60 + 326: -45,57 + 327: -45,58 + 432: 14,22 + 465: -17,-3 + 466: -17,-2 + 467: -17,-1 + 2657: 14,21 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale90 decals: - 448: -7,-13 - 449: -7,-12 - 450: -5,-11 - 451: -5,-10 - 452: -5,-9 - 453: -6,-8 - 454: -6,-7 + 443: -7,-13 + 444: -7,-12 + 445: -5,-11 + 446: -5,-10 + 447: -5,-9 + 448: -6,-8 + 449: -6,-7 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 705: 12,-30 - 706: 12,-29 - 707: 12,-28 - 821: -6,-37 - 822: -6,-36 - 823: -6,-35 - 824: -6,-34 - 2871: -30,-60 - 2872: -30,-59 + 591: 12,-30 + 592: 12,-29 + 593: 12,-28 + 707: -6,-37 + 708: -6,-36 + 709: -6,-35 + 710: -6,-34 + 2704: -30,-60 + 2705: -30,-59 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 1760: -3,32 + 1610: -3,32 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 385: -1,28 + 380: -1,28 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1278: 16,-4 - 1373: 34,-7 - 2370: 3,-30 - 2951: -32,-11 + 1142: 16,-4 + 1237: 34,-7 + 2209: 3,-30 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 384: 4,28 + 379: 4,28 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1858: -57,-57 + 1708: -57,-57 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1591: -27,38 - 1852: -65,-60 + 1441: -27,38 + 1702: -65,-60 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1869: -69,-55 + 1719: -69,-55 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1859: -56,-54 + 1709: -56,-54 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2541: -11,-41 + 2380: -11,-41 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 1819: 25,26 + 1669: 25,26 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1592: -27,38 + 1442: -27,38 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1820: 26,32 + 1670: 26,32 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2542: -5,-41 + 2381: -5,-41 - node: color: '#D381C996' id: MonoOverlay decals: - 2709: 29,21 - 2710: 28,22 - 2711: 29,23 - 2712: 27,23 - 2713: 27,21 - - node: - color: '#52B4E996' - id: OffsetCheckerBOverlay - decals: - 3052: -22,-23 - 3053: -22,-22 - 3054: -23,-22 - 3055: -23,-23 - 3056: -24,-23 - 3057: -24,-22 + 2542: 29,21 + 2543: 28,22 + 2544: 29,23 + 2545: 27,23 + 2546: 27,21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1707: -5,27 - 1713: -16,27 - 1716: -2,27 - 1794: -16,38 - 1795: -16,41 - 1796: -16,40 - 1797: -16,39 + 1557: -5,27 + 1563: -16,27 + 1566: -2,27 + 1644: -16,38 + 1645: -16,41 + 1646: -16,40 + 1647: -16,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 549: -8,-4 - 582: -15,-5 - 590: -20,-7 - 593: -20,-8 - 629: -20,-18 - 652: -30,-12 + 518: -8,-4 + 551: -15,-5 + 3168: -22,-12 + 3169: -22,-10 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 940: -81,-45 - 941: -80,-45 - 942: -79,-45 - 943: -78,-45 - 944: -77,-45 - 945: -76,-45 - 2219: -52,13 - 2220: -53,13 - 2221: -54,13 - 2222: -55,13 - 2223: -56,13 - 2224: -56,21 - 2225: -55,21 - 2226: -54,21 - 2227: -53,21 - 2228: -52,21 - 2239: -51,13 - 2240: -51,14 - 2245: -51,22 - 2246: -51,21 + 826: -81,-45 + 827: -80,-45 + 828: -79,-45 + 829: -78,-45 + 830: -77,-45 + 831: -76,-45 + 2061: -52,13 + 2062: -53,13 + 2063: -54,13 + 2064: -55,13 + 2065: -56,13 + 2066: -56,21 + 2067: -55,21 + 2068: -54,21 + 2069: -53,21 + 2070: -52,21 + 2081: -51,13 + 2082: -51,14 + 2087: -51,22 + 2088: -51,21 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -3443,1083 +3528,1069 @@ entities: 17: -24,3 18: -28,3 19: -29,3 - 1139: -30,-20 - 1241: -25,3 - 1252: -26,3 - 1253: -27,3 + 1105: -25,3 + 1116: -26,3 + 1117: -27,3 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 675: 3,-2 - 698: 11,-9 + 562: 3,-2 + 585: 11,-9 - node: color: '#D381C93B' id: QuarterTileOverlayGreyscale decals: - 1495: 21,7 - 1522: 21,12 - 1523: 21,16 + 1345: 21,7 + 1372: 21,12 + 1373: 21,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 899: 8,7 - 900: 8,8 - 901: 8,9 - 902: 8,10 - 903: 8,11 - 904: 8,12 - 905: 8,13 - 906: 8,14 - 907: 8,15 - 908: 8,16 - 909: 8,17 - 910: 8,18 - 911: 8,19 - 912: 8,20 - 913: 8,21 - 914: 8,22 - 915: 8,23 + 785: 8,7 + 786: 8,8 + 787: 8,9 + 788: 8,10 + 789: 8,11 + 790: 8,12 + 791: 8,13 + 792: 8,14 + 793: 8,15 + 794: 8,16 + 795: 8,17 + 796: 8,18 + 797: 8,19 + 798: 8,20 + 799: 8,21 + 800: 8,22 + 801: 8,23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 2115: -12,4 - 2116: -11,4 - 2117: -10,4 - 2118: -9,4 - 2119: -8,4 - 2120: -7,4 - 2121: -6,4 - 2140: -22,3 - 2141: -22,4 - 2142: -22,5 - 2143: -22,6 - 2144: -22,7 - 2165: -44,-3 - 2276: 11,-19 - 2277: 11,-18 - 2278: 11,-17 - 2279: 10,-19 - 2280: 9,-19 - 2281: 8,-19 - 2282: 7,-19 - 2283: 5,-19 - 2284: 6,-19 - 2285: 4,-19 - 2286: 3,-19 - 2287: 2,-19 - 2288: 1,-19 - 2289: 0,-19 - 2290: -1,-19 - 2291: -2,-19 - 2292: -3,-19 - 2293: -4,-19 - 2294: 11,-16 - 2295: 11,-15 - 2296: 11,-14 - 2320: -37,34 - 2321: -37,33 - 2322: -37,32 - 2323: -37,31 - 2324: -37,30 - 2325: -37,29 - 2326: -37,28 - 2327: -37,27 - 2328: -37,26 - 2329: -37,25 - 2330: -37,24 - 2331: -37,23 - 2332: -37,22 - 2333: -37,21 - 2334: -37,20 - 2335: -37,19 - 2336: -37,18 - 2337: -37,17 - 2338: -37,16 - 2339: -37,15 - 2340: -38,15 - 2737: 7,34 - 2745: 13,27 - 2746: 14,27 - 2747: 15,27 - 2748: 16,27 - 2749: 17,27 - 2750: 18,27 - 2751: 19,27 - 2752: 20,27 - 2753: 21,27 - 2754: 21,28 - 2755: 21,29 - 2756: 21,30 - 2757: 21,31 - 2768: 24,40 - 2769: 23,40 - 2770: 22,40 - 2771: 21,40 - 2772: 20,40 - 2773: 20,39 - 2774: 20,38 - 2775: 20,37 - 2776: 20,36 - 2777: 20,35 - 2778: 20,34 - 2779: 20,33 - 3067: 7,35 - 3068: 7,36 - 3071: -58,9 - 3072: -58,8 - 3073: -59,8 - 3074: -60,8 - 3093: -46,-3 - 3094: -46,-5 - 3095: -46,-4 - 3096: -46,-6 - 3097: -46,-7 - 3098: -46,-8 - 3099: -46,-9 - 3100: -47,-9 + 1965: -12,4 + 1966: -11,4 + 1967: -10,4 + 1968: -9,4 + 1969: -8,4 + 1970: -7,4 + 1971: -6,4 + 1990: -22,3 + 1991: -22,4 + 1992: -22,5 + 1993: -22,6 + 1994: -22,7 + 2015: -44,-3 + 2118: 11,-19 + 2119: 11,-18 + 2120: 11,-17 + 2121: 10,-19 + 2122: 9,-19 + 2123: 8,-19 + 2124: 7,-19 + 2125: 5,-19 + 2126: 6,-19 + 2127: 4,-19 + 2128: 3,-19 + 2129: 2,-19 + 2130: 1,-19 + 2131: 0,-19 + 2132: -1,-19 + 2133: -2,-19 + 2134: -3,-19 + 2135: -4,-19 + 2136: 11,-16 + 2137: 11,-15 + 2138: 11,-14 + 2162: -37,34 + 2163: -37,33 + 2164: -37,32 + 2165: -37,31 + 2166: -37,30 + 2167: -37,29 + 2168: -37,28 + 2169: -37,27 + 2170: -37,26 + 2171: -37,25 + 2172: -37,24 + 2173: -37,23 + 2174: -37,22 + 2175: -37,21 + 2176: -37,20 + 2177: -37,19 + 2178: -37,18 + 2179: -37,17 + 2180: -37,16 + 2181: -37,15 + 2182: -38,15 + 2570: 7,34 + 2578: 13,27 + 2579: 14,27 + 2580: 15,27 + 2581: 16,27 + 2582: 17,27 + 2583: 18,27 + 2584: 19,27 + 2585: 20,27 + 2586: 21,27 + 2587: 21,28 + 2588: 21,29 + 2589: 21,30 + 2590: 21,31 + 2601: 24,40 + 2602: 23,40 + 2603: 22,40 + 2604: 21,40 + 2605: 20,40 + 2606: 20,39 + 2607: 20,38 + 2608: 20,37 + 2609: 20,36 + 2610: 20,35 + 2611: 20,34 + 2612: 20,33 + 2799: 7,35 + 2800: 7,36 + 2803: -58,9 + 2804: -58,8 + 2805: -59,8 + 2806: -60,8 + 2825: -46,-3 + 2826: -46,-5 + 2827: -46,-4 + 2828: -46,-6 + 2829: -46,-7 + 2830: -46,-8 + 2831: -46,-9 + 2832: -47,-9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2177: -58,10 - 2178: -57,10 - 2179: -56,10 - 2180: -55,10 - 2181: -54,10 - 2182: -53,10 - 2183: -52,10 - 2184: -51,10 - 2185: -50,10 - 2186: -49,10 - 2187: -48,10 + 2019: -58,10 + 2020: -57,10 + 2021: -56,10 + 2022: -55,10 + 2023: -54,10 + 2024: -53,10 + 2025: -52,10 + 2026: -51,10 + 2027: -50,10 + 2028: -49,10 + 2029: -48,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: 50: -43,9 - 149: -30,52 - 291: -50,53 - 297: -52,50 - 334: -53,56 - 353: -37,37 - 435: 12,20 - 480: -17,-1 - 2684: -49,45 + 144: -30,52 + 286: -50,53 + 292: -52,50 + 329: -53,56 + 348: -37,37 + 430: 12,20 + 475: -17,-1 + 2517: -49,45 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale decals: - 445: -10,-9 - 461: -6,-7 - 466: -5,-9 + 440: -10,-9 + 456: -6,-7 + 461: -5,-9 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 752: -4,-2 - 753: -4,-5 - 1256: 2,-28 - 1257: 1,-28 - 1258: 0,-28 - 1259: -1,-28 + 638: -4,-2 + 639: -4,-5 + 1120: 2,-28 + 1121: 1,-28 + 1122: 0,-28 + 1123: -1,-28 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 3064: 11,38 - 3065: 12,38 - 3066: 12,39 + 2796: 11,38 + 2797: 12,38 + 2798: 12,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 527: -6,-2 - 529: -9,-1 - 539: -12,-7 - 540: -12,-6 - 550: -9,-3 - 552: -11,-2 - 563: -13,1 - 564: -14,1 - 565: -15,1 - 566: -16,1 - 567: -18,1 - 568: -17,1 - 569: -19,1 - 570: -20,1 - 571: -21,1 - 572: -22,1 - 573: -23,1 - 574: -24,1 - 575: -27,1 - 576: -26,1 - 577: -25,1 - 589: -18,-5 - 598: -12,-9 - 599: -12,-10 - 600: -12,-11 - 601: -13,-11 - 602: -14,-11 - 603: -15,-11 - 604: -16,-11 - 605: -17,-11 - 606: -12,-8 - 609: -18,-12 - 610: -18,-13 + 496: -6,-2 + 498: -9,-1 + 508: -12,-7 + 509: -12,-6 + 519: -9,-3 + 521: -11,-2 + 532: -13,1 + 533: -14,1 + 534: -15,1 + 535: -16,1 + 536: -18,1 + 537: -17,1 + 538: -19,1 + 539: -20,1 + 540: -21,1 + 541: -22,1 + 542: -23,1 + 543: -24,1 + 544: -27,1 + 545: -26,1 + 546: -25,1 + 3072: -29,-14 + 3073: -28,-14 + 3074: -28,-13 + 3075: -28,-12 + 3172: -23,-11 + 3173: -23,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 2229: -56,23 - 2230: -54,23 - 2231: -55,23 - 2232: -52,23 - 2233: -53,23 - 2234: -56,15 - 2235: -55,15 - 2236: -54,15 - 2237: -53,15 - 2238: -52,15 - 2241: -57,14 - 2242: -57,15 - 2243: -57,22 - 2244: -57,23 + 2071: -56,23 + 2072: -54,23 + 2073: -55,23 + 2074: -52,23 + 2075: -53,23 + 2076: -56,15 + 2077: -55,15 + 2078: -54,15 + 2079: -53,15 + 2080: -52,15 + 2083: -57,14 + 2084: -57,15 + 2085: -57,22 + 2086: -57,23 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 3043: -23,9 + 2781: -23,9 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 681: 5,0 - 682: 6,1 - 687: 17,-8 - 688: 16,-8 - 689: 15,-8 - 690: 14,-8 - 916: 13,0 - 917: 13,1 - 918: 13,2 - 919: 13,3 - 920: 13,4 - 2807: 5,1 + 568: 5,0 + 569: 6,1 + 574: 17,-8 + 575: 16,-8 + 576: 15,-8 + 577: 14,-8 + 802: 13,0 + 803: 13,1 + 804: 13,2 + 805: 13,3 + 806: 13,4 + 2640: 5,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1442: 39,7 - 1443: 38,7 - 1444: 37,7 - 1445: 36,7 - 1446: 35,7 - 1447: 40,8 - 1448: 40,9 - 1449: 40,10 + 1292: 39,7 + 1293: 38,7 + 1294: 37,7 + 1295: 36,7 + 1296: 35,7 + 1297: 40,8 + 1298: 40,9 + 1299: 40,10 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 2054: 10,24 - 2055: 10,25 - 2056: 11,25 - 2059: -11,25 - 2060: -12,25 - 2061: -13,25 - 2062: -14,25 - 2063: -15,25 - 2064: -16,25 - 2065: -17,25 - 2066: -18,25 - 2067: -19,25 - 2068: -20,25 - 2069: -21,25 - 2070: -22,25 - 2071: -23,25 - 2072: -24,25 - 2073: -25,25 - 2074: -26,25 - 2075: -27,25 - 2076: -28,25 - 2077: -29,25 - 2078: -30,25 - 2079: -31,25 - 2080: -32,25 - 2081: -33,25 - 2082: -34,25 - 2083: -35,25 - 2084: -35,24 - 2085: -35,23 - 2086: -35,22 - 2087: -35,21 - 2088: -35,20 - 2089: -35,19 - 2090: -35,18 - 2091: -35,17 - 2092: -35,16 - 2093: -35,15 - 2094: -35,14 - 2095: -35,12 - 2096: -35,13 - 2097: -35,11 - 2098: -35,10 - 2099: -35,9 - 2100: -35,7 - 2101: -35,8 - 2102: -35,6 - 2103: -35,5 - 2152: -40,5 - 2153: -41,5 - 2154: -42,5 - 2155: -43,5 - 2156: -44,5 - 2157: -45,4 - 2158: -45,3 - 2159: -45,2 - 2160: -45,1 - 2161: -45,0 - 2162: -45,-1 - 2163: -45,-2 - 2171: -44,-6 - 2172: -45,-6 - 2263: -47,13 - 2264: -46,13 - 2265: -45,13 - 2266: -44,13 - 2267: -43,13 - 2268: -42,13 - 2269: -40,13 - 2270: -41,13 - 2629: -28,1 - 2630: -29,1 - 2631: -30,1 - 2632: -31,1 - 2633: -32,1 - 2634: -33,1 - 2780: 24,33 - 2781: 25,33 - 2782: 26,33 - 2783: 27,33 - 2784: 27,34 - 2785: 27,35 - 2786: 33,35 - 2787: 32,35 - 2788: 31,35 - 2789: 30,35 - 2790: 29,35 - 3084: -54,7 - 3085: -55,7 - 3086: -55,6 - 3087: -56,6 + 1904: 10,24 + 1905: 10,25 + 1906: 11,25 + 1909: -11,25 + 1910: -12,25 + 1911: -13,25 + 1912: -14,25 + 1913: -15,25 + 1914: -16,25 + 1915: -17,25 + 1916: -18,25 + 1917: -19,25 + 1918: -20,25 + 1919: -21,25 + 1920: -22,25 + 1921: -23,25 + 1922: -24,25 + 1923: -25,25 + 1924: -26,25 + 1925: -27,25 + 1926: -28,25 + 1927: -29,25 + 1928: -30,25 + 1929: -31,25 + 1930: -32,25 + 1931: -33,25 + 1932: -34,25 + 1933: -35,25 + 1934: -35,24 + 1935: -35,23 + 1936: -35,22 + 1937: -35,21 + 1938: -35,20 + 1939: -35,19 + 1940: -35,18 + 1941: -35,17 + 1942: -35,16 + 1943: -35,15 + 1944: -35,14 + 1945: -35,12 + 1946: -35,13 + 1947: -35,11 + 1948: -35,10 + 1949: -35,9 + 1950: -35,7 + 1951: -35,8 + 1952: -35,6 + 1953: -35,5 + 2002: -40,5 + 2003: -41,5 + 2004: -42,5 + 2005: -43,5 + 2006: -44,5 + 2007: -45,4 + 2008: -45,3 + 2009: -45,2 + 2010: -45,1 + 2011: -45,0 + 2012: -45,-1 + 2013: -45,-2 + 2105: -47,13 + 2106: -46,13 + 2107: -45,13 + 2108: -44,13 + 2109: -43,13 + 2110: -42,13 + 2111: -40,13 + 2112: -41,13 + 2468: -28,1 + 2469: -29,1 + 2470: -30,1 + 2471: -31,1 + 2472: -32,1 + 2473: -33,1 + 2613: 24,33 + 2614: 25,33 + 2615: 26,33 + 2616: 27,33 + 2617: 27,34 + 2618: 27,35 + 2619: 33,35 + 2620: 32,35 + 2621: 31,35 + 2622: 30,35 + 2623: 29,35 + 2816: -54,7 + 2817: -55,7 + 2818: -55,6 + 2819: -56,6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: 54: -39,11 - 151: -36,48 - 166: -27,52 - 212: -31,44 - 302: -53,52 - 303: -47,56 - 430: 14,23 - 483: -20,-3 + 146: -36,48 + 161: -27,52 + 207: -31,44 + 297: -53,52 + 298: -47,56 + 425: 14,23 + 478: -20,-3 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale180 decals: - 447: -10,-13 - 462: -7,-11 + 442: -10,-13 + 457: -7,-11 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 720: -2,-23 - 721: -2,-24 - 722: -2,-25 - 723: -2,-26 - 724: -2,-27 - 735: 2,-31 - 736: 3,-31 - 737: 3,-30 - 738: 3,-29 - 952: -81,-44 - 953: -80,-44 - 954: -79,-44 - 955: -78,-44 - 956: -77,-44 - 1260: -1,-21 - 1261: 0,-21 - 1262: 1,-21 - 1263: 3,-21 - 1264: 4,-21 - 1270: 2,-21 - 2488: -12,-36 - 2489: -12,-35 - 2490: -12,-34 - 2491: -12,-33 + 606: -2,-23 + 607: -2,-24 + 608: -2,-25 + 609: -2,-26 + 610: -2,-27 + 621: 2,-31 + 622: 3,-31 + 623: 3,-30 + 624: 3,-29 + 838: -81,-44 + 839: -80,-44 + 840: -79,-44 + 841: -78,-44 + 842: -77,-44 + 1124: -1,-21 + 1125: 0,-21 + 1126: 1,-21 + 1127: 3,-21 + 1128: 4,-21 + 1134: 2,-21 + 2327: -12,-36 + 2328: -12,-35 + 2329: -12,-34 + 2330: -12,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 2104: -4,25 - 2105: -3,25 - 2106: -2,25 - 2107: -1,25 - 2108: 0,25 - 3059: 4,39 - 3060: 4,38 - 3061: 5,38 - 3062: 6,38 - 3063: 7,38 + 1954: -4,25 + 1955: -3,25 + 1956: -2,25 + 1957: -1,25 + 1958: 0,25 + 2791: 4,39 + 2792: 4,38 + 2793: 5,38 + 2794: 6,38 + 2795: 7,38 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 530: -15,-1 - 531: -15,-2 - 532: -15,-3 - 533: -14,-3 - 534: -13,-3 - 535: -13,-4 - 536: -13,-5 - 537: -13,-6 - 538: -13,-7 - 546: -6,-5 - 554: -10,-2 - 588: -20,-5 - 607: -13,-8 - 608: -20,-12 - 611: -20,-13 - 630: -20,-19 - 2986: -39,-10 - 2987: -38,-10 - 2988: -37,-10 - 2989: -36,-12 - 2990: -36,-11 - 2991: -36,-10 + 499: -15,-1 + 500: -15,-2 + 501: -15,-3 + 502: -14,-3 + 503: -13,-3 + 504: -13,-4 + 505: -13,-5 + 506: -13,-6 + 507: -13,-7 + 515: -6,-5 + 523: -10,-2 + 3076: -31,-14 + 3077: -32,-14 + 3078: -33,-14 + 3079: -34,-14 + 3080: -35,-14 + 3081: -35,-13 + 3164: -20,-11 + 3167: -20,-9 + 3178: -24,-11 + 3179: -24,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 946: -81,-47 - 947: -80,-47 - 948: -79,-47 - 949: -78,-47 - 950: -77,-47 - 951: -76,-47 + 832: -81,-47 + 833: -80,-47 + 834: -79,-47 + 835: -78,-47 + 836: -77,-47 + 837: -76,-47 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 680: 3,0 - 699: 11,0 - 1300: 32,-12 - 2803: 8,1 - 2804: 9,1 - 2805: 10,1 - 2806: 11,1 + 567: 3,0 + 586: 11,0 + 1164: 32,-12 + 2636: 8,1 + 2637: 9,1 + 2638: 10,1 + 2639: 11,1 - node: color: '#D381C93B' id: QuarterTileOverlayGreyscale270 decals: - 1498: 21,10 - 1521: 21,14 + 1348: 21,10 + 1371: 21,14 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1487: 25,7 - 1488: 26,7 - 1489: 27,7 - 1490: 28,7 - 1491: 29,7 - 1561: 24,7 + 1337: 25,7 + 1338: 26,7 + 1339: 27,7 + 1340: 28,7 + 1341: 29,7 + 1411: 24,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 2045: -9,25 - 2046: -8,25 - 2047: -7,25 - 2048: -6,25 - 2049: -5,25 - 2050: 1,25 - 2051: 2,25 - 2052: 8,25 - 2053: 8,24 - 2057: 6,25 - 2058: 7,25 - 2112: 8,6 - 2113: 8,5 - 2114: 8,4 - 2145: -37,1 - 2146: -37,2 - 2147: -37,3 - 2148: -37,4 - 2149: -37,5 - 2150: -38,5 - 2151: -39,5 - 2170: -44,-6 - 2297: 11,-12 - 2298: 10,-12 - 2299: 9,-12 - 2300: 8,-12 - 2889: -46,4 - 2890: -46,3 - 2891: -46,2 - 2892: -46,1 - 2893: -46,0 - 2894: -46,-1 - 2895: -46,-2 - 3075: -46,5 - 3076: -47,5 - 3077: -48,5 - 3078: -49,5 - 3079: -51,5 - 3080: -50,5 - 3081: -51,6 - 3082: -51,7 - 3083: -52,7 - 3088: -57,6 - 3089: -58,6 - 3090: -58,7 - 3091: -59,7 - 3092: -60,7 + 1895: -9,25 + 1896: -8,25 + 1897: -7,25 + 1898: -6,25 + 1899: -5,25 + 1900: 1,25 + 1901: 2,25 + 1902: 8,25 + 1903: 8,24 + 1907: 6,25 + 1908: 7,25 + 1962: 8,6 + 1963: 8,5 + 1964: 8,4 + 1995: -37,1 + 1996: -37,2 + 1997: -37,3 + 1998: -37,4 + 1999: -37,5 + 2000: -38,5 + 2001: -39,5 + 2139: 11,-12 + 2140: 10,-12 + 2141: 9,-12 + 2142: 8,-12 + 2722: -46,4 + 2723: -46,3 + 2724: -46,2 + 2725: -46,1 + 2726: -46,0 + 2727: -46,-1 + 2728: -46,-2 + 2807: -46,5 + 2808: -47,5 + 2809: -48,5 + 2810: -49,5 + 2811: -51,5 + 2812: -50,5 + 2813: -51,6 + 2814: -51,7 + 2815: -52,7 + 2820: -57,6 + 2821: -58,6 + 2822: -58,7 + 2823: -59,7 + 2824: -60,7 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2199: -56,15 - 2200: -55,15 - 2201: -54,15 - 2202: -52,15 - 2203: -53,15 - 2204: -52,23 - 2205: -53,23 - 2206: -54,23 - 2207: -55,23 - 2208: -56,23 - 2247: -51,23 - 2248: -51,22 - 2249: -51,15 - 2250: -51,14 + 2041: -56,15 + 2042: -55,15 + 2043: -54,15 + 2044: -52,15 + 2045: -53,15 + 2046: -52,23 + 2047: -53,23 + 2048: -54,23 + 2049: -55,23 + 2050: -56,23 + 2089: -51,23 + 2090: -51,22 + 2091: -51,15 + 2092: -51,14 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: 51: -43,11 - 150: -30,48 - 167: -36,56 - 168: -36,57 - 177: -45,49 - 178: -45,48 - 179: -45,47 - 180: -45,46 - 184: -38,46 - 185: -39,46 - 186: -41,46 - 187: -42,46 - 188: -43,46 - 189: -44,46 - 215: -31,42 - 290: -50,50 - 298: -53,53 - 301: -52,52 - 304: -49,56 - 431: 12,23 - 482: -17,-3 + 145: -30,48 + 162: -36,56 + 163: -36,57 + 172: -45,49 + 173: -45,48 + 174: -45,47 + 175: -45,46 + 179: -38,46 + 180: -39,46 + 181: -41,46 + 182: -42,46 + 183: -43,46 + 184: -44,46 + 210: -31,42 + 285: -50,50 + 293: -53,53 + 296: -52,52 + 299: -49,56 + 426: 12,23 + 477: -17,-3 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale270 decals: - 444: -10,-11 - 463: -5,-11 - 464: -7,-13 + 439: -10,-11 + 458: -5,-11 + 459: -7,-13 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 708: -4,-19 - 709: -4,-20 - 710: -4,-21 - 711: -4,-23 - 712: -4,-24 - 713: -4,-25 - 714: -4,-26 - 715: -4,-27 - 716: -4,-28 - 717: -4,-29 - 718: -4,-30 - 719: -4,-31 - 731: -3,-31 - 732: -2,-31 - 733: -1,-31 - 734: 0,-31 - 1265: 8,-21 - 1266: 9,-21 - 1267: 11,-21 - 1268: 12,-21 - 1269: 13,-21 - 2109: 5,25 - 2110: 4,25 - 2111: 3,25 - 2484: -14,-36 - 2485: -14,-35 - 2486: -14,-34 - 2487: -14,-33 - 2876: -31,-59 + 594: -4,-19 + 595: -4,-20 + 596: -4,-21 + 597: -4,-23 + 598: -4,-24 + 599: -4,-25 + 600: -4,-26 + 601: -4,-27 + 602: -4,-28 + 603: -4,-29 + 604: -4,-30 + 605: -4,-31 + 617: -3,-31 + 618: -2,-31 + 619: -1,-31 + 620: 0,-31 + 1129: 8,-21 + 1130: 9,-21 + 1131: 11,-21 + 1132: 12,-21 + 1133: 13,-21 + 1959: 5,25 + 1960: 4,25 + 1961: 3,25 + 2323: -14,-36 + 2324: -14,-35 + 2325: -14,-34 + 2326: -14,-33 + 2709: -31,-59 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 1712: -15,27 - 1714: -4,27 - 1718: -18,27 - 1789: -4,37 - 1790: -4,38 - 1791: -4,39 - 1792: -4,40 - 1793: -4,41 - 1800: -19,27 - 1801: -20,27 - 1802: -21,27 - 1803: -22,27 - 1804: -23,27 - 1805: -24,27 + 1562: -15,27 + 1564: -4,27 + 1568: -18,27 + 1639: -4,37 + 1640: -4,38 + 1641: -4,39 + 1642: -4,40 + 1643: -4,41 + 1650: -19,27 + 1651: -20,27 + 1652: -21,27 + 1653: -22,27 + 1654: -23,27 + 1655: -24,27 - node: color: '#52B4E957' id: QuarterTileOverlayGreyscale90 decals: - 2188: -58,10 - 2189: -57,10 - 2190: -56,10 - 2191: -55,10 - 2192: -54,10 - 2193: -53,10 - 2194: -52,10 - 2195: -51,10 - 2196: -50,10 - 2197: -49,10 - 2198: -48,10 + 2030: -58,10 + 2031: -57,10 + 2032: -56,10 + 2033: -55,10 + 2034: -54,10 + 2035: -53,10 + 2036: -52,10 + 2037: -51,10 + 2038: -50,10 + 2039: -49,10 + 2040: -48,10 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 528: -9,-2 - 548: -9,-4 - 553: -11,-3 - 591: -18,-7 - 592: -18,-8 - 594: -17,-9 - 595: -16,-9 - 596: -15,-9 - 597: -14,-9 - 653: -28,-12 - 2983: -37,-13 - 2984: -38,-13 - 2985: -39,-13 - 2992: -40,-13 - 2993: -40,-12 - 2994: -40,-11 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 1142: -28,-22 + 497: -9,-2 + 517: -9,-4 + 522: -11,-3 + 3163: -21,-12 + 3166: -21,-10 + 3176: -25,-10 + 3177: -25,-12 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 679: 5,-2 - 683: 17,-2 - 684: 16,-2 - 685: 15,-2 - 686: 14,-2 + 566: 5,-2 + 570: 17,-2 + 571: 16,-2 + 572: 15,-2 + 573: 14,-2 - node: color: '#D381C93B' id: QuarterTileOverlayGreyscale90 decals: - 1543: 23,16 + 1393: 23,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 885: 10,23 - 886: 10,22 - 887: 10,21 - 888: 10,20 - 889: 10,19 - 890: 10,18 - 891: 10,14 - 892: 10,13 - 893: 10,12 - 894: 10,11 - 895: 10,10 - 896: 10,9 - 897: 10,8 - 898: 10,7 + 771: 10,23 + 772: 10,22 + 773: 10,21 + 774: 10,20 + 775: 10,19 + 776: 10,18 + 777: 10,14 + 778: 10,13 + 779: 10,12 + 780: 10,11 + 781: 10,10 + 782: 10,9 + 783: 10,8 + 784: 10,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 2122: 0,4 - 2123: 1,4 - 2124: 2,4 - 2125: 4,4 - 2126: 3,4 - 2127: 5,4 - 2128: 6,4 - 2129: -14,3 - 2130: -15,3 - 2131: -16,3 - 2132: -17,3 - 2133: -18,3 - 2134: -19,3 - 2135: -20,3 - 2136: -20,4 - 2137: -20,5 - 2138: -20,6 - 2139: -20,7 - 2164: -45,-3 - 2166: -44,-3 - 2167: -44,-4 - 2168: -44,-5 - 2169: -44,-6 - 2173: -45,-7 - 2174: -45,-8 - 2175: -45,-9 - 2176: -45,-10 - 2255: -47,15 - 2256: -46,15 - 2257: -45,15 - 2258: -44,15 - 2259: -43,15 - 2260: -42,15 - 2261: -41,15 - 2262: -40,15 - 2301: 9,-3 - 2302: 9,-4 - 2303: 9,-5 - 2304: 9,-6 - 2305: 9,-7 - 2306: 9,-8 - 2307: 9,-9 - 2308: 9,-10 - 2309: 10,-10 - 2310: -33,27 - 2311: -34,27 - 2312: -35,27 - 2313: -35,28 - 2314: -35,29 - 2315: -35,30 - 2316: -35,31 - 2317: -35,32 - 2318: -35,33 - 2319: -35,34 - 2593: 10,6 - 2594: 10,5 - 2595: 10,4 - 2596: 11,4 - 2597: 12,4 - 2598: 13,4 - 2599: -40,7 - 2600: -41,7 - 2601: -42,7 - 2602: -43,7 - 2603: -44,7 - 2604: -45,7 - 2605: -45,8 - 2606: -46,8 - 2607: -47,8 - 2738: 11,35 - 2739: 11,34 - 2740: 11,33 - 2741: 11,32 - 2742: 11,31 - 2743: 11,30 - 2744: 11,29 - 2758: 24,27 - 2759: 23,27 - 2760: 23,28 - 2761: 23,29 - 2762: 23,30 - 2763: 23,31 - 2764: 27,40 - 2765: 27,38 - 2766: 27,39 - 2767: 26,40 - 2791: 33,38 - 2792: 32,38 - 2793: 31,38 - 2794: 30,38 - 2795: 29,38 - 3069: 11,36 + 1972: 0,4 + 1973: 1,4 + 1974: 2,4 + 1975: 4,4 + 1976: 3,4 + 1977: 5,4 + 1978: 6,4 + 1979: -14,3 + 1980: -15,3 + 1981: -16,3 + 1982: -17,3 + 1983: -18,3 + 1984: -19,3 + 1985: -20,3 + 1986: -20,4 + 1987: -20,5 + 1988: -20,6 + 1989: -20,7 + 2014: -45,-3 + 2016: -44,-3 + 2017: -44,-4 + 2018: -44,-5 + 2097: -47,15 + 2098: -46,15 + 2099: -45,15 + 2100: -44,15 + 2101: -43,15 + 2102: -42,15 + 2103: -41,15 + 2104: -40,15 + 2143: 9,-3 + 2144: 9,-4 + 2145: 9,-5 + 2146: 9,-6 + 2147: 9,-7 + 2148: 9,-8 + 2149: 9,-9 + 2150: 9,-10 + 2151: 10,-10 + 2152: -33,27 + 2153: -34,27 + 2154: -35,27 + 2155: -35,28 + 2156: -35,29 + 2157: -35,30 + 2158: -35,31 + 2159: -35,32 + 2160: -35,33 + 2161: -35,34 + 2432: 10,6 + 2433: 10,5 + 2434: 10,4 + 2435: 11,4 + 2436: 12,4 + 2437: 13,4 + 2438: -40,7 + 2439: -41,7 + 2440: -42,7 + 2441: -43,7 + 2442: -44,7 + 2443: -45,7 + 2444: -45,8 + 2445: -46,8 + 2446: -47,8 + 2571: 11,35 + 2572: 11,34 + 2573: 11,33 + 2574: 11,32 + 2575: 11,31 + 2576: 11,30 + 2577: 11,29 + 2591: 24,27 + 2592: 23,27 + 2593: 23,28 + 2594: 23,29 + 2595: 23,30 + 2596: 23,31 + 2597: 27,40 + 2598: 27,38 + 2599: 27,39 + 2600: 26,40 + 2624: 33,38 + 2625: 32,38 + 2626: 31,38 + 2627: 30,38 + 2628: 29,38 + 2801: 11,36 + 2847: -44,-7 + 2848: -44,-8 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2209: -52,21 - 2210: -53,21 - 2211: -54,21 - 2212: -55,21 - 2213: -56,21 - 2214: -56,13 - 2215: -55,13 - 2216: -54,13 - 2217: -53,13 - 2218: -52,13 - 2251: -57,13 - 2252: -57,14 - 2253: -57,21 - 2254: -57,22 + 2051: -52,21 + 2052: -53,21 + 2053: -54,21 + 2054: -55,21 + 2055: -56,21 + 2056: -56,13 + 2057: -55,13 + 2058: -54,13 + 2059: -53,13 + 2060: -52,13 + 2093: -57,13 + 2094: -57,14 + 2095: -57,21 + 2096: -57,22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: 55: -39,9 - 148: -36,52 - 165: -27,48 - 169: -38,49 - 170: -39,49 - 171: -40,49 - 172: -41,49 - 173: -42,49 - 174: -43,49 - 175: -44,49 - 176: -45,49 - 181: -38,48 - 182: -38,47 - 183: -38,46 - 211: -46,44 - 269: -47,45 - 333: -45,56 - 352: -35,37 - 436: 14,20 - 481: -20,-1 + 143: -36,52 + 160: -27,48 + 164: -38,49 + 165: -39,49 + 166: -40,49 + 167: -41,49 + 168: -42,49 + 169: -43,49 + 170: -44,49 + 171: -45,49 + 176: -38,48 + 177: -38,47 + 178: -38,46 + 206: -46,44 + 264: -47,45 + 328: -45,56 + 347: -35,37 + 431: 14,20 + 476: -20,-1 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale90 decals: - 446: -10,-7 - 465: -6,-9 + 441: -10,-7 + 460: -6,-9 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 754: -2,-5 - 755: -2,-2 - 957: -81,-48 - 958: -80,-48 - 959: -79,-48 - 960: -78,-48 - 961: -77,-48 + 640: -2,-5 + 641: -2,-2 + 843: -81,-48 + 844: -80,-48 + 845: -79,-48 + 846: -78,-48 + 847: -77,-48 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1242: -26.720001,4.0298495 + 1106: -26.720001,4.0298495 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 1031: -24,-36 - 1032: -22,-38 - 1033: -22,-38 - 1034: -26,-37 - 1035: -28,-37 - 1036: -28,-37 + 917: -24,-36 + 918: -22,-38 + 919: -22,-38 + 920: -26,-37 + 921: -28,-37 + 922: -28,-37 - node: color: '#FFFFFFFF' id: StandClear decals: - 394: 10,42 - 769: -10,-45 - 770: -6,-45 - 1173: 5,41 - 1536: 22,25 - 1537: 22,23 - - node: - color: '#334E6DC8' - id: StandClearGreyscale - decals: - 2945: -41,-14 - 2946: -41,-11 + 389: 10,42 + 655: -10,-45 + 656: -6,-45 + 1037: 5,41 + 1386: 22,25 + 1387: 22,23 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 2881: -32,-63 + 2714: -32,-63 - node: - color: '#9FED5896' + color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1131: -35,-20 - 1133: -30,-19 + 3136: -26,-8 + 3162: -20,-12 + 3165: -20,-10 + 3174: -24,-12 + 3175: -24,-10 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2873: -32,-58 + 2706: -32,-58 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2879: -30,-64 + 2712: -30,-64 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3138: -18,-13 - node: color: '#D381C93B' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1565: 15,14 + 1415: 15,14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1441: 40,7 + 1291: 40,7 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2878: -30,-61 + 2711: -30,-61 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2882: -32,-64 + 2715: -32,-64 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3137: -26,-13 + 3170: -22,-9 + 3171: -22,-11 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2875: -32,-59 - 2877: -31,-61 + 2708: -32,-59 + 2710: -31,-61 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2880: -30,-63 + 2713: -30,-63 - node: - color: '#9FED5896' + color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1132: -28,-19 - 1144: -26,-22 + 3135: -18,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2874: -30,-58 + 2707: -30,-58 - node: color: '#FFFFFFFF' id: VentSmall decals: - 1612: -27,39 - 1732: -1,34 - 1821: 34,30 - 1822: 33,30 - 1994: -14,40 + 1462: -27,39 + 1582: -1,34 + 1671: 34,30 + 1672: 33,30 + 1844: -14,40 - node: color: '#FFFFFFFF' id: WarnBox decals: - 2834: -19,-48 + 2667: -19,-48 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCorner decals: - 664: -28,-15 - 1276: -40,60 + 1140: -40,60 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCorner decals: - 468: -6,-12 - 663: -30,-15 - 1084: 2,64 + 463: -6,-12 + 970: 2,64 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 661: -30,-17 - 1273: -42,58 + 1137: -42,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1275: -42,60 + 1139: -42,60 - node: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 662: -28,-17 - 1274: -40,58 + 1138: -40,58 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1087: -4,64 + 973: -4,64 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 3065: -31,-11 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 3069: -35,-11 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2383: 2,-33 + 2222: 2,-33 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2382: 0,-33 + 2221: 0,-33 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 2026: 5,21 - 2381: 2,-35 + 1876: 5,21 + 2220: 2,-35 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2025: 3,21 - 2380: 0,-35 + 1875: 3,21 + 2219: 0,-35 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2374: -10,-36 - 3018: -10,-52 + 2213: -10,-36 + 2756: -10,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1425: 21,-19 - 1984: -58,19 - 2373: -6,-36 - 3017: -6,-52 + 1275: 21,-19 + 1834: -58,19 + 2212: -6,-36 + 2755: -6,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1427: 20,-19 - 2027: 5,22 - 2544: -10,-34 - 3016: -10,-50 + 1277: 20,-19 + 1877: 5,22 + 2383: -10,-34 + 2754: -10,-50 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1424: 21,-16 - 1426: 19,-19 - 1432: 22,-19 - 1983: -58,17 - 2028: 3,22 - 2543: -6,-34 - 3019: -6,-50 + 1274: 21,-16 + 1276: 19,-19 + 1282: 22,-19 + 1833: -58,17 + 1878: 3,22 + 2382: -6,-34 + 2757: -6,-50 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4535,267 +4606,315 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 2349: -31,-11 - 2639: -35,-1 - 2940: -35,-11 + 2478: -35,-1 + 2956: -24,-17 + 2957: -24,-23 + 2958: -20,-16 + 2959: -16,-16 + 3023: -14,-18 + 3024: -14,-14 + 3060: -28,-23 + 3061: -28,-17 + 3062: -32,-18 + 3106: -17,-11 + 3107: -17,-10 + 3111: -22,-14 + 3112: -27,-10 + 3113: -27,-11 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2727: 30,7 - 2728: 30,8 + 2560: 30,7 + 2561: 30,8 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2680: -33,45 - 2683: -40,45 + 2513: -33,45 + 2516: -40,45 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 2443: -21,-43 - 2444: -21,-42 - 2446: -18,-46 - 2447: -19,-38 + 2282: -21,-43 + 2283: -21,-42 + 2285: -18,-46 + 2286: -19,-38 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1428: 20,-20 - 1439: 38,9 - 1440: 38,10 - 1459: 20,18 - 1460: 20,19 - 1467: 21,20 - 1468: 21,21 - 2372: -10,-35 - 2384: 2,-34 - 2592: -2,-1 - 3014: -10,-51 + 1278: 20,-20 + 1289: 38,9 + 1290: 38,10 + 1309: 20,18 + 1310: 20,19 + 1317: 21,20 + 1318: 21,21 + 2211: -10,-35 + 2223: 2,-34 + 2431: -2,-1 + 2752: -10,-51 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 2801: -19,39 + 2634: -19,39 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 2945: -21,-16 + 3057: -29,-23 + 3058: -29,-17 + 3103: -12,-11 + 3108: -18,-11 + 3109: -18,-10 + 3116: -28,-11 + 3117: -28,-10 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2730: 33,8 + 2563: 33,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 2441: -22,-43 - 2442: -22,-42 + 2280: -22,-43 + 2281: -22,-42 + 3066: -31,-10 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 2802: -20,40 + 2635: -20,40 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 2954: -22,-15 + 3022: -14,-19 + 3025: -14,-15 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 2731: 32,9 + 2564: 32,9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 2678: -33,44 - 2679: -40,44 + 2511: -33,44 + 2512: -40,44 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 2440: -19,-39 - 2460: -13,-39 - 2912: -26,-9 - 2913: -25,-9 - 2914: -24,-9 - 2915: -23,-9 - 2916: -22,-9 + 2279: -19,-39 + 2299: -13,-39 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2638: -35,0 + 2477: -35,0 + 2955: -22,-24 + 3020: -18,-23 + 3021: -14,-17 + 3102: -14,-13 + 3110: -22,-13 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 2729: 32,7 + 2562: 32,7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 2675: -32,42 - 2676: -35,42 - 2677: -37,42 - 2681: -33,46 - 2682: -40,46 - 2685: -47,45 - 2686: -48,45 - 2687: -49,45 + 2508: -32,42 + 2509: -35,42 + 2510: -37,42 + 2514: -33,46 + 2515: -40,46 + 2518: -47,45 + 2519: -48,45 + 2520: -49,45 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleS + decals: + 2859: -41,17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2445: -18,-45 - 2664: -40,42 - 2665: -44,42 - 2666: -48,42 + 2284: -18,-45 + 2497: -40,42 + 2498: -44,42 + 2499: -48,42 + 3067: -32,-11 + 3068: -33,-11 + 3070: -34,-11 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 2800: -21,39 + 2633: -21,39 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2348: -30,-11 + 2943: -23,-23 + 2944: -23,-17 + 2960: -15,-16 + 3059: -31,-18 + 3104: -16,-11 + 3105: -16,-10 + 3114: -26,-11 + 3115: -26,-10 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleW + decals: + 2860: -44,18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 2438: -20,-43 - 2439: -20,-42 - 2622: -33,7 - 2623: -33,8 - 2943: -41,-11 - 2944: -41,-14 + 2277: -20,-43 + 2278: -20,-42 + 2461: -33,7 + 2462: -33,8 + 3071: -35,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1414: 18,-16 - 1415: 19,-16 - 1416: 20,-16 - 1417: 21,-19 - 1418: 18,-19 - 1435: 38,9 - 1436: 37,9 - 1437: 36,9 - 1438: 35,9 - 1478: 28,11 - 1479: 27,11 - 1480: 26,11 - 2024: 4,21 - 2029: 6,22 - 2030: 2,22 - 2344: -21,43 - 2345: -20,43 - 2346: -19,43 - 2385: 1,-35 - 2831: -26,-58 - 2832: -27,-58 - 2833: -28,-58 - 3011: -7,-50 - 3012: -8,-50 - 3013: -9,-50 + 1264: 18,-16 + 1265: 19,-16 + 1266: 20,-16 + 1267: 21,-19 + 1268: 18,-19 + 1285: 38,9 + 1286: 37,9 + 1287: 36,9 + 1288: 35,9 + 1328: 28,11 + 1329: 27,11 + 1330: 26,11 + 1874: 4,21 + 1879: 6,22 + 1880: 2,22 + 2186: -21,43 + 2187: -20,43 + 2188: -19,43 + 2224: 1,-35 + 2664: -26,-58 + 2665: -27,-58 + 2666: -28,-58 + 2749: -7,-50 + 2750: -8,-50 + 2751: -9,-50 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1422: 21,-18 - 1423: 21,-17 - 1429: 19,-20 - 1465: 24,20 - 1466: 24,21 - 1558: 27,18 - 1559: 27,19 - 1560: 27,20 - 1973: -58,12 - 1974: -58,13 - 1975: -58,14 - 1976: -58,15 - 1977: -58,16 - 1978: -58,20 - 1979: -58,21 - 1980: -58,22 - 1981: -58,23 - 1982: -58,24 - 2371: -6,-35 - 2378: 0,-34 - 2591: -4,-1 - 2705: 14,-26 - 2706: 14,-25 - 2707: 14,-24 - 2708: 14,-23 - 3015: -6,-51 - 3101: -47,-10 - 3102: -47,-9 + 1272: 21,-18 + 1273: 21,-17 + 1279: 19,-20 + 1315: 24,20 + 1316: 24,21 + 1408: 27,18 + 1409: 27,19 + 1410: 27,20 + 1823: -58,12 + 1824: -58,13 + 1825: -58,14 + 1826: -58,15 + 1827: -58,16 + 1828: -58,20 + 1829: -58,21 + 1830: -58,22 + 1831: -58,23 + 1832: -58,24 + 2210: -6,-35 + 2217: 0,-34 + 2430: -4,-1 + 2538: 14,-26 + 2539: 14,-25 + 2540: 14,-24 + 2541: 14,-23 + 2753: -6,-51 + 2833: -47,-10 + 2834: -47,-9 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1409: 18,-16 - 1410: 19,-16 - 1411: 20,-16 - 1412: 21,-16 - 1413: 22,-16 - 1419: 18,-19 - 1420: 19,-19 - 1421: 20,-19 - 1430: 20,-21 - 1431: 19,-21 - 1455: 17,19 - 1456: 18,19 - 1457: 19,19 - 1458: 20,19 - 1475: 26,8 - 1476: 27,8 - 1477: 28,8 - 1615: -23,38 - 2031: 6,22 - 2032: 5,22 - 2033: 3,22 - 2034: 2,22 - 2375: -7,-36 - 2376: -8,-36 - 2377: -9,-36 - 2379: 1,-33 - 2947: -32,-10 - 2948: -33,-10 - 2949: -34,-10 - 3000: -6,-58 - 3001: -12,-58 - 3002: -5,-58 - 3003: -4,-58 - 3004: -13,-58 - 3005: -3,-58 - 3006: -10,-58 - 3007: -11,-58 - 3008: -9,-52 - 3009: -8,-52 - 3010: -7,-52 + 1259: 18,-16 + 1260: 19,-16 + 1261: 20,-16 + 1262: 21,-16 + 1263: 22,-16 + 1269: 18,-19 + 1270: 19,-19 + 1271: 20,-19 + 1280: 20,-21 + 1281: 19,-21 + 1305: 17,19 + 1306: 18,19 + 1307: 19,19 + 1308: 20,19 + 1325: 26,8 + 1326: 27,8 + 1327: 28,8 + 1465: -23,38 + 1881: 6,22 + 1882: 5,22 + 1883: 3,22 + 1884: 2,22 + 2214: -7,-36 + 2215: -8,-36 + 2216: -9,-36 + 2218: 1,-33 + 2738: -6,-58 + 2739: -12,-58 + 2740: -5,-58 + 2741: -4,-58 + 2742: -13,-58 + 2743: -3,-58 + 2744: -10,-58 + 2745: -11,-58 + 2746: -9,-52 + 2747: -8,-52 + 2748: -7,-52 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 106: -38,51 - 107: -39,51 - 108: -40,51 - 109: -41,51 - 110: -42,51 - 391: 11,42 - 392: 10,42 - 393: 9,42 - 469: -5,-12 - 749: -24,-47 - 750: -25,-47 - 751: -26,-47 - 848: 13,-9 - 849: 12,-9 - 850: 11,-9 - 1090: -6,82 - 1091: 4,82 - 1102: 3,78 - 1103: -5,78 - 1254: 2,-38 + 101: -38,51 + 102: -39,51 + 103: -40,51 + 104: -41,51 + 105: -42,51 + 386: 11,42 + 387: 10,42 + 388: 9,42 + 464: -5,-12 + 635: -24,-47 + 636: -25,-47 + 637: -26,-47 + 734: 13,-9 + 735: 12,-9 + 736: 11,-9 + 976: -6,82 + 977: 4,82 + 988: 3,78 + 989: -5,78 + 1118: 2,-38 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -4806,66 +4925,65 @@ entities: 7: 0,21 8: 0,22 9: 0,23 - 467: -6,-13 - 659: -30,-16 - 1065: -47,-25 - 1066: -47,-24 - 1067: -47,-23 - 1082: 2,62 - 1083: 2,63 - 1094: 4,87 - 1104: 4,79 + 462: -6,-13 + 951: -47,-25 + 952: -47,-24 + 953: -47,-23 + 968: 2,62 + 969: 2,63 + 980: 4,87 + 990: 4,79 - node: color: '#FFFFFFFF' id: WarningLine decals: - 99: -38,53 - 100: -39,53 - 101: -40,53 - 102: -41,53 - 103: -42,53 - 728: 7,-21 - 729: 6,-21 - 730: 5,-21 - 756: -2,-46 - 757: -3,-46 - 758: -4,-46 - 759: -5,-46 - 760: -6,-46 - 761: -7,-46 - 762: -8,-46 - 763: -9,-46 - 764: -10,-46 - 765: -11,-46 - 766: -12,-46 - 767: -13,-46 - 768: -14,-46 - 777: -8,-42 - 778: -7,-42 - 779: -9,-42 - 780: -10,-42 - 781: -6,-42 - 851: 13,-9 - 852: 12,-9 - 853: 11,-9 - 861: 17,16 - 862: 18,16 - 866: 38,12 - 867: 37,12 - 868: 36,12 - 869: 35,12 - 1088: 4,84 - 1089: -6,84 - 1092: 3,88 - 1093: -5,88 - 1165: 6,41 - 1166: 4,41 - 1170: 7,41 - 1171: 3,41 - 1172: 5,41 - 1352: 35,-12 - 1353: 34,-12 - 1354: 33,-12 + 94: -38,53 + 95: -39,53 + 96: -40,53 + 97: -41,53 + 98: -42,53 + 614: 7,-21 + 615: 6,-21 + 616: 5,-21 + 642: -2,-46 + 643: -3,-46 + 644: -4,-46 + 645: -5,-46 + 646: -6,-46 + 647: -7,-46 + 648: -8,-46 + 649: -9,-46 + 650: -10,-46 + 651: -11,-46 + 652: -12,-46 + 653: -13,-46 + 654: -14,-46 + 663: -8,-42 + 664: -7,-42 + 665: -9,-42 + 666: -10,-42 + 667: -6,-42 + 737: 13,-9 + 738: 12,-9 + 739: 11,-9 + 747: 17,16 + 748: 18,16 + 752: 38,12 + 753: 37,12 + 754: 36,12 + 755: 35,12 + 974: 4,84 + 975: -6,84 + 978: 3,88 + 979: -5,88 + 1029: 6,41 + 1030: 4,41 + 1034: 7,41 + 1035: 3,41 + 1036: 5,41 + 1216: 35,-12 + 1217: 34,-12 + 1218: 33,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4877,319 +4995,315 @@ entities: 13: -4,22 14: -4,23 15: -2,22 - 660: -28,-16 - 1068: -57,-25 - 1069: -57,-24 - 1070: -57,-23 - 1085: -4,62 - 1086: -4,63 - 1095: -6,87 - 1105: -6,79 - 1345: 35,-8 - 1346: 35,-7 - 1347: 35,-6 - 1348: 35,-5 - 1349: 35,-4 - 1350: 35,-3 - 1351: 35,-2 + 954: -57,-25 + 955: -57,-24 + 956: -57,-23 + 971: -4,62 + 972: -4,63 + 981: -6,87 + 991: -6,79 + 1209: 35,-8 + 1210: 35,-7 + 1211: 35,-6 + 1212: 35,-5 + 1213: 35,-4 + 1214: 35,-3 + 1215: 35,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 745: 2,-38 - 746: 1,-38 - 747: 0,-38 - 863: 17,14 - 864: 18,14 + 631: 2,-38 + 632: 1,-38 + 633: 0,-38 + 749: 17,14 + 750: 18,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 1107: 4,78 - 1109: -4,78 + 993: 4,78 + 995: -4,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 1072: -47,-22 + 958: -47,-22 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 783: -11,-42 - 1097: 2,88 - 1099: -6,88 - 1111: -6,80 - 1272: 4,-21 - 1355: 32,-12 + 669: -11,-42 + 983: 2,88 + 985: -6,88 + 997: -6,80 + 1136: 4,-21 + 1219: 32,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 1101: -6,86 + 987: -6,86 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 1106: -6,78 - 1108: 2,78 + 992: -6,78 + 994: 2,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 1098: 4,86 + 984: 4,86 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 782: -5,-42 - 1096: 4,88 - 1100: -4,88 - 1110: 4,80 - 1271: 8,-21 + 668: -5,-42 + 982: 4,88 + 986: -4,88 + 996: 4,80 + 1135: 8,-21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 1071: -57,-22 + 957: -57,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1946: -11,34 - 1947: -10,34 - 1948: -9,34 + 1796: -11,34 + 1797: -10,34 + 1798: -9,34 - node: color: '#334E6DC8' id: WoodTrimThinEndE decals: - 1750: -9,41 + 1600: -9,41 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 1628: -22,31 + 1478: -22,31 - node: color: '#334E6DC8' id: WoodTrimThinEndW decals: - 1751: -11,41 + 1601: -11,41 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1652: -13,32 - 1832: 42,40 - 2659: -27,52 + 1502: -13,32 + 1682: 42,40 + 2492: -27,52 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1651: -7,32 + 1501: -7,32 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1622: -24,37 - 1650: -13,36 - 1914: -21,36 + 1472: -24,37 + 1500: -13,36 + 1764: -21,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1621: -24,37 - 1649: -7,36 + 1471: -24,37 + 1499: -7,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1633: -20,30 - 1646: -13,33 - 1647: -13,34 - 1648: -13,35 - 1723: -2,32 - 1724: -2,33 - 1725: -2,31 - 1737: -19,32 - 1823: 35,37 - 1824: 35,38 - 1825: 35,39 - 1826: 35,40 - 1827: 35,41 - 1828: 43,37 - 1829: 43,38 - 1830: 43,39 - 1831: 43,40 - 1833: -75,-55 - 1835: -71,-55 - 1836: -71,-54 - 1837: -71,-53 - 1838: -71,-52 - 1839: -71,-56 - 1840: -71,-57 - 1912: -21,34 - 1913: -21,35 - 1919: 25,14 - 1920: 25,15 - 2917: -31,-3 - 2918: -31,-2 - 2919: -31,-1 + 1483: -20,30 + 1496: -13,33 + 1497: -13,34 + 1498: -13,35 + 1573: -2,32 + 1574: -2,33 + 1575: -2,31 + 1587: -19,32 + 1673: 35,37 + 1674: 35,38 + 1675: 35,39 + 1676: 35,40 + 1677: 35,41 + 1678: 43,37 + 1679: 43,38 + 1680: 43,39 + 1681: 43,40 + 1683: -75,-55 + 1685: -71,-55 + 1686: -71,-54 + 1687: -71,-53 + 1688: -71,-52 + 1689: -71,-56 + 1690: -71,-57 + 1762: -21,34 + 1763: -21,35 + 1769: 25,14 + 1770: 25,15 + 2730: -31,-3 + 2731: -31,-2 + 2732: -31,-1 - node: color: '#334E6DC8' id: WoodTrimThinLineN decals: - 1752: -10,41 + 1602: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1574: -49,32 - 1575: -50,32 - 1576: -51,32 - 1577: -52,32 - 1578: -53,32 - 1585: -54,32 - 1586: -22,52 - 1587: -23,52 - 1588: -24,52 - 1589: -25,52 - 1590: -26,52 - 1614: -21,33 - 1626: -20,30 - 1627: -21,30 - 1641: -8,32 - 1642: -9,32 - 1643: -10,32 - 1644: -11,32 - 1645: -12,32 - 1727: -1,34 - 1733: -22,32 - 1734: -20,32 - 1807: -32,20 - 1898: 8,-18 - 1916: 26,13 - 1917: 27,13 - 1918: 28,13 - 2952: -38,-7 - 2953: -39,-7 - 2954: -40,-7 + 1424: -49,32 + 1425: -50,32 + 1426: -51,32 + 1427: -52,32 + 1428: -53,32 + 1435: -54,32 + 1436: -22,52 + 1437: -23,52 + 1438: -24,52 + 1439: -25,52 + 1440: -26,52 + 1464: -21,33 + 1476: -20,30 + 1477: -21,30 + 1491: -8,32 + 1492: -9,32 + 1493: -10,32 + 1494: -11,32 + 1495: -12,32 + 1577: -1,34 + 1583: -22,32 + 1584: -20,32 + 1657: -32,20 + 1748: 8,-18 + 1766: 26,13 + 1767: 27,13 + 1768: 28,13 - node: color: '#334E6DC8' id: WoodTrimThinLineS decals: - 1753: -10,41 + 1603: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1572: -43,32 - 1573: -44,32 - 1579: -52,29 - 1580: -53,29 - 1581: -51,29 - 1582: -50,29 - 1583: -49,29 - 1584: -54,29 - 1603: -18,37 - 1604: -19,37 - 1605: -20,37 - 1606: -21,37 - 1607: -22,37 - 1613: -21,33 - 1617: -25,37 - 1618: -26,37 - 1619: -27,37 - 1620: -28,37 - 1623: -19,36 - 1624: -20,36 - 1625: -18,36 - 1630: -22,30 - 1631: -21,30 - 1632: -20,30 - 1634: -12,36 - 1635: -10,36 - 1636: -9,36 - 1637: -8,36 - 1662: -11,36 - 1726: -1,34 - 1728: 3,34 - 1729: 4,34 - 1730: 5,34 - 1731: 2,34 - 1735: -19,32 - 1806: -32,24 - 1886: -6,15 - 1887: -5,15 - 1888: -4,15 - 1889: -3,15 - 1890: -2,15 - 1891: -1,15 - 1893: 0,15 - 1899: 9,-17 - 1900: 8,-17 - 1901: 7,-17 - 1902: 5,-12 - 1903: 4,-12 - 1904: 3,-12 - 1915: 28,16 - 1923: 27,16 - 1924: 26,16 - 2646: -42,32 - 2647: -45,32 + 1422: -43,32 + 1423: -44,32 + 1429: -52,29 + 1430: -53,29 + 1431: -51,29 + 1432: -50,29 + 1433: -49,29 + 1434: -54,29 + 1453: -18,37 + 1454: -19,37 + 1455: -20,37 + 1456: -21,37 + 1457: -22,37 + 1463: -21,33 + 1467: -25,37 + 1468: -26,37 + 1469: -27,37 + 1470: -28,37 + 1473: -19,36 + 1474: -20,36 + 1475: -18,36 + 1480: -22,30 + 1481: -21,30 + 1482: -20,30 + 1484: -12,36 + 1485: -10,36 + 1486: -9,36 + 1487: -8,36 + 1512: -11,36 + 1576: -1,34 + 1578: 3,34 + 1579: 4,34 + 1580: 5,34 + 1581: 2,34 + 1585: -19,32 + 1656: -32,24 + 1736: -6,15 + 1737: -5,15 + 1738: -4,15 + 1739: -3,15 + 1740: -2,15 + 1741: -1,15 + 1743: 0,15 + 1749: 9,-17 + 1750: 8,-17 + 1751: 7,-17 + 1752: 5,-12 + 1753: 4,-12 + 1754: 3,-12 + 1765: 28,16 + 1773: 27,16 + 1774: 26,16 + 2479: -42,32 + 2480: -45,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2013: -23,37 + 1863: -23,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1629: -22,30 - 1638: -7,33 - 1639: -7,34 - 1640: -7,35 - 1736: -19,32 - 1834: -70,-55 - 1841: -74,-57 - 1842: -74,-56 - 1843: -74,-55 - 1844: -74,-54 - 1845: -74,-53 - 1846: -74,-52 - 1894: 6,-11 - 1895: 6,-10 - 1896: 6,-9 - 1905: 3,-12 - 1906: 3,-11 - 1907: 3,-10 - 1908: 3,-9 - 1909: 3,-8 - 1910: 3,-7 - 1911: 3,-6 - 1921: 29,14 - 1922: 29,15 - 1942: 27,0 - 1943: 27,1 - 1944: 27,2 + 1479: -22,30 + 1488: -7,33 + 1489: -7,34 + 1490: -7,35 + 1586: -19,32 + 1684: -70,-55 + 1691: -74,-57 + 1692: -74,-56 + 1693: -74,-55 + 1694: -74,-54 + 1695: -74,-53 + 1696: -74,-52 + 1744: 6,-11 + 1745: 6,-10 + 1746: 6,-9 + 1755: 3,-12 + 1756: 3,-11 + 1757: 3,-10 + 1758: 3,-9 + 1759: 3,-8 + 1760: 3,-7 + 1761: 3,-6 + 1771: 29,14 + 1772: 29,15 + 1792: 27,0 + 1793: 27,1 + 1794: 27,2 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1755: -11,41 + 1605: -11,41 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 1754: -9,41 + 1604: -9,41 - type: GridAtmosphere version: 2 data: @@ -7549,14 +7663,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -7572,14 +7678,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7595,14 +7693,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7618,14 +7708,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7641,14 +7723,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7664,14 +7738,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: BecomesStation id: Marathon @@ -7688,12 +7754,13 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 525 @@ -7706,14 +7773,6 @@ entities: - type: Transform pos: -19.30925,-35.362278 parent: 30 -- proto: ActionToggleLight - entities: - - uid: 3117 - components: - - type: Transform - parent: 5704 - - type: InstantAction - container: 5704 - proto: AirAlarm entities: - uid: 6224 @@ -7746,19 +7805,54 @@ entities: - 22086 - 3421 - 3422 - - type: AtmosDevice - joinedGrid: 30 - - uid: 9039 + - uid: 7927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 30 + - uid: 8252 components: - type: Transform + rot: -1.5707963267948966 rad pos: -32.5,-3.5 parent: 30 + - uid: 8254 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 30 + - type: DeviceList + devices: + - 8019 + - 8288 + - 7155 + - 7156 + - 7571 + - 7569 + - uid: 8267 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 30 - type: DeviceList devices: - - 7260 - - 22532 - - type: AtmosDevice - joinedGrid: 30 + - 7132 + - 7155 + - 7156 + - 7960 + - 7007 + - 7200 + - 7136 + - 7137 + - 7131 + - 7130 + - uid: 9029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 30 - uid: 9477 components: - type: Transform @@ -7770,8 +7864,18 @@ entities: - 9952 - 11153 - 11094 - - type: AtmosDevice - joinedGrid: 30 + - uid: 9671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 30 + - type: DeviceList + devices: + - 7960 + - 7116 + - 9686 + - 9864 - uid: 17960 components: - type: Transform @@ -7784,23 +7888,6 @@ entities: - 18435 - 18436 - 18437 - - type: AtmosDevice - joinedGrid: 30 - - uid: 19567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 30 - - type: DeviceList - devices: - - 11209 - - 11208 - - 78 - - 18844 - - 7738 - - type: AtmosDevice - joinedGrid: 30 - uid: 20325 components: - type: Transform @@ -7816,8 +7903,6 @@ entities: - 18442 - 18439 - 17228 - - type: AtmosDevice - joinedGrid: 30 - uid: 20353 components: - type: Transform @@ -7831,8 +7916,6 @@ entities: - 11264 - 11114 - 11163 - - type: AtmosDevice - joinedGrid: 30 - uid: 20356 components: - type: Transform @@ -7851,8 +7934,6 @@ entities: - 11098 - 11099 - 11154 - - type: AtmosDevice - joinedGrid: 30 - uid: 21740 components: - type: Transform @@ -7863,8 +7944,6 @@ entities: - 11097 - 11227 - 21741 - - type: AtmosDevice - joinedGrid: 30 - uid: 21743 components: - type: Transform @@ -7876,8 +7955,6 @@ entities: - 11176 - 11107 - 21744 - - type: AtmosDevice - joinedGrid: 30 - uid: 21747 components: - type: Transform @@ -7894,8 +7971,6 @@ entities: - 21749 - 11178 - 11179 - - type: AtmosDevice - joinedGrid: 30 - uid: 21754 components: - type: Transform @@ -7911,8 +7986,6 @@ entities: - 9300 - 11188 - 11189 - - type: AtmosDevice - joinedGrid: 30 - uid: 21755 components: - type: Transform @@ -7921,8 +7994,6 @@ entities: - type: DeviceList devices: - 21756 - - type: AtmosDevice - joinedGrid: 30 - uid: 21757 components: - type: Transform @@ -7940,8 +8011,6 @@ entities: - 9309 - 11192 - 11180 - - type: AtmosDevice - joinedGrid: 30 - uid: 21760 components: - type: Transform @@ -7952,8 +8021,6 @@ entities: devices: - 11214 - 21761 - - type: AtmosDevice - joinedGrid: 30 - uid: 21762 components: - type: Transform @@ -7970,8 +8037,6 @@ entities: - 12039 - 16096 - 11714 - - type: AtmosDevice - joinedGrid: 30 - uid: 21771 components: - type: Transform @@ -7991,8 +8056,6 @@ entities: - 21772 - 11201 - 11200 - - type: AtmosDevice - joinedGrid: 30 - uid: 21774 components: - type: Transform @@ -8010,8 +8073,6 @@ entities: - 21773 - 11211 - 11210 - - type: AtmosDevice - joinedGrid: 30 - uid: 21777 components: - type: Transform @@ -8032,8 +8093,6 @@ entities: - 11220 - 11219 - 20335 - - type: AtmosDevice - joinedGrid: 30 - uid: 21781 components: - type: Transform @@ -8051,8 +8110,6 @@ entities: - 8468 - 11221 - 11222 - - type: AtmosDevice - joinedGrid: 30 - uid: 21783 components: - type: Transform @@ -8071,8 +8128,6 @@ entities: - 11939 - 14540 - 11991 - - type: AtmosDevice - joinedGrid: 30 - uid: 21785 components: - type: Transform @@ -8090,8 +8145,6 @@ entities: - 12081 - 11764 - 11872 - - type: AtmosDevice - joinedGrid: 30 - uid: 21789 components: - type: Transform @@ -8104,8 +8157,6 @@ entities: - 12043 - 12044 - 12010 - - type: AtmosDevice - joinedGrid: 30 - uid: 21791 components: - type: Transform @@ -8118,8 +8169,6 @@ entities: - 21792 - 11985 - 11981 - - type: AtmosDevice - joinedGrid: 30 - uid: 21796 components: - type: Transform @@ -8136,8 +8185,6 @@ entities: - 21794 - 11218 - 11217 - - type: AtmosDevice - joinedGrid: 30 - uid: 21797 components: - type: Transform @@ -8170,8 +8217,6 @@ entities: - 3407 - 3409 - 3410 - - type: AtmosDevice - joinedGrid: 30 - uid: 21801 components: - type: Transform @@ -8187,69 +8232,10 @@ entities: - 6646 - 994 - 21803 - - 6785 - - 6786 - 6787 - 6788 - 7339 - 7340 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 30 - - type: DeviceList - devices: - - 6648 - - 6858 - - 6859 - - 6860 - - 21804 - - 7371 - - 7372 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 30 - - type: DeviceList - devices: - - 6648 - - 994 - - 6646 - - 21809 - - 7377 - - 7373 - - 7378 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 30 - - type: DeviceList - devices: - - 6858 - - 6859 - - 6860 - - 8326 - - 8325 - - 8324 - - 6936 - - 6937 - - 21812 - - 7387 - - 7381 - - type: AtmosDevice - joinedGrid: 30 - uid: 21814 components: - type: Transform @@ -8260,112 +8246,6 @@ entities: - 21813 - 8223 - 8224 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-15.5 - parent: 30 - - type: DeviceList - devices: - - 6934 - - 6935 - - 6952 - - 21820 - - 7603 - - 7609 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-18.5 - parent: 30 - - type: DeviceList - devices: - - 21823 - - 7579 - - 7578 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 30 - - type: DeviceList - devices: - - 8324 - - 8325 - - 8326 - - 6952 - - 21825 - - 7589 - - 7588 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21826 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 30 - - type: DeviceList - devices: - - 7569 - - 21827 - - 7556 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 30 - - type: DeviceList - devices: - - 7568 - - 7555 - - 21829 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21830 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 30 - - type: DeviceList - devices: - - 7511 - - 7513 - - 7514 - - 7504 - - 7505 - - 7515 - - 7516 - - 7204 - - 21831 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 30 - - type: DeviceList - devices: - - 6930 - - 6933 - - 21834 - - 7465 - - 7464 - - type: AtmosDevice - joinedGrid: 30 - uid: 21835 components: - type: Transform @@ -8376,8 +8256,6 @@ entities: - 6911 - 21836 - 6900 - - type: AtmosDevice - joinedGrid: 30 - uid: 21840 components: - type: Transform @@ -8389,8 +8267,6 @@ entities: - 21839 - 18730 - 18732 - - type: AtmosDevice - joinedGrid: 30 - uid: 21841 components: - type: Transform @@ -8404,8 +8280,6 @@ entities: - 18758 - 18759 - 21843 - - type: AtmosDevice - joinedGrid: 30 - uid: 21844 components: - type: Transform @@ -8417,8 +8291,6 @@ entities: - 18770 - 18769 - 21845 - - type: AtmosDevice - joinedGrid: 30 - uid: 21846 components: - type: Transform @@ -8430,8 +8302,6 @@ entities: - 18519 - 18662 - 21847 - - type: AtmosDevice - joinedGrid: 30 - uid: 21849 components: - type: Transform @@ -8442,8 +8312,6 @@ entities: - 18655 - 18520 - 21848 - - type: AtmosDevice - joinedGrid: 30 - uid: 21850 components: - type: Transform @@ -8457,8 +8325,6 @@ entities: - 21851 - 18524 - 18629 - - type: AtmosDevice - joinedGrid: 30 - uid: 21855 components: - type: Transform @@ -8472,8 +8338,6 @@ entities: - 21854 - 20351 - 20352 - - type: AtmosDevice - joinedGrid: 30 - uid: 21856 components: - type: Transform @@ -8487,8 +8351,6 @@ entities: - 20348 - 18451 - 18450 - - type: AtmosDevice - joinedGrid: 30 - uid: 21863 components: - type: Transform @@ -8504,8 +8366,6 @@ entities: - 3147 - 3136 - 3135 - - type: AtmosDevice - joinedGrid: 30 - uid: 21868 components: - type: Transform @@ -8525,8 +8385,6 @@ entities: - 3100 - 3111 - 3112 - - type: AtmosDevice - joinedGrid: 30 - uid: 21872 components: - type: Transform @@ -8545,8 +8403,6 @@ entities: - 3267 - 3253 - 3254 - - type: AtmosDevice - joinedGrid: 30 - uid: 21874 components: - type: Transform @@ -8567,8 +8423,6 @@ entities: - 1102 - 3069 - 3068 - - type: AtmosDevice - joinedGrid: 30 - uid: 21878 components: - type: Transform @@ -8584,8 +8438,6 @@ entities: - 3323 - 3318 - 3324 - - type: AtmosDevice - joinedGrid: 30 - uid: 21879 components: - type: Transform @@ -8606,8 +8458,6 @@ entities: - 3327 - 3326 - 3325 - - type: AtmosDevice - joinedGrid: 30 - uid: 21883 components: - type: Transform @@ -8628,8 +8478,6 @@ entities: - 21882 - 3067 - 3066 - - type: AtmosDevice - joinedGrid: 30 - uid: 21886 components: - type: Transform @@ -8650,8 +8498,6 @@ entities: - 21885 - 3065 - 3064 - - type: AtmosDevice - joinedGrid: 30 - uid: 21888 components: - type: Transform @@ -8674,8 +8520,6 @@ entities: - 2452 - 2454 - 2453 - - type: AtmosDevice - joinedGrid: 30 - uid: 21897 components: - type: Transform @@ -8689,8 +8533,6 @@ entities: - 21896 - 2493 - 2492 - - type: AtmosDevice - joinedGrid: 30 - uid: 21899 components: - type: Transform @@ -8702,8 +8544,6 @@ entities: - 21900 - 2490 - 2491 - - type: AtmosDevice - joinedGrid: 30 - uid: 21901 components: - type: Transform @@ -8714,8 +8554,6 @@ entities: - 21902 - 2483 - 2482 - - type: AtmosDevice - joinedGrid: 30 - uid: 21903 components: - type: Transform @@ -8737,8 +8575,6 @@ entities: - 21895 - 2523 - 2525 - - type: AtmosDevice - joinedGrid: 30 - uid: 21906 components: - type: Transform @@ -8752,8 +8588,6 @@ entities: - 1443 - 2545 - 2544 - - type: AtmosDevice - joinedGrid: 30 - uid: 21913 components: - type: Transform @@ -8773,8 +8607,6 @@ entities: - 2670 - 2675 - 2676 - - type: AtmosDevice - joinedGrid: 30 - uid: 21917 components: - type: Transform @@ -8791,8 +8623,6 @@ entities: - 2595 - 2526 - 2524 - - type: AtmosDevice - joinedGrid: 30 - uid: 21921 components: - type: Transform @@ -8803,8 +8633,6 @@ entities: - 2592 - 21920 - 2593 - - type: AtmosDevice - joinedGrid: 30 - uid: 21922 components: - type: Transform @@ -8816,8 +8644,6 @@ entities: - 21923 - 2573 - 2574 - - type: AtmosDevice - joinedGrid: 30 - uid: 21924 components: - type: Transform @@ -8829,8 +8655,6 @@ entities: - 3041 - 3042 - 21925 - - type: AtmosDevice - joinedGrid: 30 - uid: 21928 components: - type: Transform @@ -8847,8 +8671,6 @@ entities: - 6104 - 6109 - 6108 - - type: AtmosDevice - joinedGrid: 30 - uid: 21930 components: - type: Transform @@ -8867,8 +8689,6 @@ entities: - 6092 - 6113 - 6112 - - type: AtmosDevice - joinedGrid: 30 - uid: 21932 components: - type: Transform @@ -8880,8 +8700,6 @@ entities: - 6122 - 21933 - 6123 - - type: AtmosDevice - joinedGrid: 30 - uid: 21939 components: - type: Transform @@ -8893,8 +8711,6 @@ entities: - 6222 - 21940 - 21674 - - type: AtmosDevice - joinedGrid: 30 - uid: 21941 components: - type: Transform @@ -8910,8 +8726,6 @@ entities: - 5650 - 6204 - 6205 - - type: AtmosDevice - joinedGrid: 30 - uid: 21944 components: - type: Transform @@ -8923,8 +8737,6 @@ entities: - 21945 - 6213 - 6214 - - type: AtmosDevice - joinedGrid: 30 - uid: 21946 components: - type: Transform @@ -8939,8 +8751,6 @@ entities: - 6265 - 6268 - 6245 - - type: AtmosDevice - joinedGrid: 30 - uid: 22028 components: - type: Transform @@ -8954,8 +8764,6 @@ entities: - 6538 - 12605 - 12606 - - type: AtmosDevice - joinedGrid: 30 - uid: 22030 components: - type: Transform @@ -8973,8 +8781,6 @@ entities: - 12539 - 12538 - 11275 - - type: AtmosDevice - joinedGrid: 30 - uid: 22035 components: - type: Transform @@ -8989,8 +8795,6 @@ entities: - 22036 - 12490 - 12491 - - type: AtmosDevice - joinedGrid: 30 - uid: 22038 components: - type: Transform @@ -9013,8 +8817,6 @@ entities: - 22039 - 12537 - 12536 - - type: AtmosDevice - joinedGrid: 30 - uid: 22043 components: - type: Transform @@ -9025,8 +8827,6 @@ entities: - 22042 - 13799 - 13788 - - type: AtmosDevice - joinedGrid: 30 - uid: 22045 components: - type: Transform @@ -9037,8 +8837,6 @@ entities: - 21553 - 13593 - 22044 - - type: AtmosDevice - joinedGrid: 30 - uid: 22047 components: - type: Transform @@ -9050,8 +8848,6 @@ entities: - 22046 - 21549 - 21545 - - type: AtmosDevice - joinedGrid: 30 - uid: 22048 components: - type: Transform @@ -9070,8 +8866,6 @@ entities: - 20954 - 13084 - 13004 - - type: AtmosDevice - joinedGrid: 30 - uid: 22052 components: - type: Transform @@ -9085,8 +8879,6 @@ entities: - 22053 - 12959 - 12813 - - type: AtmosDevice - joinedGrid: 30 - uid: 22054 components: - type: Transform @@ -9107,8 +8899,6 @@ entities: - 13002 - 13086 - 13003 - - type: AtmosDevice - joinedGrid: 30 - uid: 22057 components: - type: Transform @@ -9119,8 +8909,6 @@ entities: - 22058 - 13360 - 12824 - - type: AtmosDevice - joinedGrid: 30 - uid: 22062 components: - type: Transform @@ -9130,8 +8918,6 @@ entities: - type: DeviceList devices: - 22063 - - type: AtmosDevice - joinedGrid: 30 - uid: 22065 components: - type: Transform @@ -9151,8 +8937,6 @@ entities: - 22066 - 11223 - 11224 - - type: AtmosDevice - joinedGrid: 30 - uid: 22067 components: - type: Transform @@ -9170,8 +8954,6 @@ entities: - 12620 - 13335 - 13336 - - type: AtmosDevice - joinedGrid: 30 - uid: 22070 components: - type: Transform @@ -9183,8 +8965,6 @@ entities: - 22071 - 13006 - 9161 - - type: AtmosDevice - joinedGrid: 30 - uid: 22073 components: - type: Transform @@ -9197,8 +8977,6 @@ entities: - 22072 - 3357 - 3358 - - type: AtmosDevice - joinedGrid: 30 - uid: 22075 components: - type: Transform @@ -9216,8 +8994,6 @@ entities: - 22077 - 3400 - 3401 - - type: AtmosDevice - joinedGrid: 30 - uid: 22078 components: - type: Transform @@ -9228,8 +9004,6 @@ entities: - 3482 - 22079 - 3479 - - type: AtmosDevice - joinedGrid: 30 - uid: 22081 components: - type: Transform @@ -9248,8 +9022,6 @@ entities: - 651 - 3485 - 3486 - - type: AtmosDevice - joinedGrid: 30 - uid: 22083 components: - type: Transform @@ -9261,8 +9033,6 @@ entities: - 22084 - 3484 - 3481 - - type: AtmosDevice - joinedGrid: 30 - proto: AirCanister entities: - uid: 2087 @@ -9270,71 +9040,51 @@ entities: - type: Transform pos: -7.5,64.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 11422 components: - type: Transform pos: 1.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12135 components: - type: Transform pos: 22.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15156 components: - type: Transform pos: 16.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15645 components: - type: Transform pos: 22.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 16895 components: - type: Transform pos: -44.5,25.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18782 components: - type: Transform pos: -66.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18783 components: - type: Transform pos: -65.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18784 components: - type: Transform pos: -64.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 22767 components: - type: Transform pos: -27.5,-63.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Airlock entities: - uid: 752 @@ -9650,13 +9400,6 @@ entities: - type: Transform pos: 14.5,1.5 parent: 30 -- proto: AirlockCentralCommandV2Locked - entities: - - uid: 19511 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 30 - proto: AirlockChapelGlassLocked entities: - uid: 17489 @@ -9681,12 +9424,12 @@ entities: - type: Transform pos: -75.5,-42.5 parent: 30 -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 6667 + - uid: 8828 components: - type: Transform - pos: -10.5,-9.5 + pos: -10.5,-10.5 parent: 30 - proto: AirlockChiefEngineerGlassLocked entities: @@ -9699,22 +9442,17 @@ entities: parent: 30 - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 6825 + - uid: 7383 components: - type: Transform - pos: -16.5,-14.5 + pos: -31.5,-17.5 parent: 30 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 6800 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 30 - - uid: 9157 + - uid: 7384 components: - type: Transform - pos: -10.5,-16.5 + pos: -33.5,-20.5 parent: 30 - proto: AirlockCommandGlassLocked entities: @@ -9886,11 +9624,6 @@ entities: - type: Transform pos: -36.5,-2.5 parent: 30 - - uid: 922 - components: - - type: Transform - pos: -43.5,-8.5 - parent: 30 - uid: 1339 components: - type: Transform @@ -9921,6 +9654,11 @@ entities: - type: Transform pos: -0.5,-13.5 parent: 30 + - uid: 8804 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 30 - uid: 9160 components: - type: Transform @@ -10647,6 +10385,16 @@ entities: - type: Transform pos: 28.5,37.5 parent: 30 + - uid: 7135 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 30 + - uid: 7964 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 30 - uid: 8347 components: - type: Transform @@ -10822,6 +10570,11 @@ entities: - type: Transform pos: -74.5,-54.5 parent: 30 + - uid: 19511 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 30 - uid: 20962 components: - type: Transform @@ -10832,6 +10585,13 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 30 +- proto: AirlockHatchMaintenance + entities: + - uid: 9957 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 30 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 766 @@ -10947,13 +10707,6 @@ entities: - type: Transform pos: 32.5,1.5 parent: 30 -- proto: AirlockMaintCentralCommandLocked - entities: - - uid: 79 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 30 - proto: AirlockMaintChapelLocked entities: - uid: 17596 @@ -10963,7 +10716,7 @@ entities: parent: 30 - proto: AirlockMaintChemLocked entities: - - uid: 6675 + - uid: 926 components: - type: Transform pos: -8.5,-13.5 @@ -11045,6 +10798,11 @@ entities: parent: 30 - proto: AirlockMaintLocked entities: + - uid: 79 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 30 - uid: 285 components: - type: Transform @@ -11126,6 +10884,11 @@ entities: - type: Transform pos: -4.5,-24.5 parent: 30 + - uid: 9716 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 30 - uid: 11355 components: - type: Transform @@ -11248,15 +11011,25 @@ entities: parent: 30 - proto: AirlockMaintMedLocked entities: - - uid: 7045 + - uid: 7067 components: - type: Transform - pos: -6.5,-20.5 + pos: -35.5,-11.5 parent: 30 - - uid: 7113 + - uid: 7879 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 30 + - uid: 7998 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 30 + - uid: 8002 components: - type: Transform - pos: -18.5,-24.5 + pos: -17.5,-23.5 parent: 30 - proto: AirlockMaintRnDLocked entities: @@ -11300,60 +11073,82 @@ entities: parent: 30 - proto: AirlockMedicalGlassLocked entities: - - uid: 6780 + - uid: 988 components: - type: Transform - pos: -16.5,-5.5 + pos: -11.5,-6.5 parent: 30 - - uid: 6798 + - uid: 999 components: - type: Transform - pos: -12.5,-7.5 + pos: -12.5,-6.5 parent: 30 - - uid: 6799 + - uid: 1344 components: - type: Transform - pos: -11.5,-7.5 + pos: -29.5,-14.5 parent: 30 - - uid: 6985 + - uid: 3161 components: - - type: MetaData - name: Medical Storage - type: Transform - pos: -20.5,-18.5 + pos: -19.5,-20.5 parent: 30 - - uid: 6986 + - uid: 3188 components: - - type: MetaData - name: Medical Storage - type: Transform - pos: -20.5,-17.5 + pos: -21.5,-13.5 parent: 30 - - uid: 7054 + - uid: 7193 components: - type: Transform - pos: -16.5,-20.5 + rot: -1.5707963267948966 rad + pos: -26.5,-9.5 parent: 30 - - uid: 7133 + - uid: 7211 components: - - type: MetaData - name: Psych Ward RC Desk - type: Transform - pos: -30.5,-6.5 + pos: -13.5,-13.5 parent: 30 - - uid: 10025 + - uid: 7402 components: - type: Transform - pos: -20.5,-22.5 + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 30 + - uid: 7417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 30 + - uid: 7442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 30 + - uid: 7888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 30 + - uid: 8022 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 30 + - uid: 8071 + components: + - type: Transform + pos: -32.5,-6.5 parent: 30 - proto: AirlockMedicalLocked entities: - - uid: 6878 + - uid: 6780 components: - - type: MetaData - name: Morgue - type: Transform - pos: -22.5,0.5 + pos: -16.5,-5.5 parent: 30 - uid: 6879 components: @@ -11383,33 +11178,42 @@ entities: - type: Transform pos: -32.5,-1.5 parent: 30 - - uid: 7055 + - uid: 7092 components: - type: Transform - pos: -12.5,-20.5 + pos: -23.5,-16.5 parent: 30 - - uid: 7268 + - uid: 7114 components: - - type: MetaData - name: Psych Ward Milieu - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-10.5 + pos: -27.5,-16.5 parent: 30 - - uid: 7924 + - uid: 7133 components: - - type: MetaData - name: Psych Ward RC Desk - type: Transform - pos: -34.5,-3.5 + pos: -27.5,-22.5 parent: 30 - - uid: 9846 + - uid: 7842 components: - - type: MetaData - name: Psych Ward Milieu - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-10.5 + pos: -19.5,-15.5 + parent: 30 + - uid: 8006 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 30 + - uid: 9849 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 30 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 6878 + components: + - type: Transform + pos: -22.5,0.5 parent: 30 - proto: AirlockQuartermasterLocked entities: @@ -11532,11 +11336,6 @@ entities: - DoorStatus: DoorBolt - proto: AirlockSecurityGlassLocked entities: - - uid: 325 - components: - - type: Transform - pos: -18.5,0.5 - parent: 30 - uid: 1696 components: - type: Transform @@ -11634,6 +11433,11 @@ entities: - type: Transform pos: -37.5,10.5 parent: 30 + - uid: 1342 + components: + - type: Transform + pos: -18.5,0.5 + parent: 30 - uid: 1782 components: - type: Transform @@ -11687,43 +11491,45 @@ entities: - type: Transform pos: -31.5,24.5 parent: 30 -- proto: AirlockVirologyGlassLocked +- proto: AirSensor entities: - - uid: 8275 + - uid: 7116 components: - type: Transform - pos: -31.5,-21.5 + pos: -21.5,-15.5 parent: 30 - - uid: 8277 + - type: DeviceNetwork + deviceLists: + - 9712 + - 9671 + - uid: 7121 components: - type: Transform - pos: -33.5,-21.5 + pos: -13.5,-10.5 parent: 30 -- proto: AirlockVirologyLocked - entities: - - uid: 7191 + - uid: 7132 components: - type: Transform - pos: -28.5,-17.5 + pos: -21.5,-9.5 parent: 30 - - uid: 7192 + - type: DeviceNetwork + deviceLists: + - 8249 + - 8267 + - uid: 7134 components: - - type: MetaData - name: Virology - type: Transform - pos: -28.5,-13.5 + pos: -34.5,-4.5 parent: 30 -- proto: AirSensor - entities: - - uid: 7738 + - uid: 8019 components: - type: Transform - pos: 9.5,-14.5 + pos: -29.5,-12.5 parent: 30 - type: DeviceNetwork deviceLists: - - 8354 - - 19567 + - 8262 + - 8254 - uid: 9952 components: - type: Transform @@ -11859,66 +11665,16 @@ entities: - type: Transform pos: -5.5,-2.5 parent: 30 - - uid: 21804 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 30 - uid: 21809 components: - type: Transform pos: -8.5,-8.5 parent: 30 - - uid: 21812 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 30 - uid: 21813 components: - type: Transform pos: -24.5,-1.5 parent: 30 - - uid: 21815 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 30 - - uid: 21820 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 30 - - uid: 21823 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 30 - - uid: 21825 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 30 - - uid: 21827 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 30 - - uid: 21829 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 30 - - uid: 21831 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 30 - - uid: 21834 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 30 - uid: 21836 components: - type: Transform @@ -12274,12 +12030,6 @@ entities: parent: 30 - proto: APCBasic entities: - - uid: 351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 30 - uid: 406 components: - type: MetaData @@ -12445,27 +12195,59 @@ entities: - type: Transform pos: 19.5,28.5 parent: 30 - - uid: 7285 + - uid: 6993 components: - type: MetaData - name: Virology APC + name: Morgue APC - type: Transform - pos: -27.5,-17.5 + rot: 3.141592653589793 rad + pos: -24.5,-6.5 parent: 30 - - uid: 7610 + - uid: 7079 components: - type: MetaData - name: Medical Desk APC + name: Medical Maint APC - type: Transform - pos: -15.5,-3.5 + rot: 1.5707963267948966 rad + pos: -39.5,-11.5 parent: 30 - - uid: 7611 + - uid: 7122 components: - type: MetaData - name: Medical South APC + name: Medical West APC - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-20.5 + pos: -36.5,-4.5 + parent: 30 + - uid: 7278 + components: + - type: MetaData + name: Medical Treatment APC + - type: Transform + pos: -21.5,-6.5 + parent: 30 + - uid: 7433 + components: + - type: MetaData + name: Surgery Room 1 APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 30 + - uid: 7600 + components: + - type: MetaData + name: Cryotubes APC + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-14.5 + parent: 30 + - uid: 7610 + components: + - type: MetaData + name: Medical Desk APC + - type: Transform + pos: -15.5,-3.5 parent: 30 - uid: 7614 components: @@ -12473,12 +12255,51 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 30 - - uid: 8072 + - uid: 7824 components: - type: MetaData - name: Surgery APC + name: Medical Foyer APC - type: Transform - pos: -9.5,-18.5 + pos: -13.5,-7.5 + parent: 30 + - uid: 7873 + components: + - type: MetaData + name: Medical Storage APC + - type: Transform + pos: -15.5,-17.5 + parent: 30 + - uid: 8011 + components: + - type: MetaData + name: Medical Storage Hall APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 30 + - uid: 8056 + components: + - type: MetaData + name: Surgical Hall APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 30 + - uid: 8087 + components: + - type: MetaData + name: Surgery Room 2 APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 30 + - uid: 8363 + components: + - type: MetaData + name: Main Hall South East APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 parent: 30 - uid: 9130 components: @@ -12514,13 +12335,13 @@ entities: parent: 30 - type: Battery startingCharge: 12000 - - uid: 9802 + - uid: 9628 components: - type: MetaData - name: CMO Office APC + name: Psych APC - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-15.5 + pos: -26.5,-2.5 parent: 30 - uid: 10633 components: @@ -12640,13 +12461,6 @@ entities: - type: Transform pos: -76.5,-42.5 parent: 30 - - uid: 19800 - components: - - type: MetaData - name: Medical Psych WardAPC - - type: Transform - pos: -35.5,-3.5 - parent: 30 - uid: 20045 components: - type: Transform @@ -13783,6 +13597,13 @@ entities: - type: Transform pos: -27.5,-32.5 parent: 30 +- proto: BarricadeBlock + entities: + - uid: 9910 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 30 - proto: BarSign entities: - uid: 576 @@ -13820,17 +13641,23 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9809 components: - type: Transform pos: 15.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Beaker entities: + - uid: 8000 + components: + - type: Transform + pos: -37.391556,-14.216469 + parent: 30 + - uid: 9835 + components: + - type: Transform + pos: -37.62593,-14.435219 + parent: 30 - uid: 10424 components: - type: Transform @@ -13873,11 +13700,6 @@ entities: - type: Transform pos: -40.5,39.5 parent: 30 - - uid: 1929 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 30 - uid: 2325 components: - type: Transform @@ -13888,26 +13710,6 @@ entities: - type: Transform pos: -45.5,61.5 parent: 30 - - uid: 3161 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 30 - - uid: 3162 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 30 - - uid: 3167 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 30 - - uid: 3175 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 30 - uid: 4985 components: - type: Transform @@ -13933,25 +13735,15 @@ entities: - type: Transform pos: 16.5,34.5 parent: 30 - - uid: 6868 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 30 - - uid: 6912 - components: - - type: Transform - pos: -41.5,-14.5 - parent: 30 - - uid: 7081 + - uid: 6940 components: - type: Transform - pos: -13.5,-21.5 + pos: -33.5,-23.5 parent: 30 - - uid: 7082 + - uid: 7267 components: - type: Transform - pos: -13.5,-22.5 + pos: -32.5,-13.5 parent: 30 - uid: 11628 components: @@ -14023,19 +13815,17 @@ entities: - type: Transform pos: -27.5,-46.5 parent: 30 -- proto: BedsheetBlue - entities: - - uid: 1768 + - uid: 21654 components: - type: Transform - pos: -48.5,39.5 + pos: -50.5,50.5 parent: 30 -- proto: BedsheetBrigmedic +- proto: BedsheetBlue entities: - - uid: 20627 + - uid: 1768 components: - type: Transform - pos: -50.5,50.5 + pos: -48.5,39.5 parent: 30 - proto: BedsheetCaptain entities: @@ -14054,17 +13844,12 @@ entities: canCollide: False - proto: BedsheetCMO entities: - - uid: 7421 + - uid: 7166 components: - type: Transform - pos: -7.5,-16.5 + rot: 1.5707963267948966 rad + pos: -33.5,-23.5 parent: 30 - - uid: 21256 - components: - - type: Transform - parent: 6839 - - type: Physics - canCollide: False - proto: BedsheetCult entities: - uid: 17656 @@ -14079,16 +13864,6 @@ entities: - type: Transform pos: -44.5,39.5 parent: 30 - - uid: 7144 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 30 - - uid: 7189 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 30 - proto: BedsheetHOP entities: - uid: 5713 @@ -14098,25 +13873,31 @@ entities: parent: 30 - proto: BedsheetMedical entities: - - uid: 6954 + - uid: 7502 components: - type: Transform - pos: -21.5,-14.5 + pos: -16.5,-14.5 parent: 30 - - uid: 6959 + - uid: 7511 components: - type: Transform - pos: -23.5,-14.5 + rot: -1.5707963267948966 rad + pos: -24.5,-13.5 parent: 30 - - uid: 8274 + - uid: 7666 components: - type: Transform - pos: -30.5,-22.5 + pos: -21.5,-7.5 parent: 30 - - uid: 8279 + - uid: 7830 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 30 + - uid: 21653 components: - type: Transform - pos: -34.5,-22.5 + pos: -50.5,50.5 parent: 30 - proto: BedsheetOrange entities: @@ -14259,6 +14040,22 @@ entities: - type: DeviceLinkSink links: - 20398 + - uid: 7562 + components: + - type: Transform + pos: -42.5,16.5 + parent: 30 + - type: DeviceLinkSink + links: + - 7920 + - uid: 7563 + components: + - type: Transform + pos: -43.5,16.5 + parent: 30 + - type: DeviceLinkSink + links: + - 7920 - uid: 9068 components: - type: Transform @@ -14592,22 +14389,20 @@ entities: - 20432 - proto: BlockGameArcade entities: - - uid: 901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 30 - uid: 1281 components: - type: Transform pos: -49.5,25.5 parent: 30 + - type: SpamEmitSound + enabled: False - uid: 2384 components: - type: Transform pos: -44.5,67.5 parent: 30 + - type: SpamEmitSound + enabled: False - proto: BookAtmosAirAlarms entities: - uid: 22308 @@ -14643,15 +14438,18 @@ entities: - type: Transform pos: -15.506373,7.7216425 parent: 30 -- proto: BookEscalation +- proto: BookRandomStory entities: + - uid: 21487 + components: + - type: Transform + pos: 8.515235,-13.437349 + parent: 30 - uid: 22306 components: - type: Transform pos: -54.57496,-63.325558 parent: 30 -- proto: BookEscalationSecurity - entities: - uid: 22307 components: - type: Transform @@ -14713,15 +14511,10 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 30 - - uid: 10016 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 30 - - uid: 10028 + - uid: 8370 components: - type: Transform - pos: -39.5,-4.5 + pos: 7.5,-13.5 parent: 30 - uid: 14970 components: @@ -14908,10 +14701,15 @@ entities: unspawnedCount: 12 - proto: BoxBodyBag entities: - - uid: 20624 + - uid: 2245 + components: + - type: Transform + pos: -52.567253,52.64174 + parent: 30 + - uid: 7499 components: - type: Transform - pos: -52.485344,53.62911 + pos: -36.50093,-14.325844 parent: 30 - uid: 21251 components: @@ -14959,6 +14757,11 @@ entities: - type: Transform pos: -49.812614,30.586998 parent: 30 + - uid: 7254 + components: + - type: Transform + pos: -33.461906,-16.03321 + parent: 30 - uid: 21541 components: - type: Transform @@ -15020,10 +14823,10 @@ entities: - type: Transform pos: -13.50902,-4.3986816 parent: 30 - - uid: 6836 + - uid: 7356 components: - type: Transform - pos: -13.484441,-14.406982 + pos: -33.63378,-15.892586 parent: 30 - uid: 11574 components: @@ -15083,15 +14886,10 @@ entities: parent: 30 - proto: BoxLatexGloves entities: - - uid: 7023 - components: - - type: Transform - pos: -21.488184,-19.374744 - parent: 30 - - uid: 11451 + - uid: 7595 components: - type: Transform - pos: -28.598364,-24.14232 + pos: -15.496401,-18.280874 parent: 30 - proto: BoxLightbulb entities: @@ -15117,13 +14915,6 @@ entities: - type: Transform pos: -28.45044,-43.274567 parent: 30 -- proto: BoxMouthSwab - entities: - - uid: 11453 - components: - - type: Transform - pos: -25.504614,-22.282946 - parent: 30 - proto: BoxPillCanister entities: - uid: 6730 @@ -15131,6 +14922,11 @@ entities: - type: Transform pos: -4.259937,-10.014734 parent: 30 + - uid: 7575 + components: + - type: Transform + pos: -15.855776,-18.39025 + parent: 30 - proto: BoxShotgunIncendiary entities: - uid: 1953 @@ -15142,15 +14938,10 @@ entities: unspawnedCount: 12 - proto: BoxSterileMask entities: - - uid: 7022 - components: - - type: Transform - pos: -21.456934,-19.32787 - parent: 30 - - uid: 11452 + - uid: 7201 components: - type: Transform - pos: -28.442114,-24.45482 + pos: -15.371401,-18.39025 parent: 30 - proto: BoxSyringe entities: @@ -15159,6 +14950,16 @@ entities: - type: Transform pos: -7.4798965,-6.328568 parent: 30 + - uid: 7082 + components: + - type: Transform + pos: -36.422806,-12.653969 + parent: 30 + - uid: 7833 + components: + - type: Transform + pos: -15.996401,-18.280874 + parent: 30 - proto: BoxZiptie entities: - uid: 2095 @@ -15233,6 +15034,13 @@ entities: - Start: Close - Timer: AutoClose - Timer: Open +- proto: Brutepack + entities: + - uid: 7890 + components: + - type: Transform + pos: -17.579384,-12.438042 + parent: 30 - proto: Bucket entities: - uid: 318 @@ -15339,10 +15147,10 @@ entities: - type: Transform pos: -59.5,5.5 parent: 30 - - uid: 988 + - uid: 957 components: - type: Transform - pos: -39.5,-13.5 + pos: -34.5,-6.5 parent: 30 - uid: 1043 components: @@ -15399,6 +15207,16 @@ entities: - type: Transform pos: -40.5,59.5 parent: 30 + - uid: 1951 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 30 + - uid: 1995 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 30 - uid: 2047 components: - type: Transform @@ -18174,6 +17992,11 @@ entities: - type: Transform pos: 19.5,-22.5 parent: 30 + - uid: 4400 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 30 - uid: 4569 components: - type: Transform @@ -19659,6 +19482,11 @@ entities: - type: Transform pos: 9.5,35.5 parent: 30 + - uid: 5735 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 30 - uid: 5910 components: - type: Transform @@ -20534,180 +20362,510 @@ entities: - type: Transform pos: -5.5,-55.5 parent: 30 + - uid: 6648 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 30 + - uid: 6668 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 30 - uid: 6715 components: - type: Transform pos: 33.5,45.5 parent: 30 + - uid: 6801 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 30 + - uid: 6803 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 30 + - uid: 6804 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 30 + - uid: 6806 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 30 + - uid: 6807 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 30 + - uid: 6823 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 30 + - uid: 6824 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 30 + - uid: 6826 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 30 + - uid: 6827 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 30 + - uid: 6828 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 30 + - uid: 6829 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 30 + - uid: 6830 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 30 + - uid: 6831 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 30 + - uid: 6832 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 30 + - uid: 6833 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 30 + - uid: 6836 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 30 + - uid: 6837 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 30 + - uid: 6838 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 30 + - uid: 6841 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 30 + - uid: 6842 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 30 + - uid: 6843 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 30 + - uid: 6872 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 30 + - uid: 6881 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 30 + - uid: 6883 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 30 + - uid: 6884 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 30 + - uid: 6885 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 30 + - uid: 6891 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 30 + - uid: 6924 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 30 + - uid: 6926 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 30 + - uid: 6927 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 30 + - uid: 6928 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 30 + - uid: 6958 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 30 + - uid: 6959 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 30 + - uid: 6960 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 30 + - uid: 6994 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 30 + - uid: 6995 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 30 + - uid: 7009 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 30 + - uid: 7010 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 30 - uid: 7016 components: - type: Transform - pos: -41.5,-10.5 + pos: -22.5,-10.5 parent: 30 - - uid: 7225 + - uid: 7020 components: - type: Transform - pos: -10.5,-33.5 + pos: -33.5,-18.5 parent: 30 - - uid: 7236 + - uid: 7021 components: - type: Transform - pos: -36.5,-6.5 + pos: -33.5,-19.5 parent: 30 - - uid: 7242 + - uid: 7022 components: - type: Transform - pos: -32.5,-5.5 + pos: -33.5,-20.5 parent: 30 - - uid: 7243 + - uid: 7023 components: - type: Transform - pos: -38.5,-6.5 + pos: -33.5,-21.5 parent: 30 - - uid: 7248 + - uid: 7024 components: - type: Transform - pos: -35.5,-7.5 + pos: -30.5,-17.5 parent: 30 - - uid: 7249 + - uid: 7025 components: - type: Transform - pos: -35.5,-9.5 + pos: -31.5,-17.5 parent: 30 - - uid: 7250 + - uid: 7026 components: - type: Transform - pos: -35.5,-8.5 + pos: -32.5,-17.5 parent: 30 - - uid: 7251 + - uid: 7027 components: - type: Transform - pos: -37.5,-6.5 + pos: -33.5,-17.5 parent: 30 - - uid: 7252 + - uid: 7030 components: - type: Transform - pos: -38.5,-5.5 + pos: -33.5,-22.5 parent: 30 - - uid: 7257 + - uid: 7057 components: - type: Transform - pos: -36.5,-10.5 + pos: -25.5,-10.5 parent: 30 - - uid: 7259 + - uid: 7072 components: - type: Transform - pos: -36.5,-13.5 + pos: -23.5,-10.5 parent: 30 - - uid: 7264 + - uid: 7075 components: - type: Transform - pos: -35.5,-10.5 + pos: -24.5,-10.5 parent: 30 - - uid: 7265 + - uid: 7102 components: - type: Transform - pos: -35.5,-11.5 + pos: -29.5,-21.5 parent: 30 - - uid: 7271 + - uid: 7138 components: - type: Transform - pos: -41.5,-13.5 + pos: -25.5,-22.5 parent: 30 - - uid: 7276 + - uid: 7209 components: - type: Transform - pos: -35.5,-12.5 + pos: -29.5,-23.5 parent: 30 - - uid: 7277 + - uid: 7225 components: - type: Transform - pos: -35.5,-13.5 + pos: -10.5,-33.5 parent: 30 - - uid: 7278 + - uid: 7418 components: - type: Transform - pos: -40.5,-13.5 + pos: -13.5,-7.5 parent: 30 - - uid: 7296 + - uid: 7419 components: - type: Transform - pos: -39.5,-10.5 + pos: -13.5,-8.5 parent: 30 - - uid: 7471 + - uid: 7434 components: - type: Transform - pos: -32.5,-10.5 + pos: -27.5,-15.5 + parent: 30 + - uid: 7462 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 30 + - uid: 7463 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 30 + - uid: 7465 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 30 + - uid: 7466 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 30 + - uid: 7473 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 30 + - uid: 7474 + components: + - type: Transform + pos: -12.5,-10.5 parent: 30 - uid: 7477 components: - type: Transform - pos: -38.5,-10.5 + pos: -15.5,-10.5 + parent: 30 + - uid: 7478 + components: + - type: Transform + pos: -11.5,-10.5 parent: 30 - uid: 7479 components: - type: Transform pos: -39.5,-27.5 parent: 30 - - uid: 7482 + - uid: 7485 components: - type: Transform - pos: -32.5,-8.5 + pos: -21.5,-10.5 + parent: 30 + - uid: 7486 + components: + - type: Transform + pos: -18.5,-10.5 parent: 30 - uid: 7487 components: - type: Transform pos: -40.5,-16.5 parent: 30 - - uid: 7518 + - uid: 7490 components: - type: Transform - pos: -27.5,-19.5 + pos: -21.5,-8.5 + parent: 30 + - uid: 7494 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 30 + - uid: 7496 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 30 + - uid: 7497 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 30 + - uid: 7515 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 30 + - uid: 7516 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 30 + - uid: 7525 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 30 + - uid: 7527 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 30 + - uid: 7528 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 30 + - uid: 7540 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 30 + - uid: 7542 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 30 + - uid: 7544 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 30 + - uid: 7546 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 30 + - uid: 7547 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 30 + - uid: 7548 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 30 + - uid: 7553 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 30 + - uid: 7559 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 30 + - uid: 7561 + components: + - type: Transform + pos: -44.5,-16.5 parent: 30 - uid: 7587 components: - type: Transform pos: -41.5,-16.5 parent: 30 - - uid: 7659 + - uid: 7592 components: - type: Transform - pos: -38.5,-27.5 + pos: -18.5,-11.5 parent: 30 - - uid: 7660 + - uid: 7594 components: - type: Transform - pos: -38.5,-28.5 + pos: -24.5,-9.5 parent: 30 - - uid: 7662 + - uid: 7601 components: - type: Transform - pos: -40.5,-10.5 + pos: -24.5,-8.5 parent: 30 - - uid: 7663 + - uid: 7611 components: - type: Transform - pos: -44.5,-14.5 + pos: -24.5,-11.5 parent: 30 - - uid: 7749 + - uid: 7659 components: - type: Transform - pos: 9.5,-16.5 + pos: -38.5,-27.5 parent: 30 - - uid: 7752 + - uid: 7660 components: - type: Transform - pos: -29.5,-20.5 + pos: -38.5,-28.5 parent: 30 - - uid: 7753 + - uid: 7663 components: - type: Transform - pos: -28.5,-20.5 + pos: -44.5,-14.5 parent: 30 - - uid: 7892 + - uid: 7749 components: - type: Transform - pos: -35.5,-3.5 + pos: 9.5,-16.5 + parent: 30 + - uid: 7827 + components: + - type: Transform + pos: -18.5,-5.5 parent: 30 - uid: 7893 components: @@ -20722,7 +20880,7 @@ entities: - uid: 7895 components: - type: Transform - pos: -33.5,-2.5 + pos: -25.5,-16.5 parent: 30 - uid: 7896 components: @@ -20789,85 +20947,40 @@ entities: - type: Transform pos: -41.5,-8.5 parent: 30 - - uid: 7909 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 30 - - uid: 7910 + - uid: 7915 components: - type: Transform - pos: -33.5,-3.5 + pos: -34.5,-4.5 parent: 30 - - uid: 7928 + - uid: 7922 components: - type: Transform - pos: -32.5,-9.5 + pos: -33.5,-12.5 parent: 30 - - uid: 7929 + - uid: 7923 components: - type: Transform - pos: -32.5,-7.5 + pos: -28.5,-12.5 parent: 30 - uid: 7930 components: - type: Transform - pos: -33.5,-6.5 - parent: 30 - - uid: 7931 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 30 - - uid: 7932 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 30 - - uid: 7933 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 30 - - uid: 7934 - components: - - type: Transform - pos: -32.5,-6.5 + pos: -28.5,-11.5 parent: 30 - - uid: 7935 + - uid: 7944 components: - type: Transform - pos: -35.5,-4.5 + pos: -28.5,-10.5 parent: 30 - - uid: 7946 + - uid: 7945 components: - type: Transform - pos: -31.5,-6.5 + pos: -32.5,-12.5 parent: 30 - uid: 7947 components: - type: Transform - pos: -30.5,-6.5 - parent: 30 - - uid: 7948 - components: - - type: Transform - pos: -29.5,-6.5 - parent: 30 - - uid: 7949 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 30 - - uid: 7950 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 30 - - uid: 7951 - components: - - type: Transform - pos: -28.5,-5.5 + pos: -33.5,-11.5 parent: 30 - uid: 7952 components: @@ -20887,7 +21000,7 @@ entities: - uid: 7955 components: - type: Transform - pos: -28.5,-0.5 + pos: -27.5,-19.5 parent: 30 - uid: 7956 components: @@ -20899,585 +21012,60 @@ entities: - type: Transform pos: -30.5,-1.5 parent: 30 - - uid: 7958 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 30 - - uid: 7959 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 30 - - uid: 7960 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 30 - - uid: 7961 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 30 - - uid: 7962 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 30 - - uid: 7963 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 30 - - uid: 7964 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 30 - - uid: 7966 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 30 - - uid: 7967 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 30 - - uid: 7968 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 30 - - uid: 7969 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 30 - - uid: 7970 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 30 - - uid: 7971 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 30 - - uid: 7972 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 30 - - uid: 7974 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 30 - - uid: 7976 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 30 - - uid: 7977 - components: - - type: Transform - pos: -30.5,-24.5 - parent: 30 - - uid: 7978 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 30 - - uid: 7979 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 30 - - uid: 7980 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 30 - - uid: 7981 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 30 - - uid: 7982 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 30 - - uid: 7983 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 30 - - uid: 7984 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 30 - - uid: 7985 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 30 - - uid: 7986 - components: - - type: Transform - pos: -33.5,-22.5 - parent: 30 - - uid: 7987 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 30 - - uid: 7988 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 30 - - uid: 7989 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 30 - - uid: 7990 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 30 - - uid: 7991 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 30 - - uid: 7992 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 30 - uid: 7993 components: - type: Transform - pos: -34.5,-17.5 - parent: 30 - - uid: 7994 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 30 - - uid: 7995 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 30 - - uid: 7996 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 30 - - uid: 7997 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 30 - - uid: 7998 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 30 - - uid: 7999 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 30 - - uid: 8000 - components: - - type: Transform - pos: -20.5,-20.5 + pos: -37.5,-10.5 parent: 30 - uid: 8001 components: - type: Transform - pos: -19.5,-20.5 - parent: 30 - - uid: 8002 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 30 - - uid: 8003 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 30 - - uid: 8006 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 30 - - uid: 8007 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 30 - - uid: 8008 - components: - - type: Transform - pos: -12.5,-20.5 + pos: -15.5,-18.5 parent: 30 - uid: 8009 components: - type: Transform - pos: -11.5,-20.5 - parent: 30 - - uid: 8010 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 30 - - uid: 8011 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 30 - - uid: 8012 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 30 - - uid: 8013 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 30 - - uid: 8014 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 30 - - uid: 8015 - components: - - type: Transform - pos: -10.5,-22.5 + pos: -15.5,-17.5 parent: 30 - uid: 8016 components: - type: Transform - pos: -10.5,-23.5 - parent: 30 - - uid: 8017 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 30 - - uid: 8018 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 30 - - uid: 8019 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 30 - - uid: 8020 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 30 - - uid: 8021 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 30 - - uid: 8022 - components: - - type: Transform - pos: -14.5,-21.5 - parent: 30 - - uid: 8023 - components: - - type: Transform - pos: -14.5,-22.5 - parent: 30 - - uid: 8024 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 30 - - uid: 8025 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 30 - - uid: 8026 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 30 - - uid: 8027 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 30 - - uid: 8028 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 30 - - uid: 8029 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 30 - - uid: 8030 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 30 - - uid: 8031 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 30 - - uid: 8032 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 30 - - uid: 8033 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 30 - - uid: 8034 - components: - - type: Transform - pos: -18.5,-18.5 - parent: 30 - - uid: 8035 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 30 - - uid: 8036 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 30 - - uid: 8037 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 30 - - uid: 8038 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 30 - - uid: 8039 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 30 - - uid: 8040 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 30 - - uid: 8041 - components: - - type: Transform - pos: -18.5,-11.5 - parent: 30 - - uid: 8042 - components: - - type: Transform - pos: -18.5,-10.5 + pos: -25.5,-21.5 parent: 30 - uid: 8043 components: - type: Transform - pos: -18.5,-9.5 - parent: 30 - - uid: 8044 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 30 - - uid: 8045 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 30 - - uid: 8046 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 30 - - uid: 8047 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 30 - - uid: 8048 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 30 - - uid: 8049 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 30 - - uid: 8050 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 30 - - uid: 8051 - components: - - type: Transform - pos: -25.5,-8.5 + pos: -31.5,-13.5 parent: 30 - uid: 8052 components: - type: Transform - pos: -26.5,-8.5 + pos: -31.5,-14.5 parent: 30 - uid: 8053 components: - type: Transform - pos: -24.5,-9.5 + pos: -31.5,-12.5 parent: 30 - uid: 8054 components: - type: Transform - pos: -24.5,-10.5 + pos: -30.5,-11.5 parent: 30 - uid: 8055 components: - type: Transform - pos: -24.5,-11.5 - parent: 30 - - uid: 8056 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 30 - - uid: 8057 - components: - - type: Transform - pos: -24.5,-13.5 + pos: -29.5,-11.5 parent: 30 - uid: 8058 components: - type: Transform - pos: -19.5,-13.5 + pos: -31.5,-11.5 parent: 30 - uid: 8059 components: - type: Transform - pos: -20.5,-13.5 - parent: 30 - - uid: 8060 - components: - - type: Transform - pos: -21.5,-13.5 - parent: 30 - - uid: 8061 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 30 - - uid: 8062 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 30 - - uid: 8063 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 30 - - uid: 8064 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 30 - - uid: 8065 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 30 - - uid: 8066 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 30 - - uid: 8067 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 30 - - uid: 8068 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 30 - - uid: 8069 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 30 - - uid: 8070 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 30 - - uid: 8071 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 30 - - uid: 8073 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 30 - - uid: 8074 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 30 - - uid: 8075 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 30 - - uid: 8076 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 30 - - uid: 8077 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 30 - - uid: 8078 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 30 - - uid: 8079 - components: - - type: Transform - pos: -9.5,-14.5 + pos: -31.5,-10.5 parent: 30 - uid: 8080 components: @@ -21514,75 +21102,10 @@ entities: - type: Transform pos: -5.5,-16.5 parent: 30 - - uid: 8087 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 30 - - uid: 8088 - components: - - type: Transform - pos: -11.5,-16.5 - parent: 30 - - uid: 8089 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 30 - uid: 8090 components: - type: Transform - pos: -9.5,-16.5 - parent: 30 - - uid: 8091 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 30 - - uid: 8092 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 30 - - uid: 8093 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 30 - - uid: 8094 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 30 - - uid: 8095 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 30 - - uid: 8096 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 30 - - uid: 8097 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 30 - - uid: 8098 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 30 - - uid: 8099 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 30 - - uid: 8100 - components: - - type: Transform - pos: -11.5,-9.5 + pos: -29.5,-16.5 parent: 30 - uid: 8101 components: @@ -21599,41 +21122,6 @@ entities: - type: Transform pos: -15.5,-5.5 parent: 30 - - uid: 8104 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 30 - - uid: 8105 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 30 - - uid: 8106 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 30 - - uid: 8107 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 30 - - uid: 8108 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 30 - - uid: 8109 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 30 - - uid: 8110 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 30 - uid: 8111 components: - type: Transform @@ -21649,11 +21137,6 @@ entities: - type: Transform pos: -24.5,-5.5 parent: 30 - - uid: 8114 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 30 - uid: 8115 components: - type: Transform @@ -21764,31 +21247,6 @@ entities: - type: Transform pos: -14.5,-2.5 parent: 30 - - uid: 8138 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 30 - - uid: 8139 - components: - - type: Transform - pos: -8.5,-4.5 - parent: 30 - - uid: 8140 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 30 - - uid: 8141 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 30 - - uid: 8142 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 30 - uid: 8143 components: - type: Transform @@ -22134,11 +21592,46 @@ entities: - type: Transform pos: 6.5,2.5 parent: 30 + - uid: 8215 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 30 + - uid: 8216 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 30 + - uid: 8227 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 30 + - uid: 8229 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 30 - uid: 8253 components: - type: Transform pos: -11.5,-33.5 parent: 30 + - uid: 8289 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 30 + - uid: 8302 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 30 + - uid: 8304 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 30 - uid: 8357 components: - type: Transform @@ -22184,25 +21677,25 @@ entities: - type: Transform pos: -11.5,-58.5 parent: 30 - - uid: 9046 + - uid: 9422 components: - type: Transform - pos: -38.5,-13.5 + pos: -24.5,-6.5 parent: 30 - - uid: 9050 + - uid: 9611 components: - type: Transform - pos: -37.5,-13.5 + pos: 1.5,-8.5 parent: 30 - - uid: 9052 + - uid: 9635 components: - type: Transform - pos: -35.5,-14.5 + pos: -41.5,-11.5 parent: 30 - - uid: 9611 + - uid: 9636 components: - type: Transform - pos: 1.5,-8.5 + pos: -41.5,-12.5 parent: 30 - uid: 9653 components: @@ -22224,6 +21717,26 @@ entities: - type: Transform pos: -7.5,-58.5 parent: 30 + - uid: 9665 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 30 + - uid: 9666 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 30 + - uid: 9667 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 30 + - uid: 9668 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 30 - uid: 9677 components: - type: Transform @@ -22244,6 +21757,21 @@ entities: - type: Transform pos: -10.5,-55.5 parent: 30 + - uid: 9698 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 30 + - uid: 9707 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 30 + - uid: 9710 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 30 - uid: 9821 components: - type: Transform @@ -22264,10 +21792,35 @@ entities: - type: Transform pos: -7.5,-57.5 parent: 30 - - uid: 9951 + - uid: 9851 components: - type: Transform - pos: -37.5,-10.5 + pos: -29.5,-19.5 + parent: 30 + - uid: 9856 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 30 + - uid: 9859 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 30 + - uid: 9866 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 30 + - uid: 9912 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 30 + - uid: 9913 + components: + - type: Transform + pos: -18.5,-4.5 parent: 30 - uid: 10048 components: @@ -28534,36 +28087,6 @@ entities: - type: Transform pos: -45.5,-14.5 parent: 30 - - uid: 18991 - components: - - type: Transform - pos: -42.5,-22.5 - parent: 30 - - uid: 18992 - components: - - type: Transform - pos: -41.5,-22.5 - parent: 30 - - uid: 18993 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 30 - - uid: 18994 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 30 - - uid: 18995 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 30 - - uid: 18996 - components: - - type: Transform - pos: -38.5,-23.5 - parent: 30 - uid: 18997 components: - type: Transform @@ -31114,11 +30637,6 @@ entities: - type: Transform pos: 0.5,66.5 parent: 30 - - uid: 20328 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 30 - uid: 20363 components: - type: Transform @@ -31504,11 +31022,6 @@ entities: - type: Transform pos: -81.5,-43.5 parent: 30 - - uid: 21495 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 30 - uid: 21496 components: - type: Transform @@ -32041,6 +31554,11 @@ entities: - type: Transform pos: -30.472065,33.583 parent: 30 + - uid: 7083 + components: + - type: Transform + pos: -36.516556,-12.325844 + parent: 30 - uid: 9605 components: - type: Transform @@ -38317,11 +37835,36 @@ entities: parent: 30 - proto: CableMV entities: + - uid: 948 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 30 + - uid: 1015 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 30 - uid: 1296 components: - type: Transform pos: -45.5,10.5 parent: 30 + - uid: 1341 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 30 + - uid: 1461 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 30 + - uid: 2032 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 30 - uid: 2170 components: - type: Transform @@ -39902,16 +39445,341 @@ entities: - type: Transform pos: -3.5,37.5 parent: 30 - - uid: 7470 + - uid: 6821 components: - type: Transform - pos: -34.5,-6.5 + pos: -28.5,-6.5 parent: 30 - - uid: 7481 + - uid: 6835 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 30 + - uid: 6839 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 30 + - uid: 6840 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 30 + - uid: 6848 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 30 + - uid: 6854 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 30 + - uid: 6858 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 30 + - uid: 6859 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 30 + - uid: 6860 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 30 + - uid: 6861 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 30 + - uid: 6864 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 30 + - uid: 6866 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 30 + - uid: 6867 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 30 + - uid: 6919 components: - type: Transform pos: -32.5,-6.5 parent: 30 + - uid: 6988 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 30 + - uid: 7047 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 30 + - uid: 7048 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 30 + - uid: 7049 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 30 + - uid: 7050 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 30 + - uid: 7051 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 30 + - uid: 7062 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 30 + - uid: 7078 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 30 + - uid: 7084 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 30 + - uid: 7120 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 30 + - uid: 7160 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 30 + - uid: 7169 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 30 + - uid: 7187 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 30 + - uid: 7188 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 30 + - uid: 7189 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 30 + - uid: 7190 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 30 + - uid: 7192 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 30 + - uid: 7194 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 30 + - uid: 7195 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 30 + - uid: 7197 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 30 + - uid: 7238 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 30 + - uid: 7258 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 30 + - uid: 7259 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 30 + - uid: 7268 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 30 + - uid: 7276 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 30 + - uid: 7281 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 30 + - uid: 7291 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 30 + - uid: 7292 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 30 + - uid: 7293 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 30 + - uid: 7294 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 30 + - uid: 7295 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 30 + - uid: 7296 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 30 + - uid: 7298 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 30 + - uid: 7302 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 30 + - uid: 7355 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 30 + - uid: 7360 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 30 + - uid: 7364 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 30 + - uid: 7365 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 30 + - uid: 7366 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 30 + - uid: 7403 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 30 + - uid: 7404 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 30 + - uid: 7413 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 30 + - uid: 7415 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 30 + - uid: 7428 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 30 + - uid: 7429 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 30 + - uid: 7431 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 30 + - uid: 7435 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 30 + - uid: 7436 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 30 + - uid: 7481 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 30 + - uid: 7482 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 30 + - uid: 7498 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 30 + - uid: 7504 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 30 + - uid: 7539 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 30 - uid: 7804 components: - type: Transform @@ -39972,146 +39840,6 @@ entities: - type: Transform pos: -8.5,-14.5 parent: 30 - - uid: 7816 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 30 - - uid: 7817 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 30 - - uid: 7818 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 30 - - uid: 7819 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 30 - - uid: 7820 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 30 - - uid: 7821 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 30 - - uid: 7822 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 30 - - uid: 7823 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 30 - - uid: 7824 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 30 - - uid: 7825 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 30 - - uid: 7826 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 30 - - uid: 7827 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 30 - - uid: 7828 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 30 - - uid: 7829 - components: - - type: Transform - pos: -18.5,-18.5 - parent: 30 - - uid: 7830 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 30 - - uid: 7831 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 30 - - uid: 7832 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 30 - - uid: 7833 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 30 - - uid: 7834 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 30 - - uid: 7835 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 30 - - uid: 7836 - components: - - type: Transform - pos: -18.5,-11.5 - parent: 30 - - uid: 7837 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 30 - - uid: 7838 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 30 - - uid: 7839 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 30 - - uid: 7840 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 30 - - uid: 7841 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 30 - - uid: 7842 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 30 - - uid: 7843 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 30 - uid: 7844 components: - type: Transform @@ -40232,135 +39960,160 @@ entities: - type: Transform pos: -35.5,-2.5 parent: 30 - - uid: 7868 + - uid: 7917 components: - type: Transform - pos: -35.5,-3.5 + pos: -24.5,-6.5 parent: 30 - - uid: 7876 + - uid: 8004 components: - type: Transform - pos: -31.5,-6.5 + pos: -4.5,-47.5 parent: 30 - - uid: 7877 + - uid: 8005 components: - type: Transform - pos: -30.5,-6.5 + pos: -7.5,-46.5 parent: 30 - - uid: 7878 + - uid: 8045 components: - type: Transform - pos: -28.5,-6.5 + pos: -35.5,-6.5 parent: 30 - - uid: 7879 + - uid: 8092 components: - type: Transform - pos: -28.5,-6.5 + pos: -29.5,-6.5 parent: 30 - - uid: 7880 + - uid: 8108 components: - type: Transform - pos: -28.5,-7.5 + pos: -28.5,-4.5 parent: 30 - - uid: 7881 + - uid: 8109 components: - type: Transform - pos: -28.5,-8.5 + pos: -30.5,-6.5 parent: 30 - - uid: 7882 + - uid: 8110 components: - type: Transform - pos: -28.5,-9.5 + pos: -24.5,-5.5 parent: 30 - - uid: 7883 + - uid: 8114 components: - type: Transform - pos: -28.5,-10.5 + pos: -25.5,-5.5 parent: 30 - - uid: 7884 + - uid: 8137 components: - type: Transform - pos: -28.5,-11.5 + pos: -5.5,-15.5 parent: 30 - - uid: 7885 + - uid: 8138 components: - type: Transform - pos: -28.5,-12.5 + pos: -26.5,-5.5 parent: 30 - - uid: 7886 + - uid: 8139 components: - type: Transform - pos: -28.5,-13.5 + pos: -28.5,-5.5 parent: 30 - - uid: 7887 + - uid: 8606 components: - type: Transform - pos: -28.5,-14.5 + pos: 3.5,-37.5 parent: 30 - - uid: 7888 + - uid: 9055 components: - type: Transform - pos: -28.5,-15.5 + pos: -37.5,-7.5 parent: 30 - - uid: 7889 + - uid: 9056 components: - type: Transform - pos: -28.5,-16.5 + pos: -37.5,-10.5 parent: 30 - - uid: 7890 + - uid: 9157 components: - type: Transform - pos: -27.5,-16.5 + pos: -37.5,-11.5 parent: 30 - - uid: 7891 + - uid: 9220 components: - type: Transform - pos: -27.5,-17.5 + pos: -38.5,-11.5 parent: 30 - - uid: 7927 + - uid: 9226 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 30 + - uid: 9227 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 30 + - uid: 9228 components: - type: Transform pos: -33.5,-6.5 parent: 30 - - uid: 7936 + - uid: 9626 components: - type: Transform - pos: -35.5,-4.5 + pos: 32.5,43.5 parent: 30 - - uid: 7937 + - uid: 9627 components: - type: Transform - pos: -35.5,-5.5 + pos: -27.5,-5.5 parent: 30 - - uid: 8004 + - uid: 9629 components: - type: Transform - pos: -4.5,-47.5 + pos: -27.5,-2.5 parent: 30 - - uid: 8005 + - uid: 9630 components: - type: Transform - pos: -7.5,-46.5 + pos: -28.5,-3.5 parent: 30 - - uid: 8137 + - uid: 9631 components: - type: Transform - pos: -5.5,-15.5 + pos: -37.5,-9.5 parent: 30 - - uid: 8238 + - uid: 9632 components: - type: Transform - pos: -35.5,-6.5 + pos: -37.5,-8.5 parent: 30 - - uid: 8606 + - uid: 9708 components: - type: Transform - pos: 3.5,-37.5 + pos: -35.5,-4.5 parent: 30 - - uid: 9626 + - uid: 9836 components: - type: Transform - pos: 32.5,43.5 + pos: -36.5,-6.5 + parent: 30 + - uid: 9876 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 30 + - uid: 9902 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 30 + - uid: 9905 + components: + - type: Transform + pos: -30.5,-13.5 parent: 30 - uid: 10269 components: @@ -40672,11 +40425,6 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 30 - - uid: 11238 - components: - - type: Transform - pos: -29.5,-6.5 - parent: 30 - uid: 11534 components: - type: Transform @@ -42467,16 +42215,6 @@ entities: - type: Transform pos: -5.5,-20.5 parent: 30 - - uid: 19833 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 30 - - uid: 19834 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 30 - uid: 20157 components: - type: Transform @@ -42507,26 +42245,6 @@ entities: - type: Transform pos: 0.5,85.5 parent: 30 - - uid: 20320 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 30 - - uid: 20321 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 30 - - uid: 20322 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 30 - - uid: 20327 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 30 - uid: 20338 components: - type: Transform @@ -42537,11 +42255,6 @@ entities: - type: Transform pos: 30.5,6.5 parent: 30 - - uid: 20344 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 30 - uid: 20418 components: - type: Transform @@ -43437,29 +43150,21 @@ entities: - type: Transform pos: 27.5,-26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9115 components: - type: Transform pos: 18.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9116 components: - type: Transform pos: 19.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 10430 components: - type: Transform pos: -14.5,-47.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Carpet entities: - uid: 626 @@ -43716,26 +43421,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,36.5 parent: 30 - - uid: 10024 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 30 - - uid: 10026 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 30 - - uid: 10027 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 30 - - uid: 10034 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 30 - uid: 15205 components: - type: Transform @@ -44668,42 +44353,6 @@ entities: - type: Transform pos: 16.5,34.5 parent: 30 - - uid: 7875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 30 - - uid: 7940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-5.5 - parent: 30 - - uid: 7941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 30 - - uid: 7943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 30 - - uid: 7944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 30 - - uid: 7945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 30 - uid: 10241 components: - type: Transform @@ -44719,16 +44368,6 @@ entities: - type: Transform pos: -10.5,17.5 parent: 30 - - uid: 14843 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 30 - - uid: 14845 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 30 - uid: 15266 components: - type: Transform @@ -44739,11 +44378,6 @@ entities: - type: Transform pos: -9.5,17.5 parent: 30 - - uid: 16129 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 30 - uid: 19443 components: - type: Transform @@ -44874,6 +44508,26 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-34.5 parent: 30 + - uid: 9720 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 30 + - uid: 9727 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 30 + - uid: 9792 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 30 + - uid: 9832 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 30 - uid: 11619 components: - type: Transform @@ -45045,6 +44699,26 @@ entities: - type: Transform pos: 0.5,35.5 parent: 30 + - uid: 7305 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 30 + - uid: 7386 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 30 + - uid: 7391 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 30 + - uid: 7453 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 30 - proto: CarrotSeeds entities: - uid: 19551 @@ -45566,6 +45240,16 @@ entities: - type: Transform pos: -6.5,-29.5 parent: 30 + - uid: 9799 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 30 + - uid: 9831 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 30 - uid: 10073 components: - type: Transform @@ -47769,26 +47453,6 @@ entities: - type: Transform pos: -6.5,-25.5 parent: 30 - - uid: 19782 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 30 - - uid: 19783 - components: - - type: Transform - pos: -41.5,-6.5 - parent: 30 - - uid: 19784 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 30 - - uid: 19785 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 30 - uid: 19786 components: - type: Transform @@ -48083,12 +47747,6 @@ entities: - type: Transform pos: -48.5,10.5 parent: 30 - - uid: 999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 30 - uid: 1036 components: - type: Transform @@ -48390,84 +48048,78 @@ entities: - type: Transform pos: -7.5,-1.5 parent: 30 - - uid: 7395 + - uid: 7143 components: - type: Transform - pos: -8.5,-19.5 + pos: -39.5,-5.5 parent: 30 - - uid: 7666 + - uid: 7159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-13.5 + pos: -40.5,-5.5 parent: 30 - - uid: 7750 + - uid: 7185 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-14.5 + pos: -30.5,-19.5 parent: 30 - - uid: 8826 + - uid: 7388 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-13.5 + pos: -30.5,-20.5 parent: 30 - - uid: 8833 + - uid: 7392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 + pos: -13.5,-8.5 parent: 30 - - uid: 9228 + - uid: 7393 components: - type: Transform - pos: -21.5,-24.5 + pos: -14.5,-8.5 parent: 30 - - uid: 9260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 30 - - uid: 9668 + - uid: 7396 components: - type: Transform - pos: -10.5,-19.5 + pos: -15.5,-8.5 parent: 30 - - uid: 9711 + - uid: 7459 components: - type: Transform - pos: -9.5,-19.5 + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 parent: 30 - - uid: 9792 + - uid: 7460 components: - type: Transform - pos: -35.5,-1.5 + rot: -1.5707963267948966 rad + pos: -33.5,-4.5 parent: 30 - - uid: 9909 + - uid: 7503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 parent: 30 - - uid: 9933 + - uid: 7517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-19.5 + pos: -33.5,-3.5 parent: 30 - - uid: 9954 + - uid: 7989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-9.5 + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 parent: 30 - - uid: 9957 + - uid: 9260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-14.5 + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 parent: 30 - uid: 11360 components: @@ -48885,11 +48537,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 30 - - uid: 21609 - components: - - type: Transform - pos: -44.5,-26.5 - parent: 30 - uid: 21683 components: - type: Transform @@ -48942,18 +48589,6 @@ entities: parent: 30 - proto: ChairOfficeDark entities: - - uid: 354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 30 - - uid: 355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 30 - uid: 438 components: - type: Transform @@ -49216,17 +48851,6 @@ entities: - type: Transform pos: -23.5,-40.5 parent: 30 - - uid: 9636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 30 - - uid: 10015 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 30 - uid: 11304 components: - type: Transform @@ -49366,11 +48990,11 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,59.5 parent: 30 - - uid: 2235 + - uid: 2247 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,52.5 + pos: -50.5,52.5 parent: 30 - uid: 6694 components: @@ -49395,40 +49019,39 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-5.5 parent: 30 - - uid: 6797 + - uid: 6918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-4.5 + pos: -21.5,-9.5 parent: 30 - - uid: 6833 + - uid: 7013 components: - type: Transform - pos: -13.5,-13.5 + rot: -1.5707963267948966 rad + pos: -32.5,-16.5 parent: 30 - - uid: 6834 + - uid: 7085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 parent: 30 - - uid: 7454 + - uid: 7184 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-17.5 + pos: -34.5,-16.5 parent: 30 - - uid: 11445 + - uid: 7416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-23.5 + pos: -17.5,-14.5 parent: 30 - - uid: 11446 + - uid: 9969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: -9.5,-21.5 parent: 30 - uid: 12649 components: @@ -49545,12 +49168,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,40.5 parent: 30 - - uid: 7418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 30 - uid: 13673 components: - type: Transform @@ -49880,42 +49497,43 @@ entities: - type: Transform pos: -10.5,-4.5 parent: 30 - - uid: 6996 - components: - - type: Transform - pos: -27.532553,-12.457127 - parent: 30 - - uid: 7083 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 7170 components: - type: Transform - pos: -15.517497,-22.401917 + pos: -11.553798,-12.467745 parent: 30 - - uid: 7084 + - uid: 7171 components: - type: Transform - pos: -15.470622,-21.464417 + pos: -12.116298,-12.45212 parent: 30 - - uid: 20468 + - uid: 7389 components: - type: Transform - pos: -27.548178,-11.472752 + pos: -12.663173,-12.436495 parent: 30 - - uid: 20469 +- proto: ChemDispenser + entities: + - uid: 6692 components: - type: Transform - pos: -27.525522,-7.316894 + pos: -9.5,-7.5 parent: 30 - - uid: 20470 + - uid: 6693 components: - type: Transform - pos: -27.494272,-6.441894 + pos: -5.5,-7.5 parent: 30 - - uid: 22531 +- proto: ChemistryHotplate + entities: + - uid: 9180 components: - type: Transform - pos: -27.519848,-10.440689 + pos: -7.5,-7.5 parent: 30 -- proto: chem_master +- proto: ChemMaster entities: - uid: 6690 components: @@ -49927,25 +49545,6 @@ entities: - type: Transform pos: -5.5,-6.5 parent: 30 -- proto: ChemDispenser - entities: - - uid: 6692 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 30 - - uid: 6693 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 30 -- proto: ChemistryHotplate - entities: - - uid: 9180 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 30 - proto: ChessBoard entities: - uid: 16771 @@ -49987,6 +49586,13 @@ entities: - type: Transform pos: -27.716064,-43.180817 parent: 30 +- proto: CigaretteBlackPepper + entities: + - uid: 6973 + components: + - type: Transform + pos: -6.553257,-1.4022884 + parent: 30 - proto: CigaretteSyndicate entities: - uid: 21099 @@ -50064,14 +49670,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21712 components: - type: Transform @@ -50095,14 +49693,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetChef entities: - uid: 19558 @@ -50128,14 +49718,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetChefFilled entities: - uid: 64 @@ -50161,14 +49743,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetEmergencyFilledRandom entities: - uid: 893 @@ -50199,14 +49773,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1276 components: - type: Transform @@ -50230,14 +49796,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1346 components: - type: Transform @@ -50261,14 +49819,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1347 components: - type: Transform @@ -50292,14 +49842,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2028 components: - type: Transform @@ -50323,14 +49865,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 5662 components: - type: Transform @@ -50354,14 +49888,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 5727 components: - type: Transform @@ -50385,14 +49911,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6445 components: - type: Transform @@ -50416,45 +49934,11 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9227 + - uid: 7271 components: - type: Transform - pos: -23.5,-24.5 + pos: -37.5,-5.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11267 components: - type: Transform @@ -50478,14 +49962,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11750 components: - type: Transform @@ -50509,14 +49985,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11820 components: - type: Transform @@ -50540,14 +50008,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15549 components: - type: Transform @@ -50571,14 +50031,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15827 components: - type: Transform @@ -50602,14 +50054,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15970 components: - type: Transform @@ -50633,14 +50077,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16114 components: - type: Transform @@ -50664,14 +50100,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16171 components: - type: Transform @@ -50695,14 +50123,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16814 components: - type: Transform @@ -50726,14 +50146,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 17340 components: - type: Transform @@ -50757,14 +50169,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 17490 components: - type: Transform @@ -50788,14 +50192,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18176 components: - type: Transform @@ -50819,14 +50215,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18785 components: - type: Transform @@ -50850,14 +50238,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19394 components: - type: Transform @@ -50886,14 +50266,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21046 components: - type: Transform @@ -50917,14 +50289,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21089 components: - type: Transform @@ -50948,45 +50312,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21255 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22508 components: - type: Transform @@ -51010,14 +50335,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22654 components: - type: Transform @@ -51041,14 +50358,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22840 components: - type: Transform @@ -51072,14 +50381,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetFireFilled entities: - uid: 1277 @@ -51105,14 +50406,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1348 components: - type: Transform @@ -51136,14 +50429,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6366 components: - type: Transform @@ -51167,14 +50452,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8336 components: - type: Transform @@ -51198,45 +50475,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9226 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9242 components: - type: Transform @@ -51260,14 +50498,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9243 components: - type: Transform @@ -51291,14 +50521,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9996 components: - type: Transform @@ -51322,14 +50544,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9997 components: - type: Transform @@ -51353,14 +50567,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10094 components: - type: Transform @@ -51384,14 +50590,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11752 components: - type: Transform @@ -51415,14 +50613,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12771 components: - type: Transform @@ -51446,14 +50636,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13340 components: - type: Transform @@ -51477,14 +50659,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15228 components: - type: Transform @@ -51508,14 +50682,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16815 components: - type: Transform @@ -51539,45 +50705,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 20324 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22224 components: - type: Transform @@ -51601,14 +50728,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22841 components: - type: Transform @@ -51632,14 +50751,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetJanitorFilled entities: - uid: 539 @@ -51665,14 +50776,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3JanitorFilled entities: - uid: 538 @@ -51698,14 +50801,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3ScienceFilled entities: - uid: 13356 @@ -51731,14 +50826,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3SecurityFilled entities: - uid: 2073 @@ -51764,14 +50851,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6753 components: - type: Transform @@ -51795,109 +50874,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetL3VirologyFilled - entities: - - uid: 7209 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7210 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15074 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetLegalFilled entities: - uid: 16938 @@ -51923,14 +50899,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21523 components: - type: Transform @@ -51954,14 +50922,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetMaintenanceFilledRandom entities: - uid: 729 @@ -51987,14 +50947,11 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - uid: 7008 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 30 - uid: 9200 components: - type: Transform @@ -52018,14 +50975,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9844 components: - type: Transform @@ -52054,14 +51003,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16820 components: - type: Transform @@ -52085,14 +51026,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16928 components: - type: Transform @@ -52116,14 +51049,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 20494 components: - type: Transform @@ -52147,14 +51072,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetRadiationSuitFilled entities: - uid: 9993 @@ -52180,14 +51097,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9994 components: - type: Transform @@ -52211,14 +51120,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9995 components: - type: Transform @@ -52242,14 +51143,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11246 components: - type: Transform @@ -52273,14 +51166,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12770 components: - type: Transform @@ -52304,14 +51189,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13346 components: - type: Transform @@ -52335,14 +51212,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21459 components: - type: Transform @@ -52366,14 +51235,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21460 components: - type: Transform @@ -52397,76 +51258,13 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetSteelBase entities: - - uid: 9847 + - uid: 7040 components: - type: Transform - pos: -33.5,-11.5 + pos: -38.5,-20.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.8959498 - - 7.1323833 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9864 - - 9861 - - 9860 - - 9859 - - 9858 - - 9857 - - 9856 - - 9855 - - 9854 - - 9853 - - 9852 - - 9851 - - 1945 - - 9850 - - 1934 - - 9849 - - 1950 - - 9848 - - 1951 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 11364 components: - type: Transform @@ -52490,14 +51288,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -52532,14 +51322,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16172 components: - type: Transform @@ -52563,14 +51345,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16213 components: - type: Transform @@ -52594,14 +51368,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetToolFilled entities: - uid: 13446 @@ -52627,14 +51393,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15157 components: - type: Transform @@ -52658,14 +51416,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClothingBackpack entities: - uid: 16077 @@ -52673,13 +51423,6 @@ entities: - type: Transform pos: 24.465357,37.55109 parent: 30 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 9670 - components: - - type: Transform - pos: -9.530638,-23.344732 - parent: 30 - proto: ClothingBeltHolster entities: - uid: 727 @@ -52756,6 +51499,11 @@ entities: parent: 30 - proto: ClothingEyesGlasses entities: + - uid: 7149 + components: + - type: Transform + pos: -42.51494,-20.530993 + parent: 30 - uid: 8827 components: - type: Transform @@ -52776,25 +51524,41 @@ entities: - type: Transform pos: -23.555922,-31.355957 parent: 30 - - uid: 21677 +- proto: ClothingEyesGlassesGar + entities: + - uid: 7039 components: - type: Transform - pos: -28.512682,-22.257547 + pos: -41.593063,-21.421618 parent: 30 - proto: ClothingEyesGlassesGarGiga entities: + - uid: 6805 + components: + - type: Transform + pos: -42.51494,-19.421618 + parent: 30 - uid: 15114 components: - type: Transform pos: 36.506203,30.427496 parent: 30 -- proto: ClothingEyesGlassesMeson +- proto: ClothingEyesGlassesGarOrange entities: - - uid: 5668 + - uid: 7870 components: - type: Transform - pos: -39.431107,18.715544 + pos: -40.60869,-21.421618 parent: 30 +- proto: ClothingEyesGlassesJensen + entities: + - uid: 6989 + components: + - type: Transform + pos: -42.530563,-21.468493 + parent: 30 +- proto: ClothingEyesGlassesMeson + entities: - uid: 9437 components: - type: Transform @@ -52825,18 +51589,6 @@ entities: - type: Transform pos: 6.4995365,21.072325 parent: 30 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 1461 - components: - - type: Transform - pos: -43.337395,31.456226 - parent: 30 - - uid: 2032 - components: - - type: Transform - pos: -44.436646,46.5757 - parent: 30 - proto: ClothingEyesGlassesSunglasses entities: - uid: 683 @@ -52878,18 +51630,6 @@ entities: - type: Transform pos: -15.509655,-44.241684 parent: 30 -- proto: ClothingEyesHudMedical - entities: - - uid: 6843 - components: - - type: Transform - pos: -13.368895,-16.480482 - parent: 30 - - uid: 11456 - components: - - type: Transform - pos: -28.613989,-22.48607 - parent: 30 - proto: ClothingEyesHudSecurity entities: - uid: 2161 @@ -52980,10 +51720,10 @@ entities: parent: 30 - proto: ClothingHandsGlovesNitrile entities: - - uid: 11457 + - uid: 7560 components: - type: Transform - pos: -28.457739,-22.82982 + pos: -36.516556,-13.607094 parent: 30 - proto: ClothingHeadHatAnimalCat entities: @@ -52999,13 +51739,6 @@ entities: - type: Transform pos: 4.47367,18.497892 parent: 30 -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 15073 - components: - - type: Transform - pos: -34.52919,-20.342724 - parent: 30 - proto: ClothingHeadHatAnimalMonkey entities: - uid: 17101 @@ -53020,11 +51753,6 @@ entities: - type: Transform pos: -13.503129,14.548277 parent: 30 - - uid: 19851 - components: - - type: Transform - pos: -42.56929,-20.293549 - parent: 30 - proto: ClothingHeadHatBeretWarden entities: - uid: 2033 @@ -53083,13 +51811,6 @@ entities: - type: Transform pos: -0.618871,-7.128199 parent: 30 -- proto: ClothingHeadHatHairflower - entities: - - uid: 5626 - components: - - type: Transform - pos: 7.8005,42.792442 - parent: 30 - proto: ClothingHeadHatHetmanHat entities: - uid: 13666 @@ -53140,11 +51861,6 @@ entities: parent: 30 - proto: ClothingHeadHatPaper entities: - - uid: 10186 - components: - - type: Transform - pos: -36.447792,-13.554573 - parent: 30 - uid: 15277 components: - type: Transform @@ -53188,18 +51904,6 @@ entities: - type: Transform pos: 19.385248,46.62064 parent: 30 -- proto: ClothingHeadHatSantahat - entities: - - uid: 19847 - components: - - type: Transform - pos: -41.81774,-19.18891 - parent: 30 - - uid: 19848 - components: - - type: Transform - pos: -39.270866,-18.985785 - parent: 30 - proto: ClothingHeadHatTophat entities: - uid: 19620 @@ -53296,13 +52000,6 @@ entities: - type: Transform pos: 35.44555,43.82996 parent: 30 -- proto: ClothingHeadHatXmasCrown - entities: - - uid: 19853 - components: - - type: Transform - pos: -38.429283,-20.300697 - parent: 30 - proto: ClothingHeadHelmetBasic entities: - uid: 1986 @@ -53334,28 +52031,6 @@ entities: - type: Transform pos: 32.458633,47.37235 parent: 30 -- proto: ClothingMaskBreathMedical - entities: - - uid: 7422 - components: - - type: Transform - pos: -7.6556377,-23.469732 - parent: 30 - - uid: 7475 - components: - - type: Transform - pos: -7.6556377,-23.469732 - parent: 30 - - uid: 9707 - components: - - type: Transform - pos: -11.624388,-23.485357 - parent: 30 - - uid: 9708 - components: - - type: Transform - pos: -11.624388,-23.500982 - parent: 30 - proto: ClothingMaskGas entities: - uid: 6446 @@ -53405,22 +52080,6 @@ entities: - type: Transform pos: 9.578405,-22.536226 parent: 30 -- proto: ClothingMaskMuzzle - entities: - - uid: 1934 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1945 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingMaskSterile entities: - uid: 2243 @@ -53492,10 +52151,10 @@ entities: - type: Transform pos: -57.52941,-67.45332 parent: 30 - - uid: 19849 + - uid: 21488 components: - type: Transform - pos: -41.66149,-19.97016 + pos: 9.401276,-13.386019 parent: 30 - proto: ClothingNeckScarfStripedRed entities: @@ -53504,11 +52163,6 @@ entities: - type: Transform pos: -1.4874127,-32.38826 parent: 30 - - uid: 19850 - components: - - type: Transform - pos: -39.47399,-19.90766 - parent: 30 - proto: ClothingNeckScarfStripedZebra entities: - uid: 664 @@ -53518,10 +52172,15 @@ entities: parent: 30 - proto: ClothingNeckStethoscope entities: - - uid: 21002 + - uid: 7452 components: - type: Transform - pos: -25.5,-14.5 + pos: -18.480022,-14.361336 + parent: 30 + - uid: 7475 + components: + - type: Transform + pos: -33.555656,-16.37696 parent: 30 - proto: ClothingNeckTieRed entities: @@ -53726,64 +52385,6 @@ entities: - type: Transform pos: -75.60953,-47.39969 parent: 30 -- proto: ClothingOuterSanta - entities: - - uid: 18695 - components: - - type: Transform - pos: -27.60547,58.54977 - parent: 30 - - uid: 18696 - components: - - type: Transform - pos: -27.60547,58.54977 - parent: 30 - - uid: 18819 - components: - - type: Transform - pos: -27.60547,58.54977 - parent: 30 - - uid: 18820 - components: - - type: Transform - pos: -27.60547,58.54977 - parent: 30 - - uid: 18827 - components: - - type: Transform - pos: -27.402346,58.377895 - parent: 30 - - uid: 18831 - components: - - type: Transform - pos: -27.402346,58.377895 - parent: 30 - - uid: 18833 - components: - - type: Transform - pos: -27.402346,58.377895 - parent: 30 - - uid: 18835 - components: - - type: Transform - pos: -27.402346,58.377895 - parent: 30 -- proto: ClothingOuterStraightjacket - entities: - - uid: 1950 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1951 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterSuitChicken entities: - uid: 16151 @@ -53854,11 +52455,6 @@ entities: parent: 30 - proto: ClothingShoesBootsJack entities: - - uid: 8404 - components: - - type: Transform - pos: -17.481518,-2.6493702 - parent: 30 - uid: 15998 components: - type: Transform @@ -53902,41 +52498,24 @@ entities: - type: Transform pos: -27.510633,39.153927 parent: 30 - - uid: 9858 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9859 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9860 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9861 +- proto: ClothingShoesGaloshes + entities: + - uid: 10027 components: + - type: MetaData + name: galoshesn't - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9864 + pos: -9.005531,-22.68785 + parent: 30 + missingComponents: + - NoSlip +- proto: ClothingShoesLeather + entities: + - uid: 5062 components: - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -21.532825,34.204502 + parent: 30 - proto: ClothingShoeSlippersDuck entities: - uid: 11363 @@ -53985,6 +52564,11 @@ entities: parent: 30 - proto: ClothingUnderSocksCoder entities: + - uid: 9971 + components: + - type: Transform + pos: -10.423332,-20.432281 + parent: 30 - uid: 19756 components: - type: Transform @@ -54009,43 +52593,6 @@ entities: - type: Transform pos: 21.564045,44.633358 parent: 30 -- proto: ClothingUniformJumpskirtColorWhite - entities: - - uid: 9853 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9854 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9855 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9856 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9857 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingUniformJumpskirtDetective entities: - uid: 15123 @@ -54074,43 +52621,6 @@ entities: - type: Transform pos: 21.51717,44.539608 parent: 30 -- proto: ClothingUniformJumpsuitColorWhite - entities: - - uid: 9848 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9849 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9850 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9851 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9852 - components: - - type: Transform - parent: 9847 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitCossack entities: - uid: 13662 @@ -54184,6 +52694,20 @@ entities: parent: 19618 - type: Physics canCollide: False +- proto: Cobweb1 + entities: + - uid: 7274 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 30 +- proto: Cobweb2 + entities: + - uid: 7139 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 30 - proto: ComfyChair entities: - uid: 458 @@ -54310,10 +52834,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,35.5 parent: 30 - - uid: 8370 + - uid: 7126 components: - type: Transform - pos: 8.5,-13.5 + rot: 3.141592653589793 rad + pos: -42.5,-13.5 parent: 30 - uid: 9313 components: @@ -54337,11 +52862,10 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 30 - - uid: 10023 + - uid: 9717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-5.5 + pos: -42.5,-11.5 parent: 30 - uid: 12854 components: @@ -54496,6 +53020,23 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 30 + - uid: 21478 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 30 + - uid: 21479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 30 + - uid: 21480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 30 - uid: 21522 components: - type: Transform @@ -54508,23 +53049,12 @@ entities: - type: Transform pos: -9.5,46.5 parent: 30 - - uid: 6828 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 30 - uid: 9186 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-28.5 parent: 30 - - uid: 13073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,14.5 - parent: 30 - uid: 17345 components: - type: Transform @@ -54549,17 +53079,16 @@ entities: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 7453 + - uid: 7584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-23.5 + pos: -24.5,-20.5 parent: 30 - - uid: 9715 + - uid: 7585 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-23.5 + pos: -24.5,-18.5 parent: 30 - uid: 11442 components: @@ -54641,16 +53170,10 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-6.5 parent: 30 - - uid: 6826 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 30 - - uid: 11433 + - uid: 7750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,52.5 + pos: -14.5,-14.5 parent: 30 - uid: 22804 components: @@ -54769,27 +53292,22 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,44.5 parent: 30 - - uid: 6789 + - uid: 7151 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-6.5 parent: 30 - - uid: 6827 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 30 - - uid: 7085 + - uid: 7394 components: - type: Transform - pos: -14.5,-18.5 + pos: -34.5,-15.5 parent: 30 - - uid: 7417 + - uid: 7574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-7.5 + rot: -1.5707963267948966 rad + pos: -12.5,-20.5 parent: 30 - proto: ComputerPowerMonitoring entities: @@ -54847,6 +53365,14 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,9.5 parent: 30 +- proto: ComputerRoboticsControl + entities: + - uid: 10251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 30 - proto: ComputerSalvageExpedition entities: - uid: 7266 @@ -55294,14 +53820,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateCoffin entities: - uid: 20530 @@ -55351,14 +53869,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringCableBulk entities: - uid: 3520 @@ -55384,18 +53894,15 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: Construction containers: - EntityStorageComponent - entity_storage + - uid: 7840 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 30 - uid: 9578 components: - type: Transform @@ -55419,14 +53926,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: Construction containers: - EntityStorageComponent @@ -55454,14 +53953,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: Construction containers: - EntityStorageComponent @@ -55489,14 +53980,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: Construction containers: - EntityStorageComponent @@ -55524,14 +54007,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringCableHV entities: - uid: 10219 @@ -55564,14 +54039,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: Construction containers: - EntityStorageComponent @@ -55629,14 +54096,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringTeslaCoil entities: - uid: 20617 @@ -55695,6 +54154,28 @@ entities: - type: Transform pos: 23.5,-5.5 parent: 30 +- proto: CrateFreezer + entities: + - uid: 7678 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 30 + - uid: 7968 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 30 + - uid: 7978 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 30 + - uid: 8069 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 30 - proto: CrateHydroponicsTools entities: - uid: 442 @@ -55724,51 +54205,32 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 +- proto: CrateMedicalScrubs + entities: + - uid: 7019 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 30 +- proto: CrateMedicalSecure + entities: + - uid: 767 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 30 - proto: CrateMedicalSurgery entities: - - uid: 6757 + - uid: 7578 components: - type: Transform - pos: -11.5,-18.5 + pos: -26.5,-20.5 + parent: 30 + - uid: 7580 + components: + - type: Transform + pos: -26.5,-18.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - uid: 7674 components: - type: Transform @@ -55799,14 +54261,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateNPCHamlet entities: - uid: 4350 @@ -55857,14 +54311,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16170 components: - type: Transform @@ -55892,14 +54338,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateStoneGrave entities: - uid: 20625 @@ -55907,43 +54345,6 @@ entities: - type: Transform pos: -60.5,-55.5 parent: 30 -- proto: CrateSurgery - entities: - - uid: 7087 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - proto: CrateTrashCart entities: - uid: 2122 @@ -56002,16 +54403,6 @@ entities: - type: Transform pos: -48.618538,65.82301 parent: 30 - - uid: 9036 - components: - - type: Transform - pos: -37.5225,-14.357391 - parent: 30 - - uid: 9686 - components: - - type: Transform - pos: -37.49125,-14.513641 - parent: 30 - uid: 17954 components: - type: Transform @@ -56052,14 +54443,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringServer entities: - uid: 7439 @@ -56131,6 +54514,16 @@ entities: - type: Transform pos: 31.5,42.5 parent: 30 + - uid: 7398 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 30 + - uid: 7536 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 30 - proto: CryogenicSleepUnitSpawner entities: - uid: 13665 @@ -56149,31 +54542,27 @@ entities: parent: 30 - proto: CryoPod entities: - - uid: 784 + - uid: 6712 components: - type: Transform - pos: -24.5,-7.5 + pos: -33.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7061 + - uid: 6784 components: - type: Transform - pos: -22.5,-7.5 + pos: -31.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: CryoxadoneBeakerSmall entities: - - uid: 7078 + - uid: 8274 components: - type: Transform - pos: -21.532642,-10.262152 + pos: -33.48732,-13.171982 parent: 30 - - uid: 9865 + - uid: 8281 components: - type: Transform - pos: -21.376392,-10.340277 + pos: -33.36232,-13.359482 parent: 30 - proto: d20Dice entities: @@ -56219,13 +54608,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.382675,-63.392025 parent: 30 -- proto: DecoratedFirTree - entities: - - uid: 19846 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 30 - proto: DefaultStationBeaconAME entities: - uid: 20527 @@ -56340,10 +54722,10 @@ entities: parent: 30 - proto: DefaultStationBeaconCMORoom entities: - - uid: 20539 + - uid: 7162 components: - type: Transform - pos: -14.5,-13.5 + pos: -33.5,-19.5 parent: 30 - proto: DefaultStationBeaconCourtroom entities: @@ -56354,10 +54736,17 @@ entities: parent: 30 - proto: DefaultStationBeaconCryonics entities: - - uid: 20545 + - uid: 3162 components: - type: Transform - pos: -23.5,-7.5 + pos: -31.5,-11.5 + parent: 30 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 14843 + components: + - type: Transform + pos: 30.5,41.5 parent: 30 - proto: DefaultStationBeaconDetectiveRoom entities: @@ -56431,6 +54820,11 @@ entities: parent: 30 - proto: DefaultStationBeaconMedbay entities: + - uid: 8026 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 30 - uid: 20559 components: - type: Transform @@ -56492,6 +54886,13 @@ entities: - type: Transform pos: 31.5,-10.5 parent: 30 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 7064 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 30 - proto: DefaultStationBeaconServerRoom entities: - uid: 20568 @@ -56511,6 +54912,18 @@ entities: - type: Transform pos: -64.5,43.5 parent: 30 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 6980 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 30 + - uid: 7063 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 30 - proto: DefaultStationBeaconTechVault entities: - uid: 20571 @@ -56555,26 +54968,33 @@ entities: parent: 30 - proto: DefibrillatorCabinetFilled entities: - - uid: 2245 + - uid: 3167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,49.5 + rot: 1.5707963267948966 rad + pos: -23.5,-15.5 parent: 30 - - uid: 6712 + - uid: 6970 components: - type: Transform - pos: -22.5,-11.5 + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 parent: 30 - - uid: 6713 + - uid: 7871 components: - type: Transform - pos: -8.5,-18.5 + rot: 1.5707963267948966 rad + pos: -31.5,-20.5 parent: 30 - - uid: 7262 + - uid: 8023 components: - type: Transform - pos: -23.5,-6.5 + pos: -32.5,-8.5 + parent: 30 + - uid: 10150 + components: + - type: Transform + pos: -50.5,54.5 parent: 30 - proto: DeployableBarrier entities: @@ -56626,21 +55046,31 @@ entities: - type: Transform pos: 23.590357,37.55109 parent: 30 -- proto: DiseaseDiagnoser +- proto: DisposalBend entities: - - uid: 7143 + - uid: 6965 components: - type: Transform - pos: -25.5,-23.5 + rot: -1.5707963267948966 rad + pos: -12.5,-9.5 parent: 30 -- proto: DisposalBend - entities: - - uid: 7469 + - uid: 7196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 30 + - uid: 7301 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-20.5 parent: 30 + - uid: 7368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-20.5 + parent: 30 - uid: 8241 components: - type: Transform @@ -56659,12 +55089,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-58.5 parent: 30 - - uid: 9629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-20.5 - parent: 30 - uid: 11022 components: - type: Transform @@ -57048,34 +55472,12 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-9.5 parent: 30 - - uid: 14449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 30 - - uid: 14450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 30 - - uid: 14451 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 30 - uid: 14465 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-5.5 parent: 30 - - uid: 14466 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 30 - uid: 14467 components: - type: Transform @@ -57088,30 +55490,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-1.5 parent: 30 - - uid: 14477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 30 - - uid: 14498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 30 - - uid: 14510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 30 - - uid: 14511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 30 - uid: 14531 components: - type: Transform @@ -57288,11 +55666,11 @@ entities: parent: 30 - proto: DisposalJunction entities: - - uid: 7485 + - uid: 7412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 parent: 30 - uid: 13878 components: @@ -57380,26 +55758,20 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,15.5 parent: 30 - - uid: 14448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 30 - - uid: 14457 +- proto: DisposalJunctionFlipped + entities: + - uid: 7252 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-9.5 + pos: -19.5,-9.5 parent: 30 - - uid: 14476 + - uid: 7354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-9.5 + rot: 3.141592653589793 rad + pos: -21.5,-14.5 parent: 30 -- proto: DisposalJunctionFlipped - entities: - uid: 13888 components: - type: Transform @@ -57507,12 +55879,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-2.5 parent: 30 - - uid: 14458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 30 - uid: 16974 components: - type: Transform @@ -57574,95 +55940,180 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,25.5 parent: 30 - - uid: 7411 + - uid: 6892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-20.5 + pos: -21.5,-13.5 parent: 30 - - uid: 7419 + - uid: 6943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + rot: 1.5707963267948966 rad + pos: -16.5,-9.5 parent: 30 - - uid: 7466 + - uid: 6944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-20.5 + rot: 1.5707963267948966 rad + pos: -17.5,-9.5 parent: 30 - - uid: 7468 + - uid: 6947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-20.5 + rot: 1.5707963267948966 rad + pos: -18.5,-9.5 parent: 30 - - uid: 7473 + - uid: 6948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 + pos: -19.5,-5.5 parent: 30 - - uid: 9054 + - uid: 6949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-20.5 + pos: -19.5,-6.5 parent: 30 - - uid: 9631 + - uid: 6951 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 30 + - uid: 6964 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 30 + - uid: 6966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 30 + - uid: 6967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 30 + - uid: 6968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 30 + - uid: 6969 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 30 + - uid: 7029 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 30 + - uid: 7046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-21.5 + parent: 30 + - uid: 7052 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 30 + - uid: 7053 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 30 + - uid: 7054 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-20.5 + pos: -26.5,-9.5 parent: 30 - - uid: 9632 + - uid: 7055 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-20.5 + pos: -25.5,-9.5 parent: 30 - - uid: 9725 + - uid: 7056 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 30 + - uid: 7174 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 30 + - uid: 7191 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 30 + - uid: 7198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-20.5 + pos: -23.5,-9.5 parent: 30 - - uid: 9947 + - uid: 7245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-16.5 + rot: 1.5707963267948966 rad + pos: -19.5,-20.5 parent: 30 - - uid: 9958 + - uid: 7246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-18.5 + rot: 1.5707963267948966 rad + pos: -20.5,-20.5 parent: 30 - - uid: 9965 + - uid: 7247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-19.5 + pos: -21.5,-17.5 parent: 30 - - uid: 9967 + - uid: 7248 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 30 + - uid: 7285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 30 + - uid: 7299 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-20.5 + pos: -24.5,-9.5 parent: 30 - - uid: 9968 + - uid: 7300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-17.5 + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 parent: 30 - - uid: 9969 + - uid: 7304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-15.5 + pos: -21.5,-12.5 + parent: 30 + - uid: 7367 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 30 + - uid: 7414 + components: + - type: Transform + pos: -21.5,-18.5 parent: 30 - uid: 11018 components: @@ -60535,12 +58986,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 30 - - uid: 14441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 30 - uid: 14442 components: - type: Transform @@ -60571,51 +59016,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-7.5 parent: 30 - - uid: 14447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 30 - - uid: 14454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 30 - - uid: 14455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 30 - - uid: 14456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 30 - - uid: 14459 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 30 - - uid: 14460 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 30 - - uid: 14461 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 30 - - uid: 14462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 30 - uid: 14463 components: - type: Transform @@ -60643,113 +59043,6 @@ entities: - type: Transform pos: -22.5,-2.5 parent: 30 - - uid: 14472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 30 - - uid: 14473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 30 - - uid: 14474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 30 - - uid: 14475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 30 - - uid: 14478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 30 - - uid: 14479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 30 - - uid: 14480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 30 - - uid: 14481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 30 - - uid: 14500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 30 - - uid: 14501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 30 - - uid: 14502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 30 - - uid: 14503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 30 - - uid: 14504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 30 - - uid: 14505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 30 - - uid: 14506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 30 - - uid: 14507 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 30 - - uid: 14508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 30 - - uid: 14509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 30 - uid: 14532 components: - type: Transform @@ -60887,30 +59180,6 @@ entities: - type: Transform pos: -22.5,-35.5 parent: 30 - - uid: 21311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-25.5 - parent: 30 - - uid: 21312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-24.5 - parent: 30 - - uid: 21313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 30 - - uid: 21314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-22.5 - parent: 30 - uid: 22109 components: - type: Transform @@ -61616,10 +59885,28 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,31.5 parent: 30 - - uid: 9630 + - uid: 6955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-22.5 + parent: 30 + - uid: 6956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 30 + - uid: 6962 components: - type: Transform - pos: -7.5,-19.5 + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 30 + - uid: 6963 + components: + - type: Transform + pos: -19.5,-4.5 parent: 30 - uid: 11226 components: @@ -61799,17 +60086,6 @@ entities: - type: Transform pos: -7.5,-8.5 parent: 30 - - uid: 14433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 30 - - uid: 14436 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 30 - uid: 14453 components: - type: Transform @@ -61855,17 +60131,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-34.5 parent: 30 - - uid: 21309 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 30 - - uid: 21310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-26.5 - parent: 30 - uid: 22187 components: - type: Transform @@ -62024,20 +60289,30 @@ entities: - type: Transform pos: -7.5,-8.5 parent: 30 - - uid: 6829 + - uid: 6844 components: - type: Transform - pos: -11.5,-12.5 + pos: -11.5,-0.5 parent: 30 - - uid: 6844 + - uid: 6950 components: - type: Transform - pos: -11.5,-0.5 + pos: -27.5,-13.5 parent: 30 - - uid: 8323 + - uid: 6952 components: - type: Transform - pos: -25.5,-10.5 + pos: -19.5,-4.5 + parent: 30 + - uid: 6953 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 30 + - uid: 6954 + components: + - type: Transform + pos: -18.5,-22.5 parent: 30 - uid: 8504 components: @@ -62064,11 +60339,6 @@ entities: - type: Transform pos: -21.5,-44.5 parent: 30 - - uid: 9635 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 30 - uid: 10985 components: - type: Transform @@ -62124,11 +60394,6 @@ entities: - type: Transform pos: -11.5,31.5 parent: 30 - - uid: 21308 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 30 - uid: 22505 components: - type: Transform @@ -62164,6 +60429,11 @@ entities: - type: Transform pos: 4.5,34.5 parent: 30 + - uid: 7492 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 30 - uid: 19437 components: - type: Transform @@ -62235,79 +60505,93 @@ entities: - type: Transform pos: 3.5,15.5 parent: 30 - - uid: 4989 + - uid: 6427 components: - type: Transform - pos: -17.5,30.5 + pos: 16.5,39.5 parent: 30 - - uid: 5715 + - uid: 17643 components: - type: Transform - pos: -1.5,35.5 + pos: -78.5,-49.5 parent: 30 - - uid: 6427 + - uid: 17946 components: - type: Transform - pos: 16.5,39.5 + pos: -52.5,-51.5 parent: 30 - - uid: 11614 + - uid: 17947 components: - type: Transform - pos: -15.5,-36.5 + pos: -52.5,-55.5 parent: 30 - - uid: 17643 + - uid: 21299 components: - type: Transform - pos: -78.5,-49.5 + pos: -29.5,-45.5 parent: 30 - - uid: 17946 +- proto: DresserCaptainFilled + entities: + - uid: 4989 components: - type: Transform - pos: -52.5,-51.5 + pos: -17.5,30.5 parent: 30 - - uid: 17947 +- proto: DresserChiefEngineerFilled + entities: + - uid: 11614 components: - type: Transform - pos: -52.5,-55.5 + pos: -15.5,-36.5 parent: 30 - - uid: 20613 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 7165 components: - type: Transform - pos: -12.5,-16.5 + pos: -32.5,-23.5 parent: 30 - - uid: 20614 +- proto: DresserFilled + entities: + - uid: 9968 components: - type: Transform - pos: 23.5,2.5 + pos: -10.5,-22.5 parent: 30 - - uid: 20615 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 5715 components: - type: Transform - pos: 29.5,15.5 + pos: -1.5,35.5 parent: 30 +- proto: DresserHeadOfSecurityFilled + entities: - uid: 20616 components: - type: Transform pos: -26.5,48.5 parent: 30 - - uid: 21299 +- proto: DresserQuarterMasterFilled + entities: + - uid: 20614 components: - type: Transform - pos: -29.5,-45.5 + pos: 23.5,2.5 parent: 30 -- proto: DrinkBeepskySmashGlass +- proto: DresserResearchDirectorFilled entities: - - uid: 21365 + - uid: 20615 components: - type: Transform - pos: 5.473156,-7.310885 + pos: 29.5,15.5 parent: 30 -- proto: DrinkChangelingStingCan +- proto: DrinkBeepskySmashGlass entities: - - uid: 4400 + - uid: 21365 components: - type: Transform - pos: -40.5,-22.5 + pos: 5.473156,-7.310885 parent: 30 - proto: DrinkCoffeeLiqueurBottleFull entities: @@ -62323,6 +60607,13 @@ entities: - type: Transform pos: -0.6569953,-8.6031685 parent: 30 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 7168 + components: + - type: Transform + pos: -33.32029,-16.745209 + parent: 30 - proto: DrinkGildlagerBottleFull entities: - uid: 22265 @@ -62487,22 +60778,24 @@ entities: parent: 30 - type: Tag tags: [] -- proto: DrinkWaterCup +- proto: DrinkTeacup entities: - - uid: 7678 + - uid: 9911 components: - type: Transform - pos: -37.360497,-13.955395 + pos: -9.146156,-20.479715 parent: 30 - - uid: 9689 + - uid: 10006 components: - type: Transform - pos: -37.59487,-13.955395 + pos: -9.271156,-20.292215 parent: 30 - - uid: 9720 +- proto: DrinkTeapot + entities: + - uid: 9909 components: - type: Transform - pos: -37.485497,-13.955395 + pos: -8.552406,-20.323465 parent: 30 - proto: DrinkWhiskeyBottleFull entities: @@ -62523,10 +60816,10 @@ entities: - type: Transform pos: -4.3776336,-10.526808 parent: 30 - - uid: 11465 + - uid: 7081 components: - type: Transform - pos: -31.25652,-24.415495 + pos: -36.485306,-13.903969 parent: 30 - uid: 13378 components: @@ -62725,32 +61018,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21049 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21203 components: - type: Transform @@ -62948,19 +61215,17 @@ entities: - type: Transform pos: 2.5603247,15.401693 parent: 30 -- proto: EmergencyRollerBed +- proto: EmergencyRollerBedSpawnFolded entities: - - uid: 7000 + - uid: 1343 components: - type: Transform - pos: -15.524454,-12.386732 + pos: -14.602694,-16.508675 parent: 30 -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 496 + - uid: 7395 components: - type: Transform - pos: -23.5,-22.5 + pos: -32.550377,-19.499231 parent: 30 - proto: Emitter entities: @@ -63134,11 +61399,6 @@ entities: - type: Transform pos: 20.5,29.5 parent: 30 - - uid: 7091 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 30 - uid: 9076 components: - type: Transform @@ -63184,11 +61444,6 @@ entities: - type: Transform pos: -14.5,-44.5 parent: 30 - - uid: 11448 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 30 - uid: 12809 components: - type: Transform @@ -63228,27 +61483,27 @@ entities: parent: 30 - type: FaxMachine name: HoP - - uid: 7456 + - uid: 7387 components: - type: Transform - pos: -31.5,-4.5 + pos: -12.5,-15.5 parent: 30 - type: FaxMachine - name: Psych Ward - - uid: 7676 + name: Medical + - uid: 7451 components: - type: Transform - pos: -44.5,33.5 + pos: -33.5,-17.5 parent: 30 - type: FaxMachine - name: Detective Office - - uid: 7739 + name: CMO Office + - uid: 7676 components: - type: Transform - pos: 7.5,-14.5 + pos: -44.5,33.5 parent: 30 - type: FaxMachine - name: Consultant's Office + name: Detective Office - uid: 9637 components: - type: Transform @@ -63367,11 +61622,6 @@ entities: - type: Transform pos: 2.5,34.5 parent: 30 - - uid: 9721 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 30 - uid: 11017 components: - type: Transform @@ -63407,8 +61657,6 @@ entities: - 2648 - 1443 - 21911 - - type: AtmosDevice - joinedGrid: 30 - uid: 4354 components: - type: Transform @@ -63425,37 +61673,53 @@ entities: - 13644 - 17059 - 17625 - - type: AtmosDevice - joinedGrid: 30 - - uid: 4908 + - uid: 8248 components: - type: Transform - pos: -25.5,-6.5 + rot: 3.141592653589793 rad + pos: -15.5,-13.5 + parent: 30 + - uid: 8249 + components: + - type: Transform + pos: -20.5,-6.5 parent: 30 - type: DeviceList devices: - - 6934 - - 6935 - - 6936 - - 6937 - - 6930 - - 6933 - - 21815 - - type: AtmosDevice - joinedGrid: 30 - - uid: 8354 + - 7132 + - 7155 + - 7156 + - 7960 + - 7007 + - 7200 + - uid: 8259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 30 + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 30 + - type: DeviceList + devices: + - 8019 + - 8288 + - 7155 + - 7156 + - uid: 9712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-18.5 parent: 30 - type: DeviceList devices: - - 7738 - - 78 - - 18844 - - type: AtmosDevice - joinedGrid: 30 + - 7960 + - 7116 - uid: 17226 components: - type: Transform @@ -63468,8 +61732,6 @@ entities: - 15117 - 15116 - 13644 - - type: AtmosDevice - joinedGrid: 30 - uid: 20334 components: - type: Transform @@ -63482,8 +61744,6 @@ entities: - 11262 - 11263 - 11264 - - type: AtmosDevice - joinedGrid: 30 - uid: 20357 components: - type: Transform @@ -63498,8 +61758,6 @@ entities: - 11341 - 11342 - 20355 - - type: AtmosDevice - joinedGrid: 30 - uid: 21739 components: - type: Transform @@ -63511,8 +61769,6 @@ entities: - 11341 - 11342 - 20358 - - type: AtmosDevice - joinedGrid: 30 - uid: 21746 components: - type: Transform @@ -63528,8 +61784,6 @@ entities: - 9305 - 9304 - 9306 - - type: AtmosDevice - joinedGrid: 30 - uid: 21748 components: - type: Transform @@ -63544,8 +61798,6 @@ entities: - 8626 - 7731 - 21749 - - type: AtmosDevice - joinedGrid: 30 - uid: 21752 components: - type: Transform @@ -63559,8 +61811,6 @@ entities: - 9303 - 9301 - 9300 - - type: AtmosDevice - joinedGrid: 30 - uid: 21758 components: - type: Transform @@ -63576,8 +61826,6 @@ entities: - 9307 - 9308 - 9309 - - type: AtmosDevice - joinedGrid: 30 - uid: 21769 components: - type: Transform @@ -63592,8 +61840,6 @@ entities: - 11762 - 11803 - 12039 - - type: AtmosDevice - joinedGrid: 30 - uid: 21770 components: - type: Transform @@ -63611,9 +61857,6 @@ entities: - 8365 - 8364 - 21772 - - 18844 - - type: AtmosDevice - joinedGrid: 30 - uid: 21775 components: - type: Transform @@ -63629,8 +61872,6 @@ entities: - 8369 - 8367 - 21773 - - type: AtmosDevice - joinedGrid: 30 - uid: 21776 components: - type: Transform @@ -63649,8 +61890,6 @@ entities: - 8467 - 8468 - 21778 - - type: AtmosDevice - joinedGrid: 30 - uid: 21779 components: - type: Transform @@ -63666,8 +61905,6 @@ entities: - 6619 - 8467 - 8468 - - type: AtmosDevice - joinedGrid: 30 - uid: 21784 components: - type: Transform @@ -63682,8 +61919,6 @@ entities: - 11774 - 11705 - 21782 - - type: AtmosDevice - joinedGrid: 30 - uid: 21786 components: - type: Transform @@ -63697,8 +61932,6 @@ entities: - 11774 - 954 - 21787 - - type: AtmosDevice - joinedGrid: 30 - uid: 21793 components: - type: Transform @@ -63709,8 +61942,6 @@ entities: - 8473 - 8474 - 21792 - - type: AtmosDevice - joinedGrid: 30 - uid: 21795 components: - type: Transform @@ -63724,8 +61955,6 @@ entities: - 24 - 23 - 21794 - - type: AtmosDevice - joinedGrid: 30 - uid: 21798 components: - type: Transform @@ -63754,8 +61983,6 @@ entities: - 601 - 600 - 21799 - - type: AtmosDevice - joinedGrid: 30 - uid: 21800 components: - type: Transform @@ -63784,118 +62011,11 @@ entities: - 601 - 600 - 21799 - - type: AtmosDevice - joinedGrid: 30 - uid: 21802 components: - type: Transform pos: -7.5,-0.5 parent: 30 - - type: DeviceList - devices: - - 55 - - 27 - - 2 - - 6733 - - 6734 - - 6646 - - 994 - - 21803 - - 6785 - - 6786 - - 6787 - - 6788 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21806 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 30 - - type: DeviceList - devices: - - 6648 - - 6858 - - 6859 - - 6860 - - 21804 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 30 - - type: DeviceList - devices: - - 6648 - - 994 - - 6646 - - 21809 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 30 - - type: DeviceList - devices: - - 6858 - - 6859 - - 6860 - - 8326 - - 8325 - - 8324 - - 6936 - - 6937 - - 21812 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 30 - - type: DeviceList - devices: - - 6934 - - 6935 - - 6952 - - 21820 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 30 - - type: DeviceList - devices: - - 8324 - - 8325 - - 8326 - - 6952 - - 21825 - - type: AtmosDevice - joinedGrid: 30 - - uid: 21832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 30 - - type: DeviceList - devices: - - 6930 - - 6933 - - 21834 - - type: AtmosDevice - joinedGrid: 30 - uid: 21852 components: - type: Transform @@ -63906,8 +62026,6 @@ entities: - 20349 - 20350 - 21851 - - type: AtmosDevice - joinedGrid: 30 - uid: 21853 components: - type: Transform @@ -63918,8 +62036,6 @@ entities: - 21854 - 20351 - 20352 - - type: AtmosDevice - joinedGrid: 30 - uid: 21857 components: - type: Transform @@ -63931,8 +62047,6 @@ entities: - 21859 - 20347 - 20348 - - type: AtmosDevice - joinedGrid: 30 - uid: 21858 components: - type: Transform @@ -63943,8 +62057,6 @@ entities: - 21859 - 20347 - 20348 - - type: AtmosDevice - joinedGrid: 30 - uid: 21866 components: - type: Transform @@ -63960,8 +62072,6 @@ entities: - 1410 - 21867 - 10401 - - type: AtmosDevice - joinedGrid: 30 - uid: 21871 components: - type: Transform @@ -63976,8 +62086,6 @@ entities: - 1412 - 1413 - 21870 - - type: AtmosDevice - joinedGrid: 30 - uid: 21873 components: - type: Transform @@ -63995,8 +62103,6 @@ entities: - 1104 - 1103 - 1102 - - type: AtmosDevice - joinedGrid: 30 - uid: 21876 components: - type: Transform @@ -64009,8 +62115,6 @@ entities: - 1405 - 1406 - 1407 - - type: AtmosDevice - joinedGrid: 30 - uid: 21880 components: - type: Transform @@ -64027,8 +62131,6 @@ entities: - 31 - 29 - 28 - - type: AtmosDevice - joinedGrid: 30 - uid: 21884 components: - type: Transform @@ -64047,8 +62149,6 @@ entities: - 1412 - 1413 - 21882 - - type: AtmosDevice - joinedGrid: 30 - uid: 21887 components: - type: Transform @@ -64067,8 +62167,6 @@ entities: - 20384 - 20383 - 21885 - - type: AtmosDevice - joinedGrid: 30 - uid: 21889 components: - type: Transform @@ -64087,8 +62185,6 @@ entities: - 20385 - 20383 - 21890 - - type: AtmosDevice - joinedGrid: 30 - uid: 21898 components: - type: Transform @@ -64101,8 +62197,6 @@ entities: - 2745 - 2744 - 21896 - - type: AtmosDevice - joinedGrid: 30 - uid: 21904 components: - type: Transform @@ -64123,8 +62217,6 @@ entities: - 21893 - 21894 - 21895 - - type: AtmosDevice - joinedGrid: 30 - uid: 21907 components: - type: Transform @@ -64136,8 +62228,6 @@ entities: - 2005 - 2006 - 1443 - - type: AtmosDevice - joinedGrid: 30 - uid: 21912 components: - type: Transform @@ -64153,8 +62243,6 @@ entities: - 2222 - 2221 - 21914 - - type: AtmosDevice - joinedGrid: 30 - uid: 21915 components: - type: Transform @@ -64166,8 +62254,6 @@ entities: - 4891 - 4892 - 21916 - - type: AtmosDevice - joinedGrid: 30 - uid: 21918 components: - type: Transform @@ -64180,8 +62266,6 @@ entities: - 20387 - 20388 - 21919 - - type: AtmosDevice - joinedGrid: 30 - uid: 21927 components: - type: Transform @@ -64196,8 +62280,6 @@ entities: - 6102 - 6103 - 6104 - - type: AtmosDevice - joinedGrid: 30 - uid: 21929 components: - type: Transform @@ -64215,8 +62297,6 @@ entities: - 6094 - 6093 - 6092 - - type: AtmosDevice - joinedGrid: 30 - uid: 21935 components: - type: Transform @@ -64228,8 +62308,6 @@ entities: - 21938 - 5649 - 5650 - - type: AtmosDevice - joinedGrid: 30 - uid: 21936 components: - type: Transform @@ -64241,8 +62319,6 @@ entities: - 5651 - 5652 - 21937 - - type: AtmosDevice - joinedGrid: 30 - uid: 21942 components: - type: Transform @@ -64256,8 +62332,6 @@ entities: - 5652 - 5649 - 5650 - - type: AtmosDevice - joinedGrid: 30 - uid: 22031 components: - type: Transform @@ -64273,8 +62347,6 @@ entities: - 6537 - 6538 - 11275 - - type: AtmosDevice - joinedGrid: 30 - uid: 22033 components: - type: Transform @@ -64286,8 +62358,6 @@ entities: - 22032 - 5441 - 923 - - type: AtmosDevice - joinedGrid: 30 - uid: 22034 components: - type: Transform @@ -64303,8 +62373,6 @@ entities: - 1538 - 5441 - 923 - - type: AtmosDevice - joinedGrid: 30 - uid: 22037 components: - type: Transform @@ -64326,8 +62394,6 @@ entities: - 6540 - 6541 - 22039 - - type: AtmosDevice - joinedGrid: 30 - uid: 22040 components: - type: Transform @@ -64339,8 +62405,6 @@ entities: - 6536 - 6537 - 6538 - - type: AtmosDevice - joinedGrid: 30 - uid: 22049 components: - type: Transform @@ -64357,8 +62421,6 @@ entities: - 20952 - 20953 - 20954 - - type: AtmosDevice - joinedGrid: 30 - uid: 22051 components: - type: Transform @@ -64371,8 +62433,6 @@ entities: - 20953 - 20954 - 22053 - - type: AtmosDevice - joinedGrid: 30 - uid: 22055 components: - type: Transform @@ -64388,8 +62448,6 @@ entities: - 12858 - 13391 - 22056 - - type: AtmosDevice - joinedGrid: 30 - uid: 22060 components: - type: Transform @@ -64400,8 +62458,6 @@ entities: - 12858 - 13391 - 22061 - - type: AtmosDevice - joinedGrid: 30 - uid: 22064 components: - type: Transform @@ -64419,8 +62475,6 @@ entities: - 12626 - 12624 - 22066 - - type: AtmosDevice - joinedGrid: 30 - uid: 22068 components: - type: Transform @@ -64436,8 +62490,6 @@ entities: - 12622 - 12621 - 12620 - - type: AtmosDevice - joinedGrid: 30 - uid: 22074 components: - type: Transform @@ -64448,8 +62500,6 @@ entities: - 320 - 21456 - 22072 - - type: AtmosDevice - joinedGrid: 30 - uid: 22076 components: - type: Transform @@ -64465,8 +62515,6 @@ entities: - 20378 - 20377 - 22077 - - type: AtmosDevice - joinedGrid: 30 - uid: 22080 components: - type: Transform @@ -64483,8 +62531,6 @@ entities: - 649 - 650 - 651 - - type: AtmosDevice - joinedGrid: 30 - uid: 22085 components: - type: Transform @@ -64514,8 +62560,6 @@ entities: - 601 - 600 - 22086 - - type: AtmosDevice - joinedGrid: 30 - proto: FireAxeCabinetFilled entities: - uid: 5846 @@ -64560,17 +62604,6 @@ entities: - type: Transform pos: 6.6169024,64.64015 parent: 30 -- proto: Firelock - entities: - - uid: 78 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 8354 - - 19567 - proto: FirelockEdge entities: - uid: 596 @@ -65297,16 +63330,6 @@ entities: - type: Transform pos: -6.5,-5.5 parent: 30 - - uid: 6648 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 30 - - uid: 6668 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 30 - uid: 6733 components: - type: Transform @@ -65317,16 +63340,6 @@ entities: - type: Transform pos: -4.5,-2.5 parent: 30 - - uid: 6785 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 30 - - uid: 6786 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 30 - uid: 6787 components: - type: Transform @@ -65337,81 +63350,91 @@ entities: - type: Transform pos: -13.5,-5.5 parent: 30 - - uid: 6858 + - uid: 7007 components: - type: Transform pos: -16.5,-10.5 parent: 30 - - uid: 6859 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 30 - - uid: 6860 + - type: DeviceNetwork + deviceLists: + - 8249 + - 8267 + - uid: 7155 components: - type: Transform - pos: -16.5,-8.5 + pos: -26.5,-10.5 parent: 30 - - uid: 6930 + - type: DeviceNetwork + deviceLists: + - 8262 + - 8254 + - 8249 + - 8267 + - uid: 7156 components: - type: Transform pos: -26.5,-9.5 parent: 30 - - uid: 6933 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 30 - - uid: 6934 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 30 - - uid: 6935 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 30 - - uid: 6936 + - type: DeviceNetwork + deviceLists: + - 8262 + - 8254 + - 8249 + - 8267 + - uid: 7200 components: - type: Transform - pos: -20.5,-9.5 + pos: -16.5,-9.5 parent: 30 - - uid: 6937 + - type: DeviceNetwork + deviceLists: + - 8249 + - 8267 + - uid: 7731 components: - type: Transform - pos: -20.5,-8.5 + pos: -1.5,-21.5 parent: 30 - - uid: 6952 + - uid: 7921 components: - type: Transform - pos: -20.5,-13.5 + pos: -12.5,-7.5 parent: 30 - - uid: 7731 + - uid: 7960 components: - type: Transform - pos: -1.5,-21.5 + pos: -21.5,-13.5 parent: 30 - - uid: 7925 + - type: DeviceNetwork + deviceLists: + - 9712 + - 9671 + - 8249 + - 8267 + - uid: 8051 components: - type: Transform - pos: -31.5,-8.5 + pos: -13.5,-13.5 parent: 30 - - uid: 8324 + - uid: 8250 components: - type: Transform - pos: -19.5,-11.5 + pos: -11.5,-7.5 parent: 30 - - uid: 8325 + - uid: 8261 components: - type: Transform - pos: -18.5,-11.5 + pos: -34.5,-0.5 parent: 30 - - uid: 8326 + - uid: 8288 components: - type: Transform - pos: -17.5,-11.5 + pos: -29.5,-8.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 8262 + - 8254 - uid: 8364 components: - type: Transform @@ -65487,16 +63510,6 @@ entities: - type: Transform pos: -3.5,-21.5 parent: 30 - - uid: 9051 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 30 - - uid: 9053 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 30 - uid: 9161 components: - type: Transform @@ -65507,11 +63520,6 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 30 - - uid: 9220 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 30 - uid: 9300 components: - type: Transform @@ -65572,10 +63580,20 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 30 - - uid: 9698 + - uid: 9669 components: - type: Transform - pos: -33.5,-8.5 + pos: -10.5,-8.5 + parent: 30 + - uid: 9914 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 30 + - uid: 9915 + components: + - type: Transform + pos: -35.5,-28.5 parent: 30 - uid: 10394 components: @@ -65827,46 +63845,16 @@ entities: - type: Transform pos: -74.5,-55.5 parent: 30 - - uid: 18844 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 8354 - - 21770 - - 19567 - uid: 19590 components: - type: Transform pos: -29.5,-37.5 parent: 30 - - uid: 19724 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 30 - - uid: 19725 - components: - - type: Transform - pos: -35.5,-28.5 - parent: 30 - uid: 19741 components: - type: Transform pos: -20.5,-25.5 parent: 30 - - uid: 19766 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 30 - - uid: 19767 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 30 - uid: 20051 components: - type: Transform @@ -65917,11 +63905,6 @@ entities: - type: Transform pos: -10.5,6.5 parent: 30 - - uid: 20474 - components: - - type: Transform - pos: -35.5,-29.5 - parent: 30 - uid: 20952 components: - type: Transform @@ -65984,6 +63967,11 @@ entities: - type: Transform pos: 3.5,34.5 parent: 30 + - uid: 7167 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 30 - proto: Flash entities: - uid: 8346 @@ -66306,11 +64294,6 @@ entities: parent: 30 - proto: FloraTree06 entities: - - uid: 7480 - components: - - type: Transform - pos: -32.06082,-15.425764 - parent: 30 - uid: 17962 components: - type: Transform @@ -66323,13 +64306,6 @@ entities: - type: Transform pos: -65.83857,-27.877716 parent: 30 -- proto: FoamBlade - entities: - - uid: 19845 - components: - - type: Transform - pos: -41.583946,-22.503822 - parent: 30 - proto: FoodBanana entities: - uid: 657 @@ -66434,13 +64410,6 @@ entities: - type: Transform pos: -11.54011,18.632044 parent: 30 -- proto: FoodCakeChristmas - entities: - - uid: 19852 - components: - - type: Transform - pos: -40.52188,-20.665724 - parent: 30 - proto: FoodCartCold entities: - uid: 4453 @@ -66693,6 +64662,13 @@ entities: - type: Transform pos: 43.4532,20.776619 parent: 30 +- proto: FoodPoppy + entities: + - uid: 5626 + components: + - type: Transform + pos: 7.8005,42.792442 + parent: 30 - proto: FoodTinBeansTrash entities: - uid: 16164 @@ -66736,16 +64712,16 @@ entities: - type: Transform pos: 37.37397,7.60861 parent: 30 -- proto: GasFilterFlipped +- proto: GasFilter entities: - - uid: 6967 + - uid: 7602 components: + - type: MetaData + name: Filter to Waste - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-9.5 + pos: -32.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasMinerCarbonDioxide @@ -66755,8 +64731,6 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMinerNitrogen entities: - uid: 8689 @@ -66764,8 +64738,6 @@ entities: - type: Transform pos: 26.5,-22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMinerOxygen entities: - uid: 8690 @@ -66773,8 +64745,6 @@ entities: - type: Transform pos: 26.5,-24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMinerWaterVapor entities: - uid: 8692 @@ -66782,8 +64752,6 @@ entities: - type: Transform pos: 26.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMixer entities: - uid: 12927 @@ -66792,8 +64760,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasOutletInjector entities: - uid: 8693 @@ -66802,56 +64768,42 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8695 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8702 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8703 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8704 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-30.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8705 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8706 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasPassiveVent entities: - uid: 368 @@ -66860,137 +64812,95 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 481 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 3125 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 3126 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-58.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 3221 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-59.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7099 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7100 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-26.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8566 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8694 components: - type: Transform pos: 27.5,-22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8696 components: - type: Transform pos: 27.5,-24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8697 components: - type: Transform pos: 27.5,-26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8698 components: - type: Transform pos: 27.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8699 components: - type: Transform pos: 27.5,-30.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8700 components: - type: Transform pos: 27.5,-32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8701 components: - type: Transform pos: 27.5,-34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9018 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9019 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#947507FF' - uid: 9622 @@ -66999,30 +64909,22 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-59.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12869 components: - type: Transform pos: 35.5,12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12870 components: - type: Transform pos: 38.5,12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 21275 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasPipeBend entities: - uid: 866 @@ -67444,77 +65346,72 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6867 + - uid: 6789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-5.5 + pos: -37.5,-9.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6883 + - uid: 6934 components: - type: Transform - pos: -28.5,-9.5 + pos: -17.5,-0.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6884 + - uid: 6936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-9.5 + pos: -18.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6942 + color: '#FF1212FF' + - uid: 6961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-8.5 + rot: 3.141592653589793 rad + pos: -18.5,-0.5 parent: 30 - - uid: 6966 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7001 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-9.5 + pos: -37.5,-11.5 parent: 30 - - uid: 7069 + - uid: 7003 components: - type: Transform - pos: -25.5,-9.5 + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7070 + - uid: 7066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-9.5 + rot: -1.5707963267948966 rad + pos: -30.5,-11.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7098 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-59.5 parent: 30 - - uid: 7123 + - uid: 7113 components: - type: Transform - pos: 1.5,-51.5 + rot: 3.141592653589793 rad + pos: -30.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7130 + color: '#0335FCFF' + - uid: 7123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-10.5 + pos: 1.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 7146 components: - type: Transform @@ -67527,14 +65424,21 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-59.5 parent: 30 - - uid: 7217 + - uid: 7154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-10.5 + pos: -30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' + - uid: 7204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7221 components: - type: Transform @@ -67557,12 +65461,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7294 + - uid: 7353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-20.5 + rot: 3.141592653589793 rad + pos: -19.5,-4.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7376 components: - type: Transform @@ -67578,84 +65484,66 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-24.5 - parent: 30 - - uid: 7494 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 30 - - uid: 7499 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 30 - - uid: 7554 + - uid: 7564 components: - type: Transform - pos: -8.5,-19.5 + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7561 + - uid: 7667 components: - type: Transform - pos: -15.5,-20.5 + rot: 3.141592653589793 rad + pos: -6.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7562 + color: '#03FCD3FF' + - uid: 7672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-20.5 + rot: 3.141592653589793 rad + pos: -12.5,-53.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7563 + - uid: 7762 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-21.5 + pos: -29.5,-22.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7564 + - uid: 7887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + pos: -33.5,-12.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7667 + - uid: 7918 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-52.5 + pos: -32.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7672 + color: '#FF1212FF' + - uid: 8063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-53.5 + rot: -1.5707963267948966 rad + pos: -28.5,-12.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7870 + - uid: 8076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-11.5 + pos: -20.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 8219 components: - type: Transform @@ -67812,6 +65700,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 9051 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9067 components: - type: Transform @@ -68609,34 +66504,34 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7215 + - uid: 7002 components: - type: Transform - pos: -22.5,-8.5 + pos: -37.5,-10.5 parent: 30 - - uid: 7274 + - uid: 7071 components: - type: Transform - pos: -28.5,-5.5 + pos: -29.5,-12.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7293 + - uid: 7086 components: - type: Transform - pos: -31.5,-20.5 + pos: -34.5,-1.5 parent: 30 - - uid: 7379 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7603 components: - type: Transform - pos: -17.5,-9.5 + pos: -33.5,-11.5 parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7530 + - uid: 8021 components: - type: Transform - pos: -19.5,-13.5 + pos: -28.5,-5.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -68746,6 +66641,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 475 components: - type: Transform @@ -68765,18 +66662,24 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 877 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 908 components: - type: Transform @@ -68788,6 +66691,8 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 915 components: - type: Transform @@ -68836,24 +66741,32 @@ entities: - type: Transform pos: -44.5,-4.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1076 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1307 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1308 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1415 components: - type: Transform @@ -68861,6 +66774,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 1929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2100 components: - type: Transform @@ -71503,14 +69424,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 2934 components: - type: Transform @@ -72763,12 +70676,16 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3179 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 3190 components: - type: Transform @@ -74352,6 +72269,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5006 components: - type: Transform @@ -74372,24 +72297,54 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5427 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5428 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5494 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-20.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 30 - uid: 5892 components: - type: Transform @@ -75239,26 +73194,114 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6869 + - uid: 6681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6686 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-9.5 + pos: -14.5,-9.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6870 + - uid: 6724 components: - type: Transform - pos: -27.5,-6.5 + pos: -12.5,-8.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-8.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6891 + - uid: 6820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6893 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-8.5 + pos: -17.5,-1.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' @@ -75270,6 +73313,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 6897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6898 components: - type: Transform @@ -75309,40 +73360,124 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6940 + - uid: 6922 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-8.5 + pos: -31.5,-16.5 parent: 30 - - uid: 6969 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6925 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-9.5 + pos: -32.5,-16.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7072 + - uid: 6930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6931 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6932 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6937 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6938 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6957 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-10.5 + pos: -35.5,-11.5 + parent: 30 + - uid: 7043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7073 + - uid: 7059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7060 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7075 + color: '#0335FCFF' + - uid: 7069 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -75364,10 +73499,88 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-58.5 parent: 30 + - uid: 7117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7203 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7205 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7216 components: - type: Transform - pos: -27.5,-8.5 + pos: -11.5,-8.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -75395,19 +73608,22 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7292 + - uid: 7257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-20.5 + pos: -18.5,-9.5 parent: 30 - - uid: 7304 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7303 components: - type: Transform - pos: -31.5,-10.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 7306 components: - type: Transform @@ -75639,13 +73855,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7346 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 7347 components: - type: Transform @@ -75674,20 +73883,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7351 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7352 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7357 components: - type: Transform @@ -75712,14 +73907,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 7361 components: - type: Transform @@ -75744,62 +73931,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 7375 components: - type: Transform @@ -75808,81 +73939,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7386 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-8.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7396 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7397 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7398 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7399 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7400 components: - type: Transform @@ -75897,27 +73953,21 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7402 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7404 + - uid: 7405 components: - type: Transform - pos: -17.5,-4.5 + pos: -17.5,-3.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7405 + - uid: 7406 components: - type: Transform - pos: -17.5,-3.5 + rot: -1.5707963267948966 rad + pos: -24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 7409 components: - type: Transform @@ -75932,622 +73982,147 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7416 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 30 - - uid: 7423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 30 - - uid: 7432 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7435 + - uid: 7480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-20.5 + pos: -34.5,-11.5 parent: 30 - - uid: 7451 + - uid: 7488 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-7.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7459 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7460 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7461 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7462 - components: - - type: Transform - pos: -28.5,-13.5 + pos: -20.5,-9.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7486 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7492 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 30 - - uid: 7493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-18.5 - parent: 30 - uid: 7495 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 30 - - uid: 7496 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 30 - - uid: 7497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-21.5 - parent: 30 - - uid: 7500 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 30 - - uid: 7501 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 30 - - uid: 7502 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 30 - - uid: 7503 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 30 - - uid: 7506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-22.5 - parent: 30 - - uid: 7507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 30 - - uid: 7508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 30 - - uid: 7509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-22.5 - parent: 30 - - uid: 7512 - components: - - type: Transform - pos: -33.5,-22.5 - parent: 30 - - uid: 7517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 30 - - uid: 7525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 30 - - uid: 7526 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 30 - - uid: 7528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-14.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-15.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-16.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-17.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-19.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-19.5 + pos: -21.5,-9.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7547 + - uid: 7505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-19.5 + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7549 + color: '#FF1212FF' + - uid: 7526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 + pos: -34.5,-2.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7550 + - uid: 7531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-19.5 + pos: -16.5,-15.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7552 + color: '#FF1212FF' + - uid: 7566 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-19.5 + pos: -19.5,-15.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7553 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-19.5 + pos: -21.5,-15.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-17.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7575 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -20.5,-18.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7580 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7582 + - uid: 7573 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 + pos: -22.5,-12.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7584 + - uid: 7599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 + rot: 3.141592653589793 rad + pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7585 + - uid: 7604 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-21.5 + pos: -27.5,-16.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7590 + - uid: 7661 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-15.5 + pos: -19.5,-5.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7591 + - uid: 7662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 + rot: 3.141592653589793 rad + pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7592 + - uid: 7664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + rot: 3.141592653589793 rad + pos: -30.5,-19.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7602 + - uid: 7665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + rot: 1.5707963267948966 rad + pos: -28.5,-22.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 7668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-10.5 + rot: 3.141592653589793 rad + pos: -30.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 7669 components: - type: Transform @@ -76576,37 +74151,90 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-23.5 + pos: -29.5,-21.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7756 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-23.5 + pos: -29.5,-19.5 parent: 30 - - uid: 7871 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7761 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-9.5 + rot: 1.5707963267948966 rad + pos: -26.5,-21.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7872 + - uid: 7763 components: - type: Transform - pos: -33.5,-7.5 + rot: 3.141592653589793 rad + pos: -29.5,-20.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7873 + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-5.5 + pos: -32.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' + - uid: 7832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7914 components: - type: Transform @@ -76615,121 +74243,334 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7926 + - uid: 7925 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-7.5 + pos: -18.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7942 + color: '#FF1212FF' + - uid: 7928 components: - type: Transform - pos: -33.5,-6.5 + rot: 1.5707963267948966 rad + pos: -19.5,-20.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8213 + - uid: 7929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-5.5 + rot: 3.141592653589793 rad + pos: -13.5,-11.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8214 + - uid: 7950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 + pos: -28.5,-11.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8215 + - uid: 7951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 + pos: -28.5,-8.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8216 + - uid: 7999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 + rot: 3.141592653589793 rad + pos: -20.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8217 + - uid: 8030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 + rot: 3.141592653589793 rad + pos: -22.5,-13.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8218 + - uid: 8031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8221 + - uid: 8032 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-4.5 + pos: -22.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8222 + color: '#0335FCFF' + - uid: 8037 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-4.5 + pos: -22.5,-19.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8281 + - uid: 8041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-19.5 + pos: -20.5,-15.5 parent: 30 - - uid: 8287 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8050 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-22.5 + pos: -29.5,-13.5 parent: 30 - - uid: 8358 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-12.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8060 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8061 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8065 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8067 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-7.5 + pos: -18.5,-15.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8362 + - uid: 8068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + rot: 3.141592653589793 rad + pos: -20.5,-19.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8077 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-14.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-20.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8534 + - uid: 8094 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8095 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-10.5 + pos: -15.5,-15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8098 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-15.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-13.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8543 components: - type: Transform @@ -77190,14 +75031,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 8805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 8807 components: - type: Transform @@ -77751,10 +75584,14 @@ entities: - uid: 8933 components: - type: Transform + anchored: False pos: 7.5,-22.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8934 components: - type: Transform @@ -78068,6 +75905,52 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 9035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-14.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9050 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9052 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9062 components: - type: Transform @@ -78104,6 +75987,8 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-8.5 parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9623 components: - type: Transform @@ -78128,6 +76013,38 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9702 components: - type: Transform @@ -78521,6 +76438,39 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9834 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9863 components: - type: Transform @@ -78529,6 +76479,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9868 components: - type: Transform @@ -78737,21 +76695,17 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9980 components: - type: Transform + anchored: False pos: 5.5,-22.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 9982 components: - type: Transform @@ -84919,13 +82873,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 21681 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 21987 components: - type: Transform @@ -85457,18 +83404,26 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-5.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 925 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -11.5,-56.5 parent: 30 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 962 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-9.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1938 components: - type: Transform @@ -86537,6 +84492,18 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-58.5 parent: 30 + - uid: 5857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-11.5 + parent: 30 + - uid: 5859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 30 - uid: 6110 components: - type: Transform @@ -86683,27 +84650,82 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 6872 + - uid: 6666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 + pos: -30.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6944 + - uid: 7014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 + rot: 3.141592653589793 rad + pos: -23.5,-9.5 parent: 30 - - uid: 7077 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7044 components: - type: Transform - pos: -18.5,-9.5 + rot: 3.141592653589793 rad + pos: -19.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7045 + components: + - type: Transform + pos: -22.5,-9.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 7058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7061 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7074 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7096 components: - type: Transform @@ -86724,25 +84746,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 7201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 30 - - uid: 7214 + - uid: 7147 components: - type: Transform - pos: -27.5,-5.5 + pos: -28.5,-17.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 30 - uid: 7223 components: - type: Transform @@ -86815,184 +84825,155 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7354 + - uid: 7351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-9.5 + pos: -18.5,1.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7355 + - uid: 7374 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 + pos: -7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7356 + color: '#FF1212FF' + - uid: 7534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-10.5 + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7374 + color: '#0335FCFF' + - uid: 7545 components: - type: Transform - pos: -7.5,-10.5 + pos: -23.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7384 + - uid: 7593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-10.5 + pos: -33.5,-10.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7403 + - uid: 7757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-5.5 + pos: -29.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7431 + color: '#FF1212FF' + - uid: 7819 components: - type: Transform - pos: -31.5,-7.5 + rot: 3.141592653589793 rad + pos: -28.5,-21.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7442 + - uid: 7878 components: - type: Transform - pos: -29.5,-7.5 + pos: -13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7498 + color: '#FF1212FF' + - uid: 7886 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-19.5 - parent: 30 - - uid: 7510 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 30 - - uid: 7534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 + pos: -12.5,-9.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7538 + - uid: 7924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 + rot: 3.141592653589793 rad + pos: -22.5,-21.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7541 + - uid: 7926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-15.5 + pos: -22.5,-15.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7543 + - uid: 7946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-18.5 + rot: 3.141592653589793 rad + pos: -25.5,-17.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7548 + - uid: 7948 components: - type: Transform - pos: -14.5,-19.5 + pos: -29.5,-9.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7557 + - uid: 7949 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-20.5 + pos: -28.5,-10.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7565 + - uid: 7961 components: - type: Transform - pos: -14.5,-21.5 + rot: -1.5707963267948966 rad + pos: -17.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7581 + color: '#0335FCFF' + - uid: 8018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 + rot: 1.5707963267948966 rad + pos: -20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7869 + color: '#FF1212FF' + - uid: 8028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-7.5 + rot: -1.5707963267948966 rad + pos: -22.5,-16.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7915 + - uid: 8089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,-7.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7923 + - uid: 8104 components: - type: Transform - pos: -33.5,-5.5 + pos: -21.5,-17.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7938 + - uid: 8107 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-10.5 + pos: -20.5,-17.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -87035,12 +85016,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 30 - uid: 8299 components: - type: Transform @@ -87227,6 +85202,28 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9689 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9694 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-16.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9728 components: - type: Transform @@ -87290,6 +85287,22 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 9847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9867 components: - type: Transform @@ -88272,40 +86285,42 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6711 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - uid: 6757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 30 + - uid: 6799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 30 - uid: 8800 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8801 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9064 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9676 @@ -88314,8 +86329,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 10390 @@ -88324,8 +86337,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10392 @@ -88334,8 +86345,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11744 @@ -88344,8 +86353,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11869 @@ -88354,8 +86361,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12867 @@ -88364,99 +86369,84 @@ entities: rot: 3.141592653589793 rad pos: 39.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12921 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 16775 components: - type: Transform pos: 36.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18776 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18777 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18778 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 19440 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasPressurePump entities: - - uid: 6968 + - uid: 7140 components: + - type: MetaData + name: Canisters to Cryo - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -36.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 7911 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-35.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7913 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - uid: 7962 + components: + - type: MetaData + name: Distro to Cryo + - type: Transform + pos: -30.5,-10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8781 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8792 @@ -88465,40 +86455,30 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-29.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8793 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-27.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8796 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8797 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-25.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8802 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-33.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9013 components: - type: MetaData @@ -88507,8 +86487,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9028 components: - type: MetaData @@ -88516,8 +86494,6 @@ entities: - type: Transform pos: 6.5,-36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#EB9834FF' - uid: 9066 @@ -88526,8 +86502,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9102 @@ -88536,8 +86510,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 9862 @@ -88548,8 +86520,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-54.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#34E5EBFF' - uid: 12922 @@ -88558,23 +86528,17 @@ entities: rot: 3.141592653589793 rad pos: 35.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 13354 components: - type: Transform pos: 38.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 18772 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-62.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasThermoMachineFreezer @@ -88584,15 +86548,16 @@ entities: - type: Transform pos: -16.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - uid: 901 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 30 - uid: 6659 components: - type: Transform pos: -10.5,-47.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7109 components: - type: Transform @@ -88601,8 +86566,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - type: AtmosDevice - joinedGrid: 30 - uid: 7112 components: - type: Transform @@ -88611,47 +86574,34 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - type: AtmosDevice - joinedGrid: 30 + - uid: 7598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-13.5 + parent: 30 - uid: 12038 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-33.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12084 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12749 components: - type: Transform pos: 31.5,12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12868 components: - type: Transform pos: 39.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 7068 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasThermoMachineHeater entities: - uid: 6642 @@ -88659,16 +86609,12 @@ entities: - type: Transform pos: -11.5,-47.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12085 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-35.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasValve entities: - uid: 6714 @@ -88678,8 +86624,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7222 @@ -88692,8 +86636,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 8278 @@ -88706,8 +86648,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 9657 @@ -88717,8 +86657,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9807 @@ -88729,8 +86667,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - uid: 9808 components: - type: Transform @@ -88739,8 +86675,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - uid: 21274 components: - type: MetaData @@ -88751,8 +86685,6 @@ entities: parent: 30 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVentPump @@ -88763,8 +86695,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2454 @@ -88773,8 +86703,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2482 @@ -88783,8 +86711,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2491 @@ -88793,8 +86719,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2493 @@ -88802,8 +86726,6 @@ entities: - type: Transform pos: -45.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2503 @@ -88812,8 +86734,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2523 @@ -88821,8 +86741,6 @@ entities: - type: Transform pos: -33.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2524 @@ -88831,8 +86749,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,46.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2544 @@ -88841,8 +86757,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2551 @@ -88850,8 +86764,6 @@ entities: - type: Transform pos: -40.5,51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2573 @@ -88860,8 +86772,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,49.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2592 @@ -88870,8 +86780,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2594 @@ -88880,8 +86788,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,52.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2638 @@ -88890,8 +86796,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2639 @@ -88900,8 +86804,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2640 @@ -88910,8 +86812,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2644 @@ -88919,8 +86819,6 @@ entities: - type: Transform pos: -41.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2669 @@ -88929,8 +86827,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,49.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2676 @@ -88939,8 +86835,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,52.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2705 @@ -88948,8 +86842,6 @@ entities: - type: Transform pos: -48.5,68.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2706 @@ -88958,8 +86850,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,66.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2707 @@ -88968,8 +86858,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,61.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2708 @@ -88978,8 +86866,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,61.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2734 @@ -88988,8 +86874,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,56.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2743 @@ -88998,8 +86882,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2862 @@ -89007,8 +86889,6 @@ entities: - type: Transform pos: -8.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3042 @@ -89017,8 +86897,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3050 @@ -89027,8 +86905,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3056 @@ -89037,8 +86913,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3062 @@ -89047,8 +86921,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3064 @@ -89057,8 +86929,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3066 @@ -89067,8 +86937,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3069 @@ -89077,8 +86945,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3077 @@ -89086,8 +86952,6 @@ entities: - type: Transform pos: -40.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3099 @@ -89095,8 +86959,6 @@ entities: - type: Transform pos: -42.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3111 @@ -89105,8 +86967,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3135 @@ -89115,8 +86975,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3148 @@ -89125,8 +86983,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3171 @@ -89135,8 +86991,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3228 @@ -89145,8 +86999,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3230 @@ -89154,8 +87006,6 @@ entities: - type: Transform pos: -32.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3253 @@ -89163,8 +87013,6 @@ entities: - type: Transform pos: -43.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3266 @@ -89172,8 +87020,6 @@ entities: - type: Transform pos: -44.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3302 @@ -89182,8 +87028,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3303 @@ -89192,8 +87036,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3304 @@ -89202,8 +87044,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3305 @@ -89212,8 +87052,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3323 @@ -89222,8 +87060,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3324 @@ -89231,8 +87067,6 @@ entities: - type: Transform pos: -50.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3325 @@ -89240,8 +87074,6 @@ entities: - type: Transform pos: -27.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3327 @@ -89249,8 +87081,6 @@ entities: - type: Transform pos: -17.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3357 @@ -89259,8 +87089,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3376 @@ -89268,8 +87096,6 @@ entities: - type: Transform pos: -26.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3401 @@ -89278,8 +87104,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3407 @@ -89287,8 +87111,6 @@ entities: - type: Transform pos: -10.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3410 @@ -89296,8 +87118,6 @@ entities: - type: Transform pos: 5.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3422 @@ -89306,8 +87126,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3469 @@ -89315,8 +87133,6 @@ entities: - type: Transform pos: -16.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3479 @@ -89325,8 +87141,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3480 @@ -89334,8 +87148,6 @@ entities: - type: Transform pos: -9.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3481 @@ -89344,8 +87156,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3485 @@ -89354,8 +87164,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6109 @@ -89363,8 +87171,6 @@ entities: - type: Transform pos: -23.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6113 @@ -89372,8 +87178,6 @@ entities: - type: Transform pos: 3.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6123 @@ -89382,8 +87186,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6205 @@ -89391,8 +87193,6 @@ entities: - type: Transform pos: -9.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6214 @@ -89401,8 +87201,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6223 @@ -89411,8 +87209,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6229 @@ -89421,8 +87217,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6239 @@ -89431,8 +87225,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6245 @@ -89441,8 +87233,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6246 @@ -89451,225 +87241,147 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6900 + - uid: 6834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-1.5 + rot: 3.141592653589793 rad + pos: -25.5,-22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7340 + - uid: 6900 components: - type: Transform - pos: -12.5,-1.5 + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7372 + - uid: 6920 components: - type: Transform - pos: -13.5,-8.5 + rot: 1.5707963267948966 rad + pos: -33.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7373 + - uid: 6939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7381 + - uid: 7115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-10.5 + pos: -28.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7406 + - uid: 7136 components: - type: Transform - pos: -17.5,-2.5 + pos: -19.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 8267 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7424 + - uid: 7137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 + pos: -23.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 8267 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7463 + - uid: 7340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-14.5 + pos: -12.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7465 + - uid: 7373 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-7.5 + pos: -7.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7513 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-23.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-23.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7555 + - uid: 7424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-20.5 + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7556 + - uid: 7569 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-20.5 + pos: -29.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 8254 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7586 + - uid: 8033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 + pos: -13.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7588 + - uid: 8100 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-22.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: -13.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7609 + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 + pos: -22.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8224 + - uid: 8316 components: - type: Transform - pos: -22.5,-3.5 + rot: -1.5707963267948966 rad + pos: -29.5,-7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9687 + - uid: 9046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-11.5 + pos: -25.5,-15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9716 + - uid: 9686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 9671 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9811 @@ -89678,16 +87390,14 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 11153 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11154 @@ -89695,8 +87405,6 @@ entities: - type: Transform pos: -12.5,-40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11155 @@ -89704,8 +87412,6 @@ entities: - type: Transform pos: -2.5,-40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11162 @@ -89713,8 +87419,6 @@ entities: - type: Transform pos: -6.5,-35.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11163 @@ -89723,8 +87427,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11165 @@ -89733,8 +87435,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11176 @@ -89743,8 +87443,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11178 @@ -89753,8 +87451,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11180 @@ -89762,8 +87458,6 @@ entities: - type: Transform pos: 10.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11188 @@ -89772,8 +87466,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11200 @@ -89781,8 +87473,6 @@ entities: - type: Transform pos: 2.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11208 @@ -89790,11 +87480,6 @@ entities: - type: Transform pos: 9.5,-15.5 parent: 30 - - type: DeviceNetwork - deviceLists: - - 19567 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11211 @@ -89803,8 +87488,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11216 @@ -89812,8 +87495,6 @@ entities: - type: Transform pos: -2.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11217 @@ -89822,8 +87503,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11220 @@ -89832,8 +87511,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11222 @@ -89842,8 +87519,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11224 @@ -89851,8 +87526,6 @@ entities: - type: Transform pos: 12.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11227 @@ -89860,8 +87533,6 @@ entities: - type: Transform pos: -19.5,-36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11664 @@ -89870,8 +87541,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11868 @@ -89880,8 +87549,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11872 @@ -89890,8 +87557,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11922 @@ -89900,8 +87565,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11938 @@ -89910,8 +87573,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11939 @@ -89920,8 +87581,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11981 @@ -89929,8 +87588,6 @@ entities: - type: Transform pos: 20.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11991 @@ -89939,8 +87596,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12007 @@ -89948,8 +87603,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12010 @@ -89957,8 +87610,6 @@ entities: - type: Transform pos: 25.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12060 @@ -89967,8 +87618,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12081 @@ -89977,8 +87626,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12230 @@ -89987,8 +87634,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12491 @@ -89997,8 +87642,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,33.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12492 @@ -90007,8 +87650,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12495 @@ -90016,8 +87657,6 @@ entities: - type: Transform pos: 9.5,41.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12537 @@ -90026,8 +87665,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12538 @@ -90035,8 +87672,6 @@ entities: - type: Transform pos: 18.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12579 @@ -90045,8 +87680,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12580 @@ -90055,8 +87688,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12581 @@ -90065,8 +87696,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12587 @@ -90074,8 +87703,6 @@ entities: - type: Transform pos: 25.5,42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12605 @@ -90084,8 +87711,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12611 @@ -90093,8 +87718,6 @@ entities: - type: Transform pos: 27.5,27.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12756 @@ -90103,15 +87726,11 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12796 components: - type: Transform pos: 32.5,11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12959 @@ -90120,8 +87739,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12976 @@ -90130,8 +87747,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12983 @@ -90140,8 +87755,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13002 @@ -90150,8 +87763,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13003 @@ -90160,8 +87771,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13004 @@ -90170,8 +87779,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13005 @@ -90179,8 +87786,6 @@ entities: - type: Transform pos: 14.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13006 @@ -90189,8 +87794,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13081 @@ -90198,8 +87801,6 @@ entities: - type: Transform pos: 18.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13335 @@ -90208,8 +87809,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13360 @@ -90218,8 +87817,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13469 @@ -90227,8 +87824,6 @@ entities: - type: Transform pos: 16.5,57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13470 @@ -90236,8 +87831,6 @@ entities: - type: Transform pos: 20.5,44.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13593 @@ -90245,8 +87838,6 @@ entities: - type: Transform pos: 35.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13783 @@ -90255,8 +87846,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13788 @@ -90265,8 +87854,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13789 @@ -90274,8 +87861,6 @@ entities: - type: Transform pos: 30.5,42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15441 @@ -90284,8 +87869,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15619 @@ -90293,8 +87876,6 @@ entities: - type: Transform pos: 52.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16096 @@ -90303,8 +87884,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18436 @@ -90313,8 +87892,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18437 @@ -90323,8 +87900,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18438 @@ -90332,8 +87907,6 @@ entities: - type: Transform pos: -58.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18439 @@ -90341,8 +87914,6 @@ entities: - type: Transform pos: -49.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18440 @@ -90350,8 +87921,6 @@ entities: - type: Transform pos: -53.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18449 @@ -90359,8 +87928,6 @@ entities: - type: Transform pos: -63.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18450 @@ -90369,8 +87936,6 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18629 @@ -90379,8 +87944,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-44.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18655 @@ -90388,8 +87951,6 @@ entities: - type: Transform pos: -79.5,-39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18662 @@ -90397,8 +87958,6 @@ entities: - type: Transform pos: -77.5,-42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18663 @@ -90406,8 +87965,6 @@ entities: - type: Transform pos: -75.5,-41.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18667 @@ -90415,8 +87972,6 @@ entities: - type: Transform pos: -68.5,-45.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18668 @@ -90424,8 +87979,6 @@ entities: - type: Transform pos: -67.5,-42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18674 @@ -90433,8 +87986,6 @@ entities: - type: Transform pos: -55.5,-45.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18678 @@ -90443,8 +87994,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-56.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18679 @@ -90453,8 +88002,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-52.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18720 @@ -90463,8 +88010,6 @@ entities: rot: 1.5707963267948966 rad pos: -83.5,-60.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18731 @@ -90473,8 +88018,6 @@ entities: rot: 3.141592653589793 rad pos: -80.5,-61.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18732 @@ -90483,8 +88026,6 @@ entities: rot: 3.141592653589793 rad pos: -74.5,-61.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18753 @@ -90493,8 +88034,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,-55.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18754 @@ -90502,8 +88041,6 @@ entities: - type: Transform pos: -71.5,-53.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18757 @@ -90511,8 +88048,6 @@ entities: - type: Transform pos: -60.5,-59.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18758 @@ -90521,8 +88056,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-49.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18769 @@ -90531,8 +88064,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-64.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20335 @@ -90541,8 +88072,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21549 @@ -90551,8 +88080,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22023 @@ -90560,8 +88087,6 @@ entities: - type: Transform pos: -0.5,74.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22024 @@ -90570,8 +88095,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22025 @@ -90579,17 +88102,6 @@ entities: - type: Transform pos: -1.5,38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22532 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22768 @@ -90598,8 +88110,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-47.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22799 @@ -90608,8 +88118,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-59.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22800 @@ -90618,8 +88126,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-58.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22801 @@ -90628,8 +88134,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-60.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -90639,16 +88143,12 @@ entities: - type: Transform pos: -43.5,64.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 2452 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2453 @@ -90657,8 +88157,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2483 @@ -90667,8 +88165,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2490 @@ -90677,8 +88173,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2492 @@ -90687,8 +88181,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2504 @@ -90697,8 +88189,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2525 @@ -90707,8 +88197,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2526 @@ -90717,8 +88205,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,46.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2545 @@ -90727,8 +88213,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,47.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2552 @@ -90736,8 +88220,6 @@ entities: - type: Transform pos: -38.5,51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2574 @@ -90746,8 +88228,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2593 @@ -90756,8 +88236,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2595 @@ -90766,8 +88244,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,52.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2641 @@ -90776,8 +88252,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2642 @@ -90786,8 +88260,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2643 @@ -90796,8 +88268,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2645 @@ -90806,8 +88276,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2670 @@ -90816,8 +88284,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,50.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2675 @@ -90826,8 +88292,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2730 @@ -90836,8 +88300,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,63.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2731 @@ -90846,8 +88308,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,60.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2732 @@ -90856,8 +88316,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,60.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2733 @@ -90866,8 +88324,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,56.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2742 @@ -90876,8 +88332,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3006 @@ -90886,8 +88340,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3041 @@ -90896,8 +88348,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3049 @@ -90906,8 +88356,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3055 @@ -90916,8 +88364,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3063 @@ -90926,8 +88372,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3065 @@ -90936,8 +88380,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3067 @@ -90946,8 +88388,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3068 @@ -90956,8 +88396,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3076 @@ -90966,8 +88404,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3100 @@ -90976,8 +88412,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3112 @@ -90986,8 +88420,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3136 @@ -90996,8 +88428,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3147 @@ -91006,8 +88436,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3170 @@ -91016,8 +88444,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3229 @@ -91026,8 +88452,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3231 @@ -91036,8 +88460,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3254 @@ -91045,8 +88467,6 @@ entities: - type: Transform pos: -42.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3267 @@ -91055,8 +88475,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3317 @@ -91065,8 +88483,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3318 @@ -91075,8 +88491,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3326 @@ -91085,8 +88499,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3328 @@ -91095,8 +88507,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3358 @@ -91105,8 +88515,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3377 @@ -91115,8 +88523,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3398 @@ -91124,8 +88530,6 @@ entities: - type: Transform pos: -17.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3400 @@ -91134,8 +88538,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3408 @@ -91144,8 +88546,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3409 @@ -91154,8 +88554,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3421 @@ -91164,8 +88562,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3482 @@ -91173,8 +88569,6 @@ entities: - type: Transform pos: -12.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3483 @@ -91182,8 +88576,6 @@ entities: - type: Transform pos: -10.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3484 @@ -91192,8 +88584,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3486 @@ -91201,8 +88591,6 @@ entities: - type: Transform pos: -4.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5029 @@ -91211,8 +88599,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6108 @@ -91221,8 +88607,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6112 @@ -91231,8 +88615,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6122 @@ -91241,8 +88623,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6204 @@ -91251,8 +88631,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6213 @@ -91261,8 +88639,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6222 @@ -91271,8 +88647,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6265 @@ -91281,8 +88655,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6266 @@ -91291,8 +88663,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6268 @@ -91301,8 +88671,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6911 @@ -91310,43 +88678,51 @@ entities: - type: Transform pos: -28.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7204 + - uid: 6935 components: - type: Transform - pos: -27.5,-22.5 + rot: 1.5707963267948966 rad + pos: -33.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7260 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7119 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-6.5 + pos: -28.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7339 + - uid: 7130 components: - type: Transform - pos: -11.5,-2.5 + rot: 3.141592653589793 rad + pos: -19.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 8267 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7371 + - uid: 7131 components: - type: Transform - pos: -14.5,-9.5 + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 8267 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7339 + components: + - type: Transform + pos: -11.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7377 @@ -91355,8 +88731,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7378 @@ -91365,157 +88739,81 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7387 + - uid: 7407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-8.5 + pos: -18.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7407 + - uid: 7567 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-1.5 + pos: -17.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7464 + - uid: 7571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-6.5 + pos: -29.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 8254 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7491 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-23.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7511 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - uid: 7568 + - uid: 7572 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-22.5 + pos: -13.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7569 + - uid: 8223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-20.5 + pos: -24.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7579 + - uid: 9049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-18.5 + pos: -25.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7589 + - uid: 9713 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-22.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 + pos: -25.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7603 + - uid: 9846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-13.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8223 - components: - - type: Transform - pos: -24.5,-3.5 + pos: -29.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8804 + - uid: 9864 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-11.5 - parent: 30 - - type: AtmosDevice - joinedGrid: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-10.5 + pos: -21.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: DeviceNetwork + deviceLists: + - 9671 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10039 @@ -91524,16 +88822,14 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11094 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-41.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11097 @@ -91541,8 +88837,6 @@ entities: - type: Transform pos: -17.5,-36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11098 @@ -91551,8 +88845,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11099 @@ -91561,8 +88853,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-40.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11107 @@ -91571,8 +88861,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-30.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11114 @@ -91581,8 +88869,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11115 @@ -91590,8 +88876,6 @@ entities: - type: Transform pos: -8.5,-35.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11166 @@ -91600,8 +88884,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11179 @@ -91610,8 +88892,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-27.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11189 @@ -91620,8 +88900,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11192 @@ -91630,8 +88908,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11201 @@ -91640,8 +88916,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11209 @@ -91649,11 +88923,6 @@ entities: - type: Transform pos: 7.5,-15.5 parent: 30 - - type: DeviceNetwork - deviceLists: - - 19567 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11210 @@ -91662,8 +88931,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11214 @@ -91671,8 +88938,6 @@ entities: - type: Transform pos: 20.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11215 @@ -91681,8 +88946,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11218 @@ -91690,8 +88953,6 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11219 @@ -91700,8 +88961,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11221 @@ -91710,8 +88969,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11223 @@ -91720,8 +88977,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11681 @@ -91729,8 +88984,6 @@ entities: - type: Transform pos: 25.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11714 @@ -91739,8 +88992,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11764 @@ -91748,8 +88999,6 @@ entities: - type: Transform pos: 24.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11797 @@ -91757,8 +89006,6 @@ entities: - type: Transform pos: 32.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11944 @@ -91766,8 +89013,6 @@ entities: - type: Transform pos: 19.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11945 @@ -91775,8 +89020,6 @@ entities: - type: Transform pos: 16.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11985 @@ -91785,8 +89028,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12043 @@ -91794,8 +89035,6 @@ entities: - type: Transform pos: 29.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12044 @@ -91803,8 +89042,6 @@ entities: - type: Transform pos: 26.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12489 @@ -91812,8 +89049,6 @@ entities: - type: Transform pos: 8.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12490 @@ -91822,8 +89057,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12536 @@ -91832,8 +89065,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12539 @@ -91842,8 +89073,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12576 @@ -91852,8 +89081,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,33.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12577 @@ -91862,8 +89089,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12578 @@ -91872,8 +89097,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12583 @@ -91881,8 +89104,6 @@ entities: - type: Transform pos: 21.5,43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12606 @@ -91890,8 +89111,6 @@ entities: - type: Transform pos: 24.5,37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12619 @@ -91900,8 +89119,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,29.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12755 @@ -91910,16 +89127,12 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 12813 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12824 @@ -91928,8 +89141,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13078 @@ -91938,8 +89149,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13079 @@ -91948,8 +89157,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13080 @@ -91958,8 +89165,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13082 @@ -91967,8 +89172,6 @@ entities: - type: Transform pos: 18.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13084 @@ -91977,8 +89180,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13085 @@ -91987,8 +89188,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13086 @@ -91996,8 +89195,6 @@ entities: - type: Transform pos: 25.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13336 @@ -92006,8 +89203,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13353 @@ -92015,8 +89210,6 @@ entities: - type: Transform pos: 40.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13355 @@ -92024,8 +89217,6 @@ entities: - type: Transform pos: 38.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13782 @@ -92034,8 +89225,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,35.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13798 @@ -92043,8 +89232,6 @@ entities: - type: Transform pos: 29.5,42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13799 @@ -92052,8 +89239,6 @@ entities: - type: Transform pos: 30.5,36.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14540 @@ -92062,8 +89247,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18060 @@ -92071,8 +89254,6 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18435 @@ -92081,8 +89262,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18441 @@ -92091,8 +89270,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18442 @@ -92101,8 +89278,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18451 @@ -92110,8 +89285,6 @@ entities: - type: Transform pos: -61.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18519 @@ -92120,8 +89293,6 @@ entities: rot: 3.141592653589793 rad pos: -77.5,-48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18520 @@ -92129,8 +89300,6 @@ entities: - type: Transform pos: -78.5,-39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18523 @@ -92138,8 +89307,6 @@ entities: - type: Transform pos: -68.5,-42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18524 @@ -92147,8 +89314,6 @@ entities: - type: Transform pos: -64.5,-44.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18630 @@ -92157,8 +89322,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-44.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18675 @@ -92166,8 +89329,6 @@ entities: - type: Transform pos: -56.5,-45.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18676 @@ -92176,8 +89337,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-53.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18677 @@ -92186,8 +89345,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18729 @@ -92196,8 +89353,6 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-59.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18730 @@ -92206,8 +89361,6 @@ entities: rot: 3.141592653589793 rad pos: -75.5,-61.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18744 @@ -92215,8 +89368,6 @@ entities: - type: Transform pos: -76.5,-53.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18745 @@ -92224,8 +89375,6 @@ entities: - type: Transform pos: -72.5,-53.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18756 @@ -92234,8 +89383,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-60.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18759 @@ -92243,8 +89390,6 @@ entities: - type: Transform pos: -63.5,-48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18770 @@ -92253,8 +89398,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21545 @@ -92263,8 +89406,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21553 @@ -92272,8 +89413,6 @@ entities: - type: Transform pos: 43.5,39.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -92283,8 +89422,6 @@ entities: - type: Transform pos: -9.5,-50.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8258 @@ -92293,8 +89430,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-50.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GeneratorRTG @@ -92336,6 +89471,11 @@ entities: - type: Transform pos: -3.5,-6.5 parent: 30 + - uid: 9955 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 30 - uid: 13467 components: - type: Transform @@ -92356,10 +89496,19 @@ entities: - type: Transform pos: 43.5,29.5 parent: 30 - - uid: 20323 +- proto: GlowstickRed + entities: + - uid: 10025 + components: + - type: Transform + pos: -7.9899063,-22.56285 + parent: 30 +- proto: GlowstickYellow + entities: + - uid: 10026 components: - type: Transform - pos: -38.5,-22.5 + pos: -7.6305313,-21.9066 parent: 30 - proto: GoldOre entities: @@ -92602,6 +89751,11 @@ entities: - type: Transform pos: 5.5,24.5 parent: 30 + - uid: 784 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 30 - uid: 879 components: - type: Transform @@ -92922,16 +90076,6 @@ entities: - type: Transform pos: 4.5,37.5 parent: 30 - - uid: 1344 - components: - - type: Transform - pos: -43.5,16.5 - parent: 30 - - uid: 1345 - components: - - type: Transform - pos: -42.5,16.5 - parent: 30 - uid: 1390 components: - type: Transform @@ -93461,6 +90605,11 @@ entities: - type: Transform pos: -33.5,66.5 parent: 30 + - uid: 2933 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 30 - uid: 3712 components: - type: Transform @@ -94153,311 +91302,284 @@ entities: - type: Transform pos: -13.5,-6.5 parent: 30 - - uid: 6820 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 30 - - uid: 6821 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 30 - - uid: 6822 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 30 - - uid: 6823 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 30 - - uid: 6824 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 30 - - uid: 6866 + - uid: 6800 components: - type: Transform - pos: -35.5,-8.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 30 - - uid: 6893 + - uid: 6811 components: - type: Transform - pos: -33.5,-3.5 + rot: -1.5707963267948966 rad + pos: -16.5,-11.5 parent: 30 - - uid: 6932 + - uid: 6971 components: - type: Transform - pos: -25.5,-11.5 + pos: -14.5,-13.5 parent: 30 - - uid: 6947 + - uid: 7000 components: - type: Transform - pos: -25.5,-15.5 + pos: -14.5,-17.5 parent: 30 - - uid: 6948 + - uid: 7017 components: - type: Transform - pos: -23.5,-15.5 + pos: -12.5,-13.5 parent: 30 - - uid: 6949 + - uid: 7110 components: - type: Transform - pos: -21.5,-15.5 + pos: 2.5,-48.5 parent: 30 - - uid: 6950 + - uid: 7111 components: - type: Transform - pos: -20.5,-14.5 + pos: -0.5,-48.5 parent: 30 - - uid: 6951 + - uid: 7172 components: - type: Transform - pos: -20.5,-12.5 + pos: -28.5,-24.5 parent: 30 - - uid: 6972 + - uid: 7176 components: - type: Transform - pos: -20.5,-19.5 + pos: -30.5,-27.5 parent: 30 - - uid: 6973 + - uid: 7177 components: - type: Transform - pos: -20.5,-16.5 + pos: -30.5,-24.5 parent: 30 - - uid: 6998 + - uid: 7178 components: - type: Transform - pos: -29.5,-22.5 + pos: -28.5,-27.5 parent: 30 - - uid: 7026 + - uid: 7179 components: - type: Transform - pos: -16.5,-19.5 + pos: -29.5,-24.5 parent: 30 - - uid: 7053 + - uid: 7180 components: - type: Transform - pos: -16.5,-21.5 + pos: -29.5,-27.5 parent: 30 - - uid: 7110 + - uid: 7215 components: - type: Transform - pos: 2.5,-48.5 + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 parent: 30 - - uid: 7111 + - uid: 7241 components: - type: Transform - pos: -0.5,-48.5 + pos: -14.5,-3.5 parent: 30 - - uid: 7131 + - uid: 7369 components: - type: Transform - pos: -30.5,-7.5 + pos: -31.5,-18.5 parent: 30 - - uid: 7132 + - uid: 7371 components: - type: Transform - pos: -30.5,-5.5 + pos: -31.5,-16.5 parent: 30 - - uid: 7168 + - uid: 7399 components: - type: Transform - pos: -34.5,-25.5 + pos: -30.5,-14.5 parent: 30 - - uid: 7169 + - uid: 7411 components: - type: Transform - pos: -33.5,-25.5 + pos: -20.5,-13.5 parent: 30 - - uid: 7170 + - uid: 7446 components: - type: Transform - pos: -34.5,-27.5 + pos: -90.5,42.5 parent: 30 - - uid: 7171 + - uid: 7447 components: - type: Transform - pos: -33.5,-27.5 + pos: -85.5,42.5 parent: 30 - - uid: 7172 + - uid: 7448 components: - type: Transform - pos: -30.5,-27.5 + pos: -63.5,42.5 parent: 30 - - uid: 7173 + - uid: 7449 components: - type: Transform - pos: -31.5,-27.5 + pos: -89.5,42.5 parent: 30 - - uid: 7174 + - uid: 7457 components: - type: Transform - pos: -28.5,-27.5 + pos: -64.5,42.5 parent: 30 - - uid: 7175 + - uid: 7458 components: - type: Transform - pos: -27.5,-27.5 + pos: -77.5,42.5 parent: 30 - - uid: 7176 + - uid: 7467 components: - type: Transform - pos: -27.5,-25.5 + pos: -73.5,42.5 parent: 30 - - uid: 7177 + - uid: 7489 components: - type: Transform - pos: -28.5,-25.5 + pos: -65.5,42.5 parent: 30 - - uid: 7178 + - uid: 7507 components: - type: Transform - pos: -31.5,-25.5 + pos: -33.5,-24.5 parent: 30 - - uid: 7179 + - uid: 7508 components: - type: Transform - pos: -30.5,-25.5 + pos: -33.5,-27.5 parent: 30 - - uid: 7193 + - uid: 7509 components: - type: Transform - pos: -29.5,-24.5 + pos: -32.5,-27.5 parent: 30 - - uid: 7195 + - uid: 7510 components: - type: Transform pos: -32.5,-24.5 parent: 30 - - uid: 7202 - components: - - type: Transform - pos: -32.5,-21.5 - parent: 30 - - uid: 7205 + - uid: 7532 components: - type: Transform - pos: -36.5,-5.5 + pos: -34.5,-27.5 parent: 30 - - uid: 7446 + - uid: 7538 components: - type: Transform - pos: -90.5,42.5 + pos: -22.5,-13.5 parent: 30 - - uid: 7447 + - uid: 7549 components: - type: Transform - pos: -85.5,42.5 + pos: -34.5,-24.5 parent: 30 - - uid: 7448 + - uid: 7554 components: - type: Transform - pos: -63.5,42.5 + pos: -28.5,-14.5 parent: 30 - - uid: 7449 + - uid: 7612 components: - type: Transform - pos: -89.5,42.5 + pos: -81.5,42.5 parent: 30 - - uid: 7457 + - uid: 7717 components: - type: Transform - pos: -64.5,42.5 + pos: 47.5,13.5 parent: 30 - - uid: 7458 + - uid: 7742 components: - type: Transform - pos: -77.5,42.5 + pos: 47.5,12.5 parent: 30 - - uid: 7467 + - uid: 7839 components: - type: Transform - pos: -73.5,42.5 + pos: -32.5,-7.5 parent: 30 - - uid: 7489 + - uid: 7868 components: - type: Transform - pos: -65.5,42.5 + pos: -19.5,-16.5 parent: 30 - - uid: 7612 + - uid: 7874 components: - type: Transform - pos: -81.5,42.5 + pos: -69.5,42.5 parent: 30 - - uid: 7717 + - uid: 7995 components: - type: Transform - pos: 47.5,13.5 + pos: -19.5,-14.5 parent: 30 - - uid: 7742 + - uid: 8020 components: - type: Transform - pos: 47.5,12.5 + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 parent: 30 - - uid: 7757 + - uid: 8040 components: - type: Transform - pos: -32.5,-23.5 + pos: -12.5,-17.5 parent: 30 - - uid: 7761 + - uid: 8070 components: - type: Transform - pos: -30.5,-21.5 + pos: -32.5,-5.5 parent: 30 - - uid: 7762 + - uid: 8256 components: - type: Transform - pos: -29.5,-21.5 + pos: -20.5,-47.5 parent: 30 - - uid: 7763 + - uid: 8271 components: - type: Transform - pos: -29.5,-23.5 + pos: -27.5,-17.5 parent: 30 - - uid: 7874 + - uid: 8286 components: - type: Transform - pos: -69.5,42.5 + pos: -27.5,-21.5 parent: 30 - - uid: 7921 + - uid: 8348 components: - type: Transform - pos: -36.5,-8.5 + pos: 7.5,-17.5 parent: 30 - - uid: 8240 + - uid: 8349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-21.5 + pos: 9.5,-17.5 parent: 30 - - uid: 8256 + - uid: 8350 components: - type: Transform - pos: -20.5,-47.5 + pos: 10.5,-15.5 parent: 30 - - uid: 8276 + - uid: 8351 components: - type: Transform - pos: -34.5,-21.5 + pos: 10.5,-14.5 parent: 30 - - uid: 8288 + - uid: 8352 components: - type: Transform - pos: -32.5,-22.5 + pos: 9.5,-12.5 parent: 30 - - uid: 8350 + - uid: 8353 components: - type: Transform - pos: 10.5,-15.5 + pos: 8.5,-12.5 parent: 30 - - uid: 8351 + - uid: 8354 components: - type: Transform - pos: 10.5,-14.5 + pos: 7.5,-12.5 parent: 30 - uid: 8361 components: @@ -94685,6 +91807,11 @@ entities: - type: Transform pos: -63.5,22.5 parent: 30 + - uid: 8833 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 30 - uid: 8847 components: - type: Transform @@ -94811,6 +91938,16 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-37.5 parent: 30 + - uid: 9030 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 30 + - uid: 9031 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 30 - uid: 9034 components: - type: Transform @@ -95018,11 +92155,6 @@ entities: - type: Transform pos: 12.5,36.5 parent: 30 - - uid: 9800 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 30 - uid: 9814 components: - type: Transform @@ -95048,11 +92180,6 @@ entities: - type: Transform pos: 3.5,-45.5 parent: 30 - - uid: 9831 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 30 - uid: 9918 components: - type: Transform @@ -98901,6 +96028,23 @@ entities: - type: Transform pos: -34.5,-46.5 parent: 30 +- proto: GrilleSpawner + entities: + - uid: 10007 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 30 + - uid: 10015 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 30 + - uid: 10016 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 30 - proto: GunSafeDisabler entities: - uid: 726 @@ -98943,11 +96087,6 @@ entities: - type: Transform pos: -32.534565,30.536125 parent: 30 - - uid: 7021 - components: - - type: Transform - pos: -21.550684,-19.437244 - parent: 30 - uid: 9421 components: - type: Transform @@ -98965,11 +96104,6 @@ entities: - type: Transform pos: -7.5315413,-7.0166345 parent: 30 - - uid: 21005 - components: - - type: Transform - pos: -12.40352,-14.246286 - parent: 30 - proto: HandheldStationMap entities: - uid: 10974 @@ -99023,29 +96157,21 @@ entities: - type: Transform pos: -3.5,-58.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 3155 components: - type: Transform pos: -3.5,-57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7104 components: - type: Transform pos: -11.5,-58.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8295 components: - type: Transform pos: 3.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 9621 @@ -99053,8 +96179,6 @@ entities: - type: Transform pos: -11.5,-57.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: HighSecCommandLocked entities: - uid: 2128 @@ -99098,31 +96222,32 @@ entities: - type: Transform pos: -28.5,39.5 parent: 30 - - uid: 13087 + - uid: 7740 components: - type: Transform - pos: -43.5,64.5 + pos: 9.5,-17.5 parent: 30 - - uid: 21246 + - uid: 7741 components: - type: Transform - pos: -20.5,-13.5 + pos: 7.5,-17.5 parent: 30 - - uid: 21247 + - uid: 8079 components: - type: Transform - pos: -23.5,-11.5 + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 parent: 30 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 21248 + - uid: 8096 components: - type: Transform - pos: -24.5,-11.5 + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 30 + - uid: 13087 + components: + - type: Transform + pos: -43.5,64.5 parent: 30 - uid: 22188 components: @@ -99385,6 +96510,18 @@ entities: - type: Transform pos: 12.970396,-25.450317 parent: 30 +- proto: InflatableWall + entities: + - uid: 10023 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 30 + - uid: 10024 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 30 - proto: InflatableWallStack entities: - uid: 9248 @@ -99525,17 +96662,17 @@ entities: parent: 30 - proto: IntercomMedical entities: - - uid: 22292 + - uid: 7346 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-17.5 + pos: -13.5,-3.5 parent: 30 - - uid: 22294 + - uid: 7501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 + rot: 1.5707963267948966 rad + pos: -16.5,-8.5 parent: 30 - uid: 22516 components: @@ -101042,15 +98179,6 @@ entities: - type: DeviceLinkSink links: - 3189 - - uid: 871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 30 - - type: DeviceLinkSink - links: - - 3188 - uid: 961 components: - type: Transform @@ -101068,6 +98196,15 @@ entities: - type: DeviceLinkSink links: - 5417 + - uid: 7609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 30 + - type: DeviceLinkSink + links: + - 7440 - proto: JetpackBlueFilled entities: - uid: 8311 @@ -101163,11 +98300,6 @@ entities: - type: Transform pos: -47.5,63.5 parent: 30 - - uid: 11463 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 30 - uid: 19539 components: - type: Transform @@ -101197,15 +98329,10 @@ entities: - type: Transform pos: -22.461006,36.440132 parent: 30 - - uid: 6999 - components: - - type: Transform - pos: -14.306395,-14.292982 - parent: 30 - - uid: 10029 + - uid: 7038 components: - type: Transform - pos: -37.447624,-4.144073 + pos: -33.53475,-15.139856 parent: 30 - uid: 11362 components: @@ -101301,22 +98428,8 @@ entities: - type: Transform pos: 2.4391665,31.963726 parent: 30 - - type: HandheldLight - toggleActionEntity: 3117 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 3117 - type: Physics canCollide: True - - type: ActionsContainer - uid: 7472 components: - type: Transform @@ -101433,14 +98546,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9080 components: - type: Transform @@ -101464,14 +98569,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9081 components: - type: Transform @@ -101495,21 +98592,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBlueShieldFilled - entities: - - uid: 2247 - components: - - type: Transform - pos: -21.5,34.5 - parent: 30 - proto: LockerBoozeFilled entities: - uid: 451 @@ -101535,14 +98617,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 453 components: - type: Transform @@ -101566,14 +98640,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13719 components: - type: Transform @@ -101597,14 +98663,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerBotanistFilled entities: - uid: 419 @@ -101630,14 +98688,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 420 components: - type: Transform @@ -101661,14 +98711,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 421 components: - type: Transform @@ -101692,21 +98734,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBrigmedicFilledHardsuit - entities: - - uid: 8363 - components: - - type: Transform - pos: -49.5,53.5 - parent: 30 - proto: LockerCaptainFilledHardsuit entities: - uid: 1440 @@ -101714,13 +98741,6 @@ entities: - type: Transform pos: -17.5,32.5 parent: 30 -- proto: LockerCentcomConsultantFilledHardsuit - entities: - - uid: 14846 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 30 - proto: LockerChemistryFilled entities: - uid: 6698 @@ -101746,14 +98766,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerChiefEngineerFilled entities: - uid: 9604 @@ -101779,14 +98791,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -101798,50 +98802,13 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerChiefMedicalOfficerFilled +- proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 6839 + - uid: 6941 components: - type: Transform - pos: -15.5,-16.5 + pos: -32.5,-21.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21256 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerDetectiveFilled entities: - uid: 1460 @@ -101867,14 +98834,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerElectricalSuppliesFilled entities: - uid: 16994 @@ -101900,14 +98859,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16995 components: - type: Transform @@ -101931,14 +98882,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerEngineerFilled entities: - uid: 9048 @@ -102008,14 +98951,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2249 components: - type: Transform @@ -102039,14 +98974,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2250 components: - type: Transform @@ -102070,14 +98997,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2376 components: - type: Transform @@ -102101,14 +99020,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 3500 components: - type: Transform @@ -102132,14 +99043,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12450 components: - type: Transform @@ -102163,14 +99066,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 14952 components: - type: Transform @@ -102194,14 +99089,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 476 @@ -102227,14 +99114,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 477 components: - type: Transform @@ -102258,14 +99137,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -102302,14 +99173,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -102348,14 +99211,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -102395,14 +99250,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19537 components: - type: Transform @@ -102426,14 +99273,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19669 components: - type: Transform @@ -102457,14 +99296,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezerVaultFilled entities: - uid: 5608 @@ -102497,14 +99328,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerHeadOfSecurityFilled entities: - uid: 2126 @@ -102530,20 +99353,19 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 +- proto: LockerMedical + entities: + - uid: 8078 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 30 - proto: LockerMedicalFilled entities: - - uid: 6976 + - uid: 2246 components: - type: Transform - pos: -24.5,-19.5 + pos: -49.5,53.5 parent: 30 - type: EntityStorage air: @@ -102563,45 +99385,16 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6977 + - uid: 7606 components: - type: Transform - pos: -23.5,-19.5 + pos: -15.5,-22.5 + parent: 30 + - uid: 7753 + components: + - type: Transform + pos: -16.5,-22.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9014 components: - type: Transform @@ -102609,53 +99402,27 @@ entities: parent: 30 - proto: LockerMedicineFilled entities: - - uid: 7102 + - uid: 6917 components: - type: Transform - pos: -25.5,-16.5 + pos: -23.5,-7.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10031 + - uid: 7390 components: - type: Transform - pos: -19.5,-23.5 + pos: -20.5,-23.5 parent: 30 - - uid: 10083 + - uid: 7423 components: - type: Transform - pos: -9.5,-17.5 + pos: -18.5,-16.5 parent: 30 - proto: LockerParamedicFilled entities: - - uid: 6854 + - uid: 7983 components: - type: Transform - pos: -23.5,-21.5 + pos: -12.5,-16.5 parent: 30 - proto: LockerQuarterMasterFilled entities: @@ -102682,14 +99449,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -102726,14 +99485,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 7253 @@ -102776,14 +99527,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21702 components: - type: Transform @@ -102807,14 +99550,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21703 components: - type: Transform @@ -102838,14 +99573,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSecurity entities: - uid: 6567 @@ -102871,14 +99598,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6752 components: - type: Transform @@ -102902,14 +99621,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11245 components: - type: Transform @@ -102933,14 +99644,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSecurityFilled entities: - uid: 1072 @@ -102966,14 +99669,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2079 components: - type: Transform @@ -102997,14 +99692,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2080 components: - type: Transform @@ -103028,14 +99715,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2081 components: - type: Transform @@ -103059,14 +99738,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2082 components: - type: Transform @@ -103090,14 +99761,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWardenFilled entities: - uid: 2010 @@ -103123,14 +99786,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWeldingSuppliesFilled entities: - uid: 4773 @@ -103156,18 +99811,10 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9025 + - uid: 9725 components: - type: Transform - pos: -42.5,-7.5 + pos: -42.5,-23.5 parent: 30 - uid: 15047 components: @@ -103192,14 +99839,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16996 components: - type: Transform @@ -103223,14 +99862,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MachineAnomalyGenerator entities: - uid: 22436 @@ -103595,63 +100226,39 @@ entities: parent: 30 - proto: MedicalBed entities: - - uid: 352 + - uid: 7422 components: - type: Transform - pos: -50.5,50.5 + pos: -16.5,-14.5 parent: 30 - - uid: 6687 + - uid: 7469 components: - type: Transform - pos: -23.5,-14.5 + pos: -24.5,-13.5 parent: 30 - - uid: 6960 + - uid: 7533 components: - type: Transform - pos: -21.5,-14.5 + pos: -24.5,-7.5 parent: 30 - - uid: 9717 + - uid: 7550 components: - type: Transform - pos: -7.5,-16.5 + pos: -21.5,-7.5 parent: 30 - proto: MedicalTechFab entities: - - uid: 6956 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 30 - - type: MaterialStorage - materialWhiteList: - - Glass - - Steel - - Plastic - - Durathread - - Cloth -- proto: MedkitAdvancedFilled - entities: - - uid: 6997 + - uid: 7834 components: - type: Transform - pos: -13.735303,-16.220837 + pos: -14.5,-18.5 parent: 30 - proto: MedkitBruteFilled entities: - - uid: 6732 - components: - - type: Transform - pos: -23.809431,-16.312307 - parent: 30 - - uid: 6988 - components: - - type: Transform - pos: -23.809431,-16.499807 - parent: 30 - - uid: 7740 + - uid: 3173 components: - type: Transform - pos: -50.985344,53.519733 + pos: -17.325737,-18.358541 parent: 30 - uid: 19713 components: @@ -103660,90 +100267,73 @@ entities: parent: 30 - proto: MedkitBurnFilled entities: - - uid: 2239 - components: - - type: Transform - pos: -51.477226,53.661713 - parent: 30 - - uid: 6989 + - uid: 1014 components: - type: Transform - pos: -23.106306,-16.327932 + pos: -17.763237,-18.499166 parent: 30 - - uid: 6990 + - uid: 2239 components: - type: Transform - pos: -23.106306,-16.484182 + pos: -51.477226,53.661713 parent: 30 -- proto: MedkitCombatFilled +- proto: MedkitFilled entities: - - uid: 6995 + - uid: 1560 components: - type: Transform - pos: -13.575727,-16.368786 + pos: -18.575735,-18.342916 parent: 30 -- proto: MedkitFilled - entities: - uid: 2240 components: - type: Transform pos: -50.48913,53.64174 parent: 30 - - uid: 5843 + - uid: 3174 components: - type: Transform - pos: -12.481925,46.43245 + pos: -18.419485,-18.499166 parent: 30 - - uid: 6729 + - uid: 5843 components: - type: Transform - pos: -24.481306,-16.296682 + pos: -12.481925,46.43245 parent: 30 - uid: 6856 components: - type: Transform pos: -14.502978,-0.38338137 parent: 30 - - uid: 6987 +- proto: MedkitOxygenFilled + entities: + - uid: 1313 components: - type: Transform - pos: -24.481306,-16.484182 + pos: -16.716362,-18.374166 parent: 30 -- proto: MedkitOxygenFilled - entities: - uid: 2241 components: - type: Transform pos: -51.008476,53.677338 parent: 30 - - uid: 9628 + - uid: 7752 components: - type: Transform - pos: -22.612028,-21.409428 + pos: -16.528862,-18.530416 parent: 30 - proto: MedkitRadiationFilled entities: - - uid: 6993 - components: - - type: Transform - pos: -21.840681,-16.312307 - parent: 30 - - uid: 6994 + - uid: 1013 components: - type: Transform - pos: -21.840681,-16.515432 + pos: -17.122612,-18.546041 parent: 30 - proto: MedkitToxinFilled entities: - - uid: 6991 - components: - - type: Transform - pos: -22.465681,-16.312307 - parent: 30 - - uid: 6992 + - uid: 1314 components: - type: Transform - pos: -22.465681,-16.499807 + pos: -17.966362,-18.358541 parent: 30 - proto: MicroManipulatorStockPart entities: @@ -103870,14 +100460,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6877 components: - type: Transform @@ -103902,14 +100484,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6906 components: - type: Transform @@ -103934,14 +100508,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6907 components: - type: Transform @@ -103966,14 +100532,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6913 components: - type: Transform @@ -103998,14 +100556,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6914 components: - type: Transform @@ -104030,14 +100580,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6915 components: - type: Transform @@ -104062,14 +100604,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6916 components: - type: Transform @@ -104094,14 +100628,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8832 components: - type: Transform @@ -104132,14 +100658,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21242 components: - type: Transform @@ -104164,14 +100682,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21244 components: - type: Transform @@ -104196,14 +100706,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21245 components: - type: Transform @@ -104228,14 +100730,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: Multitool entities: - uid: 545 @@ -104263,14 +100757,6 @@ entities: - type: Transform pos: -52.471344,41.489742 parent: 30 - - uid: 22533 - components: - - type: Transform - pos: -42.448753,-22.541483 - parent: 30 - - type: NetworkConfigurator - devices: - 'UID: 129063': 22532 - uid: 22843 components: - type: Transform @@ -104290,71 +100776,51 @@ entities: - type: Transform pos: -19.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7770 components: - type: Transform pos: -11.5,-37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8771 components: - type: Transform pos: 27.5,-22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9118 components: - type: Transform pos: 21.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 10397 components: - type: Transform pos: -14.5,-46.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15154 components: - type: Transform pos: 15.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15755 components: - type: Transform pos: 44.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 16893 components: - type: Transform pos: -44.5,27.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 16894 components: - type: Transform pos: -44.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 19624 components: - type: Transform pos: -32.5,-38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: NitrogenTankFilled entities: - uid: 8247 @@ -104374,37 +100840,11 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7769 components: - type: Transform pos: 18.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 -- proto: NitrousOxideTankFilled - entities: - - uid: 7474 - components: - - type: Transform - pos: -7.5306377,-23.532232 - parent: 30 - - uid: 9026 - components: - - type: Transform - pos: -11.452513,-23.579107 - parent: 30 - - uid: 9031 - components: - - type: Transform - pos: -7.4056377,-23.532232 - parent: 30 - - uid: 9694 - components: - - type: Transform - pos: -11.296263,-23.547857 - parent: 30 - proto: NuclearBomb entities: - uid: 5607 @@ -104424,17 +100864,24 @@ entities: - type: Transform pos: -63.5,-56.5 parent: 30 +- proto: Ointment + entities: + - uid: 6977 + components: + - type: Transform + pos: -25.496983,-7.3962364 + parent: 30 - proto: OperatingTable entities: - - uid: 8838 + - uid: 7261 components: - type: Transform - pos: -8.5,-22.5 + pos: -25.5,-18.5 parent: 30 - - uid: 9799 + - uid: 7909 components: - type: Transform - pos: -10.5,-22.5 + pos: -25.5,-20.5 parent: 30 - uid: 12628 components: @@ -104470,134 +100917,106 @@ entities: - type: Transform pos: 0.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 1983 components: - type: Transform pos: 33.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 5661 components: - type: Transform pos: -24.5,45.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 5670 components: - type: Transform pos: -39.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6032 components: - type: Transform pos: -1.5,38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - uid: 7970 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 30 - uid: 8770 components: - type: Transform pos: 27.5,-24.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9095 components: - type: Transform pos: 20.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9096 components: - type: Transform pos: 20.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9114 components: - type: Transform pos: 21.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9117 components: - type: Transform pos: 21.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9427 components: - type: Transform pos: -13.5,-37.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 + - uid: 9845 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 30 - uid: 10444 components: - type: Transform pos: -14.5,-48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 11266 components: - type: Transform pos: -18.5,-50.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15155 components: - type: Transform pos: 14.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15438 components: - type: Transform pos: 46.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15754 components: - type: Transform pos: 44.5,12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 15968 components: - type: Transform pos: 51.5,29.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 16983 components: - type: Transform pos: -63.5,44.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 19623 components: - type: Transform pos: -33.5,-38.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: OxygenTankFilled entities: - uid: 8226 @@ -104952,11 +101371,6 @@ entities: parent: 30 - proto: PaperBin5 entities: - - uid: 9035 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 30 - uid: 9040 components: - type: Transform @@ -105033,6 +101447,16 @@ entities: parent: 30 - proto: PartRodMetal1 entities: + - uid: 7881 + components: + - type: Transform + pos: -41.20244,-21.437243 + parent: 30 + - uid: 8024 + components: + - type: Transform + pos: -41.20244,-21.437243 + parent: 30 - uid: 19677 components: - type: Transform @@ -105114,7 +101538,7 @@ entities: - uid: 6793 components: - type: Transform - pos: -13.305895,-4.1018066 + pos: -13.264028,-4.215469 parent: 30 - uid: 9319 components: @@ -105235,6 +101659,27 @@ entities: - type: Transform pos: -31.76365,-0.4914775 parent: 30 +- proto: PillCanisterBicaridine + entities: + - uid: 9854 + components: + - type: Transform + pos: -37.141556,-14.263344 + parent: 30 +- proto: PillCanisterDermaline + entities: + - uid: 9852 + components: + - type: Transform + pos: -36.985306,-14.403969 + parent: 30 +- proto: PillCanisterTricordrazine + entities: + - uid: 7089 + components: + - type: Transform + pos: -37.12593,-14.450844 + parent: 30 - proto: PinpointerNuclear entities: - uid: 5004 @@ -105273,36 +101718,26 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9696 components: - type: Transform pos: 18.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 10510 components: - type: Transform pos: -14.5,-51.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 17005 components: - type: Transform pos: 27.5,-30.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 20465 components: - type: Transform pos: -25.5,-48.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: PlasticFlapsAirtightClear entities: - uid: 1952 @@ -105381,6 +101816,13 @@ entities: - type: Transform pos: 46.48802,27.514986 parent: 30 +- proto: PlushieSharkBlue + entities: + - uid: 6990 + components: + - type: Transform + pos: -34.45089,-23.359314 + parent: 30 - proto: PlushieSharkGrey entities: - uid: 22218 @@ -105390,11 +101832,6 @@ entities: parent: 30 - proto: PlushieSharkPink entities: - - uid: 7452 - components: - - type: Transform - pos: -32.43241,-4.427314 - parent: 30 - uid: 22194 components: - type: Transform @@ -105713,24 +102150,12 @@ entities: - type: Transform pos: -29.5,-41.5 parent: 30 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 7213 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 30 - proto: PosterLegitAnatomyPoster entities: - - uid: 15969 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 30 - - uid: 16242 + - uid: 7596 components: - type: Transform - pos: -23.5,-20.5 + pos: -17.5,-13.5 parent: 30 - proto: PosterLegitBuild entities: @@ -105832,13 +102257,6 @@ entities: - type: Transform pos: -42.5,23.5 parent: 30 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 1995 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 30 - proto: PosterLegitMime entities: - uid: 15203 @@ -105932,18 +102350,6 @@ entities: - type: Transform pos: -44.5,61.5 parent: 30 - - uid: 6686 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 30 -- proto: PosterLegitNTTGC - entities: - - uid: 10085 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 30 - proto: PosterLegitObey entities: - uid: 1649 @@ -106064,6 +102470,11 @@ entities: - type: Transform pos: -36.5,50.5 parent: 30 + - uid: 11433 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 30 - proto: PosterLegitSpaceCops entities: - uid: 2411 @@ -106078,13 +102489,6 @@ entities: - type: Transform pos: -48.5,16.5 parent: 30 -- proto: PosterLegitVacation - entities: - - uid: 9929 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 30 - proto: PosterMapMarathon entities: - uid: 1 @@ -106114,6 +102518,16 @@ entities: parent: 30 - proto: PottedPlant1 entities: + - uid: 7175 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 30 + - uid: 7491 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 30 - uid: 20986 components: - type: Transform @@ -106121,10 +102535,10 @@ entities: parent: 30 - proto: PottedPlant11 entities: - - uid: 21673 + - uid: 7144 components: - type: Transform - pos: -29.5,-18.5 + pos: -43.5,-9.5 parent: 30 - proto: PottedPlant12 entities: @@ -106168,10 +102582,10 @@ entities: - type: Transform pos: 7.5,36.5 parent: 30 - - uid: 11444 + - uid: 7456 components: - type: Transform - pos: -26.5,-24.5 + pos: -30.5,-23.5 parent: 30 - proto: PottedPlant22 entities: @@ -106185,13 +102599,30 @@ entities: - type: Transform pos: -10.5,37.5 parent: 30 + - uid: 7454 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 30 - proto: PottedPlant23 entities: + - uid: 6675 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 30 - uid: 10141 components: - type: Transform pos: -3.5,-18.5 parent: 30 +- proto: PottedPlant4 + entities: + - uid: 9956 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 30 - proto: PottedPlant5 entities: - uid: 927 @@ -106216,11 +102647,6 @@ entities: - type: Transform pos: -29.5,-0.5 parent: 30 - - uid: 6864 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 30 - uid: 9311 components: - type: Transform @@ -106435,19 +102861,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 7291 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7412 - components: - - type: Transform - pos: -39.5,-7.5 - parent: 30 - uid: 8613 components: - type: Transform @@ -106719,17 +103132,15 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 7235 + - uid: 6976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 + pos: -20.5,-9.5 parent: 30 - - uid: 7267 + - uid: 7470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-19.5 + pos: -12.5,-14.5 parent: 30 - uid: 8372 components: @@ -106805,13 +103216,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 20997 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 30 - - type: Physics - canCollide: False - uid: 20999 components: - type: Transform @@ -106883,11 +103287,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-9.5 parent: 30 - - uid: 948 - components: - - type: Transform - pos: -46.5,8.5 - parent: 30 - uid: 3203 components: - type: Transform @@ -106895,14 +103294,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,1.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4240 components: - type: Transform @@ -106948,13 +103339,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4357 - components: - - type: Transform - pos: -42.5,7.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4358 components: - type: Transform @@ -107152,14 +103536,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4413 components: - type: Transform @@ -107770,36 +104146,41 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 30 - - uid: 7015 + - uid: 6786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 + pos: -29.5,-5.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7017 + - uid: 6870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-23.5 + parent: 30 + - uid: 7006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-10.5 + pos: -35.5,-4.5 parent: 30 - - uid: 7018 + - uid: 7015 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + pos: -19.5,-1.5 parent: 30 - - uid: 7394 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-12.5 + rot: 1.5707963267948966 rad + pos: -45.5,-3.5 parent: 30 - - uid: 7420 + - uid: 7297 components: - type: Transform - pos: -14.5,-18.5 + pos: -25.5,-15.5 parent: 30 - uid: 7430 components: @@ -107807,215 +104188,160 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 30 - - uid: 7665 + - uid: 7455 components: - type: Transform - pos: -22.5,-21.5 + rot: 1.5707963267948966 rad + pos: -34.5,-17.5 parent: 30 - - uid: 8227 + - uid: 7500 components: - type: Transform - pos: -22.5,-16.5 + rot: -1.5707963267948966 rad + pos: -28.5,-19.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8229 + - uid: 7506 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-19.5 + pos: -17.5,-16.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8242 + - uid: 7513 components: - type: Transform - pos: -33.5,-1.5 + rot: -1.5707963267948966 rad + pos: -27.5,-12.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8243 + - uid: 7514 components: - type: Transform - pos: -23.5,-0.5 + rot: 1.5707963267948966 rad + pos: -34.5,-10.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8244 + - uid: 7530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-5.5 + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8246 + - uid: 7535 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-4.5 + pos: -25.5,-12.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8248 + - uid: 7541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8249 + - uid: 7543 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-12.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8252 + - uid: 7552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 + rot: 1.5707963267948966 rad + pos: -25.5,-8.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8254 + - uid: 7555 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-22.5 + pos: -15.5,-22.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8261 + - uid: 7556 components: - type: Transform - pos: -14.5,-12.5 + pos: -15.5,-18.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8262 + - uid: 7607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 + rot: 1.5707963267948966 rad + pos: -22.5,-20.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8265 + - uid: 7825 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-10.5 + pos: -12.5,-15.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8267 + - uid: 7835 components: - type: Transform - pos: -13.5,-8.5 + pos: -47.5,10.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8268 + - uid: 7836 components: - type: Transform - pos: -12.5,-0.5 + rot: 1.5707963267948966 rad + pos: -45.5,4.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8270 + - uid: 7837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-4.5 + pos: -42.5,7.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8302 + - uid: 7979 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8306 - components: - - type: Transform - pos: -32.5,-17.5 + pos: -11.5,-12.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8308 + - uid: 8035 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-11.5 + pos: -17.5,-8.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8309 + - uid: 8243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-6.5 + pos: -23.5,-0.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8315 + - uid: 8244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 + rot: 3.141592653589793 rad + pos: -23.5,-5.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8316 + - uid: 8246 components: - type: Transform - pos: -22.5,-12.5 + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8317 + - uid: 8265 components: - type: Transform - pos: -23.5,-7.5 + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8318 + - uid: 8268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 + pos: -12.5,-0.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8319 + - uid: 8270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 @@ -108025,23 +104351,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-30.5 parent: 30 - - uid: 9049 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 30 - - uid: 9055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 30 - - uid: 9056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 30 - uid: 9057 components: - type: Transform @@ -108096,11 +104405,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-55.5 parent: 30 - - uid: 9971 + - uid: 9800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-6.5 + rot: -1.5707963267948966 rad + pos: -40.5,-12.5 parent: 30 - uid: 9979 components: @@ -108110,17 +104419,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-11.5 - parent: 30 - - uid: 10007 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 30 - uid: 10072 components: - type: Transform @@ -108553,14 +104851,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11469 components: - type: Transform @@ -109662,32 +105952,38 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7437 + - uid: 6802 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 30 + - uid: 6991 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,-64.5 + pos: -32.5,-22.5 parent: 30 - - uid: 7912 + - type: DeviceLinkSink + links: + - 6992 + - uid: 7437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-64.5 + pos: -72.5,-64.5 parent: 30 - - uid: 8259 + - uid: 7493 components: - type: Transform - pos: -8.5,-16.5 + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8272 + - uid: 7912 components: - type: Transform - pos: -42.5,-7.5 + rot: -1.5707963267948966 rad + pos: -54.5,-64.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8313 components: - type: Transform @@ -109792,22 +106088,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-24.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-24.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11584 components: - type: Transform @@ -110512,36 +106792,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 19630 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19806 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 20141 components: - type: Transform @@ -110680,14 +106930,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 20518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 21112 components: - type: Transform @@ -110838,6 +107080,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 30 + - uid: 1340 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 30 - uid: 1353 components: - type: Transform @@ -110878,6 +107125,16 @@ entities: - type: Transform pos: 16.5,29.5 parent: 30 + - uid: 6791 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 30 + - uid: 6808 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 30 - uid: 8263 components: - type: Transform @@ -110888,11 +107145,6 @@ entities: - type: Transform pos: -4.5,-38.5 parent: 30 - - uid: 8828 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 30 - uid: 9196 components: - type: Transform @@ -110923,11 +107175,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 30 - - uid: 9710 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 30 - uid: 10194 components: - type: Transform @@ -111348,11 +107595,6 @@ entities: - type: Transform pos: 21.5,50.5 parent: 30 - - uid: 19817 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 30 - uid: 19818 components: - type: Transform @@ -111390,11 +107632,6 @@ entities: - type: Transform pos: 0.5,-15.5 parent: 30 - - uid: 11585 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 30 - proto: RandomPosterLegit entities: - uid: 1395 @@ -111592,6 +107829,13 @@ entities: - type: Transform pos: -29.5,9.5 parent: 30 +- proto: RandomSnacks + entities: + - uid: 7565 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 30 - proto: RandomSoap entities: - uid: 756 @@ -111651,11 +107895,6 @@ entities: - type: Transform pos: -2.5,-9.5 parent: 30 - - uid: 15166 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 30 - uid: 15167 components: - type: Transform @@ -111911,6 +108150,28 @@ entities: - type: Transform pos: -40.5,-27.5 parent: 30 +- proto: RandomSpawner100 + entities: + - uid: 922 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 30 + - uid: 7141 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 30 + - uid: 7142 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 30 + - uid: 8317 + components: + - type: Transform + pos: -44.5,8.5 + parent: 30 - proto: RandomVending entities: - uid: 4836 @@ -112393,11 +108654,6 @@ entities: - type: Transform pos: -46.5,1.5 parent: 30 - - uid: 1014 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 30 - uid: 1051 components: - type: Transform @@ -112630,16 +108886,6 @@ entities: - type: Transform pos: -47.5,-11.5 parent: 30 - - uid: 1342 - components: - - type: Transform - pos: -42.5,16.5 - parent: 30 - - uid: 1343 - components: - - type: Transform - pos: -43.5,16.5 - parent: 30 - uid: 1374 components: - type: Transform @@ -113093,6 +109339,11 @@ entities: - type: Transform pos: -49.5,4.5 parent: 30 + - uid: 4410 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 30 - uid: 4824 components: - type: Transform @@ -113334,11 +109585,6 @@ entities: - type: Transform pos: -54.5,-10.5 parent: 30 - - uid: 5625 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 30 - uid: 5758 components: - type: Transform @@ -113522,6 +109768,11 @@ entities: - type: Transform pos: 31.5,40.5 parent: 30 + - uid: 6627 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 30 - uid: 6641 components: - type: Transform @@ -113542,6 +109793,11 @@ entities: - type: Transform pos: -7.5,-5.5 parent: 30 + - uid: 6667 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 30 - uid: 6741 components: - type: Transform @@ -113582,80 +109838,42 @@ entities: - type: Transform pos: -13.5,-6.5 parent: 30 - - uid: 6791 - components: - - type: Transform - pos: -32.5,-24.5 - parent: 30 - - uid: 6815 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 30 - - uid: 6816 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 30 - - uid: 6817 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 30 - - uid: 6818 + - uid: 6809 components: - type: Transform - pos: -13.5,-11.5 + rot: -1.5707963267948966 rad + pos: -16.5,-11.5 parent: 30 - - uid: 6819 + - uid: 6810 components: - type: Transform - pos: -11.5,-11.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 30 - uid: 6887 components: - type: Transform pos: -28.5,0.5 parent: 30 - - uid: 6919 - components: - - type: Transform - pos: -32.5,-21.5 - parent: 30 - - uid: 6939 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 30 - - uid: 6941 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 30 - - uid: 6943 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 30 - - uid: 6958 + - uid: 6972 components: - type: Transform - pos: -29.5,-22.5 + pos: -12.5,-17.5 parent: 30 - - uid: 6970 + - uid: 6981 components: - type: Transform - pos: -20.5,-19.5 + pos: -33.5,-27.5 parent: 30 - - uid: 6971 + - uid: 6987 components: - type: Transform - pos: -20.5,-16.5 + pos: -32.5,-27.5 parent: 30 - - uid: 7074 + - uid: 7018 components: - type: Transform - pos: -34.5,-21.5 + pos: -14.5,-17.5 parent: 30 - uid: 7094 components: @@ -113682,110 +109900,117 @@ entities: - type: Transform pos: -0.5,-51.5 parent: 30 - - uid: 7150 + - uid: 7158 components: - type: Transform - pos: -33.5,-25.5 + pos: -29.5,-27.5 parent: 30 - - uid: 7151 + - uid: 7210 components: - type: Transform - pos: -34.5,-25.5 + pos: -34.5,-27.5 parent: 30 - - uid: 7152 + - uid: 7233 components: - type: Transform - pos: -30.5,-25.5 + pos: -30.5,-27.5 parent: 30 - - uid: 7153 + - uid: 7240 components: - type: Transform - pos: -31.5,-25.5 + pos: -14.5,-3.5 parent: 30 - - uid: 7154 + - uid: 7380 components: - type: Transform - pos: -27.5,-25.5 + pos: -31.5,-18.5 parent: 30 - - uid: 7155 + - uid: 7381 components: - type: Transform - pos: -28.5,-25.5 + pos: -31.5,-16.5 parent: 30 - - uid: 7161 + - uid: 7420 components: - type: Transform - pos: -27.5,-27.5 + pos: -22.5,-13.5 parent: 30 - - uid: 7163 + - uid: 7421 components: - type: Transform - pos: -28.5,-27.5 + pos: -20.5,-13.5 parent: 30 - - uid: 7164 + - uid: 7450 components: - type: Transform - pos: -30.5,-27.5 + pos: -63.5,42.5 parent: 30 - - uid: 7165 + - uid: 7529 components: - type: Transform - pos: -31.5,-27.5 + pos: -30.5,-14.5 parent: 30 - - uid: 7166 + - uid: 7537 components: - type: Transform - pos: -34.5,-27.5 + pos: -28.5,-14.5 parent: 30 - - uid: 7167 + - uid: 7822 components: - type: Transform - pos: -33.5,-27.5 + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 parent: 30 - - uid: 7194 + - uid: 7828 components: - type: Transform - pos: -32.5,-23.5 + pos: -33.5,-24.5 parent: 30 - - uid: 7203 + - uid: 7889 components: - type: Transform - pos: -32.5,-22.5 + pos: -14.5,-13.5 parent: 30 - - uid: 7450 + - uid: 7996 components: - type: Transform - pos: -63.5,42.5 + pos: -12.5,-13.5 parent: 30 - - uid: 7476 + - uid: 8014 components: - type: Transform - pos: -30.5,-7.5 + pos: -28.5,-24.5 parent: 30 - - uid: 7764 + - uid: 8015 components: - type: Transform - pos: -29.5,-23.5 + pos: -28.5,-27.5 parent: 30 - - uid: 7916 + - uid: 8027 components: - type: Transform - pos: -36.5,-5.5 + pos: -29.5,-24.5 parent: 30 - - uid: 7917 + - uid: 8044 components: - type: Transform - pos: -35.5,-8.5 + pos: -24.5,-19.5 parent: 30 - - uid: 7918 + - uid: 8048 components: - type: Transform - pos: -36.5,-7.5 + pos: -26.5,-19.5 parent: 30 - - uid: 7922 + - uid: 8062 components: - type: Transform - pos: -36.5,-4.5 + pos: -25.5,-19.5 + parent: 30 + - uid: 8064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 parent: 30 - uid: 8193 components: @@ -113797,11 +110022,6 @@ entities: - type: Transform pos: -48.5,-7.5 parent: 30 - - uid: 8289 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 30 - uid: 8314 components: - type: Transform @@ -114091,6 +110311,11 @@ entities: - type: Transform pos: -63.5,22.5 parent: 30 + - uid: 8838 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 30 - uid: 8982 components: - type: Transform @@ -114359,11 +110584,6 @@ entities: - type: Transform pos: 4.5,37.5 parent: 30 - - uid: 9666 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 30 - uid: 9706 components: - type: Transform @@ -114399,10 +110619,20 @@ entities: - type: Transform pos: 0.5,-55.5 parent: 30 - - uid: 9949 + - uid: 9848 components: - type: Transform - pos: -30.5,-5.5 + pos: -27.5,-17.5 + parent: 30 + - uid: 9857 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 30 + - uid: 9858 + components: + - type: Transform + pos: -32.5,-7.5 parent: 30 - uid: 10089 components: @@ -114979,16 +111209,6 @@ entities: - type: Transform pos: 23.5,-8.5 parent: 30 - - uid: 16130 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 30 - - uid: 16131 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 30 - uid: 16252 components: - type: Transform @@ -115776,11 +111996,6 @@ entities: - type: Transform pos: -45.5,-28.5 parent: 30 - - uid: 20528 - components: - - type: Transform - pos: -29.5,-21.5 - parent: 30 - uid: 20971 components: - type: Transform @@ -115911,30 +112126,6 @@ entities: - type: Transform pos: -30.5,-61.5 parent: 30 -- proto: RemoteSignaller - entities: - - uid: 6871 - components: - - type: MetaData - name: Room 1 Door - - type: Transform - pos: -35.67881,-4.292909 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 7238: - - Pressed: Toggle - - uid: 6881 - components: - - type: MetaData - name: Room 2 Door - - type: Transform - pos: -35.39756,-4.324159 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 7239: - - Pressed: Toggle - proto: ResearchAndDevelopmentServer entities: - uid: 12746 @@ -116073,6 +112264,11 @@ entities: - type: Transform pos: -4.5072117,-10.071463 parent: 30 + - uid: 7217 + components: + - type: Transform + pos: -42.32744,-20.937243 + parent: 30 - uid: 12822 components: - type: Transform @@ -116240,6 +112436,11 @@ entities: - type: Transform pos: -37.50003,55.530113 parent: 30 + - uid: 6680 + components: + - type: Transform + pos: -38.50112,-3.4785028 + parent: 30 - uid: 8384 components: - type: Transform @@ -116354,16 +112555,6 @@ entities: - type: DeviceLinkSink links: - 544 - - uid: 1340 - components: - - type: Transform - pos: -42.5,16.5 - parent: 30 - - uid: 1341 - components: - - type: Transform - pos: -43.5,16.5 - parent: 30 - uid: 5557 components: - type: Transform @@ -116693,6 +112884,30 @@ entities: - type: DeviceLinkSink links: - 20392 + - uid: 6785 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 30 + - type: DeviceLinkSink + links: + - 3204 + - uid: 6797 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 30 + - type: DeviceLinkSink + links: + - 3204 + - uid: 6871 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 30 + - type: DeviceLinkSink + links: + - 6869 - uid: 6882 components: - type: Transform @@ -116717,38 +112932,62 @@ entities: - type: DeviceLinkSink links: - 583 - - uid: 7414 + - uid: 7164 components: - type: Transform - pos: -5.5,-5.5 + pos: -27.5,-21.5 parent: 30 - type: DeviceLinkSink links: - - 9684 - - uid: 7478 + - 6868 + - uid: 7829 components: - type: Transform - pos: -9.5,-5.5 + pos: -23.5,-21.5 parent: 30 - type: DeviceLinkSink links: - - 9684 - - uid: 7490 + - 6868 + - uid: 7876 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 30 + - type: DeviceLinkSink + links: + - 6869 + - uid: 7971 components: - type: Transform pos: -7.5,-5.5 parent: 30 - type: DeviceLinkSink links: - - 9684 - - uid: 8813 + - 3204 + - uid: 7972 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 30 + - type: DeviceLinkSink + links: + - 3204 + - uid: 7991 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 30 + - type: DeviceLinkSink + links: + - 3204 + - uid: 7992 components: - type: Transform pos: -10.5,-6.5 parent: 30 - type: DeviceLinkSink links: - - 9684 + - 3204 - uid: 9238 components: - type: Transform @@ -116765,11 +113004,6 @@ entities: - type: DeviceLinkSink links: - 20446 - - uid: 9422 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 30 - uid: 11002 components: - type: Transform @@ -116932,24 +113166,6 @@ entities: - type: DeviceLinkSink links: - 20446 - - uid: 20620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 30 - - type: DeviceLinkSink - links: - - 20622 - - uid: 20621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 30 - - type: DeviceLinkSink - links: - - 20622 - uid: 21333 components: - type: Transform @@ -116967,16 +113183,6 @@ entities: - type: DeviceLinkSink links: - 21721 - - uid: 22280 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 30 - - uid: 22281 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 30 - uid: 22424 components: - type: Transform @@ -117017,56 +113223,6 @@ entities: - type: Transform pos: -0.5,-43.5 parent: 30 -- proto: ShuttersWindowOpen - entities: - - uid: 6892 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 30 - - type: DeviceLinkSink - links: - - 9684 - - uid: 7238 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 30 - - type: DeviceLinkSink - links: - - 6871 - - uid: 7239 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 30 - - type: DeviceLinkSink - links: - - 6881 - - uid: 7661 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 30 - - type: DeviceLinkSink - links: - - 9684 - - uid: 9671 - components: - - type: Transform - pos: -8.5,-5.5 - parent: 30 - - type: DeviceLinkSink - links: - - 9684 - - uid: 9672 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 30 - - type: DeviceLinkSink - links: - - 9684 - proto: SignAi entities: - uid: 20306 @@ -117201,29 +113357,6 @@ entities: linkedPorts: 9068: - Pressed: Toggle - - uid: 9684 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 7414: - - Pressed: Toggle - 9672: - - Pressed: Toggle - 7490: - - Pressed: Toggle - 9671: - - Pressed: Toggle - 7478: - - Pressed: Toggle - 8813: - - Pressed: Toggle - 6892: - - Pressed: Toggle - 7661: - - Pressed: Toggle - uid: 11008 components: - type: Transform @@ -117420,18 +113553,6 @@ entities: - Pressed: Toggle 20447: - Pressed: Toggle - - uid: 20622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.003015,-14.316378 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 20620: - - Pressed: Toggle - 20621: - - Pressed: Toggle - uid: 21721 components: - type: Transform @@ -117481,29 +113602,36 @@ entities: - Pressed: Toggle 3181: - Pressed: Toggle - - uid: 3188 + - uid: 3189 components: - type: MetaData name: Janitorial Service Light - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 871: + 864: - Pressed: Toggle - - uid: 3189 + - uid: 3204 components: - - type: MetaData - name: Janitorial Service Light - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 + pos: -4.5,-7.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 864: + 7972: + - Pressed: Toggle + 7991: + - Pressed: Toggle + 7971: + - Pressed: Toggle + 6785: + - Pressed: Toggle + 6797: + - Pressed: Toggle + 7992: - Pressed: Toggle - uid: 4731 components: @@ -117535,6 +113663,55 @@ entities: linkedPorts: 1753: - Pressed: Toggle + - uid: 6868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 7164: + - Pressed: Toggle + 7829: + - Pressed: Toggle + - uid: 6869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 7876: + - Pressed: Toggle + 6871: + - Pressed: Toggle + - uid: 6992 + components: + - type: MetaData + name: light switch + - type: Transform + pos: -32.5,-20.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 6991: + - Pressed: Toggle + - uid: 7440 + components: + - type: MetaData + name: Janitorial Service Light + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 30 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 7609: + - Pressed: Toggle - uid: 7673 components: - type: Transform @@ -117555,6 +113732,18 @@ entities: - Pressed: Toggle 899: - Pressed: Toggle + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 7563: + - Pressed: Toggle + 7562: + - Pressed: Toggle - uid: 8393 components: - type: Transform @@ -117719,25 +113908,6 @@ entities: - type: Transform pos: -0.5,4.5 parent: 30 -- proto: SignBio - entities: - - uid: 11464 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 30 -- proto: SignBiohazardMed - entities: - - uid: 7212 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 30 - - uid: 15075 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 30 - proto: SignBridge entities: - uid: 5253 @@ -117801,16 +113971,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-42.5 parent: 30 - - uid: 7258 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 30 - - uid: 7261 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 30 - uid: 9950 components: - type: Transform @@ -117893,11 +114053,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,6.5 parent: 30 - - uid: 17794 - components: - - type: Transform - pos: -43.5,-6.5 - parent: 30 - uid: 17795 components: - type: Transform @@ -118305,11 +114460,6 @@ entities: - type: Transform pos: -36.5,-1.5 parent: 30 - - uid: 6897 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 30 - uid: 9363 components: - type: Transform @@ -118366,23 +114516,6 @@ entities: - type: Transform pos: -4.5,24.5 parent: 30 -- proto: SignExamroom - entities: - - uid: 7020 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 30 - - uid: 9688 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 30 - - uid: 16966 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 30 - proto: SignFire entities: - uid: 6639 @@ -118478,11 +114611,6 @@ entities: - type: Transform pos: -12.5,0.5 parent: 30 - - uid: 20960 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 30 - proto: SignMinerDock entities: - uid: 8445 @@ -118561,11 +114689,6 @@ entities: - type: Transform pos: -48.5,59.5 parent: 30 - - uid: 10030 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 30 - proto: SignPsychology entities: - uid: 873 @@ -118592,11 +114715,6 @@ entities: parent: 30 - proto: SignRedOne entities: - - uid: 7245 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 30 - uid: 16140 components: - type: Transform @@ -118611,11 +114729,6 @@ entities: parent: 30 - proto: SignRedTwo entities: - - uid: 6885 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 30 - uid: 16141 components: - type: Transform @@ -118819,11 +114932,6 @@ entities: - type: Transform pos: -58.5,24.5 parent: 30 - - uid: 6953 - components: - - type: Transform - pos: -29.5,-21.5 - parent: 30 - uid: 10071 components: - type: Transform @@ -118854,18 +114962,6 @@ entities: - type: Transform pos: 0.5,61.5 parent: 30 -- proto: SignSurgery - entities: - - uid: 7089 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 30 - - uid: 7090 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 30 - proto: SignTelecomms entities: - uid: 22655 @@ -118890,13 +114986,6 @@ entities: - type: Transform pos: -28.5,28.5 parent: 30 -- proto: SignVirology - entities: - - uid: 7211 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 30 - proto: SilverOre entities: - uid: 14497 @@ -118952,24 +115041,12 @@ entities: - type: Transform pos: 31.5,31.5 parent: 30 - - uid: 6983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-17.5 - parent: 30 - uid: 11029 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-7.5 parent: 30 - - uid: 11447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 30 - uid: 15383 components: - type: Transform @@ -118994,12 +115071,6 @@ entities: rot: -1.5707963267948966 rad pos: -75.5,-53.5 parent: 30 - - uid: 21254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 30 - uid: 21357 components: - type: Transform @@ -119066,20 +115137,20 @@ entities: - type: Transform pos: -18.5,9.5 parent: 30 - - uid: 6666 + - uid: 7579 components: - type: Transform - pos: -10.5,-10.5 + pos: -23.5,-21.5 parent: 30 - - uid: 7149 + - uid: 7581 components: - type: Transform - pos: -25.5,-21.5 + pos: -23.5,-17.5 parent: 30 - - uid: 9667 + - uid: 8034 components: - type: Transform - pos: -9.5,-21.5 + pos: -10.5,-9.5 parent: 30 - proto: SMESBasic entities: @@ -119189,7 +115260,7 @@ entities: - type: Transform pos: 48.50878,41.513634 parent: 30 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 512 components: @@ -120501,6 +116572,13 @@ entities: - type: Transform pos: 75.5,30.5 parent: 30 +- proto: SolidSecretDoor + entities: + - uid: 9797 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 30 - proto: SpaceCash entities: - uid: 20496 @@ -120544,17 +116622,15 @@ entities: - type: Transform pos: 18.5,44.5 parent: 30 - - uid: 10032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 30 + - type: SpamEmitSound + enabled: False - uid: 15237 components: - type: Transform pos: 37.5,45.5 parent: 30 + - type: SpamEmitSound + enabled: False - proto: SpawnMobAlexander entities: - uid: 9033 @@ -120569,19 +116645,12 @@ entities: - type: Transform pos: 26.5,13.5 parent: 30 -- proto: SpawnMobCatException - entities: - - uid: 6842 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 30 -- proto: SpawnMobCatRuntime +- proto: SpawnMobCat entities: - - uid: 6841 + - uid: 7173 components: - type: Transform - pos: -14.5,-15.5 + pos: -34.5,-19.5 parent: 30 - proto: SpawnMobCorgi entities: @@ -120731,13 +116800,6 @@ entities: - type: Transform pos: -9.5,18.5 parent: 30 -- proto: SpawnPointBlueShield - entities: - - uid: 19566 - components: - - type: Transform - pos: -21.5,35.5 - parent: 30 - proto: SpawnPointBorg entities: - uid: 2371 @@ -120767,13 +116829,6 @@ entities: - type: Transform pos: -24.5,16.5 parent: 30 -- proto: SpawnPointBrigmedic - entities: - - uid: 10150 - components: - - type: Transform - pos: -51.5,52.5 - parent: 30 - proto: SpawnPointCaptain entities: - uid: 5001 @@ -120793,13 +116848,6 @@ entities: - type: Transform pos: 19.5,1.5 parent: 30 -- proto: SpawnPointCentcomConsultant - entities: - - uid: 20623 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 30 - proto: SpawnPointChaplain entities: - uid: 19391 @@ -120840,10 +116888,10 @@ entities: parent: 30 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 6840 + - uid: 7512 components: - type: Transform - pos: -13.5,-15.5 + pos: -33.5,-22.5 parent: 30 - proto: SpawnPointClown entities: @@ -120928,47 +116976,47 @@ entities: parent: 30 - proto: SpawnPointMedicalDoctor entities: - - uid: 8447 + - uid: 7034 components: - type: Transform - pos: -24.5,-17.5 + pos: -15.5,-19.5 parent: 30 - - uid: 8448 + - uid: 7035 components: - type: Transform - pos: -23.5,-17.5 + pos: -16.5,-19.5 parent: 30 - - uid: 8449 + - uid: 7036 components: - type: Transform - pos: -22.5,-17.5 + pos: -17.5,-19.5 parent: 30 - - uid: 8450 + - uid: 7397 components: - type: Transform - pos: -21.5,-17.5 + pos: -14.5,-19.5 parent: 30 - proto: SpawnPointMedicalIntern entities: - - uid: 20800 + - uid: 7037 components: - type: Transform - pos: -22.5,-18.5 + pos: -14.5,-21.5 parent: 30 - - uid: 20801 + - uid: 7181 components: - type: Transform - pos: -21.5,-18.5 + pos: -17.5,-21.5 parent: 30 - - uid: 20887 + - uid: 7182 components: - type: Transform - pos: -24.5,-18.5 + pos: -16.5,-21.5 parent: 30 - - uid: 20888 + - uid: 7183 components: - type: Transform - pos: -23.5,-18.5 + pos: -15.5,-21.5 parent: 30 - proto: SpawnPointMime entities: @@ -120993,10 +117041,10 @@ entities: parent: 30 - proto: SpawnPointParamedic entities: - - uid: 957 + - uid: 3195 components: - type: Transform - pos: -22.5,-22.5 + pos: -13.5,-15.5 parent: 30 - proto: SpawnPointPassenger entities: @@ -121230,6 +117278,13 @@ entities: - type: Transform pos: -25.947893,-37.066498 parent: 30 +- proto: SprayBottle + entities: + - uid: 8038 + components: + - type: Transform + pos: -36.516556,-13.294594 + parent: 30 - proto: SprayBottleSpaceCleaner entities: - uid: 551 @@ -121252,16 +117307,6 @@ entities: - type: Transform pos: -52.02038,53.73549 parent: 30 - - uid: 7024 - components: - - type: Transform - pos: -21.347559,-16.23412 - parent: 30 - - uid: 7025 - components: - - type: Transform - pos: -21.347559,-16.437244 - parent: 30 - uid: 10243 components: - type: Transform @@ -121277,22 +117322,44 @@ entities: - type: Transform pos: -42.623276,26.681374 parent: 30 - - uid: 11454 +- proto: Stairs + entities: + - uid: 8012 components: - type: Transform - pos: -34.509796,-17.332222 + pos: 11.5,60.5 parent: 30 - - uid: 11455 + - uid: 8013 + components: + - type: Transform + pos: 12.5,60.5 + parent: 30 + - uid: 8073 components: - type: Transform - pos: -34.32914,-24.335749 + pos: 11.5,55.5 + parent: 30 + - uid: 8074 + components: + - type: Transform + pos: 12.5,55.5 + parent: 30 + - uid: 8075 + components: + - type: Transform + pos: 13.5,55.5 parent: 30 - proto: StasisBed entities: - - uid: 5841 + - uid: 7011 components: - type: Transform - pos: -21.5,-12.5 + pos: -18.5,-12.5 + parent: 30 + - uid: 7432 + components: + - type: Transform + pos: -16.5,-16.5 parent: 30 - proto: StationMap entities: @@ -121306,6 +117373,16 @@ entities: - type: Transform pos: -49.5,11.5 parent: 30 + - uid: 7005 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 30 + - uid: 7820 + components: + - type: Transform + pos: -59.5,-47.5 + parent: 30 - uid: 10973 components: - type: Transform @@ -121367,6 +117444,11 @@ entities: - type: Transform pos: -19.5,9.5 parent: 30 + - uid: 426 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 30 - uid: 1624 components: - type: Transform @@ -121403,6 +117485,11 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,66.5 parent: 30 + - uid: 7163 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 30 - uid: 9171 components: - type: Transform @@ -121439,12 +117526,6 @@ entities: - type: Transform pos: 27.5,31.5 parent: 30 - - uid: 9866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-11.5 - parent: 30 - uid: 9944 components: - type: Transform @@ -121650,92 +117731,66 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7939 components: - type: Transform pos: 14.5,-29.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7973 components: - type: Transform pos: 19.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8775 components: - type: Transform pos: 27.5,-32.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8776 components: - type: Transform pos: 27.5,-34.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8791 components: - type: Transform pos: 14.5,-27.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 8803 components: - type: Transform pos: 14.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9794 components: - type: Transform pos: -12.5,-43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 9998 components: - type: Transform pos: -13.5,-43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 10000 components: - type: Transform pos: -11.5,-43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 10001 components: - type: Transform pos: -10.5,-43.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 13342 components: - type: Transform pos: 35.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 13343 components: - type: Transform pos: 36.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Stunbaton entities: - uid: 2030 @@ -121825,7 +117880,7 @@ entities: - uid: 7613 components: - type: MetaData - name: West Medical Substation + name: Medical West Substation - type: Transform pos: -37.5,-1.5 parent: 30 @@ -121963,13 +118018,6 @@ entities: - type: Transform pos: -19.5,-36.5 parent: 30 -- proto: SuitStorageCMO - entities: - - uid: 6838 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 30 - proto: SuitStorageEngi entities: - uid: 9436 @@ -122039,17 +118087,6 @@ entities: parent: 30 - proto: SurveillanceCameraCommand entities: - - uid: 8353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-15.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Consultant's Office - uid: 21172 components: - type: Transform @@ -122629,125 +118666,187 @@ entities: id: Tool Room - proto: SurveillanceCameraMedical entities: - - uid: 7232 + - uid: 8290 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-13.5 + pos: -7.5,-1.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Psych Nature Room - - uid: 7233 + id: Medical Lobby + - uid: 10028 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-4.5 + pos: -22.5,-7.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Psych RC Desk - - uid: 8290 + id: Medical + - uid: 10029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-1.5 + pos: -23.5,-5.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Medical Lobby - - uid: 11449 + id: Morgue + - uid: 10030 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryonics + - uid: 10031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO Office + - uid: 10032 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-19.5 + pos: -25.5,-15.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Virology - - uid: 21195 + id: Surgery 1 + - uid: 10033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + pos: -25.5,-23.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: CMO's Office - - uid: 21196 + id: Surgery 2 + - uid: 10034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-9.5 + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Chemistry - - uid: 21198 + id: Medical Storage Hall + - uid: 10036 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Storage + - uid: 10037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery Hall + - uid: 10038 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-7.5 + pos: -32.5,-21.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Cloning - - uid: 21199 + id: CMO Bedroom + - uid: 10083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 + rot: 3.141592653589793 rad + pos: -30.5,-5.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: South Med Hall - - uid: 21227 + id: Medical Sleepers + - uid: 10085 components: - type: Transform - pos: -14.5,-10.5 + rot: 3.141592653589793 rad + pos: -13.5,-8.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Medical Entrance - - uid: 21241 + - uid: 10186 components: - type: Transform - pos: -30.5,-2.5 + pos: -17.5,-16.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Psychology - - uid: 21257 + id: Medical Treatment Room + - uid: 11238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic Room + - uid: 21196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 21241 + components: + - type: Transform + pos: -30.5,-2.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Surgery + id: Psychology - proto: SurveillanceCameraRouterCommand entities: - uid: 20980 @@ -123263,13 +119362,18 @@ entities: parent: 30 - proto: Syringe entities: - - uid: 9876 + - uid: 8282 components: - type: Transform - pos: -21.454517,-10.465277 + pos: -33.61232,-13.437607 parent: 30 - proto: Table entities: + - uid: 325 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 30 - uid: 463 components: - type: Transform @@ -123685,11 +119789,6 @@ entities: - type: Transform pos: -16.5,-2.5 parent: 30 - - uid: 6837 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 30 - uid: 6845 components: - type: Transform @@ -123705,63 +119804,75 @@ entities: - type: Transform pos: -6.5,-1.5 parent: 30 - - uid: 6978 + - uid: 6923 components: - type: Transform - pos: -21.5,-19.5 + pos: -42.5,-21.5 parent: 30 - - uid: 6979 + - uid: 7186 components: - type: Transform - pos: -21.5,-16.5 + pos: -12.5,-14.5 parent: 30 - - uid: 6980 + - uid: 7218 components: - type: Transform - pos: -23.5,-16.5 + pos: -42.5,-20.5 parent: 30 - - uid: 6981 + - uid: 7232 components: - type: Transform - pos: -22.5,-16.5 + pos: -36.5,-14.5 parent: 30 - - uid: 6982 + - uid: 7239 components: - type: Transform - pos: -24.5,-16.5 + pos: -36.5,-13.5 parent: 30 - - uid: 7086 + - uid: 7249 components: - type: Transform - pos: -13.5,-18.5 + pos: -17.5,-18.5 parent: 30 - - uid: 7241 + - uid: 7250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-10.5 + pos: -12.5,-15.5 parent: 30 - - uid: 7246 + - uid: 7251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-11.5 + pos: -15.5,-18.5 parent: 30 - - uid: 7247 + - uid: 7425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-14.5 + pos: -18.5,-14.5 parent: 30 - - uid: 7429 + - uid: 7605 components: - type: Transform - pos: -32.5,-11.5 + pos: -16.5,-18.5 parent: 30 - - uid: 7488 + - uid: 7974 components: - type: Transform - pos: -22.5,-21.5 + pos: -36.5,-12.5 + parent: 30 + - uid: 7986 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 30 + - uid: 7987 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 30 + - uid: 7988 + components: + - type: Transform + pos: -18.5,-18.5 parent: 30 - uid: 9168 components: @@ -123838,16 +119949,6 @@ entities: - type: Transform pos: -17.5,-31.5 parent: 30 - - uid: 9797 - components: - - type: Transform - pos: -37.5,-14.5 - parent: 30 - - uid: 10036 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 30 - uid: 10407 components: - type: Transform @@ -124340,6 +120441,11 @@ entities: - type: Transform pos: 6.5,21.5 parent: 30 + - uid: 22549 + components: + - type: Transform + pos: -49.5,50.5 + parent: 30 - uid: 22835 components: - type: Transform @@ -124455,6 +120561,17 @@ entities: - type: Transform pos: -25.5,11.5 parent: 30 + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 30 + - uid: 2235 + components: + - type: Transform + pos: -52.5,52.5 + parent: 30 - uid: 2236 components: - type: Transform @@ -124500,65 +120617,103 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 30 - - uid: 6830 + - uid: 6912 components: - type: Transform - pos: -12.5,-14.5 + pos: -23.5,-10.5 parent: 30 - - uid: 6831 + - uid: 6974 components: - type: Transform - pos: -13.5,-14.5 + pos: -23.5,-9.5 parent: 30 - - uid: 6832 + - uid: 6978 components: - type: Transform - pos: -14.5,-14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 30 - - uid: 6848 + - uid: 6979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 30 + - uid: 6997 components: - type: Transform pos: -5.5,-4.5 parent: 30 - - uid: 6955 + - uid: 7031 components: - type: Transform - pos: -25.5,-14.5 + pos: -33.5,-15.5 parent: 30 - - uid: 6957 + - uid: 7032 components: - type: Transform - pos: -25.5,-12.5 + pos: -33.5,-16.5 parent: 30 - - uid: 7197 + - uid: 7033 components: - type: Transform - pos: -34.5,-17.5 + pos: -33.5,-17.5 parent: 30 - - uid: 7440 + - uid: 7065 components: - type: Transform - pos: -9.5,-22.5 + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 parent: 30 - - uid: 8806 + - uid: 7262 components: - type: Transform - pos: -7.5,-17.5 + pos: -33.5,-13.5 parent: 30 - - uid: 9027 + - uid: 7468 components: - type: Transform - pos: -10.5,-21.5 + pos: -25.5,-7.5 parent: 30 - - uid: 9713 + - uid: 7518 components: - type: Transform - pos: -8.5,-21.5 + pos: -20.5,-7.5 parent: 30 - - uid: 9714 + - uid: 7557 components: - type: Transform - pos: -9.5,-23.5 + pos: -17.5,-12.5 + parent: 30 + - uid: 7577 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 30 + - uid: 7582 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 30 + - uid: 7583 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 30 + - uid: 7586 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 30 + - uid: 7588 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 30 + - uid: 7589 + components: + - type: Transform + pos: -25.5,-15.5 parent: 30 - uid: 12653 components: @@ -124634,11 +120789,6 @@ entities: parent: 30 - proto: TableReinforced entities: - - uid: 281 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 30 - uid: 321 components: - type: Transform @@ -124674,11 +120824,6 @@ entities: - type: Transform pos: -10.5,7.5 parent: 30 - - uid: 426 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 30 - uid: 505 components: - type: Transform @@ -124769,6 +120914,11 @@ entities: - type: Transform pos: -44.5,46.5 parent: 30 + - uid: 4357 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 30 - uid: 5406 components: - type: Transform @@ -124884,26 +121034,6 @@ entities: - type: Transform pos: -13.5,-4.5 parent: 30 - - uid: 6783 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 30 - - uid: 6784 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 30 - - uid: 7919 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 30 - - uid: 7920 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 30 - uid: 8396 components: - type: Transform @@ -124959,11 +121089,6 @@ entities: - type: Transform pos: -17.5,-35.5 parent: 30 - - uid: 9697 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 30 - uid: 9803 components: - type: Transform @@ -125066,50 +121191,15 @@ entities: - type: Transform pos: -44.5,54.5 parent: 30 - - uid: 6918 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 30 - - uid: 6920 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 30 - - uid: 7142 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 30 - - uid: 7145 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 30 - - uid: 7147 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 30 - - uid: 7190 + - uid: 21467 components: - type: Transform - pos: -34.5,-20.5 - parent: 30 - - uid: 8280 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 30 - - uid: 8283 - components: - - type: Transform - pos: -30.5,-24.5 + pos: 8.5,-13.5 parent: 30 - - uid: 8284 + - uid: 21468 components: - type: Transform - pos: -31.5,-24.5 + pos: 9.5,-13.5 parent: 30 - uid: 21717 components: @@ -125393,11 +121483,6 @@ entities: - type: Transform pos: -30.5,51.5 parent: 30 - - uid: 2246 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 30 - uid: 4956 components: - type: Transform @@ -125553,45 +121638,40 @@ entities: - type: Transform pos: -30.5,-0.5 parent: 30 - - uid: 7240 - components: - - type: Transform - pos: -35.5,-4.5 - parent: 30 - - uid: 7244 + - uid: 6942 components: - type: Transform - pos: -35.5,-5.5 + pos: -34.5,-23.5 parent: 30 - - uid: 7425 + - uid: 9612 components: - type: Transform - pos: -31.5,-5.5 + pos: 2.5,-9.5 parent: 30 - - uid: 7455 + - uid: 9833 components: - type: Transform - pos: -32.5,-4.5 + pos: -42.5,-12.5 parent: 30 - - uid: 9612 + - uid: 9946 components: - type: Transform - pos: 2.5,-9.5 + pos: -27.5,-3.5 parent: 30 - - uid: 9722 + - uid: 9958 components: - type: Transform - pos: -31.5,-4.5 + pos: -10.5,-20.5 parent: 30 - - uid: 9946 + - uid: 9965 components: - type: Transform - pos: -27.5,-3.5 + pos: -9.5,-20.5 parent: 30 - - uid: 10038 + - uid: 9967 components: - type: Transform - pos: -37.5,-4.5 + pos: -8.5,-20.5 parent: 30 - uid: 11353 components: @@ -125628,11 +121708,6 @@ entities: - type: Transform pos: 40.5,40.5 parent: 30 - - uid: 14844 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 30 - uid: 15238 components: - type: Transform @@ -125854,8 +121929,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-50.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: TegCirculator entities: - uid: 15013 @@ -126057,25 +122130,25 @@ entities: - type: Transform pos: -33.5,21.5 parent: 30 - - uid: 5735 + - uid: 7235 components: - type: Transform - pos: -20.5,-14.5 + pos: -19.5,-14.5 parent: 30 - - uid: 5857 + - uid: 7590 components: - type: Transform - pos: -25.5,-11.5 + pos: -15.5,-16.5 parent: 30 - - uid: 5859 + - uid: 7597 components: - type: Transform - pos: -20.5,-12.5 + pos: -19.5,-16.5 parent: 30 - - uid: 9665 + - uid: 7877 components: - type: Transform - pos: -33.5,-3.5 + pos: -15.5,-14.5 parent: 30 - uid: 17391 components: @@ -126112,6 +122185,31 @@ entities: - type: Transform pos: -47.5,-22.5 parent: 30 + - uid: 19566 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 30 + - uid: 19567 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 30 + - uid: 21470 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 30 + - uid: 21471 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 30 + - uid: 21472 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 30 - proto: ToiletDirtyWater entities: - uid: 754 @@ -126333,16 +122431,6 @@ entities: parent: 30 - proto: ToySpawner entities: - - uid: 7413 - components: - - type: Transform - pos: -42.5,-11.5 - parent: 30 - - uid: 9796 - components: - - type: Transform - pos: -42.5,-14.5 - parent: 30 - uid: 15146 components: - type: Transform @@ -126582,6 +122670,16 @@ entities: - Left: Forward - proto: UnfinishedMachineFrame entities: + - uid: 7826 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 30 + - uid: 8813 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 30 - uid: 10191 components: - type: Transform @@ -126666,13 +122764,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,61.5 parent: 30 -- proto: Vaccinator - entities: - - uid: 8286 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 30 - proto: VendingBarDrobe entities: - uid: 10310 @@ -126744,13 +122835,6 @@ entities: - type: Transform pos: -15.5,5.5 parent: 30 -- proto: VendingMachineChemDrobe - entities: - - uid: 19438 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 30 - proto: VendingMachineChemicals entities: - uid: 10035 @@ -126949,6 +123033,13 @@ entities: - type: Transform pos: -77.5,-54.5 parent: 30 +- proto: VendingMachineDiscount + entities: + - uid: 7202 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 30 - proto: VendingMachineEngiDrobe entities: - uid: 9432 @@ -126965,11 +123056,6 @@ entities: parent: 30 - proto: VendingMachineGames entities: - - uid: 9627 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 30 - uid: 16175 components: - type: Transform @@ -126985,6 +123071,13 @@ entities: - type: Transform pos: -77.5,-58.5 parent: 30 +- proto: VendingMachineGeneDrobe + entities: + - uid: 7461 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 30 - proto: VendingMachineHappyHonk entities: - uid: 6946 @@ -127015,32 +123108,27 @@ entities: parent: 30 - proto: VendingMachineMedical entities: - - uid: 353 - components: - - type: Transform - pos: -49.5,50.5 - parent: 30 - - uid: 6724 + - uid: 1345 components: - type: Transform - pos: -17.5,-23.5 + pos: -12.5,-18.5 parent: 30 - - uid: 6861 + - uid: 7885 components: - type: Transform pos: -17.5,-4.5 parent: 30 - - uid: 7196 + - uid: 7985 components: - type: Transform - pos: -34.5,-19.5 + pos: -31.5,-4.5 parent: 30 - proto: VendingMachineMediDrobe entities: - - uid: 6974 + - uid: 7464 components: - type: Transform - pos: -22.5,-19.5 + pos: -13.5,-22.5 parent: 30 - proto: VendingMachineNutri entities: @@ -127131,11 +123219,6 @@ entities: parent: 30 - proto: VendingMachineSustenance entities: - - uid: 10037 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 30 - uid: 10256 components: - type: Transform @@ -127192,17 +123275,10 @@ entities: parent: 30 - proto: VendingMachineViroDrobe entities: - - uid: 6917 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 30 -- proto: VendingMachineWallMedical - entities: - - uid: 7079 + - uid: 7471 components: - type: Transform - pos: -22.5,-20.5 + pos: -14.5,-22.5 parent: 30 - proto: VendingMachineWinter entities: @@ -127309,12 +123385,6 @@ entities: parent: 30 - proto: WallmountTelescreen entities: - - uid: 5062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-14.5 - parent: 30 - uid: 7675 components: - type: Transform @@ -127457,11 +123527,6 @@ entities: - type: Transform pos: -38.5,8.5 parent: 30 - - uid: 767 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 30 - uid: 837 components: - type: Transform @@ -127592,12 +123657,6 @@ entities: - type: Transform pos: -51.5,3.5 parent: 30 - - uid: 926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 30 - uid: 938 components: - type: Transform @@ -128178,6 +124237,11 @@ entities: - type: Transform pos: -46.5,0.5 parent: 30 + - uid: 1757 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 30 - uid: 1775 components: - type: Transform @@ -130252,16 +126316,6 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 - - uid: 6680 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 30 - - uid: 6685 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 30 - uid: 6735 components: - type: Transform @@ -130292,475 +126346,226 @@ entities: - type: Transform pos: -16.5,-3.5 parent: 30 - - uid: 6801 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 30 - - uid: 6802 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 30 - - uid: 6803 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 30 - - uid: 6804 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 30 - - uid: 6805 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 30 - - uid: 6806 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 30 - - uid: 6807 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 30 - - uid: 6808 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 30 - - uid: 6809 - components: - - type: Transform - pos: -16.5,-17.5 - parent: 30 - - uid: 6810 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 30 - - uid: 6811 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 30 - - uid: 6812 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 30 - - uid: 6813 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 30 - - uid: 6814 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 30 - - uid: 6835 + - uid: 6982 components: - type: Transform - pos: -26.5,-17.5 + pos: -27.5,-25.5 parent: 30 - - uid: 6938 + - uid: 6983 components: - type: Transform - pos: -26.5,-13.5 + pos: -31.5,-27.5 parent: 30 - - uid: 6961 + - uid: 6984 components: - type: Transform - pos: -26.5,-18.5 + pos: -31.5,-24.5 parent: 30 - - uid: 6962 + - uid: 6985 components: - type: Transform - pos: -26.5,-19.5 + pos: -27.5,-27.5 parent: 30 - - uid: 6963 + - uid: 6986 components: - type: Transform - pos: -26.5,-20.5 + pos: -27.5,-26.5 parent: 30 - - uid: 6964 + - uid: 7088 components: - type: Transform - pos: -25.5,-20.5 + pos: 36.5,-13.5 parent: 30 - - uid: 6965 + - uid: 7090 components: - type: Transform - pos: -24.5,-20.5 + pos: -43.5,-22.5 parent: 30 - - uid: 7001 + - uid: 7127 components: - type: Transform - pos: -10.5,-18.5 + pos: -5.5,-13.5 parent: 30 - - uid: 7002 + - uid: 7129 components: - type: Transform - pos: -9.5,-18.5 + pos: -3.5,18.5 parent: 30 - - uid: 7003 + - uid: 7219 components: - type: Transform - pos: -8.5,-18.5 + rot: 1.5707963267948966 rad + pos: -6.5,-59.5 parent: 30 - - uid: 7004 + - uid: 7220 components: - type: Transform - pos: -7.5,-18.5 + rot: 1.5707963267948966 rad + pos: -8.5,-59.5 parent: 30 - - uid: 7005 + - uid: 7242 components: - type: Transform - pos: -6.5,-18.5 + pos: -31.5,-21.5 parent: 30 - - uid: 7007 + - uid: 7243 components: - type: Transform - pos: -6.5,-15.5 + pos: -31.5,-23.5 parent: 30 - - uid: 7008 + - uid: 7244 components: - type: Transform - pos: -7.5,-15.5 + pos: -31.5,-15.5 parent: 30 - - uid: 7009 + - uid: 7379 components: - type: Transform - pos: -8.5,-15.5 + pos: -31.5,-19.5 parent: 30 - - uid: 7010 + - uid: 7382 components: - type: Transform - pos: -9.5,-15.5 + pos: -31.5,-20.5 parent: 30 - - uid: 7011 + - uid: 7385 components: - type: Transform - pos: -6.5,-17.5 + pos: -31.5,-22.5 parent: 30 - - uid: 7019 + - uid: 7713 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-15.5 - parent: 30 - - uid: 7060 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 30 - - uid: 7062 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 30 - - uid: 7063 - components: - - type: Transform - pos: -24.5,-23.5 - parent: 30 - - uid: 7064 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 30 - - uid: 7065 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 30 - - uid: 7066 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 30 - - uid: 7067 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 30 - - uid: 7088 - components: - - type: Transform - pos: 36.5,-13.5 + pos: -1.5,-11.5 parent: 30 - - uid: 7092 + - uid: 7714 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-9.5 + pos: -1.5,-10.5 parent: 30 - - uid: 7093 + - uid: 7720 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-14.5 - parent: 30 - - uid: 7114 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 30 - - uid: 7115 - components: - - type: Transform - pos: -29.5,-13.5 + pos: -1.5,-12.5 parent: 30 - - uid: 7116 + - uid: 7721 components: - type: Transform - pos: -27.5,-17.5 + rot: 3.141592653589793 rad + pos: -1.5,-13.5 parent: 30 - - uid: 7117 + - uid: 7733 components: - type: Transform - pos: -29.5,-17.5 + pos: -4.5,-26.5 parent: 30 - - uid: 7118 + - uid: 7765 components: - type: Transform - pos: -30.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,-10.5 parent: 30 - - uid: 7119 + - uid: 7766 components: - type: Transform - pos: -30.5,-16.5 + rot: 3.141592653589793 rad + pos: 0.5,-11.5 parent: 30 - - uid: 7120 + - uid: 7767 components: - type: Transform - pos: -30.5,-15.5 + rot: 3.141592653589793 rad + pos: 0.5,-12.5 parent: 30 - - uid: 7121 + - uid: 7768 components: - type: Transform - pos: -30.5,-14.5 + rot: 3.141592653589793 rad + pos: 0.5,-13.5 parent: 30 - - uid: 7122 + - uid: 7772 components: - type: Transform - pos: -30.5,-13.5 + rot: 3.141592653589793 rad + pos: 0.5,-10.5 parent: 30 - - uid: 7127 + - uid: 7872 components: - type: Transform - pos: -5.5,-13.5 + pos: -35.5,-27.5 parent: 30 - - uid: 7129 + - uid: 7959 components: - type: Transform - pos: -3.5,18.5 + pos: -34.5,-14.5 parent: 30 - - uid: 7134 + - uid: 7969 components: - type: Transform - pos: -29.5,-25.5 + pos: -35.5,-14.5 parent: 30 - - uid: 7135 + - uid: 8025 components: - type: Transform - pos: -32.5,-25.5 + pos: -35.5,-26.5 parent: 30 - - uid: 7136 + - uid: 8272 components: - type: Transform - pos: -35.5,-25.5 + pos: -27.5,-24.5 parent: 30 - - uid: 7137 + - uid: 8275 components: - type: Transform - pos: -35.5,-24.5 + pos: -35.5,-22.5 parent: 30 - - uid: 7138 + - uid: 8276 components: - type: Transform pos: -35.5,-23.5 parent: 30 - - uid: 7139 + - uid: 8277 components: - type: Transform - pos: -35.5,-22.5 + pos: -35.5,-24.5 parent: 30 - - uid: 7140 + - uid: 8279 components: - type: Transform pos: -35.5,-21.5 parent: 30 - - uid: 7141 + - uid: 8280 components: - type: Transform pos: -35.5,-20.5 parent: 30 - - uid: 7156 - components: - - type: Transform - pos: -35.5,-26.5 - parent: 30 - - uid: 7157 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 30 - - uid: 7158 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 30 - - uid: 7159 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 30 - - uid: 7160 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 30 - - uid: 7162 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 30 - - uid: 7180 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 30 - - uid: 7181 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 30 - - uid: 7182 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 30 - - uid: 7183 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 30 - - uid: 7184 + - uid: 8306 components: - type: Transform pos: -35.5,-16.5 parent: 30 - - uid: 7185 + - uid: 8308 components: - type: Transform pos: -35.5,-17.5 parent: 30 - - uid: 7186 + - uid: 8309 components: - type: Transform pos: -35.5,-18.5 parent: 30 - - uid: 7187 + - uid: 8315 components: - type: Transform pos: -35.5,-19.5 parent: 30 - - uid: 7188 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 30 - - uid: 7219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 30 - - uid: 7220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 30 - - uid: 7254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-9.5 - parent: 30 - - uid: 7713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 30 - - uid: 7714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 30 - - uid: 7720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 30 - - uid: 7721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 30 - - uid: 7733 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 30 - - uid: 7741 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 30 - - uid: 7748 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 30 - - uid: 7765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 30 - - uid: 7766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 30 - - uid: 7767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 30 - - uid: 7768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 30 - - uid: 7772 + - uid: 8325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 + pos: -35.5,-15.5 parent: 30 - uid: 8338 components: @@ -130802,21 +126607,6 @@ entities: - type: Transform pos: 14.5,-12.5 parent: 30 - - uid: 8348 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 30 - - uid: 8349 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 30 - - uid: 8352 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 30 - uid: 8375 components: - type: Transform @@ -131340,6 +127130,16 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 30 + - uid: 8816 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 30 + - uid: 8817 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 30 - uid: 8823 components: - type: Transform @@ -131358,6 +127158,11 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 30 + - uid: 8826 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 30 - uid: 8980 components: - type: Transform @@ -131370,6 +127175,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-33.5 parent: 30 + - uid: 9027 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 30 - uid: 9069 components: - type: Transform @@ -132092,47 +127902,20 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-59.5 parent: 30 - - uid: 9832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-10.5 - parent: 30 - - uid: 9833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-9.5 - parent: 30 - - uid: 9834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-11.5 - parent: 30 - - uid: 9835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-12.5 - parent: 30 - - uid: 9836 + - uid: 9714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-13.5 + pos: -32.5,-14.5 parent: 30 - - uid: 9845 + - uid: 9715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 + pos: -39.5,-22.5 parent: 30 - - uid: 9902 + - uid: 9855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-15.5 + pos: -31.5,-14.5 parent: 30 - uid: 9903 components: @@ -132146,12 +127929,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-55.5 parent: 30 - - uid: 9905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-15.5 - parent: 30 - uid: 9906 components: - type: Transform @@ -132170,54 +127947,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 30 - - uid: 9910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-15.5 - parent: 30 - - uid: 9911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 30 - - uid: 9912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 30 - - uid: 9913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 30 - - uid: 9914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 - parent: 30 - - uid: 9915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-3.5 - parent: 30 - - uid: 9916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-3.5 - parent: 30 - - uid: 9917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-3.5 - parent: 30 - uid: 9923 components: - type: Transform @@ -132236,54 +127965,12 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-45.5 parent: 30 - - uid: 9926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 30 - uid: 9927 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-45.5 parent: 30 - - uid: 9928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-3.5 - parent: 30 - - uid: 9930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-5.5 - parent: 30 - - uid: 9931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 30 - - uid: 9932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-8.5 - parent: 30 - - uid: 9940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-15.5 - parent: 30 - - uid: 9941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-15.5 - parent: 30 - uid: 9959 components: - type: Transform @@ -134171,41 +129858,6 @@ entities: - type: Transform pos: 32.5,-13.5 parent: 30 - - uid: 16133 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 30 - - uid: 16134 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 30 - - uid: 16135 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 30 - - uid: 16136 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 30 - - uid: 16137 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 30 - - uid: 16138 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 30 - - uid: 16139 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 30 - uid: 16241 components: - type: Transform @@ -134828,11 +130480,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 30 - - uid: 17808 - components: - - type: Transform - pos: -42.5,-23.5 - parent: 30 - uid: 17809 components: - type: Transform @@ -135024,31 +130671,11 @@ entities: - type: Transform pos: -81.5,-57.5 parent: 30 - - uid: 18172 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 30 - - uid: 18174 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 30 - uid: 18184 components: - type: Transform pos: -60.5,-69.5 parent: 30 - - uid: 18923 - components: - - type: Transform - pos: -41.5,-23.5 - parent: 30 - - uid: 18924 - components: - - type: Transform - pos: -40.5,-23.5 - parent: 30 - uid: 18925 components: - type: Transform @@ -136581,6 +132208,11 @@ entities: - type: Transform pos: -7.5,5.5 parent: 30 + - uid: 78 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 30 - uid: 82 components: - type: Transform @@ -137381,6 +133013,11 @@ entities: - type: Transform pos: -29.5,21.5 parent: 30 + - uid: 281 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 30 - uid: 282 components: - type: Transform @@ -137406,6 +133043,31 @@ entities: - type: Transform pos: -25.5,24.5 parent: 30 + - uid: 351 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 30 + - uid: 352 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 30 + - uid: 353 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 30 + - uid: 354 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 30 + - uid: 355 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 30 - uid: 430 components: - type: Transform @@ -137436,6 +133098,16 @@ entities: - type: Transform pos: -14.5,17.5 parent: 30 + - uid: 495 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 30 + - uid: 496 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 30 - uid: 725 components: - type: Transform @@ -137466,10 +133138,10 @@ entities: - type: Transform pos: -43.5,1.5 parent: 30 - - uid: 907 + - uid: 871 components: - type: Transform - pos: -40.5,-12.5 + pos: -19.5,-23.5 parent: 30 - uid: 968 components: @@ -137571,16 +133243,6 @@ entities: - type: Transform pos: -14.5,0.5 parent: 30 - - uid: 1013 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 30 - - uid: 1015 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 30 - uid: 1049 components: - type: Transform @@ -137827,16 +133489,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,14.5 parent: 30 - - uid: 1313 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 30 - - uid: 1314 - components: - - type: Transform - pos: -43.5,-6.5 - parent: 30 - uid: 1315 components: - type: Transform @@ -138165,6 +133817,21 @@ entities: - type: Transform pos: -33.5,55.5 parent: 30 + - uid: 1934 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 30 + - uid: 1945 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 30 + - uid: 1950 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 30 - uid: 1994 components: - type: Transform @@ -138218,22 +133885,12 @@ entities: - uid: 3172 components: - type: Transform - pos: -34.5,-12.5 - parent: 30 - - uid: 3173 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 30 - - uid: 3174 - components: - - type: Transform - pos: -32.5,-12.5 + pos: -34.5,-8.5 parent: 30 - - uid: 3195 + - uid: 3175 components: - type: Transform - pos: -33.5,-12.5 + pos: -19.5,-13.5 parent: 30 - uid: 3406 components: @@ -138736,11 +134393,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 30 - - uid: 6627 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 30 - uid: 6633 components: - type: Transform @@ -138759,6 +134411,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 30 + - uid: 6732 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 30 - uid: 6770 components: - type: Transform @@ -138779,230 +134436,156 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 30 - - uid: 6865 - components: - - type: Transform - pos: -29.5,20.5 - parent: 30 - - uid: 6873 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 30 - - uid: 6874 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 30 - - uid: 6875 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 30 - - uid: 6876 - components: - - type: Transform - pos: -27.5,0.5 - parent: 30 - - uid: 6922 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 30 - - uid: 6923 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 30 - - uid: 6924 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 30 - - uid: 6925 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 30 - - uid: 6926 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 30 - - uid: 6927 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 30 - - uid: 6928 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 30 - - uid: 6931 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 30 - - uid: 7014 + - uid: 6783 components: - type: Transform - pos: -41.5,-12.5 + pos: -27.5,-8.5 parent: 30 - - uid: 7027 + - uid: 6798 components: - type: Transform - pos: -16.5,-18.5 + rot: -1.5707963267948966 rad + pos: -16.5,-8.5 parent: 30 - - uid: 7029 + - uid: 6815 components: - type: Transform - pos: -12.5,-18.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 parent: 30 - - uid: 7030 + - uid: 6817 components: - type: Transform - pos: -12.5,-19.5 + rot: -1.5707963267948966 rad + pos: -16.5,-13.5 parent: 30 - - uid: 7032 + - uid: 6818 components: - type: Transform - pos: -12.5,-21.5 + rot: -1.5707963267948966 rad + pos: -16.5,-12.5 parent: 30 - - uid: 7033 + - uid: 6865 components: - type: Transform - pos: -12.5,-22.5 + pos: -29.5,20.5 parent: 30 - - uid: 7034 + - uid: 6873 components: - type: Transform - pos: -12.5,-23.5 + pos: -27.5,-4.5 parent: 30 - - uid: 7035 + - uid: 6874 components: - type: Transform - pos: -12.5,-24.5 + pos: -26.5,-0.5 parent: 30 - - uid: 7036 + - uid: 6875 components: - type: Transform - pos: -11.5,-24.5 + pos: -29.5,-4.5 parent: 30 - - uid: 7037 + - uid: 6876 components: - type: Transform - pos: -10.5,-24.5 + pos: -27.5,0.5 parent: 30 - - uid: 7038 + - uid: 6996 components: - type: Transform - pos: -9.5,-24.5 + pos: -11.5,-16.5 parent: 30 - - uid: 7039 + - uid: 6998 components: - type: Transform - pos: -8.5,-24.5 + pos: -11.5,-15.5 parent: 30 - - uid: 7040 + - uid: 6999 components: - type: Transform - pos: -7.5,-24.5 + pos: -11.5,-14.5 parent: 30 - uid: 7041 components: - type: Transform - pos: -6.5,-24.5 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 parent: 30 - uid: 7042 components: - type: Transform - pos: -6.5,-23.5 - parent: 30 - - uid: 7043 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 30 - - uid: 7044 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 30 - - uid: 7046 - components: - - type: Transform - pos: -6.5,-19.5 + pos: -23.5,-24.5 parent: 30 - - uid: 7047 + - uid: 7068 components: - type: Transform - pos: -13.5,-23.5 + pos: -35.5,-8.5 parent: 30 - - uid: 7048 + - uid: 7077 components: - type: Transform - pos: -14.5,-23.5 + pos: -32.5,-8.5 parent: 30 - - uid: 7049 + - uid: 7080 components: - type: Transform - pos: -15.5,-23.5 + pos: -39.5,-4.5 parent: 30 - - uid: 7050 + - uid: 7087 components: - type: Transform - pos: -16.5,-23.5 + pos: -27.5,-14.5 parent: 30 - - uid: 7051 + - uid: 7128 components: - type: Transform - pos: -16.5,-22.5 + pos: -30.5,-4.5 parent: 30 - - uid: 7056 + - uid: 7161 components: - type: Transform - pos: -16.5,-24.5 + pos: -11.5,-20.5 parent: 30 - - uid: 7057 + - uid: 7199 components: - type: Transform - pos: -17.5,-24.5 + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 parent: 30 - - uid: 7058 + - uid: 7206 components: - type: Transform - pos: -19.5,-24.5 + pos: -30.5,0.5 parent: 30 - - uid: 7059 + - uid: 7214 components: - type: Transform - pos: -20.5,-24.5 + pos: -37.5,-19.5 parent: 30 - - uid: 7071 + - uid: 7234 components: - type: Transform - pos: -42.5,-12.5 + pos: -19.5,-17.5 parent: 30 - - uid: 7080 + - uid: 7236 components: - type: Transform - pos: -30.5,-8.5 + pos: -17.5,-13.5 parent: 30 - - uid: 7126 + - uid: 7260 components: - type: Transform - pos: -30.5,-12.5 + pos: -11.5,-17.5 parent: 30 - - uid: 7128 + - uid: 7264 components: - type: Transform - pos: -30.5,-4.5 + pos: -36.5,-3.5 parent: 30 - - uid: 7206 + - uid: 7265 components: - type: Transform - pos: -30.5,0.5 + pos: -37.5,-21.5 parent: 30 - uid: 7269 components: @@ -139029,6 +134612,12 @@ entities: - type: Transform pos: -23.5,0.5 parent: 30 + - uid: 7277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 30 - uid: 7279 components: - type: Transform @@ -139039,11 +134628,6 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 30 - - uid: 7281 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 30 - uid: 7282 components: - type: Transform @@ -139074,75 +134658,35 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 30 - - uid: 7295 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 30 - - uid: 7297 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 30 - - uid: 7298 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 30 - - uid: 7299 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 30 - - uid: 7300 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 30 - - uid: 7302 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 30 - - uid: 7303 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 30 - - uid: 7380 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 30 - - uid: 7385 + - uid: 7370 components: - type: Transform - pos: -23.5,-23.5 + pos: -32.5,-20.5 parent: 30 - - uid: 7391 + - uid: 7372 components: - type: Transform - pos: -21.5,-23.5 + pos: -34.5,-20.5 parent: 30 - - uid: 7392 + - uid: 7521 components: - type: Transform - pos: -22.5,-23.5 + pos: 41.5,19.5 parent: 30 - - uid: 7393 + - uid: 7576 components: - type: Transform - pos: -20.5,-23.5 + pos: -26.5,-14.5 parent: 30 - - uid: 7428 + - uid: 7591 components: - type: Transform - pos: -35.5,-3.5 + pos: -18.5,-13.5 parent: 30 - - uid: 7521 + - uid: 7608 components: - type: Transform - pos: 41.5,19.5 + pos: -11.5,-18.5 parent: 30 - uid: 7709 components: @@ -139276,11 +134820,26 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-17.5 parent: 30 + - uid: 7738 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 30 + - uid: 7739 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 30 - uid: 7744 components: - type: Transform pos: 0.5,-15.5 parent: 30 + - uid: 7748 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 30 - uid: 7754 components: - type: Transform @@ -139297,6 +134856,246 @@ entities: - type: Transform pos: 5.5,-12.5 parent: 30 + - uid: 7831 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 30 + - uid: 7838 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 30 + - uid: 7841 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 30 + - uid: 7843 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 30 + - uid: 7869 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 30 + - uid: 7875 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 30 + - uid: 7880 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 30 + - uid: 7882 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 30 + - uid: 7883 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 30 + - uid: 7891 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 30 + - uid: 7892 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 30 + - uid: 7910 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 30 + - uid: 7916 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 30 + - uid: 7919 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 30 + - uid: 7931 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 30 + - uid: 7932 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 30 + - uid: 7933 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 30 + - uid: 7934 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 30 + - uid: 7935 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 30 + - uid: 7936 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 30 + - uid: 7937 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 30 + - uid: 7938 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 30 + - uid: 7940 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 30 + - uid: 7941 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 30 + - uid: 7942 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 30 + - uid: 7943 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 30 + - uid: 7963 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 30 + - uid: 7966 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 30 + - uid: 7967 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 30 + - uid: 7976 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 30 + - uid: 7977 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 30 + - uid: 7984 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 30 + - uid: 7997 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 30 + - uid: 8003 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 30 + - uid: 8007 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 30 + - uid: 8008 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 30 + - uid: 8010 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 30 + - uid: 8017 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 30 + - uid: 8036 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 30 + - uid: 8046 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 30 + - uid: 8093 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 30 + - uid: 8140 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 30 + - uid: 8238 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 30 + - uid: 8240 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 30 + - uid: 8242 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 30 + - uid: 8283 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 30 + - uid: 8284 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 30 + - uid: 8287 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 30 - uid: 8291 components: - type: Transform @@ -139312,6 +135111,46 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 30 + - uid: 8318 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 30 + - uid: 8319 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 30 + - uid: 8320 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 30 + - uid: 8321 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 30 + - uid: 8322 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 30 + - uid: 8323 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 30 + - uid: 8324 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 30 + - uid: 8326 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 30 - uid: 8327 components: - type: Transform @@ -139342,11 +135181,26 @@ entities: - type: Transform pos: 10.5,-2.5 parent: 30 + - uid: 8358 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 30 + - uid: 8362 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 30 - uid: 8403 components: - type: Transform pos: 2.5,-12.5 parent: 30 + - uid: 8404 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 30 - uid: 8406 components: - type: Transform @@ -139372,6 +135226,26 @@ entities: - type: Transform pos: 18.5,-9.5 parent: 30 + - uid: 8447 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 30 + - uid: 8448 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 30 + - uid: 8449 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 30 + - uid: 8450 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 30 - uid: 8451 components: - type: Transform @@ -139472,6 +135346,21 @@ entities: - type: Transform pos: 9.5,-26.5 parent: 30 + - uid: 8534 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 30 + - uid: 8805 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 30 + - uid: 8806 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 30 - uid: 8808 components: - type: Transform @@ -139490,12 +135379,22 @@ entities: - uid: 8814 components: - type: Transform - pos: -30.5,-11.5 + pos: -39.5,-15.5 parent: 30 - - uid: 8817 + - uid: 8815 components: - type: Transform - pos: -30.5,-9.5 + pos: -43.5,-15.5 + parent: 30 + - uid: 9025 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 30 + - uid: 9026 + components: + - type: Transform + pos: -37.5,-23.5 parent: 30 - uid: 9128 components: @@ -139553,15 +135452,120 @@ entities: - type: Transform pos: -14.5,-31.5 parent: 30 + - uid: 9684 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 30 + - uid: 9711 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 30 + - uid: 9721 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 30 + - uid: 9722 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 30 + - uid: 9796 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 30 + - uid: 9802 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 30 - uid: 9842 components: - type: Transform pos: 29.5,43.5 parent: 30 - - uid: 9956 + - uid: 9916 components: - type: Transform - pos: -34.5,-11.5 + pos: -10.5,-23.5 + parent: 30 + - uid: 9917 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 30 + - uid: 9926 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 30 + - uid: 9928 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 30 + - uid: 9929 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 30 + - uid: 9930 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 30 + - uid: 9931 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 30 + - uid: 9932 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 30 + - uid: 9933 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 30 + - uid: 9940 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 30 + - uid: 9941 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 30 + - uid: 9947 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 30 + - uid: 9949 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 30 + - uid: 9951 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 30 + - uid: 9953 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 30 + - uid: 9954 + components: + - type: Transform + pos: -9.5,-15.5 parent: 30 - uid: 11019 components: @@ -141058,11 +137062,6 @@ entities: - type: Transform pos: -53.5,-66.5 parent: 30 - - uid: 17810 - components: - - type: Transform - pos: -43.5,-22.5 - parent: 30 - uid: 17999 components: - type: Transform @@ -141386,36 +137385,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-28.5 parent: 30 - - uid: 19768 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 30 - - uid: 19770 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 30 - - uid: 19771 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 30 - - uid: 19772 - components: - - type: Transform - pos: -38.5,-17.5 - parent: 30 - - uid: 19773 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 30 - - uid: 19774 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 30 - uid: 19814 components: - type: Transform @@ -141426,31 +137395,6 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 30 - - uid: 19835 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 30 - - uid: 19837 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 30 - - uid: 19838 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 30 - - uid: 19839 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 30 - - uid: 19842 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 30 - uid: 20951 components: - type: Transform @@ -141798,31 +137742,6 @@ entities: - type: Transform pos: -22.5,-26.5 parent: 30 - - uid: 16777 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 30 - - uid: 16795 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 30 - - uid: 16798 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 30 - - uid: 16802 - components: - - type: Transform - pos: -41.5,-21.5 - parent: 30 - - uid: 16803 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 30 - uid: 16899 components: - type: Transform @@ -141879,14 +137798,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeCargoFilled entities: - uid: 6362 @@ -141912,14 +137823,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 22106 components: - type: Transform @@ -141943,14 +137846,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeChapel entities: - uid: 17952 @@ -141976,14 +137871,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 17953 components: - type: Transform @@ -142007,14 +137894,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeChapelFilled entities: - uid: 17622 @@ -142040,14 +137919,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeEngineeringFilled entities: - uid: 8228 @@ -142073,14 +137944,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeFormal entities: - uid: 19618 @@ -142106,14 +137969,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -142167,14 +138022,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobePrisonFilled entities: - uid: 1762 @@ -142200,14 +138047,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1763 components: - type: Transform @@ -142231,14 +138070,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 1764 components: - type: Transform @@ -142262,14 +138093,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2377 components: - type: Transform @@ -142293,14 +138116,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2378 components: - type: Transform @@ -142324,14 +138139,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeSecurityFilled entities: - uid: 2083 @@ -142357,14 +138164,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6754 components: - type: Transform @@ -142388,14 +138187,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeYellowFilled entities: - uid: 16043 @@ -142421,14 +138212,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WarningCO2 entities: - uid: 8666 @@ -142478,17 +138261,6 @@ entities: - type: Transform pos: 28.5,-28.5 parent: 30 -- proto: WarpPoint - entities: - - uid: 16132 - components: - - type: MetaData - desc: Medbay - - type: Transform - pos: -18.5,-7.5 - parent: 30 - - type: WarpPoint - location: Medbay - proto: WaterCooler entities: - uid: 1932 @@ -142501,11 +138273,6 @@ entities: - type: Transform pos: -23.5,15.5 parent: 30 - - uid: 10033 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 30 - uid: 11611 components: - type: Transform @@ -142617,8 +138384,6 @@ entities: - type: Transform pos: 27.5,-28.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: WeaponCapacitorRecharger entities: - uid: 1084 @@ -142968,12 +138733,6 @@ entities: - type: Transform pos: 4.5,30.5 parent: 30 - - uid: 7483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-14.5 - parent: 30 - uid: 11038 components: - type: Transform @@ -143110,23 +138869,23 @@ entities: - type: Transform pos: -8.5,-5.5 parent: 30 - - uid: 6681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 30 - uid: 6707 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-11.5 parent: 30 - - uid: 19441 + - uid: 9054 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-10.5 + pos: -10.5,-9.5 + parent: 30 + - uid: 9672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 parent: 30 - proto: WindoorSecureCommandLocked entities: @@ -143145,46 +138904,17 @@ entities: parent: 30 - proto: WindoorSecureMedicalLocked entities: - - uid: 1560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 30 - - uid: 7200 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 30 - - uid: 8815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 30 - - uid: 8816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 30 - - uid: 9029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 30 - - uid: 9030 + - uid: 7093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 parent: 30 - - uid: 9953 + - uid: 8047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 + rot: -1.5707963267948966 rad + pos: -13.5,-4.5 parent: 30 - proto: WindoorSecureScienceLocked entities: @@ -143549,16 +139279,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,0.5 parent: 30 - - uid: 7031 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 30 - - uid: 7052 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 30 - uid: 8329 components: - type: Transform @@ -143704,25 +139424,23 @@ entities: - type: Transform pos: 44.5,33.5 parent: 30 - - uid: 21511 + - uid: 21473 components: - type: Transform - pos: 34.5,34.5 + pos: 9.5,-17.5 parent: 30 -- proto: WindowDirectional - entities: - - uid: 7198 + - uid: 21474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 + pos: 7.5,-17.5 parent: 30 - - uid: 7234 + - uid: 21511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-13.5 + pos: 34.5,34.5 parent: 30 +- proto: WindowDirectional + entities: - uid: 7523 components: - type: Transform @@ -143799,18 +139517,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 30 - - uid: 9669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-21.5 - parent: 30 - - uid: 9712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-21.5 - parent: 30 - proto: WindowReinforcedDirectional entities: - uid: 74 @@ -144059,63 +139765,64 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 30 - - uid: 6984 + - uid: 7352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-16.5 + pos: -19.5,-21.5 parent: 30 - - uid: 7006 + - uid: 7476 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-12.5 + pos: -19.5,-22.5 parent: 30 - - uid: 7013 + - uid: 7483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-19.5 parent: 30 - - uid: 7199 + - uid: 7558 components: - type: Transform - pos: -34.5,-18.5 + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 parent: 30 - - uid: 7301 + - uid: 7823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-10.5 + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 parent: 30 - - uid: 7305 + - uid: 7980 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-13.5 + pos: -19.5,-18.5 parent: 30 - - uid: 8271 + - uid: 7981 components: - type: Transform - pos: -32.5,-18.5 + rot: 1.5707963267948966 rad + pos: -19.5,-19.5 parent: 30 - - uid: 8320 + - uid: 7982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + rot: 3.141592653589793 rad + pos: -19.5,-21.5 parent: 30 - - uid: 8321 + - uid: 7990 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: -19.5,-22.5 parent: 30 - - uid: 8322 + - uid: 7994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-14.5 + pos: -19.5,-19.5 parent: 30 - uid: 8614 components: @@ -144127,12 +139834,6 @@ entities: - type: Transform pos: -24.5,4.5 parent: 30 - - uid: 9685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-6.5 - parent: 30 - uid: 9960 components: - type: Transform @@ -144162,11 +139863,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,4.5 parent: 30 - - uid: 11450 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 30 - uid: 12728 components: - type: Transform @@ -144661,6 +140357,11 @@ entities: parent: 30 - proto: Wrench entities: + - uid: 8039 + components: + - type: Transform + pos: -37.454056,-14.466469 + parent: 30 - uid: 9175 components: - type: Transform diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 9fd4c24c89fecd..34c01f3a3fb4b4 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -9688,70 +9688,6 @@ entities: - type: Transform pos: 19.476593,-4.469906 parent: 21002 -- proto: ActionToggleInternals - entities: - - uid: 23831 - components: - - type: Transform - parent: 23830 - - type: InstantAction - container: 23830 - - uid: 23833 - components: - - type: Transform - parent: 23832 - - type: InstantAction - container: 23832 - - uid: 23835 - components: - - type: Transform - parent: 23834 - - type: InstantAction - container: 23834 - - uid: 23837 - components: - - type: Transform - parent: 23836 - - type: InstantAction - container: 23836 - - uid: 23839 - components: - - type: Transform - parent: 23838 - - type: InstantAction - container: 23838 - - uid: 28282 - components: - - type: Transform - parent: 28281 - - type: InstantAction - container: 28281 - - uid: 28284 - components: - - type: Transform - parent: 28283 - - type: InstantAction - container: 28283 -- proto: ActionToggleLight - entities: - - uid: 2263 - components: - - type: Transform - parent: 2262 - - type: InstantAction - container: 2262 - - uid: 6624 - components: - - type: Transform - parent: 6623 - - type: InstantAction - container: 6623 - - uid: 23803 - components: - - type: Transform - parent: 23802 - - type: InstantAction - container: 23802 - proto: AirAlarm entities: - uid: 5583 @@ -74652,20 +74588,6 @@ entities: - type: Transform pos: -1.6524403,40.692146 parent: 2 - - type: HandheldLight - toggleActionEntity: 23803 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 23803 - - type: ActionsContainer - proto: ClothingHeadHelmetRiot entities: - uid: 4267 @@ -86086,14 +86008,6 @@ entities: - type: Transform pos: -26.335854,15.494169 parent: 2 - - type: GasTank - toggleActionEntity: 23839 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23839 - proto: DoubleEmergencyOxygenTankFilled entities: - uid: 23832 @@ -86101,14 +86015,6 @@ entities: - type: Transform pos: -26.606686,15.712919 parent: 2 - - type: GasTank - toggleActionEntity: 23833 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23833 - proto: Dresser entities: - uid: 22340 @@ -87717,14 +87623,6 @@ entities: - type: Transform pos: -26.28377,14.921253 parent: 2 - - type: GasTank - toggleActionEntity: 23837 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23837 - uid: 28423 components: - type: Transform @@ -87747,40 +87645,16 @@ entities: - type: Transform pos: -26.481686,14.431669 parent: 2 - - type: GasTank - toggleActionEntity: 23835 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23835 - uid: 28281 components: - type: Transform pos: 43.584152,5.432804 parent: 21002 - - type: GasTank - toggleActionEntity: 28282 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28282 - uid: 28283 components: - type: Transform pos: 64.58009,6.520523 parent: 21002 - - type: GasTank - toggleActionEntity: 28284 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28284 - uid: 28286 components: - type: Transform @@ -87989,14 +87863,6 @@ entities: - type: Transform pos: -26.606686,14.921253 parent: 2 - - type: GasTank - toggleActionEntity: 23831 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23831 - proto: ExtinguisherCabinetFilled entities: - uid: 5804 @@ -134748,22 +134614,8 @@ entities: - type: Transform pos: -31.387814,-44.28387 parent: 2 - - type: HandheldLight - toggleActionEntity: 2263 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 2263 - type: Physics canCollide: True - - type: ActionsContainer - proto: LampGold entities: - uid: 1597 @@ -134788,22 +134640,8 @@ entities: - type: Transform pos: 3.4081588,44.633736 parent: 2 - - type: HandheldLight - toggleActionEntity: 6624 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6624 - type: Physics canCollide: True - - type: ActionsContainer - uid: 7981 components: - type: Transform diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index e31459c831513c..661149f4fe2a3f 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -7,7 +7,6 @@ tilemap: 11: FloorAsteroidTile 14: FloorBar 17: FloorBlueCircuit - 1: FloorBrokenWood 29: FloorDark 33: FloorDarkMini 34: FloorDarkMono @@ -147,7 +146,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -2956,52 +2955,16 @@ entities: version: 2 data: tiles: - -4,0: - 0: 65419 - -4,-1: - 0: 48031 - -5,0: - 0: 12146 - -4,1: - 0: 43263 - -5,1: - 0: 61542 - -4,2: - 0: 61354 - -5,2: + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-1: + 0: 65535 + -1,-2: 0: 65535 - -4,3: - 0: 57578 - -5,3: - 0: 65295 - -4,4: - 0: 62702 - -3,2: - 0: 63726 - -3,3: - 0: 14591 - -3,0: - 0: 59630 - -3,1: - 0: 61166 - -3,4: - 0: 61491 - 1: 136 - -3,-1: - 0: 60943 - -2,0: - 0: 64733 -2,1: 0: 65535 - -2,2: - 0: 56575 - -2,3: - 0: 3057 - -2,-1: - 0: 64975 - -2,4: - 1: 17 - 0: 64716 -1,0: 0: 65535 -1,1: @@ -3009,1068 +2972,1113 @@ entities: -1,2: 0: 65535 -1,3: - 0: 32759 - -1,-1: 0: 65535 - -1,4: + 0,-3: + 0: 65535 + 0,-2: + 0: 62271 + 1: 3264 + 0,-1: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 61441 + 1: 4094 + 1,-1: 0: 65535 - 0,0: - 0: 65437 0,1: - 0: 65533 + 0: 65535 0,2: - 0: 53759 + 0: 65535 0,3: - 0: 4076 - 0,-1: - 0: 65533 - 0,4: - 0: 61713 - 1: 204 + 0: 65535 + 0,0: + 0: 65535 + 1,3: + 0: 65535 1,0: - 0: 36623 + 0: 65535 1,1: - 0: 65294 + 0: 65535 1,2: - 0: 61678 - 1,3: - 0: 60943 - 1,-1: 0: 65535 - 1,4: - 0: 62702 + 0,4: + 0: 65535 + -1,4: + 0: 65535 + -2,0: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 2,0: - 0: 64426 + 0: 65535 2,1: - 0: 47787 + 0: 65535 2,2: - 0: 47786 + 0: 65535 2,3: - 0: 48011 - 2,4: - 0: 63675 - 2,-1: - 0: 43946 + 0: 65535 3,0: - 0: 64441 + 0: 65535 3,1: - 0: 64795 + 0: 65535 3,2: - 0: 57117 + 0: 65535 3,3: - 0: 65489 - 3,-1: - 0: 46079 - 3,4: - 0: 56793 - 4,0: - 0: 24296 - 4,1: - 0: 56655 - 4,2: - 0: 32589 - 4,3: - 0: 65520 - -5,4: - 0: 62719 + 0: 65535 + -4,4: + 0: 65535 -4,5: - 0: 65295 - -5,5: - 0: 21839 - -4,6: - 0: 53471 - -5,6: - 0: 21629 - -4,7: - 0: 223 - 1: 32768 + 0: 65535 + -3,4: + 0: 65535 -3,5: - 0: 64399 - -3,6: - 0: 47547 - -3,7: - 0: 35003 - 1: 12288 - -3,8: - 1: 4401 - 0: 2184 + 0: 65535 + -2,4: + 0: 65535 -2,5: - 0: 56607 - -2,6: - 0: 7645 - -2,7: - 0: 56829 - -2,8: - 0: 53247 - -1,5: - 0: 65295 - -1,6: - 0: 4095 - -1,7: 0: 65535 - -1,8: + -1,5: 0: 65535 0,5: - 0: 56783 - 0,6: - 0: 52701 - 0,7: - 0: 56829 - 0,8: - 0: 8191 + 0: 65535 + 1,4: + 0: 65535 1,5: - 0: 3823 - 1,6: - 0: 20222 - 1,7: - 0: 24814 - 1,8: - 0: 7 - 1: 17408 + 0: 65535 + 2,4: + 0: 65535 2,5: - 0: 10047 - 2,6: - 0: 1911 - 2,7: - 0: 1111 - 1: 4096 - 2,8: - 0: 2052 - 1: 17520 + 0: 65535 + 3,4: + 0: 65535 3,5: - 0: 55773 - 3,6: - 0: 56799 - 3,7: - 0: 39865 - 3,8: - 0: 39195 - 4,4: - 0: 65528 - 4,5: - 0: 61951 - 4,6: 0: 65535 - 4,7: - 0: 47928 0,-4: - 0: 62399 - 0,-5: - 0: 48051 - -1,-4: - 0: 65295 - 0,-3: - 0: 63535 - -1,-3: - 0: 63487 - 0,-2: - 0: 4369 - 2: 3264 - -1,-2: 0: 65535 1,-4: - 0: 61951 - 1,-3: - 0: 3855 - 1,-2: - 2: 4094 - 0: 4096 - 1,-5: - 0: 65521 + 0: 65535 2,-4: - 0: 62574 + 0: 65535 2,-3: - 0: 43935 + 0: 65535 2,-2: - 0: 43706 - 2,-5: - 0: 26214 + 0: 65535 + 2,-1: + 0: 65535 3,-4: - 0: 12799 - 1: 32768 + 0: 65535 3,-3: - 0: 13075 - 1: 2184 + 0: 65535 3,-2: - 0: 14783 - 4,-4: - 0: 59613 - 4,-2: - 0: 15 - 1: 2560 - 4,-1: - 0: 61695 + 0: 65535 + 3,-1: + 0: 65535 -4,-4: - 0: 62347 - -4,-5: - 0: 48049 - -5,-4: - 0: 63803 + 0: 65535 -4,-3: - 0: 65295 - -5,-3: - 0: 61007 + 0: 65535 -4,-2: - 0: 4095 - -5,-2: - 0: 3822 - -5,-1: - 0: 26127 + 0: 65535 + -4,-1: + 0: 65535 -3,-4: - 0: 62719 + 0: 65535 -3,-3: - 0: 65327 + 0: 65535 -3,-2: - 0: 12287 - -3,-5: - 0: 65525 + 0: 65535 + -3,-1: + 0: 65535 -2,-4: - 0: 65134 + 0: 65535 -2,-3: - 0: 37775 - -2,-2: - 0: 53247 - -2,-5: - 0: 61166 - -1,-5: 0: 65535 - -8,4: + -2,-2: 0: 65535 - -8,3: + -1,-4: 0: 65535 - -9,4: - 0: 29431 - -8,5: - 0: 65391 - -8,6: - 0: 30511 - -8,7: - 0: 65522 - -9,7: - 0: 34944 - -8,8: - 0: 60431 - -7,4: - 0: 28775 - -7,5: - 0: 63238 - -7,6: - 0: 30503 - -7,7: - 0: 30578 - -7,8: - 0: 12551 -6,4: - 0: 62399 + 0: 65535 -6,5: - 0: 65327 - -6,6: - 0: 62207 - -6,7: - 0: 4103 - -6,3: - 0: 47931 - -6,8: - 0: 50245 - -5,7: - 0: 85 - -5,8: - 0: 108 - -8,0: - 0: 65522 - -8,-1: - 0: 32759 - -9,0: - 0: 61412 - -8,1: - 0: 28927 - -9,1: - 0: 61678 - -8,2: - 0: 65311 - -9,2: - 0: 63246 - -9,3: - 0: 63271 + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -7,0: + 0: 65535 -7,1: - 0: 63078 + 0: 65535 -7,2: - 0: 62991 - -7,3: - 0: 4086 - -7,-1: - 0: 30591 - -7,0: - 0: 28390 + 0: 65535 -6,0: 0: 65535 -6,1: - 0: 45311 + 0: 65535 -6,2: - 0: 49147 - -6,-1: - 0: 65294 - -8,-4: - 0: 28927 - -8,-5: 0: 65535 - -9,-4: - 0: 61883 - -8,-3: - 0: 65327 - -9,-3: - 0: 64783 - -8,-2: - 0: 12287 - -9,-2: - 0: 20173 - -9,-1: - 0: 61166 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 -7,-4: - 0: 64767 + 0: 65535 -7,-3: - 0: 26223 - -7,-5: 0: 65535 -7,-2: - 0: 58982 + 0: 65535 + -7,-1: + 0: 65535 -6,-4: - 0: 61627 + 0: 65535 -6,-3: - 0: 65327 + 0: 65535 -6,-2: - 0: 62719 - -6,-5: - 0: 48051 - -5,-5: - 0: 49073 - -4,9: - 1: 240 - -5,9: - 1: 128 - -4,8: - 1: 192 - -3,9: - 1: 241 + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,6: + 0: 63487 + 2: 2048 + -2,7: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + -3,8: + 0: 56829 + -2,8: + 0: 65535 -2,9: - 1: 3985 + 0: 3999 + -1,8: + 0: 65535 -1,9: - 1: 3968 + 0: 3983 + 0,8: + 0: 65535 0,9: - 1: 22468 + 0: 22471 + 1,8: + 0: 22015 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,3: + 0: 65535 + -4,9: + 0: 240 + -4,8: + 0: 503 + -3,9: + 0: 241 0,10: - 1: 57309 + 0: 57309 0,11: - 0: 2474 + 0: 65518 1,9: - 1: 17652 + 0: 17652 1,10: - 1: 1103 + 0: 62543 1,11: - 0: 61182 + 0: 65535 + 2,8: + 0: 52476 2,9: - 1: 17652 + 0: 17660 2,10: - 1: 3 - 0: 57344 + 0: 65519 2,11: - 0: 3822 - 2,12: - 0: 8190 + 0: 65535 + 3,8: + 0: 65535 3,9: - 0: 3633 - 3,11: - 0: 61166 + 0: 3839 3,10: - 0: 12 + 0: 65535 + 3,11: + 0: 65535 4,8: - 0: 64275 + 0: 65535 4,9: - 0: 824 - 1: 4096 + 0: 8191 4,10: - 1: 1 - 0: 32 + 0: 13297 4,11: - 0: 36416 - 5,7: - 0: 14085 + 0: 65407 + 5,8: + 0: 30719 + 5,9: + 0: 32631 + 5,10: + 0: 10103 + 5,11: + 0: 15 + 6,8: + 0: 30511 + 6,9: + 0: 32631 + 6,10: + 0: 10103 + 6,11: + 0: 15 + 7,8: + 0: 30511 + 7,9: + 0: 32631 + 7,10: + 0: 10103 + 7,11: + 0: 15 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 5,4: - 0: 4380 - 1: 17408 + 0: 30719 5,5: - 0: 4113 - 1: 1092 + 0: 65399 5,6: - 0: 61941 - 5,3: - 0: 65500 + 0: 65535 + 5,7: + 0: 30719 6,4: + 0: 255 + 7,4: 0: 1 - 1: 192 - 6,3: - 0: 57297 - 5,0: - 0: 49502 + 4,2: + 0: 65535 + 4,3: + 0: 65535 5,2: - 0: 7950 - 5,-1: - 0: 28927 - 5,1: - 0: 57582 - 6,0: - 0: 47419 - 6,1: - 0: 11 - 1: 19968 + 0: 65535 + 5,3: + 0: 65535 6,2: - 0: 256 - 1: 50244 - 6,-1: - 0: 49151 - 7,0: - 0: 65375 - 7,1: - 0: 15 - 1: 32512 - 7,3: - 0: 256 - 7,-1: + 0: 62805 + 6,3: 0: 65535 - 8,0: - 0: 1799 - 8,1: - 1: 13090 + 7,3: + 0: 4369 + 8,8: + 0: 4369 + 8,9: + 0: 4369 + 8,10: + 0: 4369 + 8,11: + 0: 1 0,12: - 0: 10624 + 0: 61439 0,13: - 0: 66 + 0: 52430 0,14: - 0: 2180 + 0: 2188 1,12: - 0: 39296 - 1,14: - 0: 28928 + 0: 65535 1,13: - 0: 34952 + 0: 65535 + 1,14: + 0: 65535 1,15: 0: 12 + 2,12: + 0: 65535 2,13: - 0: 61941 - 2,15: - 0: 241 + 0: 65535 2,14: - 0: 14 + 0: 65535 + 2,15: + 0: 255 3,12: - 0: 13104 + 0: 65535 3,13: - 0: 13107 + 0: 65535 + 3,14: + 0: 14335 + 3,15: + 0: 1 4,12: - 0: 32800 + 0: 65535 4,13: - 0: 25612 + 0: 30591 4,14: - 0: 2 + 0: 19 5,12: - 0: 4352 - -9,8: - 0: 12552 + 0: 4401 + -5,9: + 0: 1783 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 56831 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 24575 + 7,0: + 0: 65535 + 7,1: + 0: 32767 + -8,8: + 0: 65535 -8,9: - 0: 17023 - -9,9: - 0: 130 + 0: 52991 + -7,8: + 0: 65535 -7,9: - 0: 7 - 1: 192 + 0: 29687 + -6,8: + 0: 52701 -6,9: - 1: 240 - 0: 8 + 0: 248 + -5,8: + 0: 65535 + 8,0: + 0: 30583 + 8,1: + 0: 13107 8,-4: - 1: 4096 + 0: 4096 8,-3: - 1: 547 - 7,-4: - 1: 49152 - 0: 19 - 7,-3: - 1: 15 - 0: 65280 + 0: 29491 8,-2: - 0: 1799 - 7,-2: - 0: 65375 + 0: 30583 8,-1: - 1: 546 - 4,-5: - 0: 57297 + 0: 29491 + 4,-4: + 0: 65535 4,-3: - 0: 14 - 1: 2560 + 0: 64255 + 4,-2: + 0: 64511 + 4,-1: + 0: 65535 5,-4: - 0: 25 - 1: 25668 - 5,-2: - 0: 10415 - 5,-5: - 0: 53520 + 0: 30591 5,-3: - 1: 3686 + 0: 65143 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 6,-4: - 0: 239 - 1: 61440 + 0: 61679 6,-3: - 1: 815 - 0: 34816 + 0: 65519 6,-2: - 0: 47935 - 7,-5: - 0: 25817 + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 49171 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 0,-8: - 0: 46071 - 0,-9: - 0: 29559 - -1,-8: - 0: 30511 + 0: 65535 0,-7: - 0: 48059 + 0: 65535 0,-6: - 0: 65343 - -1,-6: - 0: 4080 + 0: 65535 + 0,-5: + 0: 65535 1,-8: - 0: 28912 + 0: 65535 1,-7: - 0: 63351 + 0: 65535 1,-6: - 0: 65319 - 1,-9: - 0: 49072 + 0: 65535 + 1,-5: + 0: 65535 2,-8: - 0: 45567 + 0: 65535 2,-7: - 0: 49083 + 0: 65535 2,-6: - 0: 65339 - 2,-9: - 0: 65395 + 0: 65535 + 2,-5: + 0: 65535 3,-8: - 0: 61917 + 0: 65535 3,-7: 0: 65535 3,-6: - 0: 65295 + 0: 65535 3,-5: - 0: 1906 - 3,-9: - 0: 40948 - 4,-8: - 0: 21589 - 4,-7: - 0: 64981 - 4,-6: - 0: 65357 + 0: 65535 -4,-8: - 0: 61680 - -4,-9: - 0: 30711 - -5,-8: - 0: 53490 + 0: 65535 -4,-7: - 0: 36863 - -5,-7: - 0: 36351 + 0: 65535 -4,-6: - 0: 49147 - -5,-6: + 0: 65535 + -4,-5: 0: 65535 -3,-8: - 0: 58043 + 0: 65535 -3,-7: - 0: 20222 + 0: 65535 -3,-6: 0: 65535 - -3,-9: - 0: 62207 - -2,-6: - 0: 28662 + -3,-5: + 0: 65535 -2,-8: - 0: 26222 + 0: 65535 -2,-7: - 0: 28270 - -2,-9: - 0: 59135 + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 -1,-7: - 0: 30583 - -1,-9: - 0: 61695 + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 -4,-10: - 0: 28672 - 1: 68 - -5,-10: - 0: 61457 - -5,-9: + 0: 65484 + -4,-9: 0: 65535 -4,-12: - 1: 546 - 0: 3276 - -4,-13: - 1: 8192 - 0: 49376 + 0: 61166 -4,-11: - 0: 14 - 1: 17408 + 0: 52462 -3,-12: - 0: 16383 + 0: 65535 -3,-11: - 0: 13119 - 1: 34816 + 0: 65535 -3,-10: - 0: 13107 - 1: 2184 - -3,-13: - 0: 62451 + 0: 65535 + -3,-9: + 0: 65535 -2,-12: - 1: 273 + 0: 65535 -2,-11: - 0: 1 + 0: 61183 -2,-10: - 1: 1792 - -2,-13: - 1: 4096 - 0: 16 + 0: 63244 + -2,-9: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 65535 + -1,-10: + 0: 61455 + -1,-9: + 0: 65535 + 0,-12: + 0: 13107 + 0,-11: + 0: 48059 0,-10: - 1: 1860 - 1,-11: - 0: 48952 + 0: 65485 + 0,-9: + 0: 65535 1,-10: - 0: 49072 - 1,-12: - 0: 37376 - 2,-12: - 0: 29184 - 2,-11: - 0: 32551 + 0: 65535 + 1,-9: + 0: 65535 2,-10: - 0: 65395 - 3,-12: - 0: 4096 - 3,-11: - 0: 30576 - 3,-10: - 0: 30576 - 4,-12: - 0: 39936 - 4,-10: - 0: 65520 - 4,-9: - 0: 53240 + 0: 65535 + 2,-9: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -4,-13: + 0: 61166 -4,-15: - 1: 17478 + 0: 52430 -4,-14: - 1: 17476 - -3,-15: - 0: 4915 - 1: 34952 + 0: 52428 -3,-14: + 0: 65535 + -3,-13: + 0: 65535 + -3,-15: + 0: 65535 + -2,-13: + 0: 65535 + -2,-14: + 0: 61064 + -1,-15: + 0: 28672 + -1,-14: + 0: 65535 + -1,-13: + 0: 65535 + 0,-14: + 0: 13056 + 0,-13: 0: 13107 - 1: 34952 - -2,-15: - 1: 1 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 5,-8: - 1: 4368 - 0: 52416 + 0: 13119 + 3: 52416 5,-7: - 0: 65248 + 0: 65535 5,-6: - 0: 63470 - 5,-9: - 0: 65392 + 0: 65535 + 5,-5: + 0: 65535 6,-8: - 0: 44960 + 0: 56543 + 3: 8992 6,-7: - 0: 65528 + 0: 65535 6,-6: - 0: 61695 + 0: 65535 6,-5: - 0: 3839 - 6,-9: - 0: 65319 + 0: 65535 7,-8: - 0: 46008 + 0: 65535 7,-7: - 0: 49083 + 0: 65535 7,-6: - 0: 4155 - 7,-9: - 0: 65529 + 0: 65535 + 7,-5: + 0: 30719 8,-8: - 0: 62131 + 0: 65535 8,-7: 0: 65535 8,-6: - 0: 63247 + 0: 65535 8,-5: 0: 7 - 8,-9: - 0: 48112 - 9,-9: - 0: 45872 9,-8: - 0: 36072 + 0: 65535 9,-7: - 0: 64 + 0: 65535 9,-6: - 0: 72 + 0: 4991 10,-8: - 1: 244 - 0: 4096 + 0: 4340 10,-7: - 0: 256 - 10,-9: - 1: 17476 - 0: 43690 - 11,-8: - 1: 244 - 11,-9: - 1: 17476 - 0: 43690 - 12,-8: - 1: 244 - 8,-11: - 0: 195 - 7,-11: - 0: 5896 + 0: 273 8,-10: - 0: 62071 + 0: 65535 + 8,-9: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 7,-10: - 0: 53453 + 0: 65535 + 7,-9: + 0: 65535 + -9,-4: + 0: 65535 + -9,-7: + 0: 65535 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -8,-7: + 0: 65535 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -8,-8: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -7,-11: + 0: 63248 + -6,-11: + 0: 61440 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -5,-11: + 0: 12288 + -5,-10: + 0: 65331 + -5,-9: + 0: 65535 + -10,8: + 0: 2286 + -9,8: + 0: 65535 + -9,9: + 0: 142 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,7: + 0: 65535 + -9,6: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 49151 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 2: 1 + 0: 65534 + -8,0: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + 1,-12: + 0: 65152 + 1,-11: + 0: 65535 + 2,-12: + 0: 65520 + 2,-11: + 0: 65535 + 3,-12: + 0: 65296 + 3,-11: + 0: 65535 + 11,-8: + 0: 244 + 8,-11: + 0: 65523 9,-11: - 0: 8976 - 1: 192 + 0: 13296 9,-10: - 0: 28928 - 1: 32768 + 0: 63347 + 9,-9: + 0: 63351 10,-11: - 1: 17648 - 0: 40960 + 0: 58608 10,-10: - 1: 62532 - 0: 2730 + 0: 65262 + 10,-9: + 0: 61166 11,-11: - 1: 17648 - 0: 40960 + 0: 58608 11,-10: - 1: 62532 - 0: 2730 - 12,-11: - 1: 17648 - 0: 40960 - 12,-10: - 1: 62532 - 0: 2730 + 0: 65262 + 11,-9: + 0: 61166 + 4,-12: + 0: 65280 4,-11: - 0: 28360 + 0: 65535 5,-12: 0: 65280 5,-11: - 0: 14199 - 5,-10: - 0: 30576 - 6,-10: - 0: 29324 + 0: 65535 + 6,-12: + 0: 61440 6,-11: - 0: 61120 + 0: 65535 + 7,-11: + 0: 65535 -12,-4: - 0: 64968 - -13,-4: - 0: 61184 + 0: 65535 -12,-3: - 0: 61133 - -13,-3: - 0: 61007 + 0: 65535 -12,-2: - 0: 7406 - -13,-2: - 0: 61678 + 0: 65535 -12,-1: - 0: 7645 - -12,0: 0: 65535 - -12,-5: - 0: 52429 -11,-4: - 0: 65262 + 0: 65535 -11,-3: - 0: 63726 + 0: 65535 -11,-2: - 0: 8191 + 0: 65535 -11,-1: - 0: 3003 - -11,0: 0: 65535 - -11,-5: - 0: 61152 -10,-4: - 0: 48059 + 0: 65535 -10,-3: - 0: 63675 + 0: 65535 -10,-2: - 0: 39867 + 0: 65535 -10,-1: - 0: 39867 - -10,-5: - 0: 48056 - -10,0: - 0: 65531 - -9,-5: - 0: 48059 + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,-8: + 0: 65516 -12,-7: - 0: 49563 - -13,-8: - 1: 61440 - -13,-7: - 0: 13192 + 0: 65535 -12,-6: - 0: 64767 - -13,-6: - 0: 33017 - -13,-5: - 0: 57352 - -12,-8: - 0: 32836 - -12,-9: - 0: 32768 + 0: 65535 + -12,-5: + 0: 65535 -11,-8: - 0: 47580 + 0: 65535 -11,-7: - 0: 55487 + 0: 65535 -11,-6: - 0: 65501 + 0: 65535 + -11,-5: + 0: 65535 -10,-8: - 0: 60943 - -10,-6: - 0: 61678 + 0: 65535 -10,-7: - 0: 61166 + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 -9,-8: - 0: 65295 - -9,-7: - 0: 11823 - -9,-6: - 0: 15274 - -8,-8: - 0: 61183 - -8,-7: - 0: 36718 - -8,-6: - 0: 39867 - -8,-9: - 0: 15143 - -7,-8: - 0: 57592 - -7,-6: - 0: 61679 - -7,-7: - 0: 20206 - -7,-9: - 0: 41643 - -6,-8: - 0: 57588 - -6,-6: - 0: 47343 - -6,-7: - 0: 3822 - -6,-9: - 0: 26183 + 0: 65535 + -8,-12: + 0: 30512 -8,-11: - 0: 28672 - -8,-10: - 0: 30591 - -9,-10: - 0: 58881 - -9,-9: - 0: 3936 - -7,-11: - 0: 12288 - -7,-10: - 0: 64395 - -6,-10: - 0: 62395 - -10,8: - 0: 2080 + 0: 65535 -12,4: + 0: 3618 3: 204 -11,4: 3: 17 - 0: 8 + 0: 35754 -11,5: - 0: 2048 + 0: 52424 -11,6: - 0: 49152 - -11,3: - 0: 34823 - 1: 1792 + 0: 52428 -11,7: 0: 2184 - -10,7: - 0: 6528 -10,6: - 0: 3296 - -10,4: - 0: 32904 - -10,5: - 0: 136 - -10,3: - 0: 35087 - -9,5: - 0: 119 - -9,6: - 0: 4400 + 0: 65535 + -10,7: + 0: 65535 + -12,0: + 0: 65535 -12,1: 0: 65535 -12,2: 0: 65535 -12,3: - 0: 15 - 1: 3840 - -13,3: - 1: 31860 - -11,1: - 0: 30719 - -11,2: - 0: 30583 - -10,1: - 0: 61951 - -10,2: - 0: 65295 + 0: 61439 + -11,0: + 0: 65535 + -10,0: + 0: 65535 + -9,0: + 0: 65535 + -12,-9: + 0: 32768 -11,-9: - 0: 2184 + 0: 65516 -11,-10: - 1: 2048 + 0: 51200 -10,-10: - 0: 36104 + 0: 65531 -10,-9: - 0: 4095 + 0: 65535 -9,-11: - 0: 12288 - -15,0: - 1: 17484 - -15,-1: - 1: 16384 - -15,1: - 1: 17484 - -15,2: - 1: 17484 - -15,3: - 1: 12 - -14,1: - 0: 1 - 3: 49344 - -14,-1: - 1: 61440 - -14,3: - 1: 49392 + 0: 65228 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -9,-12: + 0: 32768 -14,0: + 0: 16191 4: 192 5: 49152 + -14,1: + 0: 16191 + 3: 49344 -14,2: + 0: 16191 6: 192 3: 49152 + -14,3: + 0: 49407 -13,0: + 0: 61423 4: 16 5: 4096 - 1: 17476 -13,1: + 0: 61423 3: 4112 - 1: 17476 -13,2: + 0: 61423 6: 16 3: 4096 - 1: 17476 - -13,-1: - 1: 29696 - 0: 33 - -13,4: - 1: 116 + -13,3: + 0: 31999 -15,-4: - 0: 16384 + 0: 61132 -15,-3: - 0: 1024 + 0: 61166 -15,-2: - 0: 2246 + 0: 2254 -14,-4: - 0: 60928 + 0: 65535 -14,-3: - 0: 61166 + 0: 65535 -14,-2: - 0: 61664 - -14,-5: - 0: 27848 + 0: 65535 + -14,-1: + 0: 61448 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 64751 -16,-8: - 1: 61440 - -17,-8: - 1: 61440 + 0: 61440 -16,-7: - 0: 21840 - 1: 34952 - -17,-7: - 1: 34952 - 0: 21840 + 0: 56792 -16,-6: - 0: 21765 - 1: 35064 - -17,-6: - 1: 35064 - 0: 21765 + 0: 56829 -16,-5: - 0: 85 - 1: 63624 - -17,-5: - 1: 63624 - 0: 85 + 0: 63709 -15,-8: - 1: 61440 + 0: 61440 -15,-7: - 0: 4368 - 1: 2184 + 0: 39320 -15,-6: - 0: 4481 - 1: 112 + 0: 6649 -15,-5: - 0: 17 - 1: 4096 + 0: 39057 -14,-8: - 1: 61440 - -14,-6: - 0: 8433 + 0: 61440 -14,-7: - 0: 52224 - 1: 8 + 0: 65256 + -14,-6: + 0: 61439 + -14,-5: + 0: 65535 + -13,-8: + 0: 61440 + -13,-7: + 0: 65528 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 -18,-8: - 1: 61440 + 0: 61440 -18,-7: - 1: 39321 - 0: 17472 + 0: 56793 -18,-6: - 1: 39401 - 0: 17428 + 0: 56829 -18,-5: - 1: 63897 - 0: 68 + 0: 63965 + -17,-8: + 0: 61440 + -17,-7: + 0: 56792 + -17,-6: + 0: 56829 + -17,-5: + 0: 63709 + 12,-11: + 0: 58608 + 12,-10: + 0: 65262 12,-9: - 0: 43690 - 1: 17476 + 0: 61166 13,-11: - 1: 8752 + 0: 8752 13,-10: - 1: 4642 - 0: 8192 + 0: 12834 13,-9: - 1: 8738 + 0: 8738 + 12,-8: + 0: 244 13,-8: - 1: 50 + 0: 50 + -15,0: + 0: 17484 + -15,1: + 0: 17484 + -15,2: + 0: 17484 + -15,3: + 0: 12 + -15,-1: + 0: 16384 -14,4: - 1: 192 + 0: 192 + -13,4: + 0: 116 + -2,-15: + 0: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -4087,27 +4095,11 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 - immutable: True + temperature: 235 moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -4119,18 +4111,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - 21.554012 + - 81.084145 - 0 - 0 - 0 @@ -4156,14 +4140,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -4179,14 +4155,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -4202,14 +4170,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -4225,14 +4185,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: BecomesStation id: Omega @@ -5744,13 +5696,6 @@ entities: - type: Transform pos: -11.5,-59.5 parent: 4812 -- proto: AirlockExternalGlassShuttlePilot - entities: - - uid: 11146 - components: - - type: Transform - pos: 9.5,-45.5 - parent: 4812 - proto: AirlockExternalLocked entities: - uid: 2737 @@ -6409,7 +6354,9 @@ entities: - type: Transform pos: -19.5,-19.5 parent: 4812 - - uid: 7416 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 6282 components: - type: Transform pos: -19.5,-13.5 @@ -6578,13 +6525,6 @@ entities: - type: Transform pos: -30.5,25.5 parent: 4812 -- proto: AirlockSecurityLocked - entities: - - uid: 11657 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 4812 - proto: AirlockServiceLocked entities: - uid: 6675 @@ -9286,6 +9226,36 @@ entities: - type: Transform pos: 17.5,-45.5 parent: 4812 + - uid: 11653 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 4812 + - uid: 11654 + components: + - type: Transform + pos: 11.5,-46.5 + parent: 4812 + - uid: 11655 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 4812 + - uid: 11656 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 4812 + - uid: 11657 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 4812 + - uid: 11658 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 4812 - uid: 11659 components: - type: Transform @@ -9515,11 +9485,6 @@ entities: - type: Transform pos: -13.5,-43.5 parent: 4812 - - uid: 11039 - components: - - type: Transform - pos: 9.5,-45.5 - parent: 4812 - proto: AtmosFixBlockerMarker entities: - uid: 11893 @@ -18721,11 +18686,6 @@ entities: - type: Transform pos: -22.5,8.5 parent: 4812 - - uid: 11147 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 4812 - uid: 11168 components: - type: Transform @@ -19191,11 +19151,6 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 4812 - - uid: 11654 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 4812 - uid: 11919 components: - type: Transform @@ -28118,6 +28073,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-26.5 parent: 4812 + - uid: 11148 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 4812 - proto: ChairWood entities: - uid: 1052 @@ -28534,14 +28494,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28581,14 +28533,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28628,14 +28572,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28673,14 +28609,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28718,14 +28646,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28763,14 +28683,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28808,14 +28720,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28853,14 +28757,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28898,14 +28794,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28943,14 +28831,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -28988,14 +28868,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6421 components: - type: Transform @@ -29019,14 +28891,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29064,14 +28928,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29109,14 +28965,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29154,14 +29002,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29199,14 +29039,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29244,14 +29076,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29291,14 +29115,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29336,14 +29152,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29381,14 +29189,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 4483 components: - type: Transform @@ -29412,14 +29212,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29457,14 +29249,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29502,14 +29286,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29547,14 +29323,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29592,14 +29360,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29637,14 +29397,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetJanitorFilled entities: - uid: 1486 @@ -29670,14 +29422,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3JanitorFilled entities: - uid: 1479 @@ -29703,14 +29447,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29750,6 +29486,35 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11149 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 - 0 - 0 - 0 @@ -29772,24 +29537,12 @@ entities: showEnts: False occludes: True ent: null - - uid: 11656 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 4812 - proto: ClosetL3SecurityFilled entities: - - uid: 11933 - components: - - type: Transform - pos: -31.5,19.5 - parent: 4812 -- proto: ClosetL3VirologyFilled - entities: - - uid: 8869 + - uid: 8423 components: - type: Transform - pos: -34.5,-34.5 + pos: -33.5,10.5 parent: 4812 - type: EntityStorage air: @@ -29809,6 +29562,37 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3VirologyFilled + entities: + - uid: 8869 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 - 0 - 0 - 0 @@ -29856,14 +29640,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29903,14 +29679,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29948,14 +29716,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -29993,14 +29753,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30038,14 +29790,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30083,14 +29827,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30128,14 +29864,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30175,14 +29903,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30220,14 +29940,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30265,14 +29977,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30310,14 +30014,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30357,14 +30053,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -30405,14 +30093,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -30445,14 +30125,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12375 components: - type: Transform @@ -30476,14 +30148,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetWallFireFilledRandom entities: - uid: 11745 @@ -30514,14 +30178,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetWallOrange entities: - uid: 12377 @@ -30547,14 +30203,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12378 components: - type: Transform @@ -30578,14 +30226,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12379 components: - type: Transform @@ -30609,14 +30249,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 12380 components: - type: Transform @@ -30640,14 +30272,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClothingBackpackClown entities: - uid: 9198 @@ -30717,6 +30341,11 @@ entities: - type: Transform pos: 25.449461,-19.268694 parent: 4812 + - uid: 11851 + components: + - type: Transform + pos: 10.561617,-44.322975 + parent: 4812 - uid: 12497 components: - type: Transform @@ -30833,10 +30462,10 @@ entities: - type: Transform pos: -33.510674,-34.64361 parent: 4812 - - uid: 11088 + - uid: 11099 components: - type: Transform - pos: 8.314686,-41.053486 + pos: 7.610162,-44.413692 parent: 4812 - proto: ClothingHeadHatBeaverHat entities: @@ -31124,6 +30753,13 @@ entities: - type: Transform pos: -21.425161,22.675072 parent: 4812 +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 12513 + components: + - type: Transform + pos: 8.410957,-44.59256 + parent: 4812 - proto: ClothingNeckScarfStripedBlue entities: - uid: 8417 @@ -31929,6 +31565,12 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-16.5 parent: 4812 + - uid: 11147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 4812 - proto: ComputerId entities: - uid: 2504 @@ -32016,6 +31658,13 @@ entities: - type: Transform pos: 26.5,-17.5 parent: 4812 +- proto: ComputerRoboticsControl + entities: + - uid: 1482 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 4812 - proto: ComputerSalvageExpedition entities: - uid: 7830 @@ -32261,14 +31910,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32328,14 +31969,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32383,14 +32016,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32436,14 +32061,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32487,14 +32104,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32540,14 +32149,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32593,14 +32194,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32648,14 +32241,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32702,50 +32287,6 @@ entities: - type: Transform pos: 7.5,-7.5 parent: 4812 - - uid: 2598 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8348 - - 8349 - - 8423 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 4925 components: - type: Transform @@ -32790,14 +32331,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32845,14 +32378,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateScienceSecure entities: - uid: 6250 @@ -32882,14 +32407,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -32935,14 +32452,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -33032,14 +32541,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringServer entities: - uid: 4984 @@ -35780,6 +35281,12 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 4812 + - uid: 11084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 4812 - uid: 11085 components: - type: Transform @@ -35798,6 +35305,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-38.5 parent: 4812 + - uid: 11088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 4812 - uid: 11089 components: - type: Transform @@ -35965,6 +35478,16 @@ entities: - type: Transform pos: 7.5,-38.5 parent: 4812 + - uid: 11080 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 4812 + - uid: 11082 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 4812 - uid: 11083 components: - type: Transform @@ -36093,64 +35616,53 @@ entities: - type: Transform pos: -27.5,-37.5 parent: 4812 - - uid: 7064 + - uid: 9046 components: - type: Transform - pos: -12.5,29.5 + pos: -26.5,-40.5 parent: 4812 - - uid: 7455 +- proto: DresserCaptainFilled + entities: + - uid: 7064 components: - type: Transform - pos: 7.5,29.5 + pos: -12.5,29.5 parent: 4812 - - uid: 7456 +- proto: DresserChiefEngineerFilled + entities: + - uid: 12479 components: - type: Transform - pos: -23.5,28.5 + pos: -48.5,-7.5 parent: 4812 +- proto: DresserChiefMedicalOfficerFilled + entities: - uid: 7461 components: - type: Transform pos: -24.5,-28.5 parent: 4812 - - uid: 9046 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 4812 - - uid: 12476 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7455 components: - type: Transform - pos: 16.5,35.5 + pos: 7.5,29.5 parent: 4812 - - uid: 12479 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 7456 components: - type: Transform - pos: -48.5,-7.5 + pos: -23.5,28.5 parent: 4812 -- proto: DrinkBeerBottleFull +- proto: DresserQuarterMasterFilled entities: - - uid: 8348 - components: - - type: Transform - parent: 2598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8349 - components: - - type: Transform - parent: 2598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8423 + - uid: 12476 components: - type: Transform - parent: 2598 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 16.5,35.5 + parent: 4812 - proto: DrinkBottleOfNothingFull entities: - uid: 1717 @@ -56610,12 +56122,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 4812 - - uid: 11080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-43.5 - parent: 4812 - proto: IntercomService entities: - uid: 3977 @@ -56727,6 +56233,12 @@ entities: parent: 4812 - proto: Lamp entities: + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.696417,-19.020947 + parent: 4812 - uid: 1520 components: - type: Transform @@ -56823,21 +56335,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 6291 - components: - - type: Transform - pos: 25.537617,-17.441427 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 6409 components: - type: Transform @@ -57095,14 +56592,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57140,14 +56629,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57162,13 +56643,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerBlueShieldFilled - entities: - - uid: 11655 - components: - - type: Transform - pos: -12.5,25.5 - parent: 4812 - proto: LockerBoozeFilled entities: - uid: 1648 @@ -57194,14 +56668,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57241,14 +56707,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57263,13 +56721,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerBrigmedicFilledHardsuit - entities: - - uid: 11099 - components: - - type: Transform - pos: -33.5,10.5 - parent: 4812 - proto: LockerCaptainFilled entities: - uid: 2595 @@ -57295,14 +56746,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57342,14 +56785,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57389,14 +56824,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57443,14 +56870,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57490,14 +56909,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57535,14 +56946,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57580,14 +56983,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57625,14 +57020,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57672,14 +57059,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57717,14 +57096,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57762,14 +57133,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57824,14 +57187,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57871,14 +57226,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57916,14 +57263,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -57975,14 +57314,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -58022,14 +57353,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -58098,14 +57421,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -58145,14 +57460,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -58189,137 +57496,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 6777 - components: - - type: Transform - pos: 22.5,16.5 - parent: 4812 - - uid: 6778 - components: - - type: Transform - pos: 24.5,16.5 - parent: 4812 -- proto: LockerScienceFilled - entities: - - uid: 12495 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12496 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSecurityFilled - entities: - - uid: 6440 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -58334,10 +57510,24 @@ entities: showEnts: False occludes: True ent: null - - uid: 8421 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 6777 components: - type: Transform - pos: -33.5,12.5 + pos: 22.5,16.5 + parent: 4812 + - uid: 6778 + components: + - type: Transform + pos: 24.5,16.5 + parent: 4812 +- proto: LockerScienceFilled + entities: + - uid: 12495 + components: + - type: Transform + pos: 9.5,-27.5 parent: 4812 - type: EntityStorage air: @@ -58357,6 +57547,46 @@ entities: - 0 - 0 - 0 + - uid: 12496 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSecurityFilled + entities: + - uid: 6440 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 - 0 - 0 - 0 @@ -58379,10 +57609,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 8422 + - uid: 8421 components: - type: Transform - pos: -35.5,12.5 + pos: -33.5,12.5 parent: 4812 - type: EntityStorage air: @@ -58390,8 +57620,9 @@ entities: immutable: False temperature: 293.14957 moles: - - 1.8742619 - - 7.050795 + - 1.6033952 + - 6.031821 + - 0 - 0 - 0 - 0 @@ -58401,6 +57632,34 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8422 + components: + - type: Transform + pos: -35.5,12.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.8742619 + - 7.050795 + - 0 - 0 - 0 - 0 @@ -58424,13 +57683,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerShuttlePilotFilled - entities: - - uid: 11148 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 4812 - proto: LockerWallMedicalFilled entities: - uid: 7430 @@ -58463,14 +57715,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -58510,14 +57754,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -59591,7 +58827,7 @@ entities: - uid: 6307 components: - type: Transform - pos: 26.432638,-19.383717 + pos: 26.003157,-19.425182 parent: 4812 - uid: 7142 components: @@ -60296,6 +59532,14 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 2598 + components: + - type: Transform + pos: -12.5,25.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} - uid: 2600 components: - type: Transform @@ -60518,11 +59762,6 @@ entities: parent: 4812 - proto: PowerCellRecharger entities: - - uid: 1482 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 4812 - uid: 1687 components: - type: Transform @@ -62594,11 +61833,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11100 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 4812 - uid: 11256 components: - type: Transform @@ -67417,6 +66651,11 @@ entities: - type: Transform pos: -40.5,-33.5 parent: 4812 + - uid: 11100 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 4812 - proto: SMESBasic entities: - uid: 3699 @@ -68125,13 +67364,6 @@ entities: - type: Transform pos: 6.5,7.5 parent: 4812 -- proto: SpawnPointBlueShield - entities: - - uid: 11851 - components: - - type: Transform - pos: -13.5,23.5 - parent: 4812 - proto: SpawnPointBorg entities: - uid: 11922 @@ -68156,13 +67388,6 @@ entities: - type: Transform pos: -13.5,-6.5 parent: 4812 -- proto: SpawnPointBrigmedic - entities: - - uid: 11082 - components: - - type: Transform - pos: -33.5,11.5 - parent: 4812 - proto: SpawnPointCaptain entities: - uid: 2697 @@ -68466,13 +67691,6 @@ entities: - type: Transform pos: 4.5,-0.5 parent: 4812 -- proto: SpawnPointShuttlePilot - entities: - - uid: 11084 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 4812 - proto: SpawnPointStationEngineer entities: - uid: 10844 @@ -68907,13 +68125,6 @@ entities: - type: Transform pos: -23.5,22.5 parent: 4812 -- proto: SuitStoragePilot - entities: - - uid: 11658 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 4812 - proto: SuitStorageRD entities: - uid: 735 @@ -70815,6 +70026,11 @@ entities: - type: Transform pos: 7.5,-44.5 parent: 4812 + - uid: 11146 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 4812 - uid: 11862 components: - type: Transform @@ -71094,11 +70310,6 @@ entities: - type: Transform pos: 19.5,-18.5 parent: 4812 - - uid: 6282 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 4812 - uid: 6283 components: - type: Transform @@ -71525,11 +70736,6 @@ entities: parent: 4812 - proto: ToolboxElectricalFilled entities: - - uid: 1481 - components: - - type: Transform - pos: 7.595936,-44.36749 - parent: 4812 - uid: 3846 components: - type: Transform @@ -76993,6 +76199,11 @@ entities: - type: Transform pos: 8.5,-45.5 parent: 4812 + - uid: 11039 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 4812 - uid: 11040 components: - type: Transform @@ -80364,21 +79575,6 @@ entities: - type: Transform pos: -34.5,-13.5 parent: 4812 - - uid: 11149 - components: - - type: Transform - pos: 8.5,-42.5 - parent: 4812 - - uid: 11337 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 4812 - - uid: 11653 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 4812 - proto: WardrobeBlackFilled entities: - uid: 11351 @@ -80404,14 +79600,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -80451,14 +79639,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -80501,14 +79681,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobePrisonFilled entities: - uid: 8354 @@ -80534,14 +79706,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -80579,14 +79743,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -80624,14 +79780,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -80669,14 +79817,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -80716,14 +79856,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WarningCO2 entities: - uid: 9280 diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 5a8df731781979..376719da61ce5c 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -54,7 +54,6 @@ tilemap: 112: FloorWhite 115: FloorWhiteHerringbone 116: FloorWhiteMini - 117: FloorWhiteMono 122: FloorWood 124: FloorWoodTile 125: Lattice @@ -68,14 +67,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Parallax parallax: OriginStation - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - uid: 2 components: - type: MetaData @@ -86,175 +86,175 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: ZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAawAAAAACaAAAAAABawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAbgAAAAAAawAAAAACaAAAAAAAawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAawAAAAACaAAAAAADawAAAAABbgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbgAAAAACZAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABfgAAAAAAawAAAAAAaAAAAAACawAAAAABbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAawAAAAADaAAAAAADawAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbgAAAAAAawAAAAAAaAAAAAACawAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADawAAAAAAaAAAAAADawAAAAADHwAAAAABfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAawAAAAACaAAAAAADawAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAawAAAAABaAAAAAABawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAADCwAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAawAAAAACaAAAAAABawAAAAACHwAAAAADegAAAAABegAAAAADTgAAAAACaAAAAAAAaAAAAAABCwAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAawAAAAAAaAAAAAAAawAAAAAAHwAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABaAAAAAADCwAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAawAAAAACaAAAAAAAawAAAAABfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAABfgAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAABaAAAAAABawAAAAADfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAbgAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABZAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAB + tiles: ZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAawAAAAACaAAAAAABawAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAbgAAAAAAawAAAAADaAAAAAADawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABfgAAAAAAawAAAAADaAAAAAACawAAAAABbgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbgAAAAACZAAAAAAAbAAAAAAAbAAAAAAAbgAAAAAAfgAAAAAAawAAAAACaAAAAAABawAAAAADbAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAawAAAAAAaAAAAAACawAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbgAAAAACawAAAAAAaAAAAAADawAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADawAAAAABaAAAAAABawAAAAACHwAAAAABfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAawAAAAABaAAAAAADawAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAawAAAAABaAAAAAAAawAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAACCwAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAawAAAAAAaAAAAAAAawAAAAADHwAAAAAAegAAAAAAegAAAAADTgAAAAABaAAAAAACaAAAAAACCwAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAawAAAAADaAAAAAACawAAAAAAHwAAAAACegAAAAABegAAAAABXQAAAAADXQAAAAADaAAAAAADCwAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAawAAAAABaAAAAAABawAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAACaAAAAAAAawAAAAACfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbgAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAABTgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADZAAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAACaAAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAD version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAAAegAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADHwAAAAAAegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAACRwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAABfgAAAAAAHwAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAABegAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADegAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAQgAAAAAAbAAAAAAAQgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAATgAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAATgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAAAegAAAAACfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAADHwAAAAADegAAAAABegAAAAACegAAAAACegAAAAABegAAAAABegAAAAAARwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACegAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAADegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAADegAAAAADegAAAAACegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAACegAAAAADegAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAABegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAQgAAAAAAbAAAAAAAQgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABZAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACTgAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAATgAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAC version: 6 -1,0: ind: -1,0 - tiles: fgAAAAAAXQAAAAABaAAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABTgAAAAABZAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACZAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAPgAAAAAAXQAAAAADXQAAAAADaAAAAAACXQAAAAADMQAAAAAAXQAAAAAAXQAAAAABXQAAAAADZAAAAAAAXQAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADfgAAAAAAPgAAAAAATgAAAAACaAAAAAADaAAAAAACXQAAAAADMQAAAAAAPAAAAAAAXQAAAAACPAAAAAAAXQAAAAACPAAAAAAAXQAAAAACPAAAAAAAXQAAAAAAXQAAAAABPAAAAAAAPgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAPAAAAAAAXQAAAAAAPAAAAAAAXQAAAAABPAAAAAAAXQAAAAAAPAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAPAAAAAAAXQAAAAABPAAAAAAAXQAAAAACPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAPgAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbAAAAAAAXQAAAAAAPAAAAAAAZAAAAAAAPAAAAAAAXQAAAAACPAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbgAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAPAAAAAAAXQAAAAACPAAAAAAAXQAAAAABPAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAXQAAAAACPAAAAAAAXQAAAAADPAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAALgAAAAAAbQAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACPAAAAAAAXQAAAAABXQAAAAADPAAAAAAAXQAAAAACHwAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAABTgAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACaAAAAAABXQAAAAACfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACZAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAPgAAAAAAXQAAAAAAXQAAAAADaAAAAAABXQAAAAAAMQAAAAAAXQAAAAADXQAAAAADXQAAAAACZAAAAAAAXQAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADfgAAAAAAPgAAAAAATgAAAAACaAAAAAACaAAAAAACXQAAAAADMQAAAAAAPAAAAAAAXQAAAAADPAAAAAAAXQAAAAADPAAAAAAAXQAAAAAAPAAAAAAAXQAAAAACXQAAAAABPAAAAAAAPgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABPAAAAAAAXQAAAAADPAAAAAAAXQAAAAABPAAAAAAAXQAAAAAAPAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACPAAAAAAAXQAAAAADPAAAAAAAXQAAAAACPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbAAAAAAAXQAAAAABPAAAAAAAZAAAAAAAPAAAAAAAXQAAAAABPAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAACPAAAAAAAXQAAAAACPAAAAAAAXQAAAAAAPAAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAACfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAXQAAAAADPAAAAAAAXQAAAAABPAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAbQAAAAAAfgAAAAAAbgAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACPAAAAAAAXQAAAAABXQAAAAABPAAAAAAAXQAAAAAAHwAAAAABLgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAA version: 6 0,0: ind: 0,0 - tiles: HwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABMQAAAAAAMQAAAAAAMQAAAAAAUgAAAAAAUgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABMQAAAAAAMQAAAAAAMQAAAAAAUgAAAAAAUgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADTgAAAAADZAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADTgAAAAAAXQAAAAAAZAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACZAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAAAHwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAADegAAAAABegAAAAADHwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAACegAAAAADfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABegAAAAADegAAAAADegAAAAABfAAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAACfAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAfAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACfAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAACfAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAAAegAAAAADfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAADMQAAAAAAMQAAAAAAMQAAAAAAUgAAAAAAUgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADMQAAAAAAMQAAAAAAMQAAAAAAUgAAAAAAUgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACTgAAAAAAZAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACTgAAAAACXQAAAAAAZAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABZAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAADegAAAAACHwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAACegAAAAADegAAAAACfAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAABegAAAAABegAAAAABfAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAABfAAAAAABLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAACegAAAAADfAAAAAABLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACfAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAABfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: XQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADaAAAAAADXQAAAAACfgAAAAAAbAAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABHwAAAAACXQAAAAADaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAHwAAAAACXQAAAAABaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABHwAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAACfgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAACaAAAAAACXQAAAAABfgAAAAAAbQAAAAAAcAAAAAAAcAAAAAADcAAAAAABWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADCwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAADXQAAAAABZAAAAAAAXQAAAAAAcAAAAAADcAAAAAABcAAAAAAAWQAAAAAAfgAAAAAAXQAAAAACaAAAAAADaAAAAAACTgAAAAAAaAAAAAACaAAAAAABaAAAAAAATgAAAAABaAAAAAAAaAAAAAABaAAAAAADfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAADfgAAAAAAXQAAAAAAaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADfgAAAAAAXQAAAAACaAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABHwAAAAABXQAAAAADaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAADfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABHwAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABaAAAAAADXQAAAAABbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAACXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABHwAAAAACXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAABaAAAAAADXQAAAAADfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAADaAAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAADcAAAAAAAcAAAAAAAWQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABCwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABaAAAAAACXQAAAAABZAAAAAAAXQAAAAACcAAAAAAAcAAAAAABcAAAAAABWQAAAAADfgAAAAAAXQAAAAABaAAAAAABaAAAAAACTgAAAAACaAAAAAAAaAAAAAABaAAAAAABTgAAAAABaAAAAAADaAAAAAACaAAAAAABfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABTgAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: aAAAAAADaAAAAAACaAAAAAACaAAAAAABHwAAAAAAaAAAAAACaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACHwAAAAADXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABHwAAAAAAHwAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAABHwAAAAACHwAAAAACXQAAAAACXQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADTgAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACHwAAAAACHwAAAAADHwAAAAADXQAAAAABXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAaAAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADaAAAAAAATgAAAAABaAAAAAADaAAAAAACaAAAAAABTgAAAAACaAAAAAACaAAAAAAAaAAAAAABJAAAAAACIwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACaAAAAAADXQAAAAADXQAAAAADXQAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAABXQAAAAAAXQAAAAACXQAAAAABJAAAAAAAIwAAAAABIwAAAAADIwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAaAAAAAABXQAAAAADbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAADbAAAAAAAfgAAAAAAIgAAAAACIgAAAAACIgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADaAAAAAABZAAAAAAAfgAAAAAAbAAAAAAAIgAAAAAAIgAAAAADIgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAIgAAAAABIgAAAAADIgAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAIgAAAAADIgAAAAABIgAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAACXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAbAAAAAAA + tiles: aAAAAAABaAAAAAAAaAAAAAAAaAAAAAABHwAAAAAAaAAAAAAAaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADHwAAAAABXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADHwAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAACHwAAAAACXQAAAAABXQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADTgAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAACHwAAAAABHwAAAAADHwAAAAADXQAAAAACXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACaAAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACaAAAAAADTgAAAAAAaAAAAAACaAAAAAAAaAAAAAAATgAAAAADaAAAAAAAaAAAAAABaAAAAAAAJAAAAAAAIwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAADXQAAAAAAXQAAAAAAXQAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAACXQAAAAADXQAAAAADXQAAAAABJAAAAAAAIwAAAAAAIwAAAAACIwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAaAAAAAACXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAABbAAAAAAAfgAAAAAAIgAAAAADIgAAAAACIgAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADaAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAIgAAAAABIgAAAAADIgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADaAAAAAABZAAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAIgAAAAACIgAAAAABIgAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAADaAAAAAABXQAAAAAAfgAAAAAAbAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAIgAAAAACIgAAAAADIgAAAAAAIgAAAAADIgAAAAAAfgAAAAAAZAAAAAAAaAAAAAAAXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAIgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAIgAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAADZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAIgAAAAACIgAAAAABIgAAAAACIgAAAAABIgAAAAAAIgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABHwAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADaAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACHwAAAAACXQAAAAACXQAAAAACXQAAAAABHwAAAAACaAAAAAAAaAAAAAADaAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAADHwAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAZAAAAAAAXQAAAAACXQAAAAABHwAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAADZwAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAZwAAAAAAEgAAAAACEgAAAAADEgAAAAADEgAAAAABEgAAAAAAEgAAAAACZwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAZwAAAAADEgAAAAADEgAAAAADEgAAAAADEgAAAAACEgAAAAADEgAAAAADZwAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAAAIgAAAAAAfgAAAAAAZAAAAAAAaAAAAAACXQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAIgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAABZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAIgAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAACZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAIgAAAAACIgAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAACfgAAAAAAXQAAAAADaAAAAAACZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACaAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACHwAAAAADaAAAAAAAaAAAAAACaAAAAAACaAAAAAACaAAAAAABaAAAAAACaAAAAAACaAAAAAACaAAAAAADaAAAAAAAaAAAAAACHwAAAAAAXQAAAAABXQAAAAAAXQAAAAACHwAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAZAAAAAAAXQAAAAABXQAAAAACHwAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAZwAAAAADZwAAAAACZwAAAAADZwAAAAACZwAAAAABZwAAAAAAZwAAAAABZwAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAACfgAAAAAAZwAAAAADEgAAAAABEgAAAAABEgAAAAABEgAAAAABEgAAAAADEgAAAAACZwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAABfgAAAAAAZwAAAAACEgAAAAACEgAAAAAAEgAAAAABEgAAAAACEgAAAAAAEgAAAAABZwAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAA version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAAAXQAAAAADfgAAAAAAZwAAAAADEgAAAAAAEgAAAAACEgAAAAABEgAAAAABEgAAAAAAEgAAAAACZwAAAAADXQAAAAADXQAAAAADZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAZwAAAAACEgAAAAADEgAAAAAAEgAAAAABEgAAAAABEgAAAAACEgAAAAAAZwAAAAADXQAAAAACXQAAAAAAXQAAAAABHwAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAZwAAAAADEgAAAAAAEgAAAAADEgAAAAADEgAAAAABEgAAAAABEgAAAAACZwAAAAABXQAAAAADZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAZwAAAAADEgAAAAAAEgAAAAABEgAAAAACEgAAAAACEgAAAAABEgAAAAAAZwAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAADZwAAAAACZwAAAAACZwAAAAADZwAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABHwAAAAACZAAAAAAAXQAAAAADXQAAAAADHwAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADZAAAAAAAHwAAAAABZAAAAAAAZAAAAAAAXQAAAAADHwAAAAAAXQAAAAADXQAAAAACXQAAAAABCwAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABZAAAAAAAHwAAAAAAegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAABfgAAAAAAHwAAAAADIwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAACegAAAAACegAAAAABegAAAAABfgAAAAAAHwAAAAADIwAAAAABHwAAAAADfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAZAAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAHwAAAAACIwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADegAAAAABegAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACegAAAAADegAAAAACegAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAACfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAAC + tiles: XQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAZwAAAAACEgAAAAABEgAAAAAAEgAAAAADEgAAAAADEgAAAAAAEgAAAAADZwAAAAADXQAAAAACXQAAAAABZAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAZwAAAAADEgAAAAABEgAAAAACEgAAAAABEgAAAAADEgAAAAAAEgAAAAADZwAAAAACXQAAAAACXQAAAAACXQAAAAAAHwAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAZwAAAAAAEgAAAAACEgAAAAADEgAAAAAAEgAAAAACEgAAAAABEgAAAAABZwAAAAABXQAAAAABZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAZwAAAAAAEgAAAAAAEgAAAAABEgAAAAADEgAAAAADEgAAAAADEgAAAAABZwAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAABZwAAAAACZwAAAAACZwAAAAADZwAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABHwAAAAAAZAAAAAAAXQAAAAACXQAAAAACHwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABZAAAAAAAHwAAAAACZAAAAAAAZAAAAAAAXQAAAAADHwAAAAABXQAAAAACXQAAAAAAXQAAAAABCwAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABZAAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADHwAAAAADegAAAAABegAAAAAAegAAAAADfgAAAAAAHwAAAAACIwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAegAAAAADegAAAAADegAAAAABHwAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAHwAAAAABIwAAAAADHwAAAAABfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAegAAAAACegAAAAABegAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAHwAAAAAAIwAAAAADHwAAAAACfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAABIwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAAC version: 6 -1,1: ind: -1,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAXQAAAAACfgAAAAAAIAAAAAADIAAAAAACfgAAAAAAGwAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAASwAAAAAAMQAAAAAAMQAAAAAASwAAAAAAMQAAAAAAfgAAAAAAIAAAAAACIAAAAAABGwAAAAAAfgAAAAAAXQAAAAACCwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAASwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAIAAAAAAAIAAAAAABZAAAAAAAbgAAAAADCwAAAAAAXQAAAAAAfgAAAAAAbgAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAIAAAAAADIAAAAAADZAAAAAAAGwAAAAAAXQAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAADIAAAAAABXQAAAAACfgAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAbAAAAAAAZAAAAAAAbgAAAAACZAAAAAAAZAAAAAAAfgAAAAAAIAAAAAACIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADZAAAAAAAZAAAAAAAbgAAAAADZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAIwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADZAAAAAAAZAAAAAAAIwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADHwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADXQAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAXQAAAAABfgAAAAAAIAAAAAADIAAAAAADfgAAAAAAGwAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAASwAAAAAAMQAAAAAAMQAAAAAASwAAAAAAMQAAAAAAfgAAAAAAIAAAAAABIAAAAAADGwAAAAAAfgAAAAAAXQAAAAACCwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAASwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAIAAAAAABIAAAAAAAZAAAAAAAbgAAAAACCwAAAAAAXQAAAAADfgAAAAAAbgAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAIAAAAAABIAAAAAAAZAAAAAAAGwAAAAAAXQAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAABIAAAAAACXQAAAAABfgAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADbAAAAAAAZAAAAAAAbgAAAAADZAAAAAAAZAAAAAAAfgAAAAAAIAAAAAADIAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADZAAAAAAAZAAAAAAAbgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAIwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAZAAAAAAAZAAAAAAAIwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAACfgAAAAAAegAAAAACegAAAAABegAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAAB version: 6 0,1: ind: 0,1 - tiles: IAAAAAAAIAAAAAADIAAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADJgAAAAADJgAAAAACJgAAAAACJgAAAAACHwAAAAABJgAAAAABIAAAAAABIAAAAAADIAAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAJgAAAAABJgAAAAAAJgAAAAABJgAAAAACHwAAAAACJgAAAAACIAAAAAABIAAAAAACIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAABIAAAAAADIAAAAAACfgAAAAAAfAAAAAACfAAAAAADfAAAAAAAfAAAAAABfAAAAAACHwAAAAABZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAIgAAAAABIgAAAAACIAAAAAABIAAAAAACIAAAAAADfgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAABfAAAAAADfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADfgAAAAAAIgAAAAABIgAAAAABIAAAAAADIAAAAAAAIAAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAABfgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfAAAAAAAfAAAAAACfAAAAAACfAAAAAACfgAAAAAAHwAAAAAAXQAAAAABXQAAAAAAHwAAAAABIgAAAAABIgAAAAACbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADXQAAAAAAfgAAAAAAIgAAAAADIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAA + tiles: IAAAAAACIAAAAAABIAAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACJgAAAAACJgAAAAADJgAAAAAAJgAAAAABHwAAAAAAJgAAAAAAIAAAAAADIAAAAAADIAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAABJgAAAAAAJgAAAAADJgAAAAACJgAAAAADHwAAAAACJgAAAAABIAAAAAADIAAAAAADIAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAABIAAAAAAAIAAAAAADfgAAAAAAfAAAAAABfAAAAAABfAAAAAAAfAAAAAABfAAAAAACHwAAAAADZAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAIgAAAAADIgAAAAADIAAAAAABIAAAAAABIAAAAAAAfgAAAAAAfAAAAAABfAAAAAADfAAAAAACfAAAAAABfAAAAAACfgAAAAAAHwAAAAAAXQAAAAADXQAAAAADfgAAAAAAIgAAAAAAIgAAAAADIAAAAAACIAAAAAACIAAAAAABfgAAAAAAfAAAAAADfAAAAAACfAAAAAACfAAAAAABfAAAAAADfgAAAAAAHwAAAAACXQAAAAADXQAAAAADfgAAAAAAIgAAAAAAIgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfAAAAAABfAAAAAACfAAAAAAAfAAAAAADfgAAAAAAHwAAAAACXQAAAAADXQAAAAADHwAAAAADIgAAAAACIgAAAAADbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABXQAAAAABfgAAAAAAIgAAAAADIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAA version: 6 1,1: ind: 1,1 - tiles: JgAAAAABJgAAAAABJgAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAADJgAAAAACJgAAAAAAJgAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAJwAAAAACJwAAAAABJwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACJwAAAAAAJwAAAAAAJwAAAAADHwAAAAADIgAAAAABIgAAAAADIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAJwAAAAABJwAAAAABJwAAAAACHwAAAAADIgAAAAABIgAAAAAAIgAAAAADfgAAAAAAHwAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJwAAAAACJwAAAAACJwAAAAAAfgAAAAAAIgAAAAAAIgAAAAADIgAAAAADfgAAAAAAHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADJwAAAAADJwAAAAABJwAAAAADbQAAAAAAIgAAAAACIgAAAAACIgAAAAADfgAAAAAAHwAAAAADHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJwAAAAADJwAAAAADJwAAAAACfgAAAAAAIgAAAAABIgAAAAACIgAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAACZAAAAAAAZAAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACbQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAC + tiles: JgAAAAADJgAAAAACJgAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACJwAAAAACJwAAAAABJwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAABJwAAAAABJwAAAAABJwAAAAADHwAAAAABIgAAAAACIgAAAAADIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAJwAAAAAAJwAAAAACJwAAAAAAHwAAAAADIgAAAAABIgAAAAABIgAAAAAAfgAAAAAAHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJwAAAAADJwAAAAADJwAAAAAAfgAAAAAAIgAAAAABIgAAAAADIgAAAAADfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAJwAAAAADJwAAAAABJwAAAAADbQAAAAAAIgAAAAAAIgAAAAADIgAAAAADfgAAAAAAHwAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJwAAAAAAJwAAAAACJwAAAAACfgAAAAAAIgAAAAACIgAAAAAAIgAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADZAAAAAAAZAAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: XQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACfgAAAAAAXQAAAAAAaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAABZAAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAACZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAAaAAAAAACaAAAAAACaAAAAAADaAAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADaAAAAAABXQAAAAACHwAAAAABHwAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAACXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAACaAAAAAABXQAAAAAAHwAAAAACHwAAAAABXQAAAAACHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAHwAAAAADZAAAAAAAaAAAAAAAXQAAAAACfgAAAAAAHwAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAZAAAAAAAaAAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAABXQAAAAABfgAAAAAAbgAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADaAAAAAACXQAAAAAAfgAAAAAAZAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABHwAAAAADXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAHwAAAAACZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACaAAAAAADZAAAAAAAHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABaAAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAAaAAAAAACaAAAAAADaAAAAAADaAAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAACHwAAAAACHwAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAABHwAAAAABHwAAAAADXQAAAAADHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABHwAAAAADZAAAAAAAaAAAAAABXQAAAAADfgAAAAAAHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAZAAAAAAAaAAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAAAXQAAAAABfgAAAAAAbgAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACaAAAAAACXQAAAAADfgAAAAAAZAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAAAZAAAAAAAHwAAAAABZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAACXQAAAAABXQAAAAADXQAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAADZwAAAAACZwAAAAADZwAAAAADXQAAAAAAXQAAAAACHwAAAAACaAAAAAADaAAAAAABHwAAAAABaAAAAAADaAAAAAAAaAAAAAACaAAAAAADaAAAAAAAaAAAAAAAaAAAAAADZwAAAAADTgAAAAABZwAAAAAAaAAAAAAAaAAAAAACHwAAAAACXQAAAAACXQAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAZwAAAAABZwAAAAACZwAAAAAAXQAAAAADXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAADfgAAAAAAQwAAAAAAFgAAAAAAIwAAAAABfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAQwAAAAAAFgAAAAAAIwAAAAABfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAADaAAAAAACawAAAAABfgAAAAAAQwAAAAAAFgAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAawAAAAABaAAAAAACawAAAAAAHwAAAAADQwAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAAAaAAAAAACawAAAAACfgAAAAAAQwAAAAAAFgAAAAAAZAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAADaAAAAAACawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAAAaAAAAAADawAAAAADHwAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAaAAAAAABawAAAAAAfgAAAAAAfgAAAAAAbgAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACaAAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADHwAAAAACXQAAAAABXQAAAAADXQAAAAADZAAAAAAAZAAAAAAAXQAAAAADXQAAAAABZwAAAAADZwAAAAADZwAAAAACXQAAAAABXQAAAAADHwAAAAABaAAAAAABaAAAAAAAHwAAAAADaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAZwAAAAABTgAAAAAAZwAAAAABaAAAAAABaAAAAAADHwAAAAACXQAAAAABXQAAAAAAHwAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACZwAAAAACZwAAAAACZwAAAAABXQAAAAADXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAADfgAAAAAAQwAAAAAAFgAAAAAAIwAAAAACfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAQwAAAAAAFgAAAAAAIwAAAAACfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAAAaAAAAAADawAAAAAAfgAAAAAAQwAAAAAAFgAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAawAAAAAAaAAAAAADawAAAAABHwAAAAADQwAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAACaAAAAAAAawAAAAAAfgAAAAAAQwAAAAAAFgAAAAAAZAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAAAaAAAAAACawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAawAAAAACaAAAAAACawAAAAAAHwAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAABaAAAAAADawAAAAABfgAAAAAAfgAAAAAAbgAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAAAXQAAAAABaAAAAAACAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAADXQAAAAAAXQAAAAABZAAAAAAAXQAAAAABaAAAAAACaAAAAAAAaAAAAAADaAAAAAAATgAAAAAAaAAAAAAAaAAAAAACTgAAAAACaAAAAAADaAAAAAADaAAAAAACHwAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAADaAAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABHwAAAAADXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACaAAAAAADFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABaAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABXQAAAAACaAAAAAADFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAaAAAAAACFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAD + tiles: AAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAADXQAAAAAAaAAAAAADAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACXQAAAAACXQAAAAADZAAAAAAAXQAAAAACaAAAAAAAaAAAAAACaAAAAAABaAAAAAACTgAAAAADaAAAAAAAaAAAAAABTgAAAAAAaAAAAAADaAAAAAACaAAAAAACHwAAAAACaAAAAAACaAAAAAABaAAAAAADaAAAAAADaAAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACHwAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAaAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAABaAAAAAADFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAXQAAAAACaAAAAAACFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAXQAAAAACaAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: XQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAABfAAAAAAAfAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfAAAAAABfAAAAAADfAAAAAACfAAAAAADXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAAAfAAAAAADfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfAAAAAADfAAAAAADfAAAAAACfAAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfAAAAAACfAAAAAACfAAAAAAAfAAAAAABfAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfAAAAAADfAAAAAACfAAAAAACfAAAAAAAXQAAAAACfgAAAAAAZAAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAADfAAAAAAAfAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfAAAAAACfAAAAAAAfAAAAAADfAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADUQAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABHwAAAAAAXQAAAAACHwAAAAADUQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADaAAAAAACaAAAAAABaAAAAAAAaAAAAAADaAAAAAACaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAXQAAAAAAXQAAAAACaAAAAAABaAAAAAADaAAAAAACaAAAAAABaAAAAAABaAAAAAABaAAAAAABaAAAAAADaAAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAAAaAAAAAAAaAAAAAABaAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADaAAAAAACaAAAAAACaAAAAAAAaAAAAAAAaAAAAAABaAAAAAADaAAAAAACaAAAAAAAaAAAAAADXQAAAAADXQAAAAAC + tiles: XQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAABfAAAAAACfAAAAAABfAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAAAfAAAAAABXQAAAAADfgAAAAAAZAAAAAAAfgAAAAAAfAAAAAACfAAAAAABfAAAAAAAfAAAAAACfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfAAAAAACfAAAAAABfAAAAAACfAAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAABfAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfAAAAAACfAAAAAABXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfAAAAAAAfAAAAAABfAAAAAABfAAAAAABfAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfAAAAAABfAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABUQAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADHwAAAAABXQAAAAAAHwAAAAADUQAAAAAAHwAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAaAAAAAADaAAAAAADaAAAAAAAaAAAAAACaAAAAAABaAAAAAABaAAAAAAAaAAAAAABaAAAAAADXQAAAAABXQAAAAAAaAAAAAAAaAAAAAADaAAAAAACaAAAAAADaAAAAAADaAAAAAAAaAAAAAABaAAAAAADaAAAAAABaAAAAAACaAAAAAACaAAAAAAAaAAAAAABaAAAAAABaAAAAAABaAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAaAAAAAAAaAAAAAACaAAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAAAaAAAAAAAaAAAAAABXQAAAAABXQAAAAAB version: 6 2,0: ind: 2,0 - tiles: XQAAAAABaAAAAAADXQAAAAABHwAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADaAAAAAADaAAAAAABHwAAAAACaAAAAAACaAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAABaAAAAAAAaAAAAAAAaAAAAAACXQAAAAAAaAAAAAADXQAAAAABHwAAAAABZAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABZAAAAAAAaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABJwAAAAADJwAAAAADJwAAAAACfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAACXQAAAAACaAAAAAADZAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAADJwAAAAACJwAAAAACJwAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABXQAAAAADaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABJwAAAAADJwAAAAABHwAAAAAAcAAAAAACWQAAAAAAcAAAAAAAcAAAAAABaAAAAAABaAAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADJwAAAAABJwAAAAABJwAAAAADfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACXQAAAAACJwAAAAADJwAAAAAAJwAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACJwAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAJwAAAAABJwAAAAACJwAAAAABfgAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACJwAAAAADJwAAAAADJwAAAAADfgAAAAAAZAAAAAAAZAAAAAAAbgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAJwAAAAABJwAAAAAAJwAAAAADfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAADJwAAAAACJwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAJgAAAAACJgAAAAABJgAAAAACJgAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAACJgAAAAADJgAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAADCwAAAAAAJgAAAAADJgAAAAACJgAAAAADJgAAAAAAJgAAAAAAJgAAAAACJgAAAAADJgAAAAAAJgAAAAADJgAAAAADJgAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABCwAAAAAA + tiles: XQAAAAABaAAAAAACXQAAAAAAHwAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACaAAAAAABaAAAAAADHwAAAAAAaAAAAAACaAAAAAACaAAAAAACaAAAAAAAaAAAAAACaAAAAAACaAAAAAADaAAAAAADaAAAAAACaAAAAAAAaAAAAAADaAAAAAADXQAAAAABaAAAAAADXQAAAAABHwAAAAAAZAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAZAAAAAAAaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABJwAAAAADJwAAAAACJwAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABXQAAAAAAaAAAAAABZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACXQAAAAAAJwAAAAACJwAAAAADJwAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAADXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAJwAAAAACJwAAAAAAHwAAAAABcAAAAAABWQAAAAACcAAAAAABcAAAAAADaAAAAAADaAAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAJwAAAAACJwAAAAAAJwAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAABXQAAAAACJwAAAAADJwAAAAACJwAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABJwAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAJwAAAAABJwAAAAABJwAAAAAAfgAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADJwAAAAACJwAAAAABJwAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbgAAAAADZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAJwAAAAABJwAAAAABJwAAAAACfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABJwAAAAAAJwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAJgAAAAACJgAAAAACJgAAAAADJgAAAAADJgAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAACJgAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADCwAAAAAAJgAAAAACJgAAAAACJgAAAAAAJgAAAAABJgAAAAADJgAAAAABJgAAAAADJgAAAAACJgAAAAAAJgAAAAABJgAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABCwAAAAAA version: 6 2,1: ind: 2,1 - tiles: JgAAAAAAJgAAAAADJgAAAAAAJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABegAAAAABfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAADegAAAAADHwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADHwAAAAABZAAAAAAAZAAAAAAACwAAAAAACwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAZAAAAAAAZAAAAAAACwAAAAAAbgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAA + tiles: JgAAAAAAJgAAAAABJgAAAAABJgAAAAACJgAAAAABJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAACJgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABHwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAAAegAAAAADegAAAAABHwAAAAAAZAAAAAAAZAAAAAAACwAAAAAACwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAAZAAAAAAAZAAAAAAACwAAAAAAbgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: HwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZAAAAAAAXQAAAAADfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABZAAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAAAaAAAAAACXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAHwAAAAABegAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAADHwAAAAABegAAAAADegAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAACaAAAAAAAZAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAaAAAAAABZAAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAA + tiles: HwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACZAAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAABaAAAAAAAXQAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAADHwAAAAADegAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAACHwAAAAADegAAAAABegAAAAACegAAAAABegAAAAACfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABaAAAAAAAZAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAaAAAAAACZAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAA version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAACfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAHwAAAAACZAAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADZAAAAAAAHwAAAAACZAAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACbgAAAAADZAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABHwAAAAACXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADHwAAAAAAXQAAAAAAaAAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAABaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAADfgAAAAAAaAAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAHwAAAAACXQAAAAACXQAAAAABCwAAAAAAXQAAAAADCwAAAAAAXQAAAAAACwAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABaAAAAAADXQAAAAACHwAAAAABHwAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAACHwAAAAACfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAABaAAAAAACXQAAAAADHwAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAAAHwAAAAABXQAAAAACaAAAAAADXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAADaAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADZAAAAAAAHwAAAAADZAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACZAAAAAAAHwAAAAABZAAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACaAAAAAABXQAAAAABbgAAAAACZAAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACHwAAAAACXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABHwAAAAADXQAAAAAAaAAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAABaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADaAAAAAACXQAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAABfgAAAAAAaAAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABaAAAAAADXQAAAAADfgAAAAAAHwAAAAABXQAAAAADXQAAAAABCwAAAAAAXQAAAAADCwAAAAAAXQAAAAADCwAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAACaAAAAAABXQAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAHwAAAAABXQAAAAACXQAAAAADHwAAAAABfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAHwAAAAABXQAAAAABaAAAAAADXQAAAAAAHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAADaAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAC version: 6 3,1: ind: 3,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXQAAAAACZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAACwAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAbgAAAAAAZAAAAAAACwAAAAAAbgAAAAAAZAAAAAAACwAAAAAAbgAAAAABZAAAAAAAZAAAAAAAbgAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAcAAAAAADfgAAAAAAcAAAAAABfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZAAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAZAAAAAAAZAAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAD + tiles: ZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXQAAAAADZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAACwAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAbgAAAAADZAAAAAAACwAAAAAAbgAAAAAAZAAAAAAACwAAAAAAbgAAAAADZAAAAAAAZAAAAAAAbgAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAABfgAAAAAAcAAAAAABfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAWQAAAAACfgAAAAAAWQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAB version: 6 3,0: ind: 3,0 - tiles: XQAAAAACXQAAAAAAXQAAAAADXQAAAAACaAAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAaAAAAAABaAAAAAAAaAAAAAADaAAAAAACaAAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAABbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACCwAAAAAAXQAAAAADXQAAAAADZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAAAZAAAAAAAXQAAAAACXQAAAAADZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABCwAAAAAACwAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAcAAAAAACWQAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAACwAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAcAAAAAACWQAAAAAAZAAAAAAAZAAAAAAAbgAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZAAAAAAAcAAAAAABcAAAAAAAcAAAAAACWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAATgAAAAACZAAAAAAAXQAAAAAAXQAAAAACCwAAAAAAXQAAAAACXQAAAAAACwAAAAAATgAAAAADCwAAAAAAbgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAA + tiles: XQAAAAAAXQAAAAABXQAAAAACXQAAAAACaAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAaAAAAAABaAAAAAADaAAAAAADaAAAAAAAaAAAAAADXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACCwAAAAAAXQAAAAACXQAAAAABZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACZAAAAAAAXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACCwAAAAAACwAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAcAAAAAACWQAAAAAAXQAAAAADXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAACwAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAcAAAAAABWQAAAAABZAAAAAAAZAAAAAAAbgAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAbgAAAAACbgAAAAACbgAAAAABZAAAAAAAcAAAAAACcAAAAAADcAAAAAABWQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAATgAAAAACZAAAAAAAXQAAAAABXQAAAAABCwAAAAAAXQAAAAACXQAAAAACCwAAAAAATgAAAAADCwAAAAAAbgAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABZAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAZAAAAAAAXQAAAAACbAAAAAAAfgAAAAAAMQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAADHwAAAAACZAAAAAAAXQAAAAAAXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAADMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACfgAAAAAAZAAAAAAAMQAAAAAAXQAAAAACXQAAAAADXQAAAAAAZAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAABbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAACegAAAAABbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADaAAAAAAAXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAAegAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAaAAAAAAAXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAACegAAAAAC + tiles: fgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADbAAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABHwAAAAAAZAAAAAAAXQAAAAADXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAABXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAACMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAABXQAAAAACfgAAAAAAZAAAAAAAMQAAAAAAXQAAAAABXQAAAAADXQAAAAABZAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAACbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABegAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABaAAAAAADXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABegAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACaAAAAAAAXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAACegAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: fgAAAAAAfgAAAAAAZAAAAAAAaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfAAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAACfgAAAAAAXQAAAAAAaAAAAAABXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAABfgAAAAAAXQAAAAABaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAAaAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAADZAAAAAAAaAAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABUgAAAAAAUQAAAAAAHwAAAAADXQAAAAACaAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXQAAAAACfgAAAAAAXQAAAAADaAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAaAAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABaAAAAAAAaAAAAAAAaAAAAAACXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAA + tiles: fgAAAAAAfgAAAAAAZAAAAAAAaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfgAAAAAAXQAAAAAAaAAAAAABXQAAAAADHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfAAAAAACfgAAAAAAXQAAAAABaAAAAAADXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAABfgAAAAAAXQAAAAAAaAAAAAADXQAAAAACfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAADfgAAAAAAXQAAAAABaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAACZAAAAAAAaAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAHwAAAAACZAAAAAAAaAAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAUgAAAAAAUQAAAAAAHwAAAAAAXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXQAAAAAAfgAAAAAAXQAAAAABaAAAAAACZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXQAAAAADfgAAAAAAXQAAAAADaAAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABaAAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAACaAAAAAADaAAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: HwAAAAABbQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABOAAAAAAAHwAAAAADHwAAAAACfgAAAAAAcwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAcwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAADHwAAAAACfgAAAAAAcwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAACXQAAAAABaAAAAAACaAAAAAAAaAAAAAADHwAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABaAAAAAAAZAAAAAAAZAAAAAAAHwAAAAABXQAAAAACHwAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAegAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAaAAAAAACZAAAAAAAfgAAAAAAegAAAAACXQAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAAAXQAAAAABfgAAAAAAegAAAAABHwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAAZAAAAAAAaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAACfgAAAAAAXQAAAAABaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAXQAAAAABHwAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADXQAAAAADXQAAAAABaAAAAAABXQAAAAACfgAAAAAAbAAAAAAAZAAAAAAAXQAAAAAAHwAAAAABXQAAAAAAbQAAAAAAHwAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAABfgAAAAAAXQAAAAADaAAAAAACXQAAAAACfgAAAAAAbgAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADHwAAAAADXQAAAAACaAAAAAABXQAAAAABfgAAAAAAfgAAAAAA + tiles: HwAAAAABbQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAcwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAcwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAHwAAAAABHwAAAAADfgAAAAAAcwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAABXQAAAAAAaAAAAAAAaAAAAAADaAAAAAABHwAAAAACXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAADZAAAAAAAZAAAAAAAHwAAAAAAXQAAAAAAHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAegAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAaAAAAAACZAAAAAAAfgAAAAAAegAAAAABXQAAAAADZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAaAAAAAAAXQAAAAADfgAAAAAAegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABfgAAAAAAZAAAAAAAaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACHwAAAAABbQAAAAAAXQAAAAABHwAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAABXQAAAAABXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAbAAAAAAAZAAAAAAAXQAAAAADHwAAAAACXQAAAAADbQAAAAAAHwAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACfgAAAAAAXQAAAAACaAAAAAAAXQAAAAADfgAAAAAAbgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAADHwAAAAADXQAAAAADaAAAAAABXQAAAAACfgAAAAAAfgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: cwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAACfgAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAXQAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAADZAAAAAAAZAAAAAAAaAAAAAAAaAAAAAAATgAAAAACaAAAAAAAaAAAAAABaAAAAAADTgAAAAAAaAAAAAACaAAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAAAaAAAAAABaAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAegAAAAAAegAAAAACHwAAAAABegAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACaAAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAACZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACaAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAbgAAAAACZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADaAAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAaAAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAA + tiles: cwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAACXQAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZAAAAAAAXQAAAAACZAAAAAAAXQAAAAADXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAADZAAAAAAAZAAAAAAAaAAAAAADaAAAAAADTgAAAAADaAAAAAACaAAAAAAAaAAAAAABTgAAAAADaAAAAAAAaAAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAaAAAAAADaAAAAAADZAAAAAAAZAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAACYgAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAABHwAAAAADegAAAAABegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAABaAAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACfgAAAAAAXQAAAAACaAAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAADegAAAAABfgAAAAAAXQAAAAAAaAAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADaAAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAbgAAAAACZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAaAAAAAACZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACaAAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAABHwAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAACcAAAAAABcAAAAAAAdAAAAAACcAAAAAABcAAAAAADcAAAAAACcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZAAAAAAAXQAAAAADXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADTgAAAAAAaAAAAAADaAAAAAABaAAAAAACTgAAAAAAaAAAAAADaAAAAAABHwAAAAADaAAAAAACaAAAAAABaAAAAAACaAAAAAABaAAAAAACaAAAAAACaAAAAAADaAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABHwAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABaAAAAAACfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAegAAAAACfAAAAAACegAAAAADfgAAAAAAXQAAAAABaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADfAAAAAACegAAAAADfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfAAAAAACegAAAAAAfgAAAAAAXQAAAAABaAAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAAAfAAAAAACegAAAAADfgAAAAAAXQAAAAABaAAAAAACAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAAAXQAAAAAATgAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAABXQAAAAADaAAAAAADAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAABXQAAAAABaAAAAAAA + tiles: cAAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABHwAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAABcAAAAAABcAAAAAABdAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZAAAAAAAXQAAAAABXQAAAAABZAAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACTgAAAAADaAAAAAABaAAAAAABaAAAAAAATgAAAAAAaAAAAAAAaAAAAAADHwAAAAAAaAAAAAAAaAAAAAADaAAAAAABaAAAAAADaAAAAAABaAAAAAADaAAAAAACaAAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACaAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAegAAAAAAfAAAAAADegAAAAABfgAAAAAAXQAAAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACfAAAAAADegAAAAADfgAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfAAAAAABegAAAAAAfgAAAAAAXQAAAAAAaAAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAAAfAAAAAABegAAAAADfgAAAAAAXQAAAAABaAAAAAADAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAADXQAAAAABTgAAAAADAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAADXQAAAAACaAAAAAABAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZwAAAAADXQAAAAACaAAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: fgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfAAAAAACfAAAAAABegAAAAADegAAAAADfgAAAAAAZAAAAAAAfgAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAACfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABegAAAAACegAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADaAAAAAABaAAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAABaAAAAAADaAAAAAABaAAAAAABaAAAAAABaAAAAAADaAAAAAABaAAAAAACaAAAAAAAaAAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAACfgAAAAAAMQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAACegAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAACfgAAAAAAAAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAABegAAAAABfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAAAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAABegAAAAABfgAAAAAAAAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAA + tiles: fgAAAAAAZAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfAAAAAADfAAAAAACegAAAAABegAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADfgAAAAAAZAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACaAAAAAADaAAAAAACaAAAAAACaAAAAAAAaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAaAAAAAABaAAAAAAAaAAAAAABaAAAAAACaAAAAAACaAAAAAAAaAAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAABegAAAAABegAAAAACegAAAAABegAAAAACfgAAAAAAMQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAADegAAAAACegAAAAADegAAAAADegAAAAAAegAAAAACfgAAAAAAAAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABegAAAAACfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: egAAAAADfAAAAAADfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAHwAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAHwAAAAAAIwAAAAACIwAAAAACIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADHwAAAAABagAAAAACagAAAAAAagAAAAABagAAAAACagAAAAACagAAAAACHwAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAaAAAAAAAHwAAAAADagAAAAADagAAAAACagAAAAAAagAAAAADagAAAAAAagAAAAADHwAAAAABXQAAAAABXQAAAAABXQAAAAACaAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACHwAAAAABagAAAAADagAAAAADagAAAAADagAAAAABagAAAAADagAAAAABHwAAAAABMQAAAAAAXQAAAAABXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAAAaAAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADHwAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAXQAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACXQAAAAACbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAaAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: egAAAAADfAAAAAADfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAegAAAAADHwAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACHwAAAAACIwAAAAABIwAAAAACIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHwAAAAADagAAAAAAagAAAAABagAAAAAAagAAAAAAagAAAAABagAAAAADHwAAAAABaAAAAAABaAAAAAAAaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAaAAAAAACaAAAAAAAHwAAAAABagAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAADXQAAAAACXQAAAAABXQAAAAAAaAAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAHwAAAAADagAAAAADagAAAAAAagAAAAABagAAAAACagAAAAACagAAAAACHwAAAAADMQAAAAAAXQAAAAACXQAAAAAAaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAMQAAAAAAXQAAAAADXQAAAAABaAAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABHwAAAAABAAAAAAAAfgAAAAAAXQAAAAADaAAAAAADXQAAAAADfgAAAAAAXQAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAACbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABZAAAAAAAegAAAAACegAAAAAADgAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACDgAAAAACXQAAAAAADgAAAAABegAAAAABDgAAAAACegAAAAADXQAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAegAAAAAADgAAAAABXQAAAAACDgAAAAADXQAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAegAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAADgAAAAADegAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAADfgAAAAAADgAAAAAAegAAAAABZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADZAAAAAAAegAAAAADegAAAAABDgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADDgAAAAACXQAAAAADDgAAAAAAegAAAAADDgAAAAABegAAAAACXQAAAAABegAAAAACfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAABDgAAAAACXQAAAAACDgAAAAADXQAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAfgAAAAAAegAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAADgAAAAAAegAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAADfgAAAAAADgAAAAACegAAAAABZAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAA version: 6 1,2: ind: 1,2 - tiles: bQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAXQAAAAADZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAECQAAAAAABwAAAAAABwAAAAAKBwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAXQAAAAADXQAAAAADZAAAAAAAHwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAfgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAA + tiles: bQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAXQAAAAABZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAACXQAAAAAAXQAAAAADZAAAAAAAHwAAAAABBwAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAGfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABZAAAAAAAXQAAAAADfgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: cAAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABXQAAAAABcAAAAAABcAAAAAADcAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACLgAAAAAALgAAAAAAcAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAcAAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAcAAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADcAAAAAACcAAAAAACfgAAAAAAHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAACcAAAAAACHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAABcAAAAAABcAAAAAADdAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAA + tiles: fgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADfgAAAAAAcAAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAABcAAAAAADfgAAAAAAcAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAACHwAAAAABHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAADcAAAAAAAdAAAAAADcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAABHwAAAAACfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACcAAAAAACcAAAAAADcAAAAAAAdAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfAAAAAAAfAAAAAACfAAAAAADfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfAAAAAACfAAAAAADfAAAAAAAfAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfAAAAAAAfAAAAAABfAAAAAAAfAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAfAAAAAABfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACZAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfAAAAAABfAAAAAADegAAAAAAegAAAAAC + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfAAAAAABfAAAAAAAfAAAAAADfAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfAAAAAACfAAAAAABfAAAAAAAfAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfAAAAAACfAAAAAAAfAAAAAADfAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAADfAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfAAAAAABfAAAAAAAegAAAAABegAAAAAD version: 6 2,-4: ind: 2,-4 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADZAAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAZAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADHwAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfAAAAAAAfAAAAAAAfAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACCwAAAAAAfgAAAAAAbAAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAABfAAAAAACfAAAAAABfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfAAAAAAAfAAAAAADfAAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAbAAAAAAAHwAAAAADfAAAAAADfAAAAAABfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAAAHwAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAegAAAAACfAAAAAACfAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAA + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZAAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABZAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfAAAAAADfAAAAAACfAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABCwAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAXQAAAAACXQAAAAADXQAAAAACfAAAAAACfAAAAAADfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfAAAAAACfAAAAAADfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAbAAAAAAAHwAAAAABfAAAAAADfAAAAAADfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAAAHwAAAAACegAAAAACegAAAAABegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAHwAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAADfAAAAAACfAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAACLgAAAAAALgAAAAAAcAAAAAADLgAAAAAALgAAAAAAcAAAAAABLgAAAAAALgAAAAAAcAAAAAACLgAAAAAALgAAAAAAcAAAAAACLgAAAAAALgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAcAAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAHwAAAAAAcAAAAAABfgAAAAAAHwAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADWQAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAABWQAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAADfgAAAAAAXQAAAAACXQAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAC + tiles: LgAAAAAAHwAAAAABLgAAAAAAHwAAAAACLgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAdAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAADLgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAdAAAAAADLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAALgAAAAAAXQAAAAABLgAAAAAALgAAAAAALgAAAAAAdAAAAAADLgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAdAAAAAABLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAdAAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAACcAAAAAACLgAAAAAALgAAAAAALgAAAAAAcAAAAAADLgAAAAAALgAAAAAALgAAAAAAXQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAADcAAAAAADWQAAAAADcAAAAAAAcAAAAAAAXQAAAAADcAAAAAABWQAAAAABcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAACcwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAXQAAAAACXQAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: HwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAHwAAAAABZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAADLgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAcAAAAAABcAAAAAAAdQAAAAACcAAAAAACcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAcAAAAAABfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfAAAAAADfAAAAAACfAAAAAABfAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAADfAAAAAACfAAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAAAfAAAAAADfAAAAAADfAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfAAAAAAAfAAAAAABfAAAAAACfAAAAAAAfAAAAAABfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAcwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcwAAAAAD + tiles: HwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAADXQAAAAAALgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfAAAAAAAfAAAAAABfAAAAAAAfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfAAAAAADfAAAAAABfAAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfAAAAAACfAAAAAABfAAAAAACfAAAAAACfAAAAAADfAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfAAAAAAAfAAAAAADfAAAAAADfAAAAAABfAAAAAACfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbgAAAAACXQAAAAAAfAAAAAACfAAAAAAAfAAAAAABHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAADfAAAAAABfAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAACOAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAcwAAAAAC version: 6 -1,-5: ind: -1,-5 - tiles: XQAAAAADXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADfgAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAABfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAADbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbgAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAACLgAAAAAAHwAAAAACHwAAAAAALgAAAAAAHwAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADZwAAAAACZwAAAAABZwAAAAABLgAAAAAAHwAAAAAAHwAAAAADLgAAAAAAHwAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAABZwAAAAAAZwAAAAABZwAAAAABLgAAAAAAHwAAAAADHwAAAAABLgAAAAAAHwAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAABZwAAAAAAZwAAAAACZwAAAAAA + tiles: XQAAAAABXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAADbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbgAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAALgAAAAAAHwAAAAABLgAAAAAAHwAAAAADLgAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAABcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAIgAAAAACIgAAAAADLgAAAAAAHwAAAAAALgAAAAAAHwAAAAACLgAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAALgAAAAAAHwAAAAACLgAAAAAAHwAAAAAALgAAAAAAHwAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAQAAAAAAAQAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: fgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADXQAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACXQAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAAAXQAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAACfgAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAACcAAAAAABfgAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAHwAAAAAB + tiles: fgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAXQAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAAAXQAAAAADcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAXQAAAAADcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAABXQAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAABXQAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAABfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAADXQAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAcAAAAAABfgAAAAAAcAAAAAABWQAAAAAAcAAAAAADfgAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAbgAAAAACbAAAAAAAbgAAAAADbgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAA + tiles: fgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAIgAAAAADfgAAAAAAbgAAAAACbAAAAAAAfgAAAAAAbgAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAIgAAAAABbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAABbAAAAAAAbgAAAAADbgAAAAADfgAAAAAAfgAAAAAAZAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABbQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAbQAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAbQAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADbQAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACbQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABbQAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADbQAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADbQAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADZAAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADdAAAAAABdAAAAAABdAAAAAABdAAAAAAAdAAAAAADdAAAAAACdAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAABdAAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAADfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAdAAAAAAAdAAAAAADfgAAAAAAHwAAAAADfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACZAAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAADdAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAABdAAAAAAAdAAAAAACfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAADdAAAAAADfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAACdAAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAdAAAAAABdAAAAAAAfgAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAADfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAACCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGCQAAAAAEBwAAAAAACQAAAAAIBwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAABfAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfAAAAAACegAAAAABZwAAAAACZwAAAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAADegAAAAAAZwAAAAABMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbAAAAAAAbAAAAAAAfgAAAAAAfAAAAAABegAAAAAAZwAAAAABMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAADegAAAAAAZwAAAAAAMQAAAAAAMQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfAAAAAADegAAAAABZwAAAAACZwAAAAAAZwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAD + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAEBwAAAAAACQAAAAAABwAAAAACCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAFCQAAAAAABwAAAAAACQAAAAAABwAAAAAIfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAABfAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfAAAAAAAegAAAAACZwAAAAADZwAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAegAAAAADZwAAAAACMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfAAAAAACegAAAAAAZwAAAAABMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACegAAAAAAZwAAAAAAMQAAAAAAMQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfAAAAAACegAAAAABZwAAAAADZwAAAAACZwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAD version: 6 -3,-5: ind: -3,-5 - tiles: XQAAAAADZAAAAAAACwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAADegAAAAABegAAAAACegAAAAADegAAAAAAXQAAAAAAXQAAAAABZAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAXQAAAAACZAAAAAAAegAAAAADegAAAAACXQAAAAAAegAAAAABegAAAAABegAAAAABZAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAegAAAAACZAAAAAAAbgAAAAAAZAAAAAAAZAAAAAAAegAAAAABZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAACwAAAAAAXQAAAAACegAAAAABegAAAAAAXQAAAAADegAAAAADZAAAAAAAegAAAAADXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACwAAAAAAZAAAAAAAXQAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAACwAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAAACwAAAAAAbgAAAAACbgAAAAABCwAAAAAAXQAAAAADXQAAAAABXQAAAAAACwAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABCwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAACHwAAAAACHwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACCwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAABZAAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAXQAAAAACXQAAAAABXQAAAAADegAAAAABegAAAAACegAAAAAAegAAAAACXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAXQAAAAAAZAAAAAAAegAAAAADegAAAAADXQAAAAACegAAAAABegAAAAABegAAAAADZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAegAAAAACZAAAAAAAbgAAAAADZAAAAAAAZAAAAAAAegAAAAAAZAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAACwAAAAAAXQAAAAACegAAAAAAegAAAAAAXQAAAAADegAAAAADZAAAAAAAegAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACwAAAAAAZAAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAACwAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAACwAAAAAAbgAAAAABbgAAAAADCwAAAAAAXQAAAAACXQAAAAAAXQAAAAAACwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAADXQAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABCwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAADHwAAAAABHwAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACCwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAaAAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABTgAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAXQAAAAAAfAAAAAABfAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABZAAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAaAAAAAABXQAAAAACZwAAAAAAZwAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZQAAAAACZQAAAAABZwAAAAABXQAAAAACZAAAAAAAXQAAAAABaAAAAAACXQAAAAABMQAAAAAAZwAAAAACegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAAAZQAAAAABZwAAAAADXQAAAAABXQAAAAABXQAAAAADaAAAAAABXQAAAAADMQAAAAAAZwAAAAADegAAAAABegAAAAAAHwAAAAABaAAAAAAAaAAAAAABHwAAAAACaAAAAAAAaAAAAAAAaAAAAAABaAAAAAADaAAAAAAAaAAAAAADaAAAAAAAXQAAAAAAMQAAAAAAZwAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAAAZQAAAAADZwAAAAACXQAAAAACZAAAAAAAXQAAAAADTgAAAAABaAAAAAACZwAAAAADZwAAAAACegAAAAABegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZQAAAAABZQAAAAABZwAAAAACXQAAAAACXQAAAAABZAAAAAAAaAAAAAACXQAAAAABegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABaAAAAAABXQAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAaAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABaAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAAAfAAAAAADfAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACZAAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADaAAAAAAAXQAAAAACZwAAAAAAZwAAAAAAegAAAAACegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZQAAAAADZQAAAAADZwAAAAAAXQAAAAACZAAAAAAAXQAAAAACaAAAAAADXQAAAAAAMQAAAAAAZwAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAABZQAAAAAAZwAAAAABXQAAAAABXQAAAAABXQAAAAADaAAAAAABXQAAAAADMQAAAAAAZwAAAAAAegAAAAABegAAAAAAHwAAAAABaAAAAAAAaAAAAAADHwAAAAADaAAAAAADaAAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAADaAAAAAAAXQAAAAACMQAAAAAAZwAAAAABegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAACZQAAAAADZwAAAAADXQAAAAACZAAAAAAAXQAAAAABTgAAAAACaAAAAAADZwAAAAAAZwAAAAACegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZQAAAAAAZQAAAAABZwAAAAAAXQAAAAACXQAAAAABZAAAAAAAaAAAAAAAXQAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACaAAAAAACXQAAAAAA version: 6 0,-7: ind: 0,-7 @@ -262,119 +262,119 @@ entities: version: 6 1,-5: ind: 1,-5 - tiles: fAAAAAAAfAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACZAAAAAAAXQAAAAABXQAAAAADaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAADXQAAAAACZAAAAAAAZAAAAAAAXQAAAAAAaAAAAAACXQAAAAADbgAAAAACbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fAAAAAABfAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABaAAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADZAAAAAAAXQAAAAACXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAADXQAAAAABZAAAAAAAZAAAAAAAXQAAAAABaAAAAAADXQAAAAAAbgAAAAADbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACZAAAAAAAZAAAAAAAHwAAAAADXQAAAAACHwAAAAAAXQAAAAACTgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACTgAAAAADZAAAAAAAHwAAAAADaAAAAAABHwAAAAACXQAAAAABZAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAACZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAATgAAAAABXQAAAAACbAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbgAAAAACbAAAAAAAfgAAAAAA + tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAHwAAAAADXQAAAAABHwAAAAADXQAAAAAATgAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABTgAAAAABZAAAAAAAHwAAAAACaAAAAAADHwAAAAADXQAAAAABZAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAATgAAAAABXQAAAAACbAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbgAAAAACbAAAAAAAfgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbAAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbAAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA version: 6 0,2: ind: 0,2 - tiles: ZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAQAAAAAAAQAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAIBwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALBwAAAAAJCQAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAABXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAAXQAAAAACXQAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAABfgAAAAAABwAAAAAFBwAAAAAABwAAAAAACQAAAAACBwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAXQAAAAADXQAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAC + tiles: ZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAQAAAAAAAQAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKCQAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAABXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEXQAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAXQAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAADBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAABXQAAAAABfgAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAA version: 6 1,3: ind: 1,3 - tiles: BwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAKBwAAAAAJBwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: XQAAAAABXQAAAAABfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALXQAAAAADXQAAAAACfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHXQAAAAADXQAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACXQAAAAABXQAAAAAAfgAAAAAACQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAXQAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAADBwAAAAAABwAAAAAHBwAAAAAAHwAAAAABHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAABBwAAAAAABwAAAAAEXQAAAAABXQAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAACKgAAAAABBwAAAAAAXQAAAAAAXQAAAAADfgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAIMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAADBwAAAAAABwAAAAAABwAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAKgAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAADXQAAAAABfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAXQAAAAACXQAAAAACfgAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAXQAAAAAAXQAAAAADfgAAAAAACQAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAXQAAAAAAXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAABwAAAAAABwAAAAALBwAAAAAAHwAAAAACHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAABwAAAAAABwAAAAAAXQAAAAACXQAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAABKgAAAAADBwAAAAAAXQAAAAACXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAABwAAAAAABwAAAAAABwAAAAAIXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAKgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: XQAAAAACXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAXQAAAAADbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABHwAAAAABegAAAAADegAAAAADfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABHwAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACHwAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABHwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAACXQAAAAABHwAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbgAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAB + tiles: XQAAAAAAXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAXQAAAAADbQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABHwAAAAACegAAAAAAegAAAAABfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAegAAAAAAegAAAAACfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADHwAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAADHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAABHwAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACHwAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACHwAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD version: 6 4,1: ind: 4,1 - tiles: bAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: bAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAABHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: XQAAAAAAXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAZwAAAAACZwAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZAAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABXQAAAAACZAAAAAAAfgAAAAAAfQAAAAAAXQAAAAADXQAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAACHwAAAAABZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAADXQAAAAACXQAAAAADHwAAAAABXQAAAAAAZAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAATgAAAAADXQAAAAAAHwAAAAACXQAAAAACZAAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAADXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAZwAAAAADZwAAAAACZwAAAAADZwAAAAADZwAAAAAAZAAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAXQAAAAABXQAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAABXQAAAAACZAAAAAAAfgAAAAAAfQAAAAAAXQAAAAADXQAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACZAAAAAAAXQAAAAAAXQAAAAADXQAAAAADHwAAAAADHwAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABHwAAAAACHwAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAXQAAAAABXQAAAAABHwAAAAACXQAAAAADZAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABTgAAAAADXQAAAAABHwAAAAAAXQAAAAACZAAAAAAAHwAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: XQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: XQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADIAAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADIAAAAAADIAAAAAADIAAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAAAagAAAAAAagAAAAADagAAAAACHwAAAAADXQAAAAADXQAAAAABXQAAAAAAIAAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAHwAAAAADagAAAAABagAAAAAAagAAAAABHwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbgAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABbAAAAAAAbgAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABbgAAAAADbgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAACTgAAAAAATgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABTgAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbgAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAAATgAAAAABTgAAAAAB + tiles: XQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACIAAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADIAAAAAABIAAAAAADIAAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACHwAAAAACagAAAAAAagAAAAACagAAAAADHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAIAAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADHwAAAAADagAAAAACagAAAAABagAAAAACHwAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAACXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAbgAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAADbAAAAAAAbgAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAADbgAAAAACbgAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAAATgAAAAABTgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADTgAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAACTgAAAAAATgAAAAAC version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABHwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAbQAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAC + tiles: AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADHwAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAHwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAADUgAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADUgAAAAAAbQAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAbQAAAAAAUgAAAAAAbQAAAAAAUgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: bQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAJfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAACbgAAAAABfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAUgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAIBwAAAAAAbQAAAAAAUgAAAAAAHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAIBwAAAAAJBwAAAAAAUgAAAAAAbQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAALBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAZwAAAAACZwAAAAADZwAAAAADZwAAAAABZwAAAAABZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAABwAAAAAAfQAAAAAAXQAAAAAAXQAAAAACHwAAAAACXQAAAAACZAAAAAAAZwAAAAACZwAAAAABZwAAAAABZwAAAAAAZwAAAAABZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAABwAAAAAAfQAAAAAA + tiles: bQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAADbgAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABUgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAUgAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAUgAAAAAAbQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAXQAAAAABXQAAAAADfgAAAAAAZAAAAAAAXQAAAAADZwAAAAADZwAAAAACZwAAAAAAZwAAAAACZwAAAAACZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAABwAAAAAGfQAAAAAAXQAAAAABXQAAAAADHwAAAAABXQAAAAABZAAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAABZwAAAAACZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAABwAAAAAAfQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: HwAAAAADfgAAAAAAHwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAACfgAAAAAAawAAAAACawAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAZAAAAAAAHwAAAAABfgAAAAAAHwAAAAABXQAAAAACfgAAAAAAawAAAAACawAAAAABfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABZAAAAAAAHwAAAAACawAAAAAAawAAAAABHwAAAAADZAAAAAAAZAAAAAAAZwAAAAAAZwAAAAAAXQAAAAAAXQAAAAAAHwAAAAACXQAAAAABHwAAAAABfgAAAAAAHwAAAAADXQAAAAAAHwAAAAABawAAAAAAawAAAAADHwAAAAACXQAAAAACXQAAAAADZwAAAAABZwAAAAAAZAAAAAAAXQAAAAACHwAAAAABXQAAAAACHwAAAAACfgAAAAAAHwAAAAACXQAAAAADfgAAAAAAawAAAAADawAAAAADfgAAAAAAXQAAAAACXQAAAAAAZwAAAAABZwAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAADHwAAAAACHwAAAAADHwAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAADZwAAAAACZwAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAABawAAAAADfgAAAAAAXQAAAAAAXQAAAAAAZwAAAAAAZwAAAAACXQAAAAACXQAAAAADfgAAAAAAWQAAAAAAagAAAAABagAAAAAAagAAAAACagAAAAACHwAAAAAAawAAAAAAawAAAAACHwAAAAAAXQAAAAADXQAAAAADZwAAAAACZwAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAagAAAAADagAAAAABagAAAAAAagAAAAACHwAAAAABawAAAAADawAAAAACHwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAHwAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAA + tiles: HwAAAAAAfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAABfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAawAAAAACawAAAAABfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAZAAAAAAAHwAAAAABfgAAAAAAHwAAAAADXQAAAAAAfgAAAAAAawAAAAAAawAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADZAAAAAAAHwAAAAACawAAAAAAawAAAAAAHwAAAAABZAAAAAAAZAAAAAAAZwAAAAADZwAAAAACXQAAAAABXQAAAAADHwAAAAAAXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAawAAAAABawAAAAABHwAAAAABXQAAAAACXQAAAAACZwAAAAABZwAAAAABZAAAAAAAXQAAAAACHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAADfgAAAAAAawAAAAABawAAAAADfgAAAAAAXQAAAAABXQAAAAAAZwAAAAADZwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAABHwAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAZwAAAAACZwAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAABawAAAAACfgAAAAAAXQAAAAAAXQAAAAAAZwAAAAADZwAAAAABXQAAAAABXQAAAAABfgAAAAAAWQAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAADHwAAAAABawAAAAACawAAAAACHwAAAAAAXQAAAAABXQAAAAACZwAAAAACZwAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAagAAAAACagAAAAADagAAAAAAagAAAAAAHwAAAAACawAAAAACawAAAAABHwAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAWQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAACbgAAAAADbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQgAAAAAAXQAAAAADbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAHwAAAAACbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQgAAAAAAXQAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAABbAAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAAAbgAAAAADbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQgAAAAAAXQAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAHwAAAAADbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQgAAAAAAXQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAACbAAAAAAAXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHwAAAAACXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAHwAAAAACXQAAAAAD version: 6 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADHwAAAAACfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAACMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAACMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAACaAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABHwAAAAAAfgAAAAAAXQAAAAACHwAAAAABHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAACMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAABMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAABHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAABaAAAAAACfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAB version: 6 3,-6: ind: 3,-6 - tiles: HwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaAAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAaAAAAAABHwAAAAACHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAACaAAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAACaAAAAAADHwAAAAABHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: aAAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAaAAAAAADXQAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaAAAAAABZAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbQAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: aAAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAaAAAAAACXQAAAAACZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaAAAAAABZAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAbgAAAAAAbQAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAKBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbgAAAAADbAAAAAAAbgAAAAADZAAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbgAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAG + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAALfgAAAAAAHwAAAAABfgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACCQAAAAAABwAAAAACBwAAAAALBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAABbAAAAAAAbgAAAAACZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAFbAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAICQAAAAAABwAAAAAABwAAAAAJ version: 6 -3,-3: ind: -3,-3 - tiles: fgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACHwAAAAABXQAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADbQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADZAAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAHwAAAAAAXQAAAAACbQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADXQAAAAAAHwAAAAACZAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAAC + tiles: fgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACHwAAAAADXQAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAABHwAAAAADXQAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABbQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAHwAAAAADXQAAAAADbQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADZAAAAAAAZAAAAAAAXQAAAAACXQAAAAACHwAAAAADZAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAC version: 6 -3,-4: ind: -3,-4 - tiles: fgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABCwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAZAAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAA + tiles: fgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABCwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAADbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAHwAAAAADXQAAAAACZAAAAAAAXQAAAAADXQAAAAACXQAAAAAAbAAAAAAAHwAAAAADXQAAAAADZAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAHwAAAAADXQAAAAADXQAAAAABZAAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAACbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAHwAAAAABXQAAAAAAZAAAAAAAXQAAAAACXQAAAAADXQAAAAAAbAAAAAAAHwAAAAABXQAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAHwAAAAADXQAAAAABXQAAAAABZAAAAAAAXQAAAAAAHwAAAAADXQAAAAACHwAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAABHwAAAAABHwAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAACbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,0: ind: -3,0 - tiles: XQAAAAAAXQAAAAACXQAAAAADHwAAAAACaAAAAAAAaAAAAAADaAAAAAABaAAAAAACaAAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAAAaAAAAAABaAAAAAADaAAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAABXQAAAAAAXQAAAAACXQAAAAADZAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAAAawAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAABawAAAAADMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAAAawAAAAACMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAACawAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAADJAAAAAABJAAAAAABJAAAAAACfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAABfgAAAAAAIwAAAAAAIwAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAegAAAAADegAAAAABfgAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAADJAAAAAADJAAAAAADfgAAAAAAIwAAAAACJAAAAAACXQAAAAABZAAAAAAAXQAAAAABHwAAAAAAegAAAAADegAAAAACfgAAAAAAJAAAAAAAJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAABfgAAAAAAIwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABJAAAAAAAJAAAAAACJAAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAATgAAAAACTgAAAAADJAAAAAACJAAAAAACTgAAAAAATgAAAAABHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABZAAAAAAAXQAAAAAAbQAAAAAAaAAAAAADfgAAAAAATgAAAAACTgAAAAAAJAAAAAAAJAAAAAACTgAAAAADTgAAAAABHwAAAAABHwAAAAABHwAAAAACXQAAAAABZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAaAAAAAABfgAAAAAATgAAAAABTgAAAAACJAAAAAACJAAAAAAATgAAAAABTgAAAAADHwAAAAACHwAAAAACfgAAAAAA + tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAADaAAAAAADaAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAAAXQAAAAABXQAAAAACXQAAAAACZAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAACawAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAACawAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAABawAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAawAAAAABawAAAAABMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAABfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAJAAAAAABJAAAAAABJAAAAAAAJAAAAAABJAAAAAADJAAAAAAAfgAAAAAAIwAAAAADIwAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAABJAAAAAABJAAAAAACfgAAAAAAIwAAAAADJAAAAAACXQAAAAADZAAAAAAAXQAAAAADHwAAAAABegAAAAABegAAAAABfgAAAAAAJAAAAAACJAAAAAAAJAAAAAAAJAAAAAACJAAAAAABJAAAAAACfgAAAAAAIwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAAAJAAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAATgAAAAABTgAAAAADJAAAAAABJAAAAAAATgAAAAADTgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAXQAAAAAAbQAAAAAAaAAAAAACfgAAAAAATgAAAAADTgAAAAAAJAAAAAABJAAAAAABTgAAAAACTgAAAAAAHwAAAAABHwAAAAABHwAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAaAAAAAABfgAAAAAATgAAAAABTgAAAAAAJAAAAAABJAAAAAABTgAAAAABTgAAAAABHwAAAAABHwAAAAADfgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: ZAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAaAAAAAABfgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAADaAAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAACaAAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAaAAAAAACJAAAAAAAJAAAAAACHwAAAAAAJAAAAAABJAAAAAAAHwAAAAACJAAAAAADJAAAAAAAaAAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACYgAAAAAAYgAAAAAAaAAAAAADJAAAAAAAJAAAAAACHwAAAAADJAAAAAAAJAAAAAABHwAAAAACJAAAAAACJAAAAAADaAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAYgAAAAADYgAAAAACaAAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAACaAAAAAABHwAAAAAAZAAAAAAAXQAAAAACXQAAAAAAYgAAAAABYgAAAAABaAAAAAADJAAAAAADJAAAAAACHwAAAAADJAAAAAABJAAAAAADHwAAAAADJAAAAAADJAAAAAABaAAAAAADHwAAAAACZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAaAAAAAAAJAAAAAACJAAAAAACHwAAAAABJAAAAAABJAAAAAACHwAAAAADJAAAAAADJAAAAAACaAAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABaAAAAAADaAAAAAABaAAAAAAAaAAAAAADaAAAAAAAaAAAAAACaAAAAAACaAAAAAAAaAAAAAACaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADaAAAAAABaAAAAAACaAAAAAADaAAAAAADaAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAADYgAAAAADaAAAAAAAJAAAAAACJAAAAAADJAAAAAAAaAAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: ZAAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAaAAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAACIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADaAAAAAADaAAAAAAAaAAAAAACaAAAAAAAaAAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAADaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADaAAAAAABJAAAAAAAJAAAAAADHwAAAAACJAAAAAACJAAAAAABHwAAAAABJAAAAAACJAAAAAAAaAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACYgAAAAAAYgAAAAAAaAAAAAADJAAAAAABJAAAAAADHwAAAAAAJAAAAAAAJAAAAAABHwAAAAADJAAAAAADJAAAAAADaAAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABYgAAAAADYgAAAAABaAAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAaAAAAAACHwAAAAABZAAAAAAAXQAAAAACXQAAAAAAYgAAAAADYgAAAAABaAAAAAADJAAAAAADJAAAAAAAHwAAAAACJAAAAAABJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAACaAAAAAADHwAAAAADZAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACaAAAAAADJAAAAAAAJAAAAAADHwAAAAABJAAAAAADJAAAAAADHwAAAAACJAAAAAADJAAAAAAAaAAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACaAAAAAAAaAAAAAACaAAAAAAAaAAAAAACaAAAAAAAaAAAAAADaAAAAAABaAAAAAADaAAAAAABaAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACZAAAAAAAZAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADHwAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABaAAAAAADaAAAAAABaAAAAAAAaAAAAAABaAAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAACaAAAAAAAJAAAAAADJAAAAAAAJAAAAAACaAAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAbgAAAAAAbgAAAAACXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAbgAAAAADbgAAAAABXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAbgAAAAAAbgAAAAABXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZAAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAACagAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABagAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAABHwAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAbgAAAAADbgAAAAABXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAbgAAAAADbgAAAAABXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAbgAAAAADbgAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZAAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZAAAAAAAXQAAAAACXQAAAAADXQAAAAAAHwAAAAADagAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACHwAAAAACagAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAACZAAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAbQAAAAAAHwAAAAAAZAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAZAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAACZAAAAAAAXQAAAAABXQAAAAABXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADHwAAAAABXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZAAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAACXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAACZAAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAHwAAAAABZAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACZAAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADZAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABZAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADXQAAAAACZAAAAAAAXQAAAAACXQAAAAACXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAHwAAAAADXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZAAAAAAAXQAAAAABXQAAAAAAXQAAAAABHwAAAAABXQAAAAAB version: 6 -5,-1: ind: -5,-1 @@ -382,67 +382,67 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: fQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAABbQAAAAAAXQAAAAAAbQAAAAAAXQAAAAADbQAAAAAAHwAAAAABHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAbQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAHwAAAAABbAAAAAAAHwAAAAABbAAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADbQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAADHwAAAAABHwAAAAADZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAZAAAAAAAHwAAAAACfgAAAAAAHwAAAAABZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABZAAAAAAAHwAAAAADHwAAAAADHwAAAAADZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAACZAAAAAAAHwAAAAAAHwAAAAABHwAAAAABZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACbQAAAAAAXQAAAAACbQAAAAAAXQAAAAABbQAAAAAAHwAAAAAAHwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABbQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAHwAAAAADbAAAAAAAHwAAAAADbAAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAbQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAHwAAAAABHwAAAAACHwAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAABHwAAAAADHwAAAAABZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADZAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAADZAAAAAAAHwAAAAACHwAAAAACHwAAAAACZAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: fQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACbQAAAAAAXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfQAAAAAAfgAAAAAAXQAAAAADbQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAbQAAAAAAHwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAC + tiles: fQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACbQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfQAAAAAAfgAAAAAAXQAAAAABbQAAAAAAXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADbQAAAAAAHwAAAAADbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAB version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABXQAAAAADXQAAAAADXQAAAAAACwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAXQAAAAABXQAAAAAAZAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAACwAAAAAAXQAAAAADXQAAAAADCwAAAAAACwAAAAAAbQAAAAAAbQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADXQAAAAACZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACbgAAAAABZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAAAXQAAAAADXQAAAAACXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAKgAAAAACKgAAAAABKgAAAAABKgAAAAAAKgAAAAADfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAKgAAAAACKgAAAAACKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAADKgAAAAAAKgAAAAACKgAAAAABfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAAAXQAAAAAAXQAAAAADXQAAAAADCwAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAXQAAAAABXQAAAAAAZAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAXQAAAAADZAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAACwAAAAAAXQAAAAACXQAAAAAACwAAAAAACwAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAACXQAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAbgAAAAABZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAACXQAAAAACXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAACfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAKgAAAAACKgAAAAABKgAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAADKgAAAAAAKgAAAAACKgAAAAACfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAACIwAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAADIwAAAAADfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAACwAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAABHwAAAAACIwAAAAADfgAAAAAAWAAAAAACWAAAAAADWAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAADHwAAAAAAIwAAAAABfgAAAAAAWAAAAAABWAAAAAACWAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAACwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAACwAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbgAAAAACZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAAACwAAAAAAXQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAACwAAAAAAXQAAAAACZAAAAAAAXQAAAAADXQAAAAADCwAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAACwAAAAAAXQAAAAACXQAAAAACfgAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAACwAAAAAAXQAAAAADXQAAAAACXQAAAAACbgAAAAABCwAAAAAAXQAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADCwAAAAAAfgAAAAAAXQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADCwAAAAAAXQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAACwAAAAAAXQAAAAAAZAAAAAAAXQAAAAADXQAAAAAACwAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAACwAAAAAAXQAAAAADXQAAAAADfgAAAAAAZAAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAACwAAAAAAXQAAAAADXQAAAAADXQAAAAABbgAAAAABCwAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACCwAAAAAAfgAAAAAAXQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZAAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADYgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADYgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAABfgAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAADZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAADZAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAADbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAegAAAAAAHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAXQAAAAABbgAAAAADbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbgAAAAACXQAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbgAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACAAAAAAAAfgAAAAAAbgAAAAADbgAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAABegAAAAABXQAAAAADXQAAAAABXQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABXQAAAAABXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAABXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACHwAAAAABXQAAAAAAXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAACbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAADegAAAAADHwAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAACbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbgAAAAACXQAAAAABegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAACbgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAbgAAAAAAbgAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAACXQAAAAADXQAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAABXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADXQAAAAAAXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADHwAAAAAAXQAAAAACXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAA version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbgAAAAACbgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAbgAAAAABbgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAACMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAADMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABHwAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAACKgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABHwAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAAAKgAAAAACKgAAAAADKgAAAAAAKgAAAAAAKgAAAAADKgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAADAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAADMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAADbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAADbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAHwAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAABMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbgAAAAADbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAABMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAACKgAAAAACMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAADKgAAAAAAKgAAAAABKgAAAAADKgAAAAADKgAAAAAAKgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAABAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADHwAAAAADbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAHwAAAAABbQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAAA version: 6 -3,2: ind: -3,2 - tiles: YgAAAAAAYgAAAAABaAAAAAADJAAAAAACJAAAAAACJAAAAAACaAAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAaAAAAAAAJAAAAAABJAAAAAAAJAAAAAACaAAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAaAAAAAADaAAAAAADaAAAAAAAaAAAAAABaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAegAAAAACfgAAAAAAfgAAAAAAbgAAAAADbgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADXQAAAAACZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACaAAAAAABaAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YgAAAAADYgAAAAABaAAAAAADJAAAAAAAJAAAAAACJAAAAAAAaAAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAACYgAAAAACaAAAAAACJAAAAAAAJAAAAAACJAAAAAACaAAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABaAAAAAADaAAAAAAAaAAAAAACaAAAAAADaAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABXQAAAAABZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACaAAAAAACaAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABaAAAAAAAaAAAAAAAaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAAAXQAAAAABXQAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAaAAAAAABaAAAAAADaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAA version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAAABwAAAAABBwAAAAAIBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAFCQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACQAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADCQAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAACQAAAAABBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAA version: 6 -3,4: ind: -3,4 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAACQAAAAAMBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAACBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACCQAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAJBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAABBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAALBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAALBwAAAAADAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-7: ind: 1,-7 @@ -450,35 +450,35 @@ entities: version: 6 3,2: ind: 3,2 - tiles: ZAAAAAAAbgAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADbgAAAAACZAAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABZAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbgAAAAACbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAALAAAAAAAAfgAAAAAAXQAAAAADbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAABbQAAAAAAbgAAAAADbQAAAAAAbgAAAAAAbQAAAAAAbgAAAAADbQAAAAAAbgAAAAADbQAAAAAAbgAAAAABbgAAAAACfwAAAAAABwAAAAAABwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfwAAAAAAfwAAAAAABwAAAAAAXQAAAAADXQAAAAABbQAAAAAAbgAAAAACbQAAAAAAbgAAAAAAbQAAAAAAbgAAAAACbQAAAAAAbgAAAAADbQAAAAAAbgAAAAAAbgAAAAABfwAAAAAABwAAAAAACQAAAAAH + tiles: ZAAAAAAAbgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABbgAAAAACZAAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAZAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbgAAAAACbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAACbAAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHXQAAAAABXQAAAAACbQAAAAAAbgAAAAADbQAAAAAAbgAAAAACbQAAAAAAbgAAAAABbQAAAAAAbgAAAAACbQAAAAAAbgAAAAADbgAAAAABfwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfwAAAAAAfwAAAAAABwAAAAAAXQAAAAACXQAAAAAAbQAAAAAAbgAAAAAAbQAAAAAAbgAAAAACbQAAAAAAbgAAAAACbQAAAAAAbgAAAAABbQAAAAAAbgAAAAACbgAAAAAAfwAAAAAABwAAAAAACQAAAAAA version: 6 2,3: ind: 2,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAAAfgAAAAAAegAAAAACXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAAATgAAAAABTgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAAALwAAAAAALwAAAAACLwAAAAABTgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAADLwAAAAABLwAAAAAALwAAAAADLwAAAAABLwAAAAADTgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAADTgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAADfgAAAAAAegAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADegAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAAATgAAAAABTgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAACLwAAAAAALwAAAAADLwAAAAADTgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAABLwAAAAACLwAAAAABLwAAAAABLwAAAAACLwAAAAAATgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAABLwAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAACTgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: XQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAZAAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAXQAAAAACfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAAAZAAAAAAAbgAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABbAAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZAAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAHwAAAAACfgAAAAAAZAAAAAAAXQAAAAADbgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbgAAAAADfgAAAAAAbgAAAAABXQAAAAAAHwAAAAABZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAXQAAAAADXQAAAAADbAAAAAAAbgAAAAABXQAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAALXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAZAAAAAAAXQAAAAACbAAAAAAAbAAAAAAAXQAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbgAAAAABZAAAAAAAbgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZAAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAFfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAABbgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbgAAAAADfgAAAAAAbgAAAAACXQAAAAABHwAAAAACZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAZAAAAAAAXQAAAAADXQAAAAABbAAAAAAAbgAAAAABXQAAAAACZAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAAAZwAAAAACZwAAAAABZwAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAAZwAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABZwAAAAADZwAAAAABZwAAAAABZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAAZwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: fgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAABHwAAAAAAXQAAAAADHwAAAAABZwAAAAACHwAAAAACXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACOAAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACXQAAAAABHwAAAAADOAAAAAAAIgAAAAABEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAABOAAAAAAAIgAAAAACEQAAAAAAHwAAAAAAEQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADHwAAAAACOAAAAAAAIgAAAAADEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAOAAAAAAAIgAAAAADIgAAAAAAIgAAAAABIgAAAAADAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAABHwAAAAADXQAAAAADHwAAAAABZwAAAAABHwAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADOAAAAAAAIgAAAAABIgAAAAADIgAAAAABIgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAAAHwAAAAABOAAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAACHwAAAAACOAAAAAAAIgAAAAABEQAAAAAAHwAAAAAAEQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAACOAAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAABOAAAAAAAIgAAAAADIgAAAAABIgAAAAACIgAAAAABAAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACHwAAAAADfgAAAAAAHwAAAAADAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,3: ind: 4,3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAHwAAAAADHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADHwAAAAABHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAMBwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,4: ind: 0,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABOAAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAOAAAAAAAHwAAAAAAXQAAAAACHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAOAAAAAAAHwAAAAABXQAAAAACHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAOAAAAAAAHwAAAAAAXQAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAOAAAAAAAXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAOAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAOAAAAAAAHwAAAAADXQAAAAABHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACOAAAAAAAHwAAAAACXQAAAAACHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACOAAAAAAAHwAAAAAAXQAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABOAAAAAAAXQAAAAABXQAAAAADHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -490,27 +490,27 @@ entities: version: 6 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADZAAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAACZAAAAAAAXQAAAAADZAAAAAAAbAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAbgAAAAAAZAAAAAAAXQAAAAABZAAAAAAAbAAAAAAAfgAAAAAA version: 6 -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADbgAAAAACbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAbgAAAAACbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAfQAAAAAAWQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAWQAAAAAAfQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAWQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAfQAAAAAAWQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAACfQAAAAAAWQAAAAABfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAfQAAAAAAfQAAAAAAWQAAAAABWQAAAAABfQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAfQAAAAAAWQAAAAAAWQAAAAADfgAAAAAAWQAAAAABWQAAAAADfgAAAAAAWQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACfQAAAAAAfQAAAAAAWQAAAAACWQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAWQAAAAAAfQAAAAAAWQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 5,-4: ind: 5,-4 - tiles: BwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-4: ind: -6,-4 @@ -526,7 +526,7 @@ entities: version: 6 2,4: ind: 2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAACTgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAADLwAAAAACLwAAAAAALwAAAAAATgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAACTgAAAAACTgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAABLwAAAAADTgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAABLwAAAAABLwAAAAAALwAAAAACTgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAABTgAAAAADTgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -548,6329 +548,6720 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 3608: 6,-71 - 3609: -14,-16 - 3856: -69,-45 - 3869: 1,-2 + 3434: 6,-71 + 3435: -14,-16 + 3662: -69,-45 + 3675: 1,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 3901: -71,-45 + 3707: -71,-45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 3140: 67,-46 - 3141: 67,-47 + 2973: 67,-46 + 2974: 67,-47 - node: color: '#FFFFFFFF' id: Bot decals: - 30: 10,22 - 31: 10,21 - 32: 10,20 - 174: 68,-46 - 175: 68,-47 - 324: -59,-74 - 325: -59,-72 - 326: -59,-80 - 327: -59,-82 - 329: -38,23 - 330: -39,23 - 331: -41,23 - 332: -42,23 - 333: -44,23 - 334: -45,23 - 335: -45,22 - 336: -44,22 - 337: -41,22 - 338: -42,22 - 339: -39,22 - 340: -45,20 - 341: -44,20 - 342: -42,20 - 343: -41,20 - 344: -38,20 - 345: -38,19 - 346: -41,19 - 347: -42,19 - 348: -45,19 - 349: -44,19 - 350: -39,20 - 351: -39,19 - 352: -38,22 - 353: 52,-16 - 354: -51,22 - 355: -51,20 - 356: -53,22 - 357: -53,20 - 360: -45,33 - 361: -44,33 - 362: -43,33 - 363: -44,32 - 364: -43,32 - 365: -45,32 - 366: -45,31 - 367: -44,31 - 368: -43,31 - 369: -51,33 - 370: -51,31 - 371: -52,29 - 372: -51,29 - 373: -52,35 - 374: -51,35 - 380: -57,-2 - 402: -60,-55 - 403: 59,29 - 404: 60,29 - 405: 68,-4 - 406: 68,-6 - 407: 68,-12 - 408: 68,-14 - 451: 76,36 - 452: 68,36 - 453: 63,31 - 454: 29,42 - 555: -13,74 - 556: -14,74 - 557: -22,74 - 558: -23,74 - 563: -38,42 - 603: -36,-101 - 604: 67,-16 - 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 - 3558: -58,-19 - 3559: -18,69 - 3606: 6,-86 - 3618: -53,43 - 3619: -53,42 - 3620: -50,46 - 3659: 68,-29 - 3664: 68,-28 - 3665: 69,-29 - 3666: 67,-29 - 3667: 68,-30 - 3668: 51,-83 - 3669: 51,-90 - 3752: -77,-32 - 3757: -64,-46 - 3845: -67,-43 - 3863: -47,-40 - 3865: 1,-3 - 3866: 2,-3 - 3867: 3,-3 - - node: - color: '#60A5D9D6' - id: BotGreyscale - decals: - 3406: -25,-60 + 15: 10,22 + 16: 10,21 + 17: 10,20 + 159: 68,-46 + 160: 68,-47 + 302: -59,-74 + 303: -59,-72 + 304: -59,-80 + 305: -59,-82 + 307: -38,23 + 308: -39,23 + 309: -41,23 + 310: -42,23 + 311: -44,23 + 312: -45,23 + 313: -45,22 + 314: -44,22 + 315: -41,22 + 316: -42,22 + 317: -39,22 + 318: -45,20 + 319: -44,20 + 320: -42,20 + 321: -41,20 + 322: -38,20 + 323: -38,19 + 324: -41,19 + 325: -42,19 + 326: -45,19 + 327: -44,19 + 328: -39,20 + 329: -39,19 + 330: -38,22 + 331: 52,-16 + 332: -51,22 + 333: -51,20 + 334: -53,22 + 335: -53,20 + 338: -45,33 + 339: -44,33 + 340: -43,33 + 341: -44,32 + 342: -43,32 + 343: -45,32 + 344: -45,31 + 345: -44,31 + 346: -43,31 + 347: -51,33 + 348: -51,31 + 349: -52,29 + 350: -51,29 + 351: -52,35 + 352: -51,35 + 358: -57,-2 + 380: -60,-55 + 381: 59,29 + 382: 60,29 + 383: 68,-4 + 384: 68,-6 + 385: 68,-12 + 386: 68,-14 + 429: 76,36 + 430: 68,36 + 431: 63,31 + 432: 29,42 + 533: -13,74 + 534: -14,74 + 535: -22,74 + 536: -23,74 + 541: -38,42 + 581: -36,-101 + 582: 67,-16 + 2862: 73,-37 + 2863: 73,-36 + 2864: 72,-36 + 2865: 73,-35 + 2931: -52,-59 + 2952: 68,-69 + 2967: 69,-46 + 2968: 69,-47 + 2969: 70,-46 + 2970: 70,-47 + 3141: -47,-41 + 3146: -12,-14 + 3280: 33,-83 + 3281: 33,-90 + 3282: 30,-95 + 3283: 48,-95 + 3284: 45,-90 + 3285: 45,-83 + 3384: -58,-19 + 3385: -18,69 + 3432: 6,-86 + 3444: -53,43 + 3445: -53,42 + 3446: -50,46 + 3465: 68,-29 + 3470: 68,-28 + 3471: 69,-29 + 3472: 67,-29 + 3473: 68,-30 + 3474: 51,-83 + 3475: 51,-90 + 3558: -77,-32 + 3563: -64,-46 + 3651: -67,-43 + 3669: -47,-40 + 3671: 1,-3 + 3672: 2,-3 + 3673: 3,-3 - node: color: '#FFFFFFFF' id: BotLeft decals: - 206: -19,3 - 207: -21,1 - 3027: 72,-37 - 3660: 67,-28 - 3661: 69,-30 - 3662: 67,-30 - 3663: 69,-28 - 3854: -69,-45 - 3899: -71,-45 + 191: -19,3 + 192: -21,1 + 2860: 72,-37 + 3466: 67,-28 + 3467: 69,-30 + 3468: 67,-30 + 3469: 69,-28 + 3660: -69,-45 + 3705: -71,-45 - node: color: '#FFFFFFFF' id: BotRight decals: - 204: -21,3 - 205: -19,1 - 3028: 72,-35 - 3855: -69,-45 - 3900: -71,-45 + 189: -21,3 + 190: -19,1 + 2861: 72,-35 + 3661: -69,-45 + 3706: -71,-45 - node: color: '#FFFFFFFF' id: Box decals: - 199: -20,3 - 200: -20,2 - 201: -21,2 - 202: -19,2 - 203: -20,1 - 3607: 7,-83 + 184: -20,3 + 185: -20,2 + 186: -21,2 + 187: -19,2 + 188: -20,1 + 3433: 7,-83 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 3906: 10,23 - 3907: 11,23 + 3712: 10,23 + 3713: 11,23 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNe decals: - 3337: 30,4 + 3166: 30,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNw decals: - 3336: 28,4 + 3165: 28,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerSe decals: - 3335: 30,-1 + 3164: 30,-1 - node: color: '#D4D4D4D6' id: BrickTileSteelEndS decals: - 3332: 28,-3 + 3161: 28,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNe decals: - 3369: 20,-3 + 3198: 20,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNw decals: - 3371: 27,-3 + 3200: 27,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSe decals: - 3343: 28,-1 - 3370: 20,4 + 3172: 28,-1 + 3199: 20,4 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSw decals: - 3368: 27,4 + 3197: 27,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineE decals: - 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 + 3162: 28,-2 + 3167: 30,3 + 3168: 30,2 + 3169: 30,1 + 3170: 30,0 + 3185: 20,3 + 3186: 20,2 + 3187: 20,1 + 3188: 20,0 + 3189: 20,-1 + 3190: 20,-2 - node: color: '#D4D4D4D6' id: BrickTileSteelLineN decals: - 3342: 29,4 - 3362: 21,-3 - 3363: 22,-3 - 3364: 23,-3 - 3365: 24,-3 - 3366: 25,-3 - 3367: 26,-3 + 3171: 29,4 + 3191: 21,-3 + 3192: 22,-3 + 3193: 23,-3 + 3194: 24,-3 + 3195: 25,-3 + 3196: 26,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelLineS decals: - 3334: 29,-1 - 3350: 26,4 - 3351: 25,4 - 3352: 24,4 - 3353: 23,4 - 3354: 22,4 - 3355: 21,4 + 3163: 29,-1 + 3179: 26,4 + 3180: 25,4 + 3181: 24,4 + 3182: 23,4 + 3183: 22,4 + 3184: 21,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineW decals: - 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 + 3155: 28,-2 + 3156: 28,3 + 3157: 28,2 + 3158: 28,1 + 3159: 28,0 + 3160: 28,-1 + 3173: 27,3 + 3174: 27,2 + 3175: 27,1 + 3176: 27,0 + 3177: 27,-1 + 3178: 27,-2 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3565: 9,-21 + 3391: 9,-21 - node: color: '#3AB3DAFF' id: BrickTileWhiteBox decals: - 3436: -19,-47 + 3262: -19,-47 - node: color: '#3C44AAFF' id: BrickTileWhiteBox decals: - 3433: -19,-49 + 3259: -19,-49 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3561: 9,-23 + 3387: 9,-23 - node: color: '#80C71FFF' id: BrickTileWhiteBox decals: - 3435: -19,-48 + 3261: -19,-48 - node: color: '#835432FF' id: BrickTileWhiteBox decals: - 3431: -22,-47 + 3257: -22,-47 - node: color: '#9D9D97FF' id: BrickTileWhiteBox decals: - 3434: -19,-46 + 3260: -19,-46 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3563: 11,-23 + 3389: 11,-23 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3564: 8,-21 + 3390: 8,-21 - node: color: '#B02E26FF' id: BrickTileWhiteBox decals: - 3432: -22,-49 + 3258: -22,-49 - node: color: '#C74EBDFF' id: BrickTileWhiteBox decals: - 3430: -22,-46 + 3256: -22,-46 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3560: 8,-23 + 3386: 8,-23 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3566: 10,-21 + 3392: 10,-21 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3562: 10,-23 + 3388: 10,-23 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3567: 11,-21 + 3393: 11,-21 - node: color: '#FEAC3DFF' id: BrickTileWhiteBox decals: - 3437: -22,-48 + 3263: -22,-48 - node: color: '#FFA5180C' id: BrickTileWhiteBox decals: - 3776: -42,0 + 3582: -42,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 3568: 12,-20 + 3394: 12,-20 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteCornerNe decals: - 4006: 26,3 + 3812: 26,3 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteCornerNe + decals: + 4111: 4,-60 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteCornerNe + decals: + 4057: 1,-62 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 3571: 7,-20 + 3397: 7,-20 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 4007: 21,3 + 3813: 21,3 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteCornerNw + decals: + 4110: 2,-60 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteCornerNw + decals: + 4056: 5,-62 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 3569: 12,-24 + 3395: 12,-24 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 4004: 26,-2 + 3810: 26,-2 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteCornerSe + decals: + 4054: 1,-59 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 3570: 7,-24 + 3396: 7,-24 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 4005: 21,-2 + 3811: 21,-2 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteCornerSw + decals: + 4055: 5,-59 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteEndS + decals: + 4108: 2,-61 + 4109: 4,-61 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteInnerNe + decals: + 4067: 1,-63 + 4068: 0,-62 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteInnerNw + decals: + 4069: 5,-63 + 4070: 6,-62 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteInnerSe + decals: + 4115: 2,-60 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteInnerSe + decals: + 4066: 0,-59 + 4077: 1,-57 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteInnerSw + decals: + 4114: 4,-60 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteInnerSw + decals: + 4065: 6,-59 + 4076: 5,-57 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3576: 12,-21 - 3577: 12,-22 - 3578: 12,-23 + 3402: 12,-21 + 3403: 12,-22 + 3404: 12,-23 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 4008: 26,2 - 4009: 26,1 - 4010: 26,0 - 4011: 26,-1 + 3814: 26,2 + 3815: 26,1 + 3816: 26,0 + 3817: 26,-1 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteLineE + decals: + 4061: 0,-60 + 4062: 0,-61 + 4073: 1,-58 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 3572: 8,-20 - 3573: 9,-20 - 3574: 10,-20 - 3575: 11,-20 + 3398: 8,-20 + 3399: 9,-20 + 3400: 10,-20 + 3401: 11,-20 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteLineN decals: - 4000: 22,3 - 4001: 23,3 - 4002: 24,3 - 4003: 25,3 + 3806: 22,3 + 3807: 23,3 + 3808: 24,3 + 3809: 25,3 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteLineN + decals: + 4112: 3,-60 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteLineN + decals: + 4058: 2,-63 + 4059: 3,-63 + 4060: 4,-63 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 3582: 8,-24 - 3583: 9,-24 - 3584: 10,-24 - 3585: 11,-24 + 3408: 8,-24 + 3409: 9,-24 + 3410: 10,-24 + 3411: 11,-24 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 4016: 22,-2 - 4017: 23,-2 - 4018: 24,-2 - 4019: 25,-2 + 3822: 22,-2 + 3823: 23,-2 + 3824: 24,-2 + 3825: 25,-2 + - node: + color: '#52B4E9D9' + id: BrickTileWhiteLineS + decals: + 4113: 3,-60 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteLineS + decals: + 4071: 3,-57 + 4074: 2,-57 + 4075: 4,-57 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3579: 7,-21 - 3580: 7,-22 - 3581: 7,-23 + 3405: 7,-21 + 3406: 7,-22 + 3407: 7,-23 - node: cleanable: True color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 4012: 21,2 - 4013: 21,1 - 4014: 21,0 - 4015: 21,-1 + 3818: 21,2 + 3819: 21,1 + 3820: 21,0 + 3821: 21,-1 + - node: + color: '#52B4E9DC' + id: BrickTileWhiteLineW + decals: + 4063: 6,-60 + 4064: 6,-61 + 4072: 5,-58 - node: color: '#FFFFFFFF' id: Busha1 decals: - 502: -8.396269,51.324306 - 503: -8.978583,51.511806 - 2938: 5.324413,-0.030564666 + 480: -8.396269,51.324306 + 481: -8.978583,51.511806 + 2772: 5.324413,-0.030564666 - node: color: '#FFFFFFFF' id: Busha2 decals: - 504: -9.822333,51.261806 - 505: -10.681708,51.293056 - 506: -11.416083,51.40243 + 482: -9.822333,51.261806 + 483: -10.681708,51.293056 + 484: -11.416083,51.40243 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 553: -6.4137044,52.65711 - 554: -7.6637044,52.519527 + 531: -6.4137044,52.65711 + 532: -7.6637044,52.519527 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 508: -6.1305466,49.392605 - 509: -5.6149216,48.955105 - 510: -5.5992966,48.06448 - 511: -5.6305466,48.47073 + 486: -6.1305466,49.392605 + 487: -5.6149216,48.955105 + 488: -5.5992966,48.06448 + 489: -5.6305466,48.47073 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 507: -6.5836716,49.455547 + 485: -6.5836716,49.455547 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 379: -4.6178575,3.9941478 + 357: -4.6178575,3.9941478 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 3025: -11.957823,6.4384537 - 3026: -4.0984473,3.9853287 + 2858: -11.957823,6.4384537 + 2859: -4.0984473,3.9853287 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 494: -4.994979,50.827797 - 495: -5.541854,51.452797 - 496: -5.448104,50.905922 - 497: -6.7868943,51.465733 + 472: -4.994979,50.827797 + 473: -5.541854,51.452797 + 474: -5.448104,50.905922 + 475: -6.7868943,51.465733 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 498: -6.7243943,50.903233 - 499: -6.7400193,50.309483 - 500: -7.2868943,51.575108 + 476: -6.7243943,50.903233 + 477: -6.7400193,50.309483 + 478: -7.2868943,51.575108 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 501: -7.8962693,51.361984 + 479: -7.8962693,51.361984 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 455: -4.1263514,50.81898 + 433: -4.1263514,50.81898 - node: color: '#FFFFFFFF' id: Caution decals: - 3084: 16.006746,36.692352 + 2917: 16.006746,36.692352 - node: color: '#334E6DC8' id: CheckerNESW decals: - 27: 32,-26 - 400: 32,-25 + 12: 32,-26 + 378: 32,-25 - node: color: '#D381C9C7' id: CheckerNESW decals: - 169: 44,-37 - 170: 45,-37 - 171: 39,-37 - 172: 39,-38 - 173: 39,-39 + 154: 44,-37 + 155: 45,-37 + 156: 39,-37 + 157: 39,-38 + 158: 39,-39 - node: color: '#D381C9FF' id: CheckerNESW decals: - 152: 40,-37 - 153: 41,-37 - 154: 40,-38 - 155: 41,-38 - 156: 40,-39 - 157: 41,-39 - 158: 42,-37 - 159: 42,-38 - 160: 42,-39 - 161: 43,-37 - 162: 44,-38 - 163: 43,-37 - 164: 44,-39 - 165: 45,-39 - 166: 45,-38 - 167: 43,-38 - 168: 43,-39 + 137: 40,-37 + 138: 41,-37 + 139: 40,-38 + 140: 41,-38 + 141: 40,-39 + 142: 41,-39 + 143: 42,-37 + 144: 42,-38 + 145: 42,-39 + 146: 43,-37 + 147: 44,-38 + 148: 43,-37 + 149: 44,-39 + 150: 45,-39 + 151: 45,-38 + 152: 43,-38 + 153: 43,-39 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 26: 18,-26 - 401: 18,-25 + 11: 18,-26 + 379: 18,-25 - node: color: '#DE3A3A53' id: CheckerNWSE decals: - 3110: 29,32 + 2943: 29,32 - node: color: '#DE3A3A5A' id: CheckerNWSE decals: - 133: 26,31 - 134: 27,31 - 135: 28,31 - 136: 29,31 - 137: 30,31 - 138: 31,31 - 139: 32,31 - 140: 30,30 - 141: 29,30 - 142: 28,30 - 143: 30,29 - 144: 29,29 - 145: 28,29 - 146: 28,28 - 147: 29,28 - 148: 30,28 - 149: 30,27 - 150: 29,27 - 151: 28,27 + 118: 26,31 + 119: 27,31 + 120: 28,31 + 121: 29,31 + 122: 30,31 + 123: 31,31 + 124: 32,31 + 125: 30,30 + 126: 29,30 + 127: 28,30 + 128: 30,29 + 129: 29,29 + 130: 28,29 + 131: 28,28 + 132: 29,28 + 133: 30,28 + 134: 30,27 + 135: 29,27 + 136: 28,27 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 24: -21,-83 - 25: -21,-82 + 9: -21,-83 + 10: -21,-82 - node: color: '#FFFFFFFF' id: Delivery decals: - 3868: 4,-3 - 3898: -70,-45 + 3674: 4,-3 + 3704: -70,-45 - node: cleanable: True color: '#DE3A3A96' id: Diablo decals: - 389: -43,-72 + 367: -43,-72 - node: cleanable: True color: '#0F267C34' id: DiagonalCheckerBOverlay decals: - 3821: -25,-33 - 3822: -25,-34 - 3823: -24,-34 - 3824: -24,-33 - 3825: -26,-33 - 3826: -26,-34 - 3827: -26,-32 - 3828: -25,-32 - 3829: -24,-32 - 3830: -23,-32 - 3831: -23,-33 - 3832: -23,-34 - 3833: -23,-36 - 3834: -23,-35 - 3835: -24,-35 - 3836: -24,-36 - 3837: -24,-37 - 3838: -23,-37 - 3839: -25,-37 - 3840: -26,-37 - 3841: -26,-36 - 3842: -25,-36 - 3843: -25,-35 - 3844: -26,-35 + 3627: -25,-33 + 3628: -25,-34 + 3629: -24,-34 + 3630: -24,-33 + 3631: -26,-33 + 3632: -26,-34 + 3633: -26,-32 + 3634: -25,-32 + 3635: -24,-32 + 3636: -23,-32 + 3637: -23,-33 + 3638: -23,-34 + 3639: -23,-36 + 3640: -23,-35 + 3641: -24,-35 + 3642: -24,-36 + 3643: -24,-37 + 3644: -23,-37 + 3645: -25,-37 + 3646: -26,-37 + 3647: -26,-36 + 3648: -25,-36 + 3649: -25,-35 + 3650: -26,-35 - node: color: '#923A3A93' id: DiagonalCheckerBOverlay decals: - 3672: -1,17 - 3673: -1,18 - 3674: -2,18 - 3675: -2,19 - 3676: -2,20 - 3677: -1,21 - 3678: -1,20 - 3679: -1,19 - 3680: 0,21 - 3681: 0,20 - 3682: 0,18 - 3683: 0,19 - 3684: 0,17 - 3685: 0,16 - 3686: 2,16 - 3687: 1,16 - 3688: 1,17 - 3689: 2,17 - 3690: 2,18 - 3691: 1,18 - 3692: 1,20 - 3693: 1,19 - 3694: 2,19 - 3695: 2,20 - 3696: 2,21 - 3697: 1,21 + 3478: -1,17 + 3479: -1,18 + 3480: -2,18 + 3481: -2,19 + 3482: -2,20 + 3483: -1,21 + 3484: -1,20 + 3485: -1,19 + 3486: 0,21 + 3487: 0,20 + 3488: 0,18 + 3489: 0,19 + 3490: 0,17 + 3491: 0,16 + 3492: 2,16 + 3493: 1,16 + 3494: 1,17 + 3495: 2,17 + 3496: 2,18 + 3497: 1,18 + 3498: 1,20 + 3499: 1,19 + 3500: 2,19 + 3501: 2,20 + 3502: 2,21 + 3503: 1,21 - node: color: '#983A3A93' id: DiagonalCheckerBOverlay decals: - 3698: -1,16 - 3699: -2,21 + 3504: -1,16 + 3505: -2,21 - node: cleanable: True color: '#D4D4D496' id: Dirt decals: - 67: -5,-30 - 68: -5,-30 + 52: -5,-30 + 53: -5,-30 - node: color: '#FFFFFFFF' id: Dirt decals: - 36: 5,-27 - 39: 20,-14 - 43: 26,-6 + 21: 5,-27 + 24: 20,-14 + 28: 26,-6 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 102: 52,16 - 119: 53,22 - 120: 60,18 - 121: 62,12 - 122: 62,10 - 198: 68,-45 - 309: -39,-80 - 310: -48,-80 + 87: 52,16 + 104: 53,22 + 105: 60,18 + 106: 62,12 + 107: 62,10 + 183: 68,-45 + 287: -39,-80 + 288: -48,-80 - node: cleanable: True color: '#D4D4D496' id: DirtHeavy decals: - 65: -8,-27 - 66: -9,-27 - 69: -5,-12 - 70: 8,-1 - 71: 26,7 - 72: 25,12 - 77: 20,22 - 78: 15,20 - 79: 11,21 - 80: 11,20 - 81: 11,20 - 82: 11,22 - 83: 21,23 - 84: 20,20 - 85: 21,23 - 86: 21,22 - 87: 22,22 - 88: 33,15 - 218: -8,-47 - 220: -5,-54 - 221: 1,-54 - 222: -8,-67 - 223: -8,-67 - 224: -6,-65 - 225: -6,-65 + 50: -8,-27 + 51: -9,-27 + 54: -5,-12 + 55: 8,-1 + 56: 26,7 + 57: 25,12 + 62: 20,22 + 63: 15,20 + 64: 11,21 + 65: 11,20 + 66: 11,20 + 67: 11,22 + 68: 21,23 + 69: 20,20 + 70: 21,23 + 71: 21,22 + 72: 22,22 + 73: 33,15 + 203: -8,-47 + 205: -5,-54 + 206: 1,-54 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 47: 5,14 - 177: 57,-13 - 179: 61,-12 - 209: -25,-10 - 210: -21,-18 - 211: -26,-23 - 212: -25,-23 + 32: 5,14 + 162: 57,-13 + 164: 61,-12 + 194: -25,-10 + 195: -21,-18 + 196: -26,-23 + 197: -25,-23 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 49: 7,16 - 51: 6,7 - 55: 1,-1 - 56: 2,-1 - 57: 9,1 - 58: -4,2 - 59: -6,1 - 60: -8,2 - 62: -8,-1 - 63: -9,2 - 99: 56,15 - 100: 54,15 - 101: 53,15 - 103: 47,11 - 104: 48,9 - 105: 47,9 - 106: 48,8 - 123: 61,13 - 124: 60,15 - 125: 61,23 - 126: 63,21 - 127: 52,21 - 128: 47,14 - 129: 46,4 - 130: 49,4 - 183: 49,-39 - 188: 40,-39 - 189: 40,-39 - 190: 39,-37 - 192: 61,-56 - 193: 68,-48 - 194: 68,-48 - 195: 68,-48 - 196: 71,-47 - 197: 68,-46 - 279: -38,-82 - 280: -37,-83 - 281: -38,-83 - 317: -55,-75 - 318: -56,-76 - 382: -46,7 - 587: 64,-9 - 588: 63,-11 - 589: 63,-11 - 590: -9,5 - 595: -16,39 - 599: 0,46 - 600: 0,56 + 34: 7,16 + 36: 6,7 + 40: 1,-1 + 41: 2,-1 + 42: 9,1 + 43: -4,2 + 44: -6,1 + 45: -8,2 + 47: -8,-1 + 48: -9,2 + 84: 56,15 + 85: 54,15 + 86: 53,15 + 88: 47,11 + 89: 48,9 + 90: 47,9 + 91: 48,8 + 108: 61,13 + 109: 60,15 + 110: 61,23 + 111: 63,21 + 112: 52,21 + 113: 47,14 + 114: 46,4 + 115: 49,4 + 168: 49,-39 + 173: 40,-39 + 174: 40,-39 + 175: 39,-37 + 177: 61,-56 + 178: 68,-48 + 179: 68,-48 + 180: 68,-48 + 181: 71,-47 + 182: 68,-46 + 257: -38,-82 + 258: -37,-83 + 259: -38,-83 + 295: -55,-75 + 296: -56,-76 + 360: -46,7 + 565: 64,-9 + 566: 63,-11 + 567: 63,-11 + 568: -9,5 + 573: -16,39 + 577: 0,46 + 578: 0,56 - node: cleanable: True color: '#D4D4D496' id: DirtLight decals: - 73: 23,22 - 74: 24,21 - 217: 10,-43 + 58: 23,22 + 59: 24,21 + 202: 10,-43 - node: cleanable: True color: '#D4D4D4D6' id: DirtLight decals: - 3372: 29,3 - 3373: 29,3 + 3201: 29,3 + 3202: 29,3 - node: color: '#FFFFFFFF' id: DirtLight decals: - 38: 17,-12 - 41: 27,-13 - 42: 27,-13 - 44: 17,0 - 45: 17,0 - 46: 6,15 - 178: 53,-12 - 208: -25,-12 - 215: -27,-24 - 216: -27,-22 + 23: 17,-12 + 26: 27,-13 + 27: 27,-13 + 29: 17,0 + 30: 17,0 + 31: 6,15 + 163: 53,-12 + 193: -25,-12 + 200: -27,-24 + 201: -27,-22 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 50: 5,16 - 53: 1,2 - 61: -6,-1 - 89: 57,9 - 90: 56,9 - 91: 57,10 - 92: 57,10 - 96: 60,9 - 97: 60,8 - 98: 57,15 - 107: 45,6 - 108: 54,8 - 109: 54,8 - 110: 53,8 - 115: 47,20 - 116: 50,23 - 117: 47,23 - 118: 47,23 - 132: 29,16 - 180: 56,-46 - 184: 44,-38 - 185: 45,-38 - 186: 45,-38 - 191: 64,-54 - 282: -38,-83 - 283: -39,-83 - 284: -41,-81 - 285: -41,-83 - 286: -41,-83 - 305: -42,-68 - 306: -43,-77 - 307: -42,-77 - 315: -54,-80 - 316: -53,-81 - 381: -55,-8 - 591: 3,5 - 592: 4,5 - 593: 4,5 - 596: -18,46 - 597: -16,46 - 601: -18,50 - 602: -18,50 + 35: 5,16 + 38: 1,2 + 46: -6,-1 + 74: 57,9 + 75: 56,9 + 76: 57,10 + 77: 57,10 + 81: 60,9 + 82: 60,8 + 83: 57,15 + 92: 45,6 + 93: 54,8 + 94: 54,8 + 95: 53,8 + 100: 47,20 + 101: 50,23 + 102: 47,23 + 103: 47,23 + 117: 29,16 + 165: 56,-46 + 169: 44,-38 + 170: 45,-38 + 171: 45,-38 + 176: 64,-54 + 260: -38,-83 + 261: -39,-83 + 262: -41,-81 + 263: -41,-83 + 264: -41,-83 + 283: -42,-68 + 284: -43,-77 + 285: -42,-77 + 293: -54,-80 + 294: -53,-81 + 359: -55,-8 + 569: 3,5 + 570: 4,5 + 571: 4,5 + 574: -18,46 + 575: -16,46 + 579: -18,50 + 580: -18,50 - node: cleanable: True color: '#D4D4D496' id: DirtMedium decals: - 64: -5,-27 - 75: 21,21 - 76: 20,21 - 219: -8,-47 - 226: -7,-65 - 227: -7,-65 - 228: -6,-67 + 49: -5,-27 + 60: 21,21 + 61: 20,21 + 204: -8,-47 - node: cleanable: True color: '#D4D4D4D6' id: DirtMedium decals: - 3374: 30,-1 - 3375: 27,-2 + 3203: 30,-1 + 3204: 27,-2 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 37: 21,-11 - 40: 27,-11 - 48: 6,14 - 176: 58,-12 - 213: -26,-24 - 214: -25,-22 + 22: 21,-11 + 25: 27,-11 + 33: 6,14 + 161: 58,-12 + 198: -26,-24 + 199: -25,-22 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 52: 1,5 - 54: 0,0 - 93: 56,10 - 94: 59,10 - 95: 60,10 - 111: 53,6 - 112: 49,20 - 113: 49,21 - 114: 46,21 - 131: 29,20 - 181: 51,-45 - 182: 49,-47 - 187: 42,-39 - 287: -41,-83 - 288: -41,-83 - 289: -41,-83 - 290: -40,-82 - 291: -47,-74 - 292: -46,-75 - 293: -46,-76 - 294: -43,-71 - 295: -42,-72 - 296: -42,-72 - 297: -42,-72 - 298: -42,-72 - 299: -42,-72 - 300: -42,-72 - 301: -42,-72 - 302: -42,-72 - 303: -41,-73 - 304: -43,-73 - 308: -41,-77 - 311: -48,-78 - 312: -47,-78 - 313: -55,-79 - 314: -56,-80 - 319: -56,-72 - 320: -55,-73 - 321: -57,-77 - 322: -57,-78 - 323: -51,-77 - 594: -16,31 - 598: -8,45 + 37: 1,5 + 39: 0,0 + 78: 56,10 + 79: 59,10 + 80: 60,10 + 96: 53,6 + 97: 49,20 + 98: 49,21 + 99: 46,21 + 116: 29,20 + 166: 51,-45 + 167: 49,-47 + 172: 42,-39 + 265: -41,-83 + 266: -41,-83 + 267: -41,-83 + 268: -40,-82 + 269: -47,-74 + 270: -46,-75 + 271: -46,-76 + 272: -43,-71 + 273: -42,-72 + 274: -42,-72 + 275: -42,-72 + 276: -42,-72 + 277: -42,-72 + 278: -42,-72 + 279: -42,-72 + 280: -42,-72 + 281: -41,-73 + 282: -43,-73 + 286: -41,-77 + 289: -48,-78 + 290: -47,-78 + 291: -55,-79 + 292: -56,-80 + 297: -56,-72 + 298: -55,-73 + 299: -57,-77 + 300: -57,-78 + 301: -51,-77 + 572: -16,31 + 576: -8,45 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 3748: -4.2428155,17.233944 - 3749: -8.086565,18.640194 - 4039: 31.317625,-40.694973 + 3554: -4.2428155,17.233944 + 3555: -8.086565,18.640194 + 3845: 31.317625,-40.694973 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 4042: 5.23739,0.5862826 + 3848: 5.23739,0.5862826 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 19: 23,-20 - 3750: -8.649066,17.499569 - 3751: -5.2115655,18.499569 - 4041: 6.83114,0.4612826 + 4: 23,-20 + 3556: -8.649066,17.499569 + 3557: -5.2115655,18.499569 + 3847: 6.83114,0.4612826 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 18: 22,-20 - 464: -7.9438224,54.971848 - 465: -7.7875724,53.628098 - 466: -7.7250724,54.393723 - 467: -5.9438224,54.393723 - 468: -6.4438224,53.815598 - 469: -6.0844474,53.346848 - 470: -9.631323,52.971848 - 471: -10.225073,51.006943 - 472: -9.959448,51.163193 - 473: -11.115698,50.303818 - 474: -7.3188224,49.847054 - 475: -6.0531974,48.972054 - 476: -7.7406974,47.972054 - 477: -4.0050426,49.72508 - 478: -4.3175426,48.72508 - 479: -3.1144176,47.88133 - 480: -5.0675426,53.662476 - 481: -4.1456676,53.1781 - 4031: 14.281914,-83.73461 - 4032: 32.40751,-85.70861 - 4040: 10.92489,0.14878261 + 3: 22,-20 + 442: -7.9438224,54.971848 + 443: -7.7875724,53.628098 + 444: -7.7250724,54.393723 + 445: -5.9438224,54.393723 + 446: -6.4438224,53.815598 + 447: -6.0844474,53.346848 + 448: -9.631323,52.971848 + 449: -10.225073,51.006943 + 450: -9.959448,51.163193 + 451: -11.115698,50.303818 + 452: -7.3188224,49.847054 + 453: -6.0531974,48.972054 + 454: -7.7406974,47.972054 + 455: -4.0050426,49.72508 + 456: -4.3175426,48.72508 + 457: -3.1144176,47.88133 + 458: -5.0675426,53.662476 + 459: -4.1456676,53.1781 + 3837: 14.281914,-83.73461 + 3838: 32.40751,-85.70861 + 3846: 10.92489,0.14878261 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 3381: -40.519615,3.8355665 - 3382: -41.269615,3.0543165 - 3383: -40.25399,5.8355665 - 4038: 31.770752,-40.366848 + 3210: -40.519615,3.8355665 + 3211: -41.269615,3.0543165 + 3212: -40.25399,5.8355665 + 3844: 31.770752,-40.366848 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 21: 26,-20 - 22: 29,-20 - 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 - 4047: 66.11165,-9.076797 - 4048: 60.79915,-9.326797 + 6: 26,-20 + 7: 29,-20 + 3221: -35.06649,3.0386915 + 3222: -36.59774,5.4761915 + 3223: -32.2259,5.128909 + 3224: -32.647774,3.019534 + 3225: -31.054026,2.972659 + 3853: 66.11165,-9.076797 + 3854: 60.79915,-9.326797 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 4043: 10.26864,0.6175326 + 3849: 10.26864,0.6175326 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 20: 21,-20 - 23: 28,-20 - 4044: 53.855778,-8.686172 - 4045: 53.418278,-9.420547 - 4046: 66.06477,-8.279921 + 5: 21,-20 + 8: 28,-20 + 3850: 53.855778,-8.686172 + 3851: 53.418278,-9.420547 + 3852: 66.06477,-8.279921 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 487: -3.198104,50.273075 - 488: -5.010604,52.366825 - 489: -8.291855,53.364235 - 490: -6.135604,55.832985 - 491: -10.65123,52.966118 - 492: -7.307479,50.772125 - 493: -9.46373,48.678375 - 4029: 15.688164,-83.59399 - 4030: 14.391289,-84.64086 - 4037: 45.66365,-87.620224 - 4049: 49.854713,-6.2645936 - 4050: 49.979713,-11.498969 + 465: -3.198104,50.273075 + 466: -5.010604,52.366825 + 467: -8.291855,53.364235 + 468: -6.135604,55.832985 + 469: -10.65123,52.966118 + 470: -7.307479,50.772125 + 471: -9.46373,48.678375 + 3835: 15.688164,-83.59399 + 3836: 14.391289,-84.64086 + 3843: 45.66365,-87.620224 + 3855: 49.854713,-6.2645936 + 3856: 49.979713,-11.498969 - node: color: '#2B3F4A22' id: FullTileOverlayGreyscale decals: - 3817: -31,-4 - 3818: -29,-3 - 3819: -31,-7 + 3623: -31,-4 + 3624: -29,-3 + 3625: -31,-7 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 576: 48,48 - 577: 47,48 - 578: 46,48 - 579: 45,48 - 580: 48,50 - 581: 47,50 - 582: 48,46 - 583: 47,46 - 584: 46,46 - 585: 46,44 - 586: 45,44 + 554: 48,48 + 555: 47,48 + 556: 46,48 + 557: 45,48 + 558: 48,50 + 559: 47,50 + 560: 48,46 + 561: 47,46 + 562: 46,46 + 563: 46,44 + 564: 45,44 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 564: 48,49 - 565: 47,49 - 566: 46,49 - 567: 45,49 - 568: 49,47 - 569: 48,47 - 570: 46,47 - 571: 45,47 - 572: 49,45 - 573: 48,45 - 574: 46,45 - 575: 45,45 + 542: 48,49 + 543: 47,49 + 544: 46,49 + 545: 45,49 + 546: 49,47 + 547: 48,47 + 548: 46,47 + 549: 45,47 + 550: 49,45 + 551: 48,45 + 552: 46,45 + 553: 45,45 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 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 - 3730: -8.570941,18.515194 - 3731: -7.4146905,18.405819 - 3732: -7.0709405,17.405819 - 3733: -7.9771905,18.515194 - 3734: -8.649066,17.233944 - 3735: -5.2115655,17.890194 - 3736: -5.6959405,17.249569 - 3737: -4.1803155,17.265194 - 3738: -5.2115655,18.671444 + 3205: -40.269615,3.5386915 + 3206: -41.50399,4.0230665 + 3226: -30.3509,4.378909 + 3227: -29.50715,3.753909 + 3228: -30.429026,5.613284 + 3229: -31.5384,5.925784 + 3230: -32.3509,5.816409 + 3231: -29.6634,5.738284 + 3232: -32.710274,3.2350059 + 3536: -8.570941,18.515194 + 3537: -7.4146905,18.405819 + 3538: -7.0709405,17.405819 + 3539: -7.9771905,18.515194 + 3540: -8.649066,17.233944 + 3541: -5.2115655,17.890194 + 3542: -5.6959405,17.249569 + 3543: -4.1803155,17.265194 + 3544: -5.2115655,18.671444 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 409: 12,54 - 410: 11.417037,54.859276 - 411: 8.745162,55.046776 - 412: 11.057662,53.3749 - 413: 10.995162,55.78115 - 414: 9.995162,55.1249 - 415: 12.135787,53.1874 - 416: 11.073287,52.3749 - 417: 9.463912,52.359276 - 418: 8.979537,54.046776 - 419: 6.2227497,52.7499 - 420: 7.0196247,54.3124 - 421: 7.2539997,55.3749 - 422: 8.675875,53.1874 + 387: 12,54 + 388: 11.417037,54.859276 + 389: 8.745162,55.046776 + 390: 11.057662,53.3749 + 391: 10.995162,55.78115 + 392: 9.995162,55.1249 + 393: 12.135787,53.1874 + 394: 11.073287,52.3749 + 395: 9.463912,52.359276 + 396: 8.979537,54.046776 + 397: 6.2227497,52.7499 + 398: 7.0196247,54.3124 + 399: 7.2539997,55.3749 + 400: 8.675875,53.1874 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 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 + 3213: -36.175865,3.0074415 + 3214: -35.144615,3.8199415 + 3215: -35.394615,4.5855665 + 3216: -34.94149,4.6636915 + 3217: -36.59774,5.5230665 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3024: -11.879698,6.0478287 - 4028: 14.491955,-83.73193 + 2857: -11.879698,6.0478287 + 3834: 14.491955,-83.73193 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 4027: 15.3420315,-83.51318 + 3833: 15.3420315,-83.51318 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 3739: -5.8053155,18.655819 - 3740: -7.0553155,18.890194 - 3741: -7.2584405,17.108944 - 3742: -7.2740655,17.937069 - 3743: -8.633441,18.968319 - 3744: -5.8834405,17.124569 - 3745: -5.9303155,19.077694 - 3746: -4.1021905,17.968319 - 3747: -4.9615655,17.671444 + 3545: -5.8053155,18.655819 + 3546: -7.0553155,18.890194 + 3547: -7.2584405,17.108944 + 3548: -7.2740655,17.937069 + 3549: -8.633441,18.968319 + 3550: -5.8834405,17.124569 + 3551: -5.9303155,19.077694 + 3552: -4.1021905,17.968319 + 3553: -4.9615655,17.671444 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 423: 11.441196,54.4999 - 424: 12.534946,54.03115 - 425: 12.050571,54.796776 - 426: 12.363071,54.359276 - 427: 12.394321,52.890526 - 428: 11.706821,52.28115 - 429: 11.316196,52.078026 - 430: 10.800571,53.296776 - 431: 11.441196,53.921776 - 432: 10.675571,55.84365 - 433: 10.012899,54.390526 - 434: 9.716024,53.265526 - 435: 10.559774,52.359276 - 436: 8.669149,54.109276 - 437: 7.621642,52.84365 - 438: 6.5747676,52.90615 - 439: 5.9810176,54.171776 - 440: 7.4810176,55.671776 - 441: 9.465392,55.265526 - 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 + 401: 11.441196,54.4999 + 402: 12.534946,54.03115 + 403: 12.050571,54.796776 + 404: 12.363071,54.359276 + 405: 12.394321,52.890526 + 406: 11.706821,52.28115 + 407: 11.316196,52.078026 + 408: 10.800571,53.296776 + 409: 11.441196,53.921776 + 410: 10.675571,55.84365 + 411: 10.012899,54.390526 + 412: 9.716024,53.265526 + 413: 10.559774,52.359276 + 414: 8.669149,54.109276 + 415: 7.621642,52.84365 + 416: 6.5747676,52.90615 + 417: 5.9810176,54.171776 + 418: 7.4810176,55.671776 + 419: 9.465392,55.265526 + 3207: -41.832115,3.1480665 + 3208: -42.082115,4.5074415 + 3209: -40.425865,5.7261915 + 3218: -36.44149,5.3668165 + 3219: -36.644615,3.3824415 + 3220: -35.37899,3.1168165 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 377: -5.001564,4.018616 - 3023: -12.004698,6.9072037 - 4026: 15.7170315,-84.54443 + 355: -5.001564,4.018616 + 2856: -12.004698,6.9072037 + 3832: 15.7170315,-84.54443 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 378: -4.6178575,4.009773 - 516: -6.076791,52.85032 - 517: -5.483041,52.022194 - 518: -5.623666,52.615944 - 519: -7.529916,54.67404 - 520: -7.592416,53.908417 - 521: -7.717416,56.181545 - 522: -7.623666,55.88467 - 523: -6.420541,56.25967 - 524: -6.311166,55.72842 - 525: -6.233041,55.10342 - 526: -6.311166,54.47842 - 527: -6.342416,54.94717 - 528: -5.983041,49.3346 - 529: -6.498666,49.8971 - 530: -5.764291,49.2096 - 531: -5.639291,48.05335 - 532: -9.6108055,52.803352 - 533: -9.0014305,52.881477 - 534: -10.1733055,52.725227 - 535: -10.9858055,52.709602 - 536: -11.0483055,52.818977 - 537: -10.1733055,52.772102 - 538: -4.410207,50.704334 - 539: -4.160207,49.860584 - 540: -4.253957,48.891834 - 541: -4.253957,49.298084 - 542: -4.160207,48.016834 - 543: -3.5221872,52.73997 - 544: -4.147187,52.02122 - 545: -5.303437,55.786846 - 546: -4.225312,56.23997 - 547: -2.9753122,53.286846 - 548: -3.0690622,51.286846 - 549: -8.428438,54.974346 - 550: -8.928438,56.05247 - 551: -10.678438,55.30247 - 552: -10.850313,53.86497 - 3718: -8.633441,18.608944 - 3719: -8.617816,17.921444 - 3720: -7.9146905,18.593319 - 3721: -7.3209405,18.265194 - 3722: -4.5709405,18.452694 - 3723: -5.6178155,17.983944 - 3724: -5.7896905,17.421444 - 3725: -4.5084405,17.358944 + 356: -4.6178575,4.009773 + 494: -6.076791,52.85032 + 495: -5.483041,52.022194 + 496: -5.623666,52.615944 + 497: -7.529916,54.67404 + 498: -7.592416,53.908417 + 499: -7.717416,56.181545 + 500: -7.623666,55.88467 + 501: -6.420541,56.25967 + 502: -6.311166,55.72842 + 503: -6.233041,55.10342 + 504: -6.311166,54.47842 + 505: -6.342416,54.94717 + 506: -5.983041,49.3346 + 507: -6.498666,49.8971 + 508: -5.764291,49.2096 + 509: -5.639291,48.05335 + 510: -9.6108055,52.803352 + 511: -9.0014305,52.881477 + 512: -10.1733055,52.725227 + 513: -10.9858055,52.709602 + 514: -11.0483055,52.818977 + 515: -10.1733055,52.772102 + 516: -4.410207,50.704334 + 517: -4.160207,49.860584 + 518: -4.253957,48.891834 + 519: -4.253957,49.298084 + 520: -4.160207,48.016834 + 521: -3.5221872,52.73997 + 522: -4.147187,52.02122 + 523: -5.303437,55.786846 + 524: -4.225312,56.23997 + 525: -2.9753122,53.286846 + 526: -3.0690622,51.286846 + 527: -8.428438,54.974346 + 528: -8.928438,56.05247 + 529: -10.678438,55.30247 + 530: -10.850313,53.86497 + 3524: -8.633441,18.608944 + 3525: -8.617816,17.921444 + 3526: -7.9146905,18.593319 + 3527: -7.3209405,18.265194 + 3528: -4.5709405,18.452694 + 3529: -5.6178155,17.983944 + 3530: -5.7896905,17.421444 + 3531: -4.5084405,17.358944 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 442: 12.153599,54.59365 - 443: 11.419224,55.40615 - 444: 12.508601,53.68905 - 445: 12.571101,52.892174 - 446: 11.789851,52.392174 - 447: 12.117976,52.5328 - 448: 12.852351,53.9703 - 3726: -7.1178155,17.671444 - 3727: -4.1646905,18.749569 + 420: 12.153599,54.59365 + 421: 11.419224,55.40615 + 422: 12.508601,53.68905 + 423: 12.571101,52.892174 + 424: 11.789851,52.392174 + 425: 12.117976,52.5328 + 426: 12.852351,53.9703 + 3532: -7.1178155,17.671444 + 3533: -4.1646905,18.749569 - node: color: '#50AF7F6F' id: HalfTileOverlayGreyscale decals: - 3670: -8,12 - 3671: -10,12 + 3476: -8,12 + 3477: -10,12 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 953: 62,-49 - - node: - color: '#D4D4D496' - id: HalfTileOverlayGreyscale - decals: - 4: -7,-64 - 5: -8,-64 - 6: -9,-64 + 789: 62,-49 - node: color: '#EFB34150' id: HalfTileOverlayGreyscale decals: - 3018: -16,-5 + 2852: -16,-5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale decals: - 262: -19,-5 - 263: -22,-5 + 240: -19,-5 + 241: -22,-5 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale decals: - 2993: -24,-5 - 2994: -23,-5 - 2995: -21,-5 - 2996: -20,-5 - 2997: -18,-5 - 2998: -17,-5 + 2827: -24,-5 + 2828: -23,-5 + 2829: -21,-5 + 2830: -20,-5 + 2831: -18,-5 + 2832: -17,-5 + - node: + color: '#F0F0F073' + id: HalfTileOverlayGreyscale + decals: + 3915: -7,-60 + 3916: -8,-60 + - node: + color: '#F0F0F08F' + id: HalfTileOverlayGreyscale + decals: + 4043: -11,-62 + 4044: -13,-62 + 4045: -12,-62 + 4046: -14,-62 + 4047: -15,-62 + 4048: -16,-62 + - node: + color: '#F0F0F0AA' + id: HalfTileOverlayGreyscale + decals: + 3883: -8,-57 + 3884: -7,-57 + 3885: -6,-57 + 3899: -4,-57 + 3900: -3,-57 + - node: + color: '#F0F0F0C3' + id: HalfTileOverlayGreyscale + decals: + 3909: -6,-61 + 3910: -7,-61 + 3911: -8,-61 + - node: + color: '#F0F0F0FF' + id: HalfTileOverlayGreyscale + decals: + 3988: -2,-57 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale decals: - 612: 6,-62 - 613: 5,-62 - 614: 4,-62 - 615: 3,-62 - 616: 2,-62 - 617: 1,-62 - 618: 0,-62 - 619: -1,-62 - 620: -2,-62 - 621: -3,-62 - 622: -4,-62 - 623: -5,-62 - 624: -6,-62 - 625: -7,-62 - 626: -8,-62 - 627: -9,-62 - 628: -10,-62 - 629: -12,-62 - 630: -11,-62 - 631: -13,-62 - 632: -14,-62 - 633: -15,-62 - 634: -16,-62 - 635: -17,-62 - 636: -18,-62 - 637: -19,-62 - 638: -20,-62 + 584: -17,-62 + 585: -18,-62 + 586: -19,-62 + 587: -20,-62 - node: color: '#6C896FAB' id: HalfTileOverlayGreyscale180 decals: - 33: -10,7 - 34: -8,7 - 35: -6,7 + 18: -10,7 + 19: -8,7 + 20: -6,7 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 952: 62,-45 + 788: 62,-45 - node: - color: '#D4D4D47C' + color: '#EFB3415A' id: HalfTileOverlayGreyscale180 decals: - 3309: 5,-60 - 3310: 6,-60 + 239: -16,6 + 2155: -21,6 + 2156: -24,6 - node: - color: '#D4D4D496' + color: '#EFB34160' id: HalfTileOverlayGreyscale180 decals: - 9: -7,-67 - 12: -8,-67 - 13: -8,-67 - 14: -9,-67 + 2817: -22,6 + 2818: -23,6 + 2819: -20,6 - node: - color: '#EFB3415A' + color: '#EFB34163' id: HalfTileOverlayGreyscale180 decals: - 261: -16,6 - 2320: -21,6 - 2321: -24,6 + 2777: -19,6 + 2778: -18,6 + 2779: -17,6 - node: - color: '#EFB34160' + color: '#F0F0F05A' id: HalfTileOverlayGreyscale180 decals: - 2983: -22,6 - 2984: -23,6 - 2985: -20,6 + 3901: -8,-57 + 3902: -7,-57 - node: - color: '#EFB34163' + color: '#F0F0F073' id: HalfTileOverlayGreyscale180 decals: - 2943: -19,6 - 2944: -18,6 - 2945: -17,6 + 3917: -8,-61 + 3918: -7,-61 + 3925: -4,-57 + 3926: -3,-57 + - node: + color: '#F0F0F088' + id: HalfTileOverlayGreyscale180 + decals: + 3989: -2,-57 + - node: + color: '#F0F0F08F' + id: HalfTileOverlayGreyscale180 + decals: + 4035: -16,-59 + 4036: -15,-59 + 4037: -14,-59 + 4038: -13,-59 + 4039: -12,-59 + 4040: -11,-59 + - node: + color: '#F0F0F0C3' + id: HalfTileOverlayGreyscale180 + decals: + 3912: -6,-60 + 3913: -7,-60 + 3914: -8,-60 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale180 decals: - 642: -20,-60 - 643: -19,-60 - 644: -18,-60 + 591: -20,-60 + 592: -19,-60 + 593: -18,-60 - node: color: '#221F2E28' id: HalfTileOverlayGreyscale270 decals: - 15: 0,2 + 0: 0,2 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 959: 64,-47 - - node: - color: '#D4D4D496' - id: HalfTileOverlayGreyscale270 - decals: - 10: -10,-66 - 11: -10,-65 + 795: 64,-47 - node: color: '#EFB34153' id: HalfTileOverlayGreyscale270 decals: - 3012: -15,5 + 2846: -15,5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale270 decals: - 248: -15,-1 - 249: -15,-2 - 250: -15,-3 - 251: -15,0 - 252: -15,1 - 253: -15,2 - 254: -15,3 - 255: -15,4 + 226: -15,-1 + 227: -15,-2 + 228: -15,-3 + 229: -15,0 + 230: -15,1 + 231: -15,2 + 232: -15,3 + 233: -15,4 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale270 decals: - 2991: -15,-4 + 2825: -15,-4 + - node: + color: '#F0F0F05A' + id: HalfTileOverlayGreyscale270 + decals: + 3903: -6,-57 + 3904: -6,-58 + 3905: -6,-59 + 3906: -6,-60 + 3907: -6,-61 + 3908: -6,-62 + - node: + color: '#F0F0F088' + id: HalfTileOverlayGreyscale270 + decals: + 3990: -6,-63 + - node: + color: '#F0F0F08F' + id: HalfTileOverlayGreyscale270 + decals: + 4041: -10,-60 + 4042: -10,-61 + - node: + color: '#F0F0F0AA' + id: HalfTileOverlayGreyscale270 + decals: + 3892: -4,-57 + 3893: -4,-58 + 3894: -4,-60 + 3895: -4,-59 + 3896: -4,-61 + 3897: -4,-62 + 3898: -4,-63 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 28: 40,-26 - 29: 40,-27 + 13: 40,-26 + 14: 40,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 958: 60,-47 + 794: 60,-47 - node: - color: '#D4D4D496' + color: '#EFB3415A' id: HalfTileOverlayGreyscale90 decals: - 7: -6,-65 - 8: -6,-66 + 234: -25,3 + 235: -25,2 + 236: -25,1 + 237: -25,-3 + 238: -25,-4 + 2154: -25,-2 - node: - color: '#EFB3415A' + color: '#EFB34160' id: HalfTileOverlayGreyscale90 decals: - 256: -25,3 - 257: -25,2 - 258: -25,1 - 259: -25,-3 - 260: -25,-4 - 2319: -25,-2 + 2821: -25,5 + 2822: -25,4 + 2823: -25,0 + 2824: -25,-1 - node: - color: '#EFB34160' + color: '#F0F0F073' + id: HalfTileOverlayGreyscale90 + decals: + 3919: -4,-58 + 3920: -4,-59 + 3921: -4,-60 + 3922: -4,-61 + 3923: -4,-62 + 3924: -4,-63 + - node: + color: '#F0F0F0AA' + id: HalfTileOverlayGreyscale90 + decals: + 3886: -6,-57 + 3887: -6,-58 + 3888: -6,-59 + 3889: -6,-60 + 3890: -6,-61 + 3891: -6,-62 + - node: + color: '#F0F0F0FF' id: HalfTileOverlayGreyscale90 decals: - 2987: -25,5 - 2988: -25,4 - 2989: -25,0 - 2990: -25,-1 + 3991: -6,-63 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale90 decals: - 640: -21,-61 + 589: -21,-61 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 3139: 51,-56 + 2972: 51,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 559: -13,70 - 560: -14,70 - 561: -22,70 - 562: -23,70 + 537: -13,70 + 538: -14,70 + 539: -22,70 + 540: -23,70 - node: color: '#EFB34196' id: MiniTileCheckerAOverlay decals: - 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 + 3071: -38,-9 + 3072: -37,-9 + 3073: -37,-10 + 3074: -38,-10 + 3075: -38,-11 + 3076: -37,-11 + 3077: -38,-12 + 3078: -37,-12 + 3079: -38,-8 + 3080: -37,-8 + 3081: -38,-7 + 3082: -37,-7 - node: color: '#D4D4D406' id: MiniTileOverlay decals: - 3926: -41,15 - 3927: -40,15 - 3928: -40,14 - 3929: -41,14 - 3930: -37,15 - 3931: -36,15 - 3932: -36,14 - 3933: -37,14 - 3934: -37,13 - 3935: -36,13 - 3936: -41,13 - 3937: -40,13 + 3732: -41,15 + 3733: -40,15 + 3734: -40,14 + 3735: -41,14 + 3736: -37,15 + 3737: -36,15 + 3738: -36,14 + 3739: -37,14 + 3740: -37,13 + 3741: -36,13 + 3742: -41,13 + 3743: -40,13 - node: color: '#D4D4D4C7' id: MiniTileSteelBox decals: - 2999: -20,-6 - 3000: -16,-6 - 3001: -20,7 + 2833: -20,-6 + 2834: -16,-6 + 2835: -20,7 - node: color: '#D4D4D4D3' id: MiniTileSteelBox decals: - 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 + 2117: -24,7 + 2118: -26,3 + 2119: -26,-2 + 2120: -24,-6 + 2121: -14,-2 + 2122: -14,3 + 2123: -16,7 + 2128: 6,-27 + 2129: 3,-27 + 2130: 4,-43 + 2131: 0,-43 + 2132: -10,-43 + 2133: -14,-43 + 2134: -5,-27 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerNe decals: - 3923: -19,-10 + 3729: -19,-10 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNe decals: - 3197: 18,7 + 3030: 18,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNe decals: - 1038: 36,-17 - 1039: 37,-18 - 1095: 39,-42 - 1099: 36,-40 - 1116: 20,-40 - 1135: 34,-59 - 1145: 26,-46 - 1188: 41,-59 - 1227: 4,-41 - 1229: 6,-42 - 1256: -19,-41 - 1262: -18,-42 - 1270: -15,-26 - 1306: -4,-24 - 1325: -3,-32 - 1343: -2,-26 - 1422: -13,8 - 1423: -19,13 - 1428: -19,31 - 1466: -29,1 - 1499: -46,1 - 1504: -45,8 - 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 + 874: 36,-17 + 875: 37,-18 + 931: 39,-42 + 935: 36,-40 + 952: 20,-40 + 971: 34,-59 + 981: 26,-46 + 1024: 41,-59 + 1063: 4,-41 + 1065: 6,-42 + 1092: -19,-41 + 1098: -18,-42 + 1106: -15,-26 + 1142: -4,-24 + 1161: -3,-32 + 1179: -2,-26 + 1258: -13,8 + 1259: -19,13 + 1264: -19,31 + 1302: -29,1 + 1335: -46,1 + 1340: -45,8 + 1393: -15,47 + 1404: -17,51 + 1423: -22,67 + 1450: -4,-4 + 1510: 1,52 + 1540: 1,59 + 1572: -13,67 + 1637: 30,8 + 1672: 34,8 + 1714: 30,-5 + 1759: 54,2 + 1818: 65,-6 + 1825: 53,-5 + 1857: 16,-21 + 1915: 9,-26 + 1916: 36,-21 + 1964: -3,-41 + 1969: -4,-26 + 2042: 14,1 + 2043: 4,1 + 2044: -3,1 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNe decals: - 2763: 18,23 + 2598: 18,23 - node: color: '#88EFB1D9' id: MiniTileSteelCornerNw decals: - 3020: -28,-78 + 2853: -28,-78 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerNw decals: - 3922: -21,-10 + 3728: -21,-10 - node: color: '#D4D4D4AE' id: MiniTileSteelCornerNw decals: - 3200: 33,-40 + 3033: 33,-40 - node: color: '#D4D4D4B4' id: MiniTileSteelCornerNw decals: - 3306: -7,-41 + 3139: -7,-41 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNw decals: - 3198: 16,7 + 3031: 16,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNw decals: - 1037: 14,-17 - 1115: 14,-40 - 1118: 8,-42 - 1138: 24,-56 - 1139: 24,-46 - 1191: 36,-59 - 1228: 1,-41 - 1243: -16,-42 - 1257: -21,-41 - 1271: -21,-26 - 1307: -6,-24 - 1346: -13,-26 - 1411: -27,8 - 1421: -17,8 - 1424: -21,13 - 1427: -21,31 - 1464: -44,1 - 1498: -48,1 - 1507: -50,8 - 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 + 873: 14,-17 + 951: 14,-40 + 954: 8,-42 + 974: 24,-56 + 975: 24,-46 + 1027: 36,-59 + 1064: 1,-41 + 1079: -16,-42 + 1093: -21,-41 + 1107: -21,-26 + 1143: -6,-24 + 1182: -13,-26 + 1247: -27,8 + 1257: -17,8 + 1260: -21,13 + 1263: -21,31 + 1300: -44,1 + 1334: -48,1 + 1343: -50,8 + 1394: -19,47 + 1422: -23,67 + 1449: -6,-4 + 1511: -1,52 + 1529: -13,46 + 1552: -11,59 + 1570: -15,51 + 1571: -14,67 + 1628: 16,-6 + 1639: 20,8 + 1673: 32,8 + 1716: 20,-5 + 1741: 36,2 + 1823: 51,-5 + 1824: 49,-8 + 1855: 11,-26 + 1856: 14,-21 + 1914: 0,-26 + 1917: 34,-21 + 1968: -6,-26 + 2041: 13,1 + 2045: -1,1 + 2046: -11,1 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNw decals: - 2764: 14,23 + 2599: 14,23 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerSe decals: - 3918: -19,-23 + 3724: -19,-23 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSe decals: - 1036: 37,-19 - 1093: 39,-44 - 1140: 34,-61 - 1141: 32,-63 - 1142: 31,-64 - 1186: 41,-61 - 1187: 40,-69 - 1230: 6,-44 - 1253: -18,-44 - 1268: -15,-28 - 1269: -19,-39 - 1326: -3,-36 - 1332: -4,-39 - 1342: -2,-28 - 1369: -13,-7 - 1370: -23,-7 - 1462: -19,15 - 1465: -29,-1 - 1501: -46,-1 - 1505: -45,3 - 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 + 872: 37,-19 + 929: 39,-44 + 976: 34,-61 + 977: 32,-63 + 978: 31,-64 + 1022: 41,-61 + 1023: 40,-69 + 1066: 6,-44 + 1089: -18,-44 + 1104: -15,-28 + 1105: -19,-39 + 1162: -3,-36 + 1168: -4,-39 + 1178: -2,-28 + 1205: -13,-7 + 1206: -23,-7 + 1298: -19,15 + 1301: -29,-1 + 1337: -46,-1 + 1341: -45,3 + 1392: -15,29 + 1402: -17,49 + 1451: -4,-22 + 1502: 1,44 + 1534: 1,54 + 1568: -13,50 + 1606: 18,-7 + 1638: 30,6 + 1655: 34,-7 + 1694: 26,-15 + 1715: 30,-7 + 1763: 54,-2 + 1764: 53,-3 + 1817: 65,-14 + 1819: 59,-15 + 1861: 16,-38 + 1913: 9,-28 + 1924: 36,-38 + 1966: -3,-44 + 1967: -4,-28 + 2037: 4,0 + 2038: -3,0 + 2039: 14,0 - node: color: '#DE3A3A96' id: MiniTileSteelCornerSe decals: - 2755: 18,19 + 2590: 18,19 - node: color: '#88EFB1D9' id: MiniTileSteelCornerSw decals: - 3021: -28,-81 + 2854: -28,-81 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerSw decals: - 3919: -21,-23 + 3725: -21,-23 - node: color: '#D4D4D4C3' id: MiniTileSteelCornerSw decals: - 3318: -27,-7 + 3148: -27,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSw decals: - 1059: 14,-19 - 1117: 8,-44 - 1136: 25,-61 - 1137: 24,-57 - 1143: 30,-64 - 1144: 29,-63 - 1146: 24,-54 - 1189: 38,-69 - 1190: 36,-61 - 1244: -16,-44 - 1254: -21,-44 - 1272: -21,-39 - 1333: -6,-39 - 1345: -13,-28 - 1400: -21,-7 - 1461: -21,15 - 1463: -44,-1 - 1503: -48,-1 - 1506: -50,3 - 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 + 895: 14,-19 + 953: 8,-44 + 972: 25,-61 + 973: 24,-57 + 979: 30,-64 + 980: 29,-63 + 982: 24,-54 + 1025: 38,-69 + 1026: 36,-61 + 1080: -16,-44 + 1090: -21,-44 + 1108: -21,-39 + 1169: -6,-39 + 1181: -13,-28 + 1236: -21,-7 + 1297: -21,15 + 1299: -44,-1 + 1339: -48,-1 + 1342: -50,3 + 1391: -17,29 + 1395: -19,40 + 1401: -19,49 + 1446: -23,50 + 1452: -6,-22 + 1530: -13,44 + 1535: -1,54 + 1553: -11,58 + 1569: -15,50 + 1629: 16,-7 + 1630: 16,-4 + 1640: 20,6 + 1656: 32,-7 + 1693: 24,-15 + 1717: 20,-7 + 1765: 50,-2 + 1766: 51,-3 + 1769: 36,0 + 1820: 54,-15 + 1821: 49,-10 + 1822: 51,-14 + 1858: 11,-28 + 1859: 14,-38 + 1912: 0,-28 + 1925: 34,-38 + 1965: -7,-44 + 1970: -6,-28 + 2040: 13,0 + 2047: -11,0 + 2048: -1,0 - node: color: '#DE3A3A96' id: MiniTileSteelCornerSw decals: - 2756: 14,19 + 2591: 14,19 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNe decals: - 3005: -19,7 + 2839: -19,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNe decals: - 1060: 36,-18 - 1132: 20,-42 - 1182: 26,-59 - 1232: 4,-42 - 1235: 36,-42 - 1261: -19,-42 - 1331: -4,-32 - 1611: -22,51 - 2012: 53,-6 - 2013: 52,-11 - 2119: 36,-26 + 896: 36,-18 + 968: 20,-42 + 1018: 26,-59 + 1068: 4,-42 + 1071: 36,-42 + 1097: -19,-42 + 1167: -4,-32 + 1447: -22,51 + 1848: 53,-6 + 1849: 52,-11 + 1954: 36,-26 - node: color: '#D4D4D4D6' id: MiniTileSteelInnerNe decals: - 3014: -25.018312,-5.498596 - 3015: -25.283937,-5.498596 - 3016: -25.502687,-5.498596 + 2848: -25.018312,-5.498596 + 2849: -25.283937,-5.498596 + 2850: -25.502687,-5.498596 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNe decals: - 3279: -39,-13 + 3112: -39,-13 - node: color: '#D4D4D4AE' id: MiniTileSteelInnerNw decals: - 3205: 33,-42 + 3038: 33,-42 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerNw decals: - 2977: -14.760899,-5.480981 - 2978: -15.010899,-5.480981 - 2979: -14.526524,-5.480981 + 2811: -14.760899,-5.480981 + 2812: -15.010899,-5.480981 + 2813: -14.526524,-5.480981 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNw decals: - 3006: -17,7 + 2840: -17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNw decals: - 1183: 25,-56 - 1233: 1,-42 - 1234: 14,-42 - 1425: -21,8 - 1696: -1,46 - 1768: -14,51 - 1797: 17,-6 - 2010: 62,-11 - 2011: 51,-8 - 2049: 14,-26 + 1019: 25,-56 + 1069: 1,-42 + 1070: 14,-42 + 1261: -21,8 + 1532: -1,46 + 1604: -14,51 + 1633: 17,-6 + 1846: 62,-11 + 1847: 51,-8 + 1885: 14,-26 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNw decals: - 3277: -36,-13 + 3110: -36,-13 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerSe decals: - 2980: -25.008694,6.5088334 - 2981: -25.274319,6.5088334 - 2982: -25.508694,6.5088334 + 2814: -25.008694,6.5088334 + 2815: -25.274319,6.5088334 + 2816: -25.508694,6.5088334 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSe decals: - 3004: -23,-6 + 2838: -23,-6 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSe decals: - 1178: 32,-61 - 1181: 31,-63 - 1215: 40,-61 - 1300: -19,-28 - 1330: -4,-36 - 1890: 26,-7 - 1936: 53,-2 - 2008: 52,-7 - 2009: 59,-14 - 2118: 36,-27 + 1014: 32,-61 + 1017: 31,-63 + 1051: 40,-61 + 1136: -19,-28 + 1166: -4,-36 + 1726: 26,-7 + 1772: 53,-2 + 1844: 52,-7 + 1845: 59,-14 + 1953: 36,-27 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSe decals: - 3278: -39,-6 + 3111: -39,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSw decals: - 3003: -21,-6 - 3008: -14.7582035,6.5086117 - 3009: -14.5238285,6.5086117 - 3010: -15.0082035,6.5086117 + 2837: -21,-6 + 2842: -14.7582035,6.5086117 + 2843: -14.5238285,6.5086117 + 2844: -15.0082035,6.5086117 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSw decals: - 1179: 29,-61 - 1180: 30,-63 - 1184: 25,-57 - 1185: 25,-54 - 1214: 38,-61 - 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 + 1015: 29,-61 + 1016: 30,-63 + 1020: 25,-57 + 1021: 25,-54 + 1050: 38,-61 + 1397: -17,40 + 1448: -19,50 + 1566: -1,58 + 1632: 17,-4 + 1725: 24,-7 + 1770: 50,0 + 1771: 51,-2 + 1842: 54,-14 + 1843: 62,-7 + 1850: 51,-10 + 1888: 14,-28 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSw decals: - 3276: -36,-6 + 3109: -36,-6 - node: color: '#C8C8C89E' id: MiniTileSteelLineE decals: - 3613: 18,0 - 3614: 18,1 + 3439: 18,0 + 3440: 18,1 - node: color: '#CACFD6C1' id: MiniTileSteelLineE decals: - 4024: -15,36 + 3830: -15,36 - node: color: '#D4D4D4C0' id: MiniTileSteelLineE decals: - 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 + 2800: -25.510418,5.5102654 + 2801: -25.510418,4.5102654 + 2802: -25.510418,3.5239472 + 2803: -25.510418,2.5239472 + 2804: -25.510418,1.5420241 + 2805: -25.510418,0.5198039 + 2806: -25.510418,-0.4823848 + 2807: -25.510418,-1.4980098 + 2808: -25.510418,-2.4674516 + 2809: -25.510418,-3.5051284 + 2810: -25.510418,-4.481826 - node: color: '#D4D4D4D3' id: MiniTileSteelLineE decals: - 1094: 39,-43 - 1098: 36,-41 - 1104: 20,-41 - 1152: 26,-47 - 1153: 26,-48 - 1154: 26,-49 - 1155: 26,-50 - 1156: 26,-51 - 1157: 26,-52 - 1158: 26,-53 - 1159: 26,-54 - 1160: 26,-55 - 1161: 26,-56 - 1162: 26,-57 - 1163: 26,-58 - 1164: 34,-60 - 1177: 32,-62 - 1198: 41,-60 - 1199: 40,-63 - 1200: 40,-62 - 1201: 40,-64 - 1202: 40,-65 - 1203: 40,-66 - 1204: 40,-67 - 1205: 40,-68 - 1219: 6,-43 - 1255: -18,-43 - 1277: -19,-29 - 1278: -19,-30 - 1279: -19,-31 - 1280: -19,-32 - 1281: -19,-33 - 1282: -19,-34 - 1283: -19,-35 - 1284: -19,-36 - 1285: -19,-37 - 1286: -19,-38 - 1299: -15,-27 - 1308: -4,-25 - 1309: -2,-27 - 1310: -4,-29 - 1311: -4,-30 - 1312: -4,-31 - 1313: -4,-37 - 1314: -4,-38 - 1327: -3,-35 - 1328: -3,-34 - 1329: -3,-33 - 1348: -19,-11 - 1349: -19,-12 - 1350: -19,-13 - 1351: -19,-14 - 1352: -19,-15 - 1353: -19,-17 - 1354: -19,-16 - 1355: -19,-18 - 1356: -19,-19 - 1357: -19,-20 - 1358: -19,-21 - 1359: -19,-22 - 1384: -13,7 - 1385: -13,6 - 1386: -13,4 - 1387: -13,5 - 1388: -13,3 - 1389: -13,2 - 1390: -13,1 - 1391: -13,0 - 1392: -13,-1 - 1393: -13,-2 - 1394: -13,-3 - 1395: -13,-4 - 1396: -13,-5 - 1397: -13,-6 - 1416: -19,12 - 1417: -19,11 - 1418: -19,10 - 1419: -19,9 - 1420: -19,8 - 1430: -19,30 - 1431: -19,29 - 1432: -19,28 - 1433: -19,27 - 1434: -19,26 - 1435: -19,25 - 1436: -19,24 - 1437: -19,23 - 1438: -19,22 - 1439: -19,21 - 1440: -19,20 - 1441: -19,19 - 1442: -19,18 - 1443: -19,17 - 1444: -19,16 - 1467: -29,0 - 1516: -45,7 - 1517: -45,6 - 1518: -45,5 - 1519: -45,4 - 1539: -15,46 - 1540: -15,45 - 1541: -15,44 - 1542: -15,43 - 1543: -15,42 - 1544: -15,41 - 1545: -15,40 - 1546: -15,39 - 1547: -15,38 - 1548: -15,37 - 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 + 930: 39,-43 + 934: 36,-41 + 940: 20,-41 + 988: 26,-47 + 989: 26,-48 + 990: 26,-49 + 991: 26,-50 + 992: 26,-51 + 993: 26,-52 + 994: 26,-53 + 995: 26,-54 + 996: 26,-55 + 997: 26,-56 + 998: 26,-57 + 999: 26,-58 + 1000: 34,-60 + 1013: 32,-62 + 1034: 41,-60 + 1035: 40,-63 + 1036: 40,-62 + 1037: 40,-64 + 1038: 40,-65 + 1039: 40,-66 + 1040: 40,-67 + 1041: 40,-68 + 1055: 6,-43 + 1091: -18,-43 + 1113: -19,-29 + 1114: -19,-30 + 1115: -19,-31 + 1116: -19,-32 + 1117: -19,-33 + 1118: -19,-34 + 1119: -19,-35 + 1120: -19,-36 + 1121: -19,-37 + 1122: -19,-38 + 1135: -15,-27 + 1144: -4,-25 + 1145: -2,-27 + 1146: -4,-29 + 1147: -4,-30 + 1148: -4,-31 + 1149: -4,-37 + 1150: -4,-38 + 1163: -3,-35 + 1164: -3,-34 + 1165: -3,-33 + 1184: -19,-11 + 1185: -19,-12 + 1186: -19,-13 + 1187: -19,-14 + 1188: -19,-15 + 1189: -19,-17 + 1190: -19,-16 + 1191: -19,-18 + 1192: -19,-19 + 1193: -19,-20 + 1194: -19,-21 + 1195: -19,-22 + 1220: -13,7 + 1221: -13,6 + 1222: -13,4 + 1223: -13,5 + 1224: -13,3 + 1225: -13,2 + 1226: -13,1 + 1227: -13,0 + 1228: -13,-1 + 1229: -13,-2 + 1230: -13,-3 + 1231: -13,-4 + 1232: -13,-5 + 1233: -13,-6 + 1252: -19,12 + 1253: -19,11 + 1254: -19,10 + 1255: -19,9 + 1256: -19,8 + 1266: -19,30 + 1267: -19,29 + 1268: -19,28 + 1269: -19,27 + 1270: -19,26 + 1271: -19,25 + 1272: -19,24 + 1273: -19,23 + 1274: -19,22 + 1275: -19,21 + 1276: -19,20 + 1277: -19,19 + 1278: -19,18 + 1279: -19,17 + 1280: -19,16 + 1303: -29,0 + 1352: -45,7 + 1353: -45,6 + 1354: -45,5 + 1355: -45,4 + 1375: -15,46 + 1376: -15,45 + 1377: -15,44 + 1378: -15,43 + 1379: -15,42 + 1380: -15,41 + 1381: -15,40 + 1382: -15,39 + 1383: -15,38 + 1384: -15,37 + 1385: -15,35 + 1386: -15,34 + 1387: -15,33 + 1388: -15,32 + 1389: -15,31 + 1390: -15,30 + 1405: -17,50 + 1424: -22,66 + 1425: -22,65 + 1426: -22,64 + 1427: -22,63 + 1428: -22,62 + 1429: -22,61 + 1430: -22,60 + 1431: -22,58 + 1432: -22,59 + 1433: -22,57 + 1434: -22,56 + 1435: -22,55 + 1436: -22,54 + 1437: -22,53 + 1438: -22,52 + 1454: -4,-21 + 1455: -4,-20 + 1456: -4,-19 + 1457: -4,-18 + 1458: -4,-17 + 1459: -4,-16 + 1460: -4,-15 + 1461: -4,-14 + 1462: -4,-13 + 1463: -4,-12 + 1464: -4,-11 + 1465: -4,-10 + 1466: -4,-9 + 1467: -4,-8 + 1468: -4,-7 + 1469: -4,-6 + 1470: -4,-5 + 1503: 1,45 + 1504: 1,46 + 1505: 1,47 + 1506: 1,48 + 1507: 1,49 + 1508: 1,50 + 1509: 1,51 + 1536: 1,55 + 1537: 1,56 + 1538: 1,57 + 1539: 1,58 + 1573: -13,66 + 1574: -13,65 + 1575: -13,64 + 1576: -13,63 + 1577: -13,62 + 1578: -13,61 + 1579: -13,60 + 1580: -13,59 + 1581: -13,58 + 1582: -13,57 + 1583: -13,55 + 1584: -13,56 + 1585: -13,54 + 1586: -13,53 + 1587: -13,52 + 1588: -13,51 + 1607: 18,-6 + 1608: 18,-5 + 1609: 18,-3 + 1610: 18,-4 + 1611: 18,-1 + 1612: 18,-2 + 1613: 18,2 + 1614: 18,4 + 1615: 18,5 + 1616: 18,3 + 1617: 18,6 + 1641: 30,7 + 1658: 34,-6 + 1659: 34,-5 + 1660: 34,-4 + 1661: 34,-3 + 1662: 34,-2 + 1663: 34,-1 + 1664: 34,0 + 1665: 34,1 + 1666: 34,2 + 1667: 34,3 + 1668: 34,4 + 1669: 34,5 + 1670: 34,6 + 1671: 34,7 + 1696: 26,-14 + 1697: 26,-13 + 1698: 26,-12 + 1699: 26,-11 + 1700: 26,-10 + 1701: 26,-9 + 1702: 26,-8 + 1703: 30,-6 + 1760: 54,1 + 1761: 54,0 + 1762: 54,-1 + 1807: 52,-8 + 1808: 52,-9 + 1809: 52,-10 + 1810: 65,-8 + 1811: 65,-9 + 1812: 65,-10 + 1813: 65,-11 + 1814: 65,-12 + 1815: 65,-13 + 1816: 65,-7 + 1862: 16,-37 + 1863: 16,-36 + 1864: 16,-35 + 1865: 16,-34 + 1866: 16,-32 + 1867: 16,-33 + 1868: 16,-31 + 1869: 16,-30 + 1870: 16,-29 + 1871: 16,-28 + 1872: 16,-27 + 1873: 16,-24 + 1874: 16,-23 + 1875: 16,-22 + 1910: 9,-27 + 1926: 36,-37 + 1927: 36,-35 + 1928: 36,-36 + 1929: 36,-34 + 1930: 36,-33 + 1931: 36,-32 + 1932: 36,-31 + 1933: 36,-29 + 1934: 36,-28 + 1935: 36,-30 + 1936: 36,-25 + 1937: 36,-24 + 1938: 36,-23 + 1939: 36,-22 + 1955: -3,-42 + 1956: -3,-43 + 1972: -4,-27 - node: color: '#D4D4D4FF' id: MiniTileSteelLineE decals: - 3262: -39,-7 - 3263: -39,-8 - 3264: -39,-9 - 3265: -39,-10 - 3266: -39,-11 - 3267: -39,-12 + 3095: -39,-7 + 3096: -39,-8 + 3097: -39,-9 + 3098: -39,-10 + 3099: -39,-11 + 3100: -39,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineE decals: - 2765: 18,22 - 2766: 18,21 - 2767: 18,20 + 2600: 18,22 + 2601: 18,21 + 2602: 18,20 - node: color: '#C8C8C8FF' id: MiniTileSteelLineN decals: - 3921: -20,-10 + 3727: -20,-10 - node: color: '#D4D4D4AE' id: MiniTileSteelLineN decals: - 3202: 32,-42 - 3203: 31,-42 - 3204: 30,-42 + 3035: 32,-42 + 3036: 31,-42 + 3037: 30,-42 - node: color: '#D4D4D4B4' id: MiniTileSteelLineN decals: - 3307: -6,-41 + 3140: -6,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineN decals: - 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 + 2787: -18.018867,-5.48975 + 2788: -17.019917,-5.49304 + 2789: -19.00948,-5.49304 + 2790: -20.010675,-5.49304 + 2791: -21.010675,-5.49304 + 2792: -22.0263,-5.49304 + 2793: -23.028214,-5.497755 + 2794: -24.012589,-5.497755 - node: color: '#D4D4D4C7' id: MiniTileSteelLineN decals: - 3002: -18,7 + 2836: -18,7 - node: color: '#D4D4D4CA' id: MiniTileSteelLineN decals: - 3013: -16.015686,-5.492559 + 2847: -16.015686,-5.492559 - node: color: '#D4D4D4CD' id: MiniTileSteelLineN decals: - 3199: 17,7 + 3032: 17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineN decals: - 1040: 35,-17 - 1041: 34,-17 - 1042: 33,-17 - 1043: 31,-17 - 1044: 30,-17 - 1045: 29,-17 - 1046: 28,-17 - 1047: 27,-17 - 1048: 26,-17 - 1049: 24,-17 - 1050: 23,-17 - 1051: 21,-17 - 1052: 22,-17 - 1053: 19,-17 - 1054: 18,-17 - 1055: 17,-17 - 1056: 16,-17 - 1057: 15,-17 - 1067: 25,-17 - 1068: 27,-42 - 1069: 26,-42 - 1070: 25,-42 - 1071: 24,-42 - 1072: 23,-42 - 1073: 22,-42 - 1074: 21,-42 - 1075: 28,-42 - 1076: 29,-42 - 1096: 38,-42 - 1097: 37,-42 - 1100: 35,-40 - 1101: 34,-40 - 1105: 19,-40 - 1106: 18,-40 - 1107: 17,-40 - 1108: 16,-40 - 1109: 15,-40 - 1110: 9,-42 - 1111: 10,-42 - 1112: 11,-42 - 1113: 13,-42 - 1114: 12,-42 - 1133: 28,-59 - 1134: 27,-59 - 1147: 25,-46 - 1192: 40,-59 - 1193: 39,-59 - 1194: 38,-59 - 1195: 37,-59 - 1216: -2,-42 - 1217: -1,-42 - 1218: 0,-42 - 1225: 2,-41 - 1226: 3,-41 - 1231: 5,-42 - 1236: -8,-42 - 1237: -10,-42 - 1238: -11,-42 - 1239: -12,-42 - 1240: -13,-42 - 1241: -14,-42 - 1242: -15,-42 - 1260: -20,-41 - 1263: -18,-26 - 1264: -19,-26 - 1265: -20,-26 - 1266: -16,-26 - 1267: -17,-26 - 1301: -5,-24 - 1302: -3,-26 - 1303: -7,-26 - 1304: -8,-26 - 1305: -11,-26 - 1377: -14,8 - 1378: -15,8 - 1379: -20,13 - 1380: -22,8 - 1381: -23,8 - 1382: -25,8 - 1383: -26,8 - 1429: -20,31 - 1482: -43,1 - 1483: -42,1 - 1484: -41,1 - 1485: -39,1 - 1486: -40,1 - 1487: -38,1 - 1488: -37,1 - 1489: -36,1 - 1490: -34,1 - 1491: -33,1 - 1492: -35,1 - 1493: -32,1 - 1494: -30,1 - 1495: -31,1 - 1500: -47,1 - 1508: -46,8 - 1509: -47,8 - 1510: -48,8 - 1511: -49,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 + 876: 35,-17 + 877: 34,-17 + 878: 33,-17 + 879: 31,-17 + 880: 30,-17 + 881: 29,-17 + 882: 28,-17 + 883: 27,-17 + 884: 26,-17 + 885: 24,-17 + 886: 23,-17 + 887: 21,-17 + 888: 22,-17 + 889: 19,-17 + 890: 18,-17 + 891: 17,-17 + 892: 16,-17 + 893: 15,-17 + 903: 25,-17 + 904: 27,-42 + 905: 26,-42 + 906: 25,-42 + 907: 24,-42 + 908: 23,-42 + 909: 22,-42 + 910: 21,-42 + 911: 28,-42 + 912: 29,-42 + 932: 38,-42 + 933: 37,-42 + 936: 35,-40 + 937: 34,-40 + 941: 19,-40 + 942: 18,-40 + 943: 17,-40 + 944: 16,-40 + 945: 15,-40 + 946: 9,-42 + 947: 10,-42 + 948: 11,-42 + 949: 13,-42 + 950: 12,-42 + 969: 28,-59 + 970: 27,-59 + 983: 25,-46 + 1028: 40,-59 + 1029: 39,-59 + 1030: 38,-59 + 1031: 37,-59 + 1052: -2,-42 + 1053: -1,-42 + 1054: 0,-42 + 1061: 2,-41 + 1062: 3,-41 + 1067: 5,-42 + 1072: -8,-42 + 1073: -10,-42 + 1074: -11,-42 + 1075: -12,-42 + 1076: -13,-42 + 1077: -14,-42 + 1078: -15,-42 + 1096: -20,-41 + 1099: -18,-26 + 1100: -19,-26 + 1101: -20,-26 + 1102: -16,-26 + 1103: -17,-26 + 1137: -5,-24 + 1138: -3,-26 + 1139: -7,-26 + 1140: -8,-26 + 1141: -11,-26 + 1213: -14,8 + 1214: -15,8 + 1215: -20,13 + 1216: -22,8 + 1217: -23,8 + 1218: -25,8 + 1219: -26,8 + 1265: -20,31 + 1318: -43,1 + 1319: -42,1 + 1320: -41,1 + 1321: -39,1 + 1322: -40,1 + 1323: -38,1 + 1324: -37,1 + 1325: -36,1 + 1326: -34,1 + 1327: -33,1 + 1328: -35,1 + 1329: -32,1 + 1330: -30,1 + 1331: -31,1 + 1336: -47,1 + 1344: -46,8 + 1345: -47,8 + 1346: -48,8 + 1347: -49,8 + 1398: -16,47 + 1399: -17,47 + 1400: -18,47 + 1439: -18,51 + 1440: -19,51 + 1441: -20,51 + 1442: -21,51 + 1471: -5,-4 + 1512: 0,52 + 1518: -2,46 + 1519: -3,46 + 1520: -4,46 + 1521: -5,46 + 1522: -6,46 + 1523: -7,46 + 1524: -8,46 + 1525: -9,46 + 1526: -10,46 + 1527: -11,46 + 1528: -12,46 + 1541: 0,59 + 1542: -1,59 + 1543: -2,59 + 1544: -3,59 + 1545: -4,59 + 1546: -5,59 + 1547: -6,59 + 1548: -7,59 + 1549: -8,59 + 1550: -9,59 + 1551: -10,59 + 1634: 27,8 + 1635: 28,8 + 1636: 29,8 + 1652: 21,8 + 1653: 22,8 + 1654: 23,8 + 1674: 33,8 + 1705: 29,-5 + 1706: 28,-5 + 1707: 27,-5 + 1708: 26,-5 + 1709: 25,-5 + 1710: 24,-5 + 1711: 23,-5 + 1712: 22,-5 + 1713: 21,-5 + 1742: 53,2 + 1743: 52,2 + 1744: 50,2 + 1745: 51,2 + 1746: 49,2 + 1747: 48,2 + 1748: 47,2 + 1749: 46,2 + 1750: 45,2 + 1751: 44,2 + 1752: 43,2 + 1753: 41,2 + 1754: 42,2 + 1755: 40,2 + 1756: 39,2 + 1757: 38,2 + 1758: 37,2 + 1773: 64,-6 + 1774: 63,-6 + 1775: 62,-6 + 1776: 60,-6 + 1777: 59,-6 + 1778: 61,-6 + 1779: 58,-6 + 1780: 57,-6 + 1781: 56,-6 + 1782: 55,-6 + 1783: 54,-6 + 1784: 52,-5 + 1785: 50,-8 + 1831: 61,-11 + 1832: 60,-11 + 1833: 59,-11 + 1834: 58,-11 + 1835: 57,-11 + 1836: 56,-11 + 1837: 55,-11 + 1838: 54,-11 + 1839: 53,-11 + 1852: 15,-21 + 1853: 13,-26 + 1854: 12,-26 + 1902: 8,-26 + 1903: 7,-26 + 1904: 6,-26 + 1905: 5,-26 + 1906: 4,-26 + 1907: 3,-26 + 1908: 2,-26 + 1909: 1,-26 + 1918: 35,-21 + 1919: 37,-26 + 1920: 38,-26 + 1957: -5,-41 + 1958: -4,-41 + 1971: -5,-26 + 2049: 3,1 + 2050: 1,1 + 2051: 0,1 + 2052: 2,1 + 2053: -4,1 + 2054: -5,1 + 2055: -7,1 + 2056: -6,1 + 2057: -8,1 + 2058: -9,1 + 2059: -10,1 + 2126: -16,8 + 2127: -24,8 - node: color: '#D4D4D4FF' id: MiniTileSteelLineN decals: - 3274: -38,-13 - 3275: -37,-13 + 3107: -38,-13 + 3108: -37,-13 - node: color: '#DE3A3A96' id: MiniTileSteelLineN decals: - 2757: 17,23 - 2758: 16,23 - 2759: 15,23 + 2592: 17,23 + 2593: 16,23 + 2594: 15,23 - node: color: '#C8C8C8FF' id: MiniTileSteelLineS decals: - 3920: -20,-23 + 3726: -20,-23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineS decals: - 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 + 2795: -20.013802,6.514251 + 2796: -21.019838,6.510408 + 2797: -22.019838,6.510408 + 2798: -23.019838,6.510408 + 2799: -24.019838,6.510408 + 3142: -25,-7 - node: color: '#D4D4D4C3' id: MiniTileSteelLineS decals: - 2939: -18.011988,6.5150476 - 2940: -19.02412,6.5150476 - 2941: -16.008495,6.503191 - 2942: -17.022287,6.5092306 - 3321: -26,-7 + 2773: -18.011988,6.5150476 + 2774: -19.02412,6.5150476 + 2775: -16.008495,6.503191 + 2776: -17.022287,6.5092306 + 3151: -26,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineS decals: - 1013: 26,-19 - 1014: 24,-19 - 1015: 25,-19 - 1016: 23,-19 - 1017: 21,-19 - 1018: 22,-19 - 1019: 20,-19 - 1020: 19,-19 - 1021: 18,-19 - 1022: 17,-19 - 1023: 16,-19 - 1024: 15,-19 - 1025: 27,-19 - 1026: 28,-19 - 1027: 28,-19 - 1028: 29,-19 - 1029: 30,-19 - 1030: 31,-19 - 1031: 32,-19 - 1032: 33,-19 - 1033: 34,-19 - 1034: 35,-19 - 1035: 36,-19 - 1077: 25,-44 - 1078: 23,-44 - 1079: 24,-44 - 1080: 26,-44 - 1081: 27,-44 - 1082: 28,-44 - 1083: 29,-44 - 1084: 30,-44 - 1085: 31,-44 - 1086: 32,-44 - 1087: 33,-44 - 1088: 35,-44 - 1089: 34,-44 - 1090: 36,-44 - 1091: 38,-44 - 1092: 37,-44 - 1119: 9,-44 - 1120: 10,-44 - 1121: 11,-44 - 1122: 12,-44 - 1123: 13,-44 - 1124: 14,-44 - 1125: 15,-44 - 1126: 16,-44 - 1127: 18,-44 - 1128: 17,-44 - 1129: 19,-44 - 1130: 21,-44 - 1131: 22,-44 - 1148: 33,-61 - 1149: 28,-61 - 1150: 27,-61 - 1151: 26,-61 - 1196: 39,-69 - 1197: 37,-61 - 1220: 5,-44 - 1221: 4,-44 - 1222: 3,-44 - 1223: 2,-44 - 1224: 1,-44 - 1246: -15,-44 - 1247: -14,-44 - 1248: -13,-44 - 1249: -12,-44 - 1250: -11,-44 - 1251: -19,-44 - 1252: -20,-44 - 1273: -20,-39 - 1274: -16,-28 - 1275: -17,-28 - 1276: -18,-28 - 1334: -5,-39 - 1335: -7,-28 - 1336: -8,-28 - 1337: -10,-28 - 1338: -9,-28 - 1339: -11,-28 - 1340: -12,-28 - 1341: -3,-28 - 1371: -22,-6 - 1372: -18,-7 - 1373: -17,-7 - 1374: -16,-7 - 1375: -15,-7 - 1376: -14,-7 - 1398: -19,-7 - 1399: -20,-7 - 1426: -24,-7 - 1460: -20,15 - 1468: -30,-1 - 1469: -31,-1 - 1470: -32,-1 - 1471: -33,-1 - 1472: -34,-1 - 1473: -35,-1 - 1474: -36,-1 - 1475: -38,-1 - 1476: -37,-1 - 1477: -39,-1 - 1478: -40,-1 - 1479: -41,-1 - 1480: -42,-1 - 1481: -43,-1 - 1497: -47,-1 - 1512: -46,3 - 1513: -47,3 - 1514: -48,3 - 1515: -49,3 - 1524: -16,29 - 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 + 849: 26,-19 + 850: 24,-19 + 851: 25,-19 + 852: 23,-19 + 853: 21,-19 + 854: 22,-19 + 855: 20,-19 + 856: 19,-19 + 857: 18,-19 + 858: 17,-19 + 859: 16,-19 + 860: 15,-19 + 861: 27,-19 + 862: 28,-19 + 863: 28,-19 + 864: 29,-19 + 865: 30,-19 + 866: 31,-19 + 867: 32,-19 + 868: 33,-19 + 869: 34,-19 + 870: 35,-19 + 871: 36,-19 + 913: 25,-44 + 914: 23,-44 + 915: 24,-44 + 916: 26,-44 + 917: 27,-44 + 918: 28,-44 + 919: 29,-44 + 920: 30,-44 + 921: 31,-44 + 922: 32,-44 + 923: 33,-44 + 924: 35,-44 + 925: 34,-44 + 926: 36,-44 + 927: 38,-44 + 928: 37,-44 + 955: 9,-44 + 956: 10,-44 + 957: 11,-44 + 958: 12,-44 + 959: 13,-44 + 960: 14,-44 + 961: 15,-44 + 962: 16,-44 + 963: 18,-44 + 964: 17,-44 + 965: 19,-44 + 966: 21,-44 + 967: 22,-44 + 984: 33,-61 + 985: 28,-61 + 986: 27,-61 + 987: 26,-61 + 1032: 39,-69 + 1033: 37,-61 + 1056: 5,-44 + 1057: 4,-44 + 1058: 3,-44 + 1059: 2,-44 + 1060: 1,-44 + 1082: -15,-44 + 1083: -14,-44 + 1084: -13,-44 + 1085: -12,-44 + 1086: -11,-44 + 1087: -19,-44 + 1088: -20,-44 + 1109: -20,-39 + 1110: -16,-28 + 1111: -17,-28 + 1112: -18,-28 + 1170: -5,-39 + 1171: -7,-28 + 1172: -8,-28 + 1173: -10,-28 + 1174: -9,-28 + 1175: -11,-28 + 1176: -12,-28 + 1177: -3,-28 + 1207: -22,-6 + 1208: -18,-7 + 1209: -17,-7 + 1210: -16,-7 + 1211: -15,-7 + 1212: -14,-7 + 1234: -19,-7 + 1235: -20,-7 + 1262: -24,-7 + 1296: -20,15 + 1304: -30,-1 + 1305: -31,-1 + 1306: -32,-1 + 1307: -33,-1 + 1308: -34,-1 + 1309: -35,-1 + 1310: -36,-1 + 1311: -38,-1 + 1312: -37,-1 + 1313: -39,-1 + 1314: -40,-1 + 1315: -41,-1 + 1316: -42,-1 + 1317: -43,-1 + 1333: -47,-1 + 1348: -46,3 + 1349: -47,3 + 1350: -48,3 + 1351: -49,3 + 1360: -16,29 + 1396: -18,40 + 1403: -18,49 + 1443: -20,50 + 1444: -21,50 + 1445: -22,50 + 1453: -5,-22 + 1489: -12,44 + 1490: -11,44 + 1491: -10,44 + 1492: -9,44 + 1493: -8,44 + 1494: -7,44 + 1495: -6,44 + 1496: -5,44 + 1497: -4,44 + 1498: -3,44 + 1499: -2,44 + 1500: -1,44 + 1501: 0,44 + 1533: 0,54 + 1554: -10,58 + 1555: -8,58 + 1556: -7,58 + 1557: -6,58 + 1558: -9,58 + 1559: -5,58 + 1560: -4,58 + 1561: -3,58 + 1562: -2,58 + 1567: -14,50 + 1605: 17,-7 + 1643: 21,6 + 1644: 24,6 + 1645: 23,6 + 1646: 22,6 + 1647: 25,6 + 1648: 26,6 + 1649: 27,6 + 1650: 28,6 + 1651: 29,6 + 1657: 33,-7 + 1687: 29,-7 + 1688: 27,-7 + 1689: 28,-7 + 1690: 23,-7 + 1691: 22,-7 + 1692: 21,-7 + 1695: 25,-15 + 1727: 52,-3 + 1728: 49,0 + 1729: 48,0 + 1730: 47,0 + 1731: 46,0 + 1732: 44,0 + 1733: 45,0 + 1734: 43,0 + 1735: 42,0 + 1736: 41,0 + 1737: 40,0 + 1738: 39,0 + 1739: 38,0 + 1740: 37,0 + 1786: 50,-10 + 1787: 52,-14 + 1788: 53,-14 + 1789: 55,-15 + 1790: 56,-15 + 1791: 57,-15 + 1792: 58,-15 + 1793: 60,-14 + 1794: 61,-14 + 1795: 62,-14 + 1796: 63,-14 + 1797: 64,-14 + 1798: 57,-7 + 1799: 58,-7 + 1800: 59,-7 + 1801: 60,-7 + 1802: 61,-7 + 1803: 56,-7 + 1804: 55,-7 + 1805: 54,-7 + 1806: 53,-7 + 1860: 15,-38 + 1876: 12,-28 + 1877: 13,-28 + 1894: 8,-28 + 1895: 7,-28 + 1896: 6,-28 + 1897: 5,-28 + 1898: 4,-28 + 1899: 3,-28 + 1900: 2,-28 + 1901: 1,-28 + 1921: 38,-27 + 1922: 37,-27 + 1923: 35,-38 + 1959: -4,-44 + 1960: -5,-44 + 1961: -6,-44 + 1974: -5,-28 + 2026: 3,0 + 2027: 2,0 + 2028: 1,0 + 2029: 0,0 + 2030: -4,0 + 2031: -5,0 + 2032: -6,0 + 2033: -7,0 + 2034: -8,0 + 2035: -9,0 + 2036: -10,0 - node: color: '#D4D4D4FF' id: MiniTileSteelLineS decals: - 3280: -38,-6 - 3281: -37,-6 + 3113: -38,-6 + 3114: -37,-6 - node: color: '#DE3A3A96' id: MiniTileSteelLineS decals: - 2760: 17,19 - 2761: 16,19 - 2762: 15,19 + 2595: 17,19 + 2596: 16,19 + 2597: 15,19 - node: color: '#C3C3C3BC' id: MiniTileSteelLineW decals: - 3902: 32,-4 - 3903: 32,-5 + 3708: 32,-4 + 3709: 32,-5 - node: color: '#D4D4D496' id: MiniTileSteelLineW decals: - 4021: -14.533487,-3.5022268 - 4022: -14.517862,-2.4866018 - 4023: -14.533487,0.5134914 + 3827: -14.533487,-3.5022268 + 3828: -14.517862,-2.4866018 + 3829: -14.533487,0.5134914 - node: color: '#D4D4D4AE' id: MiniTileSteelLineW decals: - 3201: 33,-41 + 3034: 33,-41 - node: color: '#D4D4D4BA' id: MiniTileSteelLineW decals: - 4020: -27,7 + 3826: -27,7 - node: color: '#D4D4D4C0' id: MiniTileSteelLineW decals: - 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 + 2780: -14.526791,4.511916 + 2781: -14.526791,3.535493 + 2782: -14.526791,2.535493 + 2783: -14.526791,1.5321715 + 2784: -14.526791,-0.47854245 + 2785: -14.526791,-1.4661165 + 2786: -14.526791,-4.4806275 - node: color: '#D4D4D4C3' id: MiniTileSteelLineW decals: - 2887: -17,38 - 2888: -17,37 - 3319: -27,-5 - 3320: -27,-6 + 2722: -17,38 + 2723: -17,37 + 3149: -27,-5 + 3150: -27,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelLineW decals: - 3007: -14.529805,5.530867 + 2841: -14.529805,5.530867 - node: color: '#D4D4D4CD' id: MiniTileSteelLineW decals: - 4025: 27,-83 + 3831: 27,-83 - node: color: '#D4D4D4D3' id: MiniTileSteelLineW decals: - 1058: 14,-18 - 1102: 8,-43 - 1103: 14,-41 - 1165: 25,-60 - 1166: 25,-59 - 1167: 25,-58 - 1168: 25,-55 - 1169: 24,-53 - 1170: 24,-52 - 1171: 24,-50 - 1172: 24,-49 - 1173: 24,-51 - 1174: 24,-48 - 1175: 24,-47 - 1176: 29,-62 - 1206: 38,-68 - 1207: 38,-67 - 1208: 38,-66 - 1209: 38,-65 - 1210: 38,-64 - 1211: 38,-63 - 1212: 38,-62 - 1213: 36,-60 - 1245: -16,-43 - 1258: -21,-42 - 1259: -21,-43 - 1287: -21,-38 - 1288: -21,-37 - 1289: -21,-35 - 1290: -21,-34 - 1291: -21,-36 - 1292: -21,-33 - 1293: -21,-31 - 1294: -21,-30 - 1295: -21,-32 - 1296: -21,-28 - 1297: -21,-27 - 1298: -21,-29 - 1315: -6,-38 - 1316: -6,-37 - 1317: -6,-36 - 1318: -6,-35 - 1319: -6,-34 - 1320: -6,-33 - 1321: -6,-32 - 1322: -6,-31 - 1323: -6,-30 - 1324: -6,-29 - 1344: -6,-25 - 1347: -13,-27 - 1360: -21,-22 - 1361: -21,-21 - 1362: -21,-20 - 1363: -21,-11 - 1364: -21,-12 - 1365: -21,-13 - 1366: -21,-14 - 1367: -21,-15 - 1368: -21,-16 - 1401: -27,-4 - 1402: -28,-3 - 1403: -27,-3 - 1404: -27,-2 - 1405: -27,0 - 1406: -27,1 - 1407: -27,2 - 1408: -27,4 - 1409: -27,5 - 1410: -27,6 - 1412: -21,9 - 1413: -21,11 - 1414: -21,12 - 1415: -21,10 - 1445: -21,16 - 1446: -21,17 - 1447: -21,18 - 1448: -21,19 - 1449: -21,20 - 1450: -21,21 - 1451: -21,22 - 1452: -21,23 - 1453: -21,24 - 1454: -21,25 - 1455: -21,26 - 1456: -21,27 - 1457: -21,28 - 1458: -21,29 - 1459: -21,30 - 1496: -44,0 - 1502: -48,0 - 1520: -50,7 - 1521: -50,6 - 1522: -50,5 - 1523: -50,4 - 1525: -17,30 - 1526: -17,31 - 1527: -17,33 - 1528: -17,32 - 1529: -17,35 - 1530: -17,34 - 1531: -17,36 - 1532: -17,39 - 1533: -19,41 - 1534: -19,42 - 1535: -19,43 - 1536: -19,44 - 1537: -19,45 - 1538: -19,46 - 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,-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 - 3610: -21,-17 - 3611: -21,-18 - 3612: -21,-19 + 894: 14,-18 + 938: 8,-43 + 939: 14,-41 + 1001: 25,-60 + 1002: 25,-59 + 1003: 25,-58 + 1004: 25,-55 + 1005: 24,-53 + 1006: 24,-52 + 1007: 24,-50 + 1008: 24,-49 + 1009: 24,-51 + 1010: 24,-48 + 1011: 24,-47 + 1012: 29,-62 + 1042: 38,-68 + 1043: 38,-67 + 1044: 38,-66 + 1045: 38,-65 + 1046: 38,-64 + 1047: 38,-63 + 1048: 38,-62 + 1049: 36,-60 + 1081: -16,-43 + 1094: -21,-42 + 1095: -21,-43 + 1123: -21,-38 + 1124: -21,-37 + 1125: -21,-35 + 1126: -21,-34 + 1127: -21,-36 + 1128: -21,-33 + 1129: -21,-31 + 1130: -21,-30 + 1131: -21,-32 + 1132: -21,-28 + 1133: -21,-27 + 1134: -21,-29 + 1151: -6,-38 + 1152: -6,-37 + 1153: -6,-36 + 1154: -6,-35 + 1155: -6,-34 + 1156: -6,-33 + 1157: -6,-32 + 1158: -6,-31 + 1159: -6,-30 + 1160: -6,-29 + 1180: -6,-25 + 1183: -13,-27 + 1196: -21,-22 + 1197: -21,-21 + 1198: -21,-20 + 1199: -21,-11 + 1200: -21,-12 + 1201: -21,-13 + 1202: -21,-14 + 1203: -21,-15 + 1204: -21,-16 + 1237: -27,-4 + 1238: -28,-3 + 1239: -27,-3 + 1240: -27,-2 + 1241: -27,0 + 1242: -27,1 + 1243: -27,2 + 1244: -27,4 + 1245: -27,5 + 1246: -27,6 + 1248: -21,9 + 1249: -21,11 + 1250: -21,12 + 1251: -21,10 + 1281: -21,16 + 1282: -21,17 + 1283: -21,18 + 1284: -21,19 + 1285: -21,20 + 1286: -21,21 + 1287: -21,22 + 1288: -21,23 + 1289: -21,24 + 1290: -21,25 + 1291: -21,26 + 1292: -21,27 + 1293: -21,28 + 1294: -21,29 + 1295: -21,30 + 1332: -44,0 + 1338: -48,0 + 1356: -50,7 + 1357: -50,6 + 1358: -50,5 + 1359: -50,4 + 1361: -17,30 + 1362: -17,31 + 1363: -17,33 + 1364: -17,32 + 1365: -17,35 + 1366: -17,34 + 1367: -17,36 + 1368: -17,39 + 1369: -19,41 + 1370: -19,42 + 1371: -19,43 + 1372: -19,44 + 1373: -19,45 + 1374: -19,46 + 1406: -23,51 + 1407: -23,52 + 1408: -23,53 + 1409: -23,55 + 1410: -23,54 + 1411: -23,56 + 1412: -23,57 + 1413: -23,58 + 1414: -23,59 + 1415: -23,60 + 1416: -23,61 + 1417: -23,62 + 1418: -23,63 + 1419: -23,64 + 1420: -23,65 + 1421: -23,66 + 1472: -6,-5 + 1473: -6,-6 + 1474: -6,-7 + 1475: -6,-8 + 1476: -6,-9 + 1477: -6,-10 + 1478: -6,-11 + 1479: -6,-12 + 1480: -6,-13 + 1481: -6,-14 + 1482: -6,-15 + 1483: -6,-16 + 1484: -6,-17 + 1485: -6,-18 + 1486: -6,-19 + 1487: -6,-20 + 1488: -6,-21 + 1513: -1,51 + 1514: -1,50 + 1515: -1,48 + 1516: -1,49 + 1517: -1,47 + 1531: -13,45 + 1563: -1,57 + 1564: -1,56 + 1565: -1,55 + 1589: -14,52 + 1590: -14,54 + 1591: -14,53 + 1592: -14,55 + 1593: -14,57 + 1594: -14,56 + 1595: -14,58 + 1596: -14,59 + 1597: -14,60 + 1598: -14,62 + 1599: -14,61 + 1600: -14,63 + 1601: -14,64 + 1602: -14,65 + 1603: -14,66 + 1618: 16,6 + 1619: 16,5 + 1620: 16,4 + 1621: 16,3 + 1622: 16,2 + 1623: 16,1 + 1624: 16,0 + 1625: 16,-1 + 1626: 16,-2 + 1627: 16,-3 + 1631: 17,-5 + 1642: 20,7 + 1675: 32,7 + 1676: 32,6 + 1677: 32,4 + 1678: 32,5 + 1679: 32,3 + 1680: 32,2 + 1681: 32,1 + 1682: 32,0 + 1683: 32,-1 + 1684: 32,-2 + 1685: 32,-3 + 1686: 32,-6 + 1704: 20,-6 + 1718: 24,-14 + 1719: 24,-13 + 1720: 24,-11 + 1721: 24,-10 + 1722: 24,-9 + 1723: 24,-8 + 1724: 24,-12 + 1767: 50,-1 + 1768: 36,1 + 1826: 51,-13 + 1827: 51,-12 + 1828: 51,-11 + 1829: 51,-7 + 1830: 51,-6 + 1840: 62,-9 + 1841: 62,-10 + 1851: 62,-8 + 1878: 14,-29 + 1879: 14,-30 + 1880: 14,-31 + 1881: 14,-37 + 1882: 14,-24 + 1883: 14,-22 + 1884: 14,-23 + 1886: 14,-25 + 1887: 11,-27 + 1889: 14,-32 + 1890: 14,-34 + 1891: 14,-33 + 1892: 14,-35 + 1893: 14,-36 + 1911: 0,-27 + 1940: 34,-22 + 1941: 34,-23 + 1942: 34,-23 + 1943: 34,-24 + 1944: 34,-27 + 1945: 34,-28 + 1946: 34,-29 + 1947: 34,-32 + 1948: 34,-33 + 1949: 34,-34 + 1950: 34,-35 + 1951: 34,-36 + 1952: 34,-37 + 1962: -7,-42 + 1963: -7,-43 + 1973: -6,-27 + 2124: -27,3 + 2125: -27,-1 + 3436: -21,-17 + 3437: -21,-18 + 3438: -21,-19 + - node: + color: '#D4D4D4DF' + id: MiniTileSteelLineW + decals: + 4116: 34,-31 + 4117: 34,-30 - node: color: '#D4D4D4FF' id: MiniTileSteelLineW decals: - 3268: -36,-7 - 3269: -36,-8 - 3270: -36,-9 - 3271: -36,-10 - 3272: -36,-11 - 3273: -36,-12 + 3101: -36,-7 + 3102: -36,-8 + 3103: -36,-9 + 3104: -36,-10 + 3105: -36,-11 + 3106: -36,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineW decals: - 2768: 14,22 - 2769: 14,21 - 2770: 14,20 + 2603: 14,22 + 2604: 14,21 + 2605: 14,20 + - node: + color: '#9FED58C0' + id: MiniTileWhiteBox + decals: + 4106: 3,-58 + 4107: 3,-61 - node: color: '#FFFFFFFF' id: MiniTileWhiteBox decals: - 663: -1,-48 - 664: -13,-48 + 594: -1,-48 + 595: -13,-48 - node: color: '#258CC0EA' id: MiniTileWhiteCornerNe decals: - 3625: 7,-46 - 3653: -23,-58 + 3459: -23,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 2919: 32,-21 - 2920: 19,-21 + 2754: 32,-21 + 2755: 19,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNe decals: - 815: -18,-70 - 843: -23,-76 - 861: -20,-85 - 864: -23,-83 + 651: -18,-70 + 679: -23,-76 + 697: -20,-85 + 700: -23,-83 - node: color: '#52B4E963' id: MiniTileWhiteCornerNe decals: - 3180: 73,-48 + 3013: 73,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNe decals: - 3603: 47,7 - 3604: 46,8 + 3429: 47,7 + 3430: 46,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNe decals: - 668: 0,-46 - 728: 6,-53 - 775: -12,-46 - 784: 0,-64 - 785: -1,-65 + 599: 0,-46 + 636: -12,-46 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteCornerNe + decals: + 4033: -4,-65 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteCornerNe + decals: + 3981: 0,-53 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteCornerNe + decals: + 4078: 6,-56 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteCornerNe + decals: + 4016: -12,-53 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteCornerNe + decals: + 3877: 7,-46 - node: color: '#707070B7' id: MiniTileWhiteCornerNe decals: - 3438: 31,-72 - 3439: 28,-71 - 3440: 27,-70 + 3264: 31,-72 + 3265: 28,-71 + 3266: 27,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNe decals: - 2591: -23,-32 - 2599: -32,-32 - 2600: -31,-33 - 2620: -36,-33 - 2629: -32,-38 - 2670: -34,-44 + 2426: -23,-32 + 2434: -32,-32 + 2435: -31,-33 + 2455: -36,-33 + 2464: -32,-38 + 2505: -34,-44 - node: color: '#787878B7' id: MiniTileWhiteCornerNe decals: - 3473: 31,-78 - 3513: 50,-72 - 3525: 49,-78 + 3299: 31,-78 + 3339: 50,-72 + 3351: 49,-78 - node: color: '#88C598FF' id: MiniTileWhiteCornerNe decals: - 3958: 17,-82 + 3764: 17,-82 + - node: + color: '#9FED58E9' + id: MiniTileWhiteCornerNe + decals: + 4020: -13,-54 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 2353: -31,26 - 2354: -23,25 - 2356: -28,19 - 2376: -47,22 - 2389: -47,33 + 2188: -31,26 + 2189: -23,25 + 2191: -28,19 + 2211: -47,22 + 2224: -47,33 - node: color: '#D381C996' id: MiniTileWhiteCornerNe decals: - 896: 46,-42 - 920: 53,-40 - 921: 51,-38 - 933: 57,-45 - 965: 51,-50 - 966: 52,-51 - 967: 53,-52 - 995: 46,-46 - 3034: 74,-32 - 3038: 73,-38 - 3153: 73,-44 - 3162: 68,-48 - 3168: 77,-44 - 3408: 64,-32 - 3409: 65,-33 + 732: 46,-42 + 756: 53,-40 + 757: 51,-38 + 769: 57,-45 + 801: 51,-50 + 802: 52,-51 + 803: 53,-52 + 831: 46,-46 + 2867: 74,-32 + 2871: 73,-38 + 2986: 73,-44 + 2995: 68,-48 + 3001: 77,-44 + 3234: 64,-32 + 3235: 65,-33 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNe decals: - 3100: 65,-44 - 3107: 63,-43 + 2933: 65,-44 + 2940: 63,-43 - node: color: '#D4D4D406' id: MiniTileWhiteCornerNe decals: - 3940: -40,15 - 3941: -36,15 + 3746: -40,15 + 3747: -36,15 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNe decals: - 3114: 55,-35 + 2947: 55,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNe decals: - 2453: -46,-9 + 2288: -46,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerNe decals: - 2182: 14,3 - 2225: 14,-1 - 2247: 3,-1 - 2248: 9,-1 - 2271: -3,-1 - 2272: -3,3 + 2017: 14,3 + 2060: 14,-1 + 2082: 3,-1 + 2083: 9,-1 + 2106: -3,-1 + 2107: -3,3 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 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 + 2537: 26,13 + 2541: 26,18 + 2560: 18,17 + 2564: 13,17 + 2574: 8,17 + 2608: 42,16 + 2894: -16,-21 + 2959: 22,-46 + 3122: -15,27 - node: color: '#DE3A3AA7' id: MiniTileWhiteCornerNe decals: - 3905: 30,22 + 3711: 30,22 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 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 + 2245: -23,-9 + 2249: -28,-17 + 2277: -42,-10 + 2316: -45,-6 + 2340: -51,-6 + 2344: -51,-17 + 2345: -53,-13 + 2404: -71,-24 + 3058: -28,-10 + 3083: -35,-6 + 3116: -42,-6 + 3153: -32,-10 - node: color: '#EFB341A7' id: MiniTileWhiteCornerNe decals: - 3924: -32,-22 + 3730: -32,-22 - node: color: '#EFB341B1' id: MiniTileWhiteCornerNe decals: - 3914: -51,-23 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNe - decals: - 658: 4,-64 + 3720: -51,-23 - node: color: '#258CC0EA' id: MiniTileWhiteCornerNw decals: - 3626: 2,-46 - 3654: -27,-58 + 3460: -27,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 2917: 18,-21 - 2918: 31,-21 + 2752: 18,-21 + 2753: 31,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNw decals: - 825: -26,-70 - 844: -26,-76 - 862: -27,-85 - 863: -24,-83 + 661: -26,-70 + 680: -26,-76 + 698: -27,-85 + 699: -24,-83 - node: color: '#52B4E963' id: MiniTileWhiteCornerNw decals: - 3184: 69,-48 + 3017: 69,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNw decals: - 3602: 44,8 + 3428: 44,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNw decals: - 669: -10,-46 - 696: -16,-53 - 774: -17,-46 - 789: -4,-64 - 790: -3,-65 + 600: -10,-46 + 635: -17,-46 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteCornerNw + decals: + 4030: -6,-65 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteCornerNw + decals: + 3962: -10,-53 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteCornerNw + decals: + 4079: 0,-56 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteCornerNw + decals: + 4015: -16,-53 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteCornerNw + decals: + 3878: 2,-46 - node: color: '#707070B7' id: MiniTileWhiteCornerNw decals: - 3442: 22,-72 - 3443: 23,-71 - 3444: 24,-70 + 3268: 22,-72 + 3269: 23,-71 + 3270: 24,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNw decals: - 2592: -26,-32 - 2601: -33,-32 - 2602: -34,-33 - 2621: -41,-33 - 2630: -33,-38 + 2427: -26,-32 + 2436: -33,-32 + 2437: -34,-33 + 2456: -41,-33 + 2465: -33,-38 - node: color: '#787878B7' id: MiniTileWhiteCornerNw decals: - 3474: 29,-78 - 3507: 27,-81 - 3514: 47,-72 - 3524: 47,-78 + 3300: 29,-78 + 3333: 27,-81 + 3340: 47,-72 + 3350: 47,-78 - node: color: '#88C598FF' id: MiniTileWhiteCornerNw decals: - 3959: 13,-82 + 3765: 13,-82 + - node: + color: '#9FED58E9' + id: MiniTileWhiteCornerNw + decals: + 4019: -15,-54 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 2352: -35,26 - 2355: -26,25 - 2375: -49,22 - 2388: -49,33 + 2187: -35,26 + 2190: -26,25 + 2210: -49,22 + 2223: -49,33 - node: color: '#D381C996' id: MiniTileWhiteCornerNw decals: - 895: 41,-42 - 925: 48,-38 - 936: 55,-45 - 963: 48,-50 - 964: 45,-57 - 997: 41,-46 - 3033: 71,-32 - 3039: 70,-33 - 3152: 67,-44 - 3161: 67,-48 - 3166: 74,-48 - 3167: 76,-44 - 3407: 60,-32 + 731: 41,-42 + 761: 48,-38 + 772: 55,-45 + 799: 48,-50 + 800: 45,-57 + 833: 41,-46 + 2866: 71,-32 + 2872: 70,-33 + 2985: 67,-44 + 2994: 67,-48 + 2999: 74,-48 + 3000: 76,-44 + 3233: 60,-32 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNw decals: - 3099: 59,-44 - 3106: 61,-43 + 2932: 59,-44 + 2939: 61,-43 - node: color: '#D4D4D406' id: MiniTileWhiteCornerNw decals: - 3944: -41,15 - 3945: -37,15 + 3750: -41,15 + 3751: -37,15 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNw decals: - 3112: 53,-35 + 2945: 53,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNw decals: - 2473: -48,-9 + 2308: -48,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerNw decals: - 2185: -11,3 - 2186: -1,3 - 2232: -1,-1 - 2233: -11,-1 - 2245: 11,-1 - 2246: 5,-1 + 2020: -11,3 + 2021: -1,3 + 2067: -1,-1 + 2068: -11,-1 + 2080: 11,-1 + 2081: 5,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 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 + 2536: 24,13 + 2543: 20,18 + 2563: 15,17 + 2570: 10,17 + 2575: 4,17 + 2607: 28,22 + 2892: -17,-21 + 2958: 19,-46 + 3121: -17,27 + 3135: 28,16 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 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 + 2248: -26,-9 + 2278: -43,-10 + 2317: -49,-6 + 2335: -56,-7 + 2336: -55,-6 + 2381: -55,-23 + 2383: -63,-24 + 2403: -75,-24 + 3057: -30,-10 + 3084: -40,-6 + 3117: -43,-6 + 3152: -33,-10 - node: color: '#EFB341A7' id: MiniTileWhiteCornerNw decals: - 3925: -33,-22 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNw - decals: - 655: 2,-64 + 3731: -33,-22 - node: color: '#258CC0EA' id: MiniTileWhiteCornerSe decals: - 3627: 7,-51 - 3657: -23,-63 + 3463: -23,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 2923: 32,-23 - 2924: 30,-26 + 2758: 32,-23 + 2759: 30,-26 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSe decals: - 816: -18,-74 - 842: -23,-81 - 877: -20,-88 + 652: -18,-74 + 678: -23,-81 + 713: -20,-88 - node: color: '#52B4E963' id: MiniTileWhiteCornerSe decals: - 3186: 73,-50 + 3019: 73,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSe decals: - 3601: 47,4 + 3427: 47,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSe decals: - 665: 0,-50 - 686: -8,-50 - 695: 6,-55 - 764: -12,-51 - 787: -1,-67 - 788: 0,-68 + 596: 0,-50 + 617: -8,-50 + 627: -12,-51 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteCornerSe + decals: + 4031: -4,-67 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteCornerSe + decals: + 3960: -4,-63 + 3961: 0,-54 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteCornerSe + decals: + 3992: -2,-57 + 4097: 5,-64 + 4098: 6,-63 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteCornerSe + decals: + 4013: -12,-57 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteCornerSe + decals: + 3879: 7,-51 + 3880: 6,-54 - node: color: '#73C2A496' id: MiniTileWhiteCornerSe decals: - 2585: -23,-37 - 2605: -31,-36 - 2615: -36,-37 - 2631: -32,-42 - 2671: -34,-57 - 2672: -35,-58 + 2420: -23,-37 + 2440: -31,-36 + 2450: -36,-37 + 2466: -32,-42 + 2506: -34,-57 + 2507: -35,-58 - node: color: '#787878AB' id: MiniTileWhiteCornerSe decals: - 3463: 31,-76 + 3289: 31,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSe decals: - 3497: 31,-93 - 3510: 49,-76 - 3511: 50,-74 - 3526: 49,-93 + 3323: 31,-93 + 3336: 49,-76 + 3337: 50,-74 + 3352: 49,-93 - node: color: '#88C598FF' id: MiniTileWhiteCornerSe decals: - 3963: 17,-86 + 3769: 17,-86 + - node: + color: '#9FED58E9' + id: MiniTileWhiteCornerSe + decals: + 4017: -13,-56 - node: color: '#A4610696' id: MiniTileWhiteCornerSe decals: - 2357: -28,17 - 2377: -47,20 - 2386: -47,31 + 2192: -28,17 + 2212: -47,20 + 2221: -47,31 - node: color: '#D381C996' id: MiniTileWhiteCornerSe decals: - 891: 46,-44 - 922: 53,-46 - 923: 51,-48 - 934: 57,-46 - 943: 65,-50 - 960: 51,-59 - 961: 52,-56 - 962: 53,-54 - 993: 46,-50 - 3036: 73,-34 - 3037: 73,-39 - 3151: 73,-45 - 3160: 68,-50 - 3169: 77,-48 - 3170: 76,-50 - 3410: 65,-36 - 3411: 64,-37 + 727: 46,-44 + 758: 53,-46 + 759: 51,-48 + 770: 57,-46 + 779: 65,-50 + 796: 51,-59 + 797: 52,-56 + 798: 53,-54 + 829: 46,-50 + 2869: 73,-34 + 2870: 73,-39 + 2984: 73,-45 + 2993: 68,-50 + 3002: 77,-48 + 3003: 76,-50 + 3236: 65,-36 + 3237: 64,-37 - node: color: '#D4D4D406' id: MiniTileWhiteCornerSe decals: - 3942: -40,13 - 3943: -36,13 + 3748: -40,13 + 3749: -36,13 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSe decals: - 3113: 55,-37 + 2946: 55,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSe decals: - 2454: -46,-18 + 2289: -46,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerSe decals: - 2183: 14,-2 - 2188: -3,-2 - 2234: -3,2 - 2235: 14,2 - 2237: 3,2 - 2240: 9,2 + 2018: 14,-2 + 2023: -3,-2 + 2069: -3,2 + 2070: 14,2 + 2072: 3,2 + 2075: 9,2 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSe decals: - 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 + 2538: 26,9 + 2542: 26,16 + 2561: 18,16 + 2565: 13,16 + 2580: 8,12 + 2606: 42,4 + 2895: -16,-24 + 2960: 22,-48 + 3124: -15,23 + 3136: 42,14 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 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 + 2243: -28,-15 + 2267: -35,-14 + 2280: -42,-14 + 2315: -45,-7 + 2319: -32,-30 + 2341: -51,-7 + 2372: -51,-21 + 2402: -71,-27 + 3053: -32,-19 + 3054: -24,-18 + 3055: -23,-16 + 3061: -28,-18 + 3115: -42,-8 - node: color: '#EFB341B1' id: MiniTileWhiteCornerSe decals: - 3908: -51,-26 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSe - decals: - 657: 4,-66 + 3714: -51,-26 - node: color: '#258CC0EA' id: MiniTileWhiteCornerSw decals: - 3628: 2,-51 - 3655: -27,-62 - 3656: -26,-63 + 3461: -27,-62 + 3462: -26,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 2921: 20,-26 - 2922: 18,-23 + 2756: 20,-26 + 2757: 18,-23 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSw decals: - 824: -26,-74 - 860: -27,-88 + 660: -26,-74 + 696: -27,-88 - node: color: '#52B4E963' id: MiniTileWhiteCornerSw decals: - 3185: 69,-50 + 3018: 69,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSw decals: - 3600: 44,4 + 3426: 44,4 + - node: + color: '#52B4E9CA' + id: MiniTileWhiteCornerSw + decals: + 4051: -16,-51 + 4052: -17,-50 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSw decals: - 667: -2,-50 - 685: -10,-50 - 697: -16,-55 - 765: -17,-51 - 786: -3,-67 - 803: -4,-68 + 598: -2,-50 + 616: -10,-50 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteCornerSw + decals: + 4032: -6,-67 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteCornerSw + decals: + 3963: -10,-57 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteCornerSw + decals: + 3993: -6,-63 + 4099: 0,-63 + 4100: 1,-64 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteCornerSw + decals: + 4014: -16,-57 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteCornerSw + decals: + 3881: 2,-54 - node: color: '#707070B7' id: MiniTileWhiteCornerSw decals: - 3441: 22,-74 + 3267: 22,-74 - node: color: '#73C2A496' id: MiniTileWhiteCornerSw decals: - 2586: -26,-37 - 2606: -34,-36 - 2616: -41,-37 - 2632: -33,-42 + 2421: -26,-37 + 2441: -34,-36 + 2451: -41,-37 + 2467: -33,-42 - node: color: '#787878AB' id: MiniTileWhiteCornerSw decals: - 3464: 24,-75 - 3465: 29,-76 + 3290: 24,-75 + 3291: 29,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSw decals: - 3498: 29,-93 - 3506: 27,-87 - 3512: 47,-76 - 3527: 47,-93 + 3324: 29,-93 + 3332: 27,-87 + 3338: 47,-76 + 3353: 47,-93 - node: color: '#88C598FF' id: MiniTileWhiteCornerSw decals: - 3967: 13,-86 + 3773: 13,-86 + - node: + color: '#9FED58E9' + id: MiniTileWhiteCornerSw + decals: + 4018: -15,-56 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 2350: -26,17 - 2351: -35,17 - 2378: -49,20 - 2387: -49,31 + 2185: -26,17 + 2186: -35,17 + 2213: -49,20 + 2222: -49,31 - node: color: '#D381C996' id: MiniTileWhiteCornerSw decals: - 892: 41,-44 - 924: 48,-48 - 935: 55,-46 - 942: 59,-50 - 994: 42,-50 - 996: 41,-48 - 3142: 67,-45 - 3143: 67,-50 - 3144: 74,-50 - 3415: 60,-37 + 728: 41,-44 + 760: 48,-48 + 771: 55,-46 + 778: 59,-50 + 830: 42,-50 + 832: 41,-48 + 2975: 67,-45 + 2976: 67,-50 + 2977: 74,-50 + 3241: 60,-37 - node: color: '#D381C9AB' id: MiniTileWhiteCornerSw decals: - 3121: 70,-39 + 2954: 70,-39 - node: color: '#D4D4D406' id: MiniTileWhiteCornerSw decals: - 3938: -41,13 - 3939: -37,13 + 3744: -41,13 + 3745: -37,13 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSw decals: - 3111: 53,-37 + 2944: 53,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSw decals: - 2455: -48,-18 + 2290: -48,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerSw decals: - 2184: -11,-2 - 2187: -1,-2 - 2236: -1,2 - 2238: 5,2 - 2239: 11,2 - 2273: -11,2 + 2019: -11,-2 + 2022: -1,-2 + 2071: -1,2 + 2073: 5,2 + 2074: 11,2 + 2108: -11,2 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSw decals: - 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 + 2539: 24,9 + 2540: 20,16 + 2562: 15,16 + 2571: 10,16 + 2578: 4,12 + 2630: 40,4 + 2652: 28,14 + 2893: -17,-24 + 2957: 19,-48 + 3123: -17,23 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 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 - decals: - 656: 2,-66 + 2244: -30,-15 + 2250: -33,-19 + 2268: -40,-14 + 2279: -43,-14 + 2318: -49,-7 + 2334: -33,-30 + 2342: -56,-19 + 2343: -55,-21 + 2382: -63,-26 + 2405: -75,-27 + 3056: -26,-18 + 3118: -43,-8 - node: color: '#D381C996' id: MiniTileWhiteEndE decals: - 3035: 75,-33 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteEndS - decals: - 706: -6,-56 - 707: -9,-56 - 708: -12,-56 - 709: -3,-56 - 739: 0,-56 + 2868: 75,-33 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 2927: 19,-22 + 2762: 19,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNe decals: - 872: -23,-85 + 708: -23,-85 - node: color: '#52B4E9B7' id: MiniTileWhiteInnerNe decals: - 3605: 46,7 + 3431: 46,7 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteInnerNe + decals: + 3983: -6,-63 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteInnerNe + decals: + 3994: -6,-63 - node: color: '#707070B7' id: MiniTileWhiteInnerNe decals: - 3451: 27,-71 + 3277: 27,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNe decals: - 2610: -32,-33 - 2674: -35,-44 + 2445: -32,-33 + 2509: -35,-44 - node: color: '#787878AB' id: MiniTileWhiteInnerNe decals: - 3460: 28,-72 + 3286: 28,-72 - node: color: '#A4610696' id: MiniTileWhiteInnerNe decals: - 2374: -31,19 + 2209: -31,19 - node: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 927: 51,-40 - 979: 52,-52 - 989: 51,-51 - 3055: 74,-33 - 3429: 64,-33 + 763: 51,-40 + 815: 52,-52 + 825: 51,-51 + 2888: 74,-33 + 3255: 64,-33 - node: color: '#D381C9AB' id: MiniTileWhiteInnerNe decals: - 3123: 71,-38 + 2956: 71,-38 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNe decals: - 3108: 63,-44 + 2941: 63,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNe decals: - 2278: 9,-2 - 2279: 3,-2 + 2113: 9,-2 + 2114: 3,-2 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 2427: -32,-17 - 2542: -54,-13 - 2543: -53,-17 + 2262: -32,-17 + 2377: -54,-13 + 2378: -53,-17 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteInnerNe decals: - 755: -2,-55 - 756: -10,-55 + 3933: -10,-56 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 2928: 31,-22 + 2763: 31,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNw decals: - 853: -26,-78 - 871: -24,-85 + 689: -26,-78 + 707: -24,-85 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteInnerNw + decals: + 3982: -6,-60 + 3984: -4,-63 - node: color: '#707070B7' id: MiniTileWhiteInnerNw decals: - 3452: 23,-72 - 3453: 24,-71 + 3278: 23,-72 + 3279: 24,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNw decals: - 2609: -33,-33 - 2676: -36,-54 - 2677: -36,-42 + 2444: -33,-33 + 2511: -36,-54 + 2512: -36,-42 - node: color: '#787878B7' id: MiniTileWhiteInnerNw decals: - 3508: 29,-81 + 3334: 29,-81 - node: color: '#D381C996' id: MiniTileWhiteInnerNw decals: - 986: 48,-57 - 3056: 71,-33 - 3178: 76,-48 + 822: 48,-57 + 2889: 71,-33 + 3011: 76,-48 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNw decals: - 3109: 61,-44 + 2942: 61,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNw decals: - 2280: 11,-2 - 2281: 5,-2 + 2115: 11,-2 + 2116: 5,-2 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 2545: -55,-7 - 2565: -55,-24 + 2380: -55,-7 + 2400: -55,-24 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteInnerNw decals: - 754: 0,-55 - 757: -9,-55 - 758: -8,-55 + 3934: -8,-56 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 2925: 30,-23 + 2760: 30,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSe decals: - 694: -8,-48 - 745: 0,-55 - 746: -3,-55 - 747: -6,-55 - 748: -9,-55 - 749: -12,-55 + 625: -8,-48 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteInnerSe + decals: + 3977: -4,-57 + 3978: -2,-54 + 3985: -6,-57 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteInnerSe + decals: + 4105: 5,-63 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteInnerSe + decals: + 3882: 6,-51 - node: color: '#73C2A496' id: MiniTileWhiteInnerSe decals: - 2673: -35,-57 + 2508: -35,-57 - node: color: '#787878B7' id: MiniTileWhiteInnerSe decals: - 3523: 49,-74 + 3349: 49,-74 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: - 928: 51,-46 - 978: 52,-54 - 988: 51,-56 - 3053: 73,-33 - 3054: 71,-34 - 3179: 76,-48 - 3428: 64,-36 + 764: 51,-46 + 814: 52,-54 + 824: 51,-56 + 2886: 73,-33 + 2887: 71,-34 + 3012: 76,-48 + 3254: 64,-36 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSe decals: - 2276: 3,3 - 2277: 9,3 + 2111: 3,3 + 2112: 9,3 - node: color: '#EFB34196' id: MiniTileWhiteInnerSe decals: - 2541: -54,-7 - 3232: -32,-18 - 3237: -24,-16 + 2376: -54,-7 + 3065: -32,-18 + 3070: -24,-16 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteInnerSe decals: - 750: -2,-53 - 761: -10,-53 + 3931: -10,-54 - node: color: '#258CC0EA' id: MiniTileWhiteInnerSw decals: - 3658: -26,-62 + 3464: -26,-62 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 2926: 20,-23 + 2761: 20,-23 + - node: + color: '#52B4E9CA' + id: MiniTileWhiteInnerSw + decals: + 4053: -16,-50 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSw decals: - 740: 0,-55 - 741: -3,-55 - 742: -6,-55 - 743: -9,-55 - 744: -12,-55 - 3022: -2,-48 + 2855: -2,-48 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteInnerSw + decals: + 3976: -6,-57 + 3986: -5,-57 + 3987: -4,-57 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteInnerSw + decals: + 4000: -6,-61 + 4104: 1,-63 - node: color: '#73C2A496' id: MiniTileWhiteInnerSw decals: - 2675: -36,-47 + 2510: -36,-47 - node: color: '#787878AB' id: MiniTileWhiteInnerSw decals: - 3472: 29,-75 + 3298: 29,-75 - node: color: '#787878B7' id: MiniTileWhiteInnerSw decals: - 3509: 29,-87 + 3335: 29,-87 - node: color: '#D381C996' id: MiniTileWhiteInnerSw decals: - 1007: 42,-48 + 843: 42,-48 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSw decals: - 2274: 11,3 - 2275: 5,3 + 2109: 11,3 + 2110: 5,3 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 2544: -55,-19 + 2379: -55,-19 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteInnerSw decals: - 753: 0,-53 - 760: -8,-53 + 3932: -8,-54 - node: color: '#258CC0EA' id: MiniTileWhiteLineE decals: - 3629: 7,-50 - 3630: 7,-49 - 3631: 7,-48 - 3632: 7,-47 - 3649: -23,-59 - 3650: -23,-60 - 3651: -23,-61 - 3652: -23,-62 + 3455: -23,-59 + 3456: -23,-60 + 3457: -23,-61 + 3458: -23,-62 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 2914: 32,-22 - 2915: 30,-25 - 2916: 30,-24 - 2931: 16,-26 - 2932: 16,-25 + 2749: 32,-22 + 2750: 30,-25 + 2751: 30,-24 + 2766: 16,-26 + 2767: 16,-25 - node: color: '#478C5DDC' id: MiniTileWhiteLineE decals: - 812: -18,-71 - 813: -18,-72 - 814: -18,-73 - 847: -23,-77 - 848: -23,-78 - 849: -23,-79 - 850: -23,-80 - 868: -23,-84 - 875: -20,-86 - 876: -20,-87 + 648: -18,-71 + 649: -18,-72 + 650: -18,-73 + 683: -23,-77 + 684: -23,-78 + 685: -23,-79 + 686: -23,-80 + 704: -23,-84 + 711: -20,-86 + 712: -20,-87 - node: color: '#52B4E963' id: MiniTileWhiteLineE decals: - 3191: 73,-49 + 3024: 73,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineE decals: - 3598: 47,6 - 3599: 47,5 + 3424: 47,6 + 3425: 47,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineE decals: - 679: 0,-47 - 680: 0,-48 - 681: 0,-49 - 687: -8,-49 - 729: 6,-54 - 776: -12,-47 - 777: -12,-48 - 778: -12,-49 - 779: -12,-50 - 791: 0,-65 - 792: 0,-66 - 793: 0,-67 - 794: -1,-66 + 610: 0,-47 + 611: 0,-48 + 612: 0,-49 + 618: -8,-49 + 637: -12,-47 + 638: -12,-48 + 639: -12,-49 + 640: -12,-50 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteLineE + decals: + 4027: -4,-66 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteLineE + decals: + 3955: -4,-58 + 3956: -4,-59 + 3957: -4,-60 + 3958: -4,-61 + 3959: -4,-62 + 3971: -6,-58 + 3972: -6,-59 + 3973: -6,-60 + 3974: -6,-61 + 3975: -6,-62 + 3979: -2,-55 + 3980: -2,-56 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteLineE + decals: + 4085: 6,-57 + 4086: 6,-58 + 4087: 6,-59 + 4088: 6,-60 + 4089: 6,-61 + 4090: 6,-62 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteLineE + decals: + 4005: -12,-54 + 4006: -12,-55 + 4007: -12,-56 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteLineE + decals: + 3857: 7,-48 + 3858: 7,-47 + 3859: 7,-49 + 3860: 7,-50 + 3861: 6,-52 + 3862: 6,-53 - node: color: '#646464C7' id: MiniTileWhiteLineE decals: - 3777: -46,0 + 3583: -46,0 - node: color: '#707070B7' id: MiniTileWhiteLineE decals: - 3445: 31,-73 + 3271: 31,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineE decals: - 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 + 2422: -23,-36 + 2423: -23,-35 + 2424: -23,-34 + 2425: -23,-33 + 2442: -31,-34 + 2443: -31,-35 + 2452: -36,-36 + 2453: -36,-35 + 2454: -36,-34 + 2468: -32,-39 + 2469: -32,-40 + 2470: -32,-41 + 2478: -35,-41 + 2480: -35,-42 + 2481: -35,-43 + 2482: -34,-45 + 2483: -34,-46 + 2484: -34,-47 + 2485: -34,-48 + 2486: -34,-49 + 2487: -34,-50 + 2488: -34,-51 + 2489: -34,-52 + 2490: -34,-53 + 2491: -34,-54 + 2492: -34,-55 + 2493: -34,-56 - node: color: '#787878AB' id: MiniTileWhiteLineE decals: - 3461: 31,-74 - 3462: 31,-75 + 3287: 31,-74 + 3288: 31,-75 - node: color: '#787878B7' id: MiniTileWhiteLineE decals: - 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 - 3519: 50,-73 - 3520: 49,-75 - 3528: 49,-92 - 3529: 49,-91 - 3530: 49,-90 - 3531: 49,-89 - 3532: 49,-88 - 3533: 49,-87 - 3534: 49,-86 - 3535: 49,-85 - 3536: 49,-84 - 3537: 49,-83 - 3538: 49,-82 - 3539: 49,-81 - 3540: 49,-80 - 3541: 49,-79 + 3304: 31,-79 + 3305: 31,-80 + 3306: 31,-81 + 3307: 31,-82 + 3308: 31,-83 + 3309: 31,-84 + 3310: 31,-85 + 3311: 31,-86 + 3312: 31,-87 + 3313: 31,-88 + 3314: 31,-89 + 3315: 31,-90 + 3316: 31,-91 + 3317: 31,-92 + 3345: 50,-73 + 3346: 49,-75 + 3354: 49,-92 + 3355: 49,-91 + 3356: 49,-90 + 3357: 49,-89 + 3358: 49,-88 + 3359: 49,-87 + 3360: 49,-86 + 3361: 49,-85 + 3362: 49,-84 + 3363: 49,-83 + 3364: 49,-82 + 3365: 49,-81 + 3366: 49,-80 + 3367: 49,-79 - node: color: '#88C598FF' id: MiniTileWhiteLineE decals: - 3968: 17,-84 - 3969: 17,-83 - 3970: 17,-85 + 3774: 17,-84 + 3775: 17,-83 + 3776: 17,-85 + - node: + color: '#9FED58E9' + id: MiniTileWhiteLineE + decals: + 4022: -13,-55 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 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 + 2165: -23,18 + 2166: -23,19 + 2167: -23,20 + 2168: -23,21 + 2169: -23,22 + 2170: -23,23 + 2171: -23,24 + 2172: -31,24 + 2173: -31,23 + 2174: -31,25 + 2175: -31,22 + 2176: -31,21 + 2177: -31,20 + 2193: -28,18 + 2215: -47,21 + 2219: -47,32 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 894: 46,-43 - 904: 53,-45 - 905: 53,-44 - 906: 53,-43 - 907: 53,-42 - 908: 53,-41 - 909: 51,-39 - 910: 51,-47 - 944: 65,-46 - 945: 65,-47 - 946: 65,-48 - 947: 65,-49 - 968: 51,-58 - 969: 51,-57 - 976: 53,-53 - 977: 52,-55 - 1002: 46,-47 - 1003: 46,-48 - 1004: 46,-49 - 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 + 730: 46,-43 + 740: 53,-45 + 741: 53,-44 + 742: 53,-43 + 743: 53,-42 + 744: 53,-41 + 745: 51,-39 + 746: 51,-47 + 780: 65,-46 + 781: 65,-47 + 782: 65,-48 + 783: 65,-49 + 804: 51,-58 + 805: 51,-57 + 812: 53,-53 + 813: 52,-55 + 838: 46,-47 + 839: 46,-48 + 840: 46,-49 + 2877: 71,-37 + 2878: 71,-36 + 2879: 71,-35 + 2996: 68,-49 + 3004: 76,-49 + 3005: 77,-47 + 3006: 77,-46 + 3007: 77,-45 + 3242: 65,-34 + 3243: 65,-35 - node: color: '#D381C9C0' id: MiniTileWhiteLineE decals: - 3101: 65,-45 + 2934: 65,-45 - node: color: '#D4D4D406' id: MiniTileWhiteLineE decals: - 3946: -40,14 - 3947: -36,14 + 3752: -40,14 + 3753: -36,14 - node: color: '#D4D4D40F' id: MiniTileWhiteLineE decals: - 3116: 55,-36 + 2949: 55,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineE decals: - 2457: -46,-17 - 2458: -46,-16 - 2459: -46,-14 - 2460: -46,-15 - 2461: -46,-13 - 2462: -46,-10 - 2463: -46,-11 - 2464: -46,-12 + 2292: -46,-17 + 2293: -46,-16 + 2294: -46,-14 + 2295: -46,-15 + 2296: -46,-13 + 2297: -46,-10 + 2298: -46,-11 + 2299: -46,-12 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 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 + 2530: 26,12 + 2531: 26,11 + 2532: 26,10 + 2549: 26,17 + 2581: 8,13 + 2582: 8,14 + 2583: 8,15 + 2584: 8,16 + 2619: 42,15 + 2620: 42,13 + 2621: 42,11 + 2622: 42,12 + 2623: 42,10 + 2624: 42,9 + 2625: 42,8 + 2626: 42,7 + 2627: 42,6 + 2628: 42,5 + 2645: 30,20 + 2653: 30,19 + 2654: 30,18 + 2655: 30,17 + 2896: -16,-22 + 2897: -16,-23 + 2966: 22,-47 + 3130: -15,26 + 3131: -15,25 + 3132: -15,24 - node: color: '#DE3A3AA7' id: MiniTileWhiteLineE decals: - 3904: 30,21 + 3710: 30,21 - node: color: '#DE3A3AD3' id: MiniTileWhiteLineE decals: - 808: -19,-76 - 809: -19,-77 - 810: -19,-79 - 811: -19,-80 + 644: -19,-76 + 645: -19,-77 + 646: -19,-79 + 647: -19,-80 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 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 + 2226: -23,-14 + 2227: -23,-13 + 2228: -23,-12 + 2229: -23,-11 + 2230: -23,-10 + 2239: -28,-12 + 2240: -28,-13 + 2241: -28,-14 + 2251: -32,-16 + 2252: -32,-14 + 2253: -32,-13 + 2254: -32,-15 + 2269: -35,-13 + 2270: -35,-12 + 2271: -35,-11 + 2272: -35,-10 + 2281: -42,-11 + 2282: -42,-12 + 2283: -42,-13 + 2320: -32,-29 + 2321: -32,-28 + 2322: -32,-27 + 2323: -32,-26 + 2324: -32,-25 + 2325: -32,-23 + 2326: -32,-24 + 2346: -51,-20 + 2347: -51,-19 + 2348: -51,-18 + 2349: -53,-16 + 2350: -53,-15 + 2351: -53,-14 + 2352: -54,-12 + 2353: -54,-11 + 2354: -54,-10 + 2355: -54,-9 + 2356: -54,-8 + 2412: -71,-25 + 2413: -71,-26 + 3048: -32,-11 + 3049: -32,-12 + 3050: -28,-11 + 3051: -23,-15 + 3052: -24,-17 + 3092: -35,-7 + 3093: -35,-8 + 3094: -35,-9 + 3119: -42,-7 - node: color: '#EFB341B1' id: MiniTileWhiteLineE decals: - 3909: -51,-25 - 3910: -51,-24 + 3715: -51,-25 + 3716: -51,-24 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteLineE decals: - 653: -2,-54 - 661: 4,-65 - 3019: -10,-54 + 3929: -10,-55 - node: color: '#258CC0EA' id: MiniTileWhiteLineN decals: - 3637: 3,-46 - 3638: 4,-46 - 3639: 5,-46 - 3640: 6,-46 - 3641: -25,-58 - 3642: -26,-58 - 3643: -24,-58 + 3447: -25,-58 + 3448: -26,-58 + 3449: -24,-58 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 1008: 32,-59 - 1009: 33,-59 - 1010: 31,-59 - 1011: 30,-59 - 1012: 29,-59 - 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 + 844: 32,-59 + 845: 33,-59 + 846: 31,-59 + 847: 30,-59 + 848: 29,-59 + 2589: 6,17 + 2735: 30,-22 + 2736: 29,-22 + 2737: 28,-22 + 2738: 27,-22 + 2739: 26,-22 + 2740: 25,-22 + 2741: 24,-22 + 2742: 23,-22 + 2743: 22,-22 + 2744: 21,-22 + 2745: 20,-22 + 2769: 32,-17 - node: color: '#478C5DDC' id: MiniTileWhiteLineN decals: - 826: -25,-70 - 827: -24,-70 - 828: -23,-70 - 829: -22,-70 - 830: -21,-70 - 831: -20,-70 - 832: -19,-70 - 845: -25,-76 - 846: -24,-76 - 851: -27,-78 - 869: -21,-85 - 870: -22,-85 - 873: -25,-85 - 874: -26,-85 + 662: -25,-70 + 663: -24,-70 + 664: -23,-70 + 665: -22,-70 + 666: -21,-70 + 667: -20,-70 + 668: -19,-70 + 681: -25,-76 + 682: -24,-76 + 687: -27,-78 + 705: -21,-85 + 706: -22,-85 + 709: -25,-85 + 710: -26,-85 - node: color: '#52B4E963' id: MiniTileWhiteLineN decals: - 3181: 72,-48 - 3182: 71,-48 - 3183: 70,-48 + 3014: 72,-48 + 3015: 71,-48 + 3016: 70,-48 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 2937: -9,-42 + 2771: -9,-42 - node: color: '#52B4E9B7' id: MiniTileWhiteLineN decals: - 3592: 45,8 + 3418: 45,8 - node: color: '#52B4E9CD' id: MiniTileWhiteLineN decals: - 670: -2,-46 - 671: -1,-46 - 672: -3,-46 - 673: -4,-46 - 674: -5,-46 - 675: -6,-46 - 676: -7,-46 - 677: -8,-46 - 678: -9,-46 - 710: -15,-53 - 711: -14,-53 - 712: -11,-53 - 713: -9,-53 - 714: -8,-53 - 715: -7,-53 - 716: -6,-53 - 717: -5,-53 - 718: -4,-53 - 719: -3,-53 - 720: -2,-53 - 721: -1,-53 - 722: 0,-53 - 723: 1,-53 - 724: 2,-53 - 725: 3,-53 - 726: 4,-53 - 727: 5,-53 - 762: -10,-53 - 770: -13,-46 - 771: -14,-46 - 772: -16,-46 - 773: -15,-46 - 804: -2,-65 - 805: -1,-64 - 806: -2,-64 - 807: -3,-64 + 601: -2,-46 + 602: -1,-46 + 603: -3,-46 + 604: -4,-46 + 605: -5,-46 + 606: -6,-46 + 607: -7,-46 + 608: -8,-46 + 609: -9,-46 + 631: -13,-46 + 632: -14,-46 + 633: -16,-46 + 634: -15,-46 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteLineN + decals: + 4029: -5,-65 - node: - color: '#5D9C7FC1' + color: '#52B4E9D6' + id: MiniTileWhiteLineN + decals: + 3935: -9,-53 + 3936: -8,-53 + 3937: -7,-53 + 3938: -6,-53 + 3939: -5,-53 + 3940: -4,-53 + 3941: -3,-53 + 3942: -2,-53 + 3943: -1,-53 + 3964: -5,-63 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteLineN + decals: + 3996: -7,-60 + 3997: -8,-60 + 4080: 1,-56 + 4081: 2,-56 + 4082: 3,-56 + 4083: 4,-56 + 4084: 5,-56 + - node: + color: '#52B4E9DF' id: MiniTileWhiteLineN decals: - 3616: -41,-42 + 4010: -15,-53 + 4011: -14,-53 + 4012: -13,-53 - node: - color: '#60A5D9D6' + color: '#52B4E9E6' + id: MiniTileWhiteLineN + decals: + 3873: 6,-46 + 3874: 5,-46 + 3875: 4,-46 + 3876: 3,-46 + - node: + color: '#5D9C7FC1' id: MiniTileWhiteLineN decals: - 3404: -13,-53 - 3405: -12,-53 + 3442: -41,-42 - node: color: '#707070B7' id: MiniTileWhiteLineN decals: - 3446: 25,-70 - 3447: 26,-70 - 3449: 29,-72 - 3450: 30,-72 + 3272: 25,-70 + 3273: 26,-70 + 3275: 29,-72 + 3276: 30,-72 - node: color: '#73C2A496' id: MiniTileWhiteLineN decals: - 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 + 2416: -25,-32 + 2417: -24,-32 + 2457: -38,-33 + 2458: -39,-33 + 2459: -40,-33 + 2460: -37,-33 + 2474: -42,-42 + 2475: -40,-42 + 2476: -39,-42 + 2477: -38,-42 + 2496: -37,-54 + 2513: -37,-42 - node: color: '#787878B7' id: MiniTileWhiteLineN decals: - 3475: 30,-78 - 3501: 28,-81 - 3521: 48,-72 - 3522: 49,-72 - 3557: 48,-78 + 3301: 30,-78 + 3327: 28,-81 + 3347: 48,-72 + 3348: 49,-72 + 3383: 48,-78 - node: color: '#88C598FF' id: MiniTileWhiteLineN decals: - 3955: 16,-82 - 3956: 15,-82 - 3957: 14,-82 + 3761: 16,-82 + 3762: 15,-82 + 3763: 14,-82 - node: color: '#9FED5896' id: MiniTileWhiteLineN decals: - 884: -9,-26 - 885: -10,-26 - 886: -12,-26 + 720: -9,-26 + 721: -10,-26 + 722: -12,-26 + - node: + color: '#9FED58E9' + id: MiniTileWhiteLineN + decals: + 4024: -14,-54 - node: color: '#A4610696' id: MiniTileWhiteLineN decals: - 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 + 2178: -29,19 + 2179: -30,19 + 2180: -33,26 + 2181: -32,26 + 2182: -34,26 + 2183: -25,25 + 2184: -24,25 + 2214: -48,22 + 2225: -48,33 - node: color: '#D381C996' id: MiniTileWhiteLineN decals: - 897: 45,-42 - 898: 44,-42 - 899: 43,-42 - 900: 42,-42 - 926: 52,-40 - 929: 50,-38 - 930: 49,-38 - 932: 56,-45 - 972: 46,-57 - 973: 47,-57 - 974: 49,-50 - 975: 50,-50 - 998: 45,-46 - 999: 44,-46 - 1000: 42,-46 - 1001: 43,-46 - 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 + 733: 45,-42 + 734: 44,-42 + 735: 43,-42 + 736: 42,-42 + 762: 52,-40 + 765: 50,-38 + 766: 49,-38 + 768: 56,-45 + 808: 46,-57 + 809: 47,-57 + 810: 49,-50 + 811: 50,-50 + 834: 45,-46 + 835: 44,-46 + 836: 42,-46 + 837: 43,-46 + 2883: 72,-38 + 2884: 72,-32 + 2885: 73,-32 + 2987: 68,-44 + 2988: 69,-44 + 2989: 70,-44 + 2990: 71,-44 + 2991: 72,-44 + 2992: 75,-48 + 3248: 61,-32 + 3249: 62,-32 + 3250: 63,-32 - node: color: '#D381C9C0' id: MiniTileWhiteLineN decals: - 3103: 60,-44 - 3104: 64,-44 - 3105: 62,-43 + 2936: 60,-44 + 2937: 64,-44 + 2938: 62,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteLineN decals: - 3115: 54,-35 + 2948: 54,-35 - node: color: '#D4D4D428' id: MiniTileWhiteLineN decals: - 2452: -47,-9 + 2287: -47,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteLineN decals: - 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 + 1996: -10,3 + 1997: -9,3 + 1998: -8,3 + 1999: -6,3 + 2000: -7,3 + 2001: -5,3 + 2002: -4,3 + 2003: 0,3 + 2004: 1,3 + 2005: 2,3 + 2006: 3,3 + 2007: 4,3 + 2008: 5,3 + 2009: 6,3 + 2010: 7,3 + 2011: 8,3 + 2012: 9,3 + 2013: 10,3 + 2014: 11,3 + 2015: 12,3 + 2016: 13,3 + 2024: 13,-1 + 2025: 12,-1 + 2061: 8,-1 + 2062: 7,-1 + 2063: 6,-1 + 2064: 2,-1 + 2065: 0,-1 + 2066: 1,-1 + 2078: 10,-2 + 2079: 4,-2 + 2099: -4,-1 + 2100: -5,-1 + 2101: -7,-1 + 2102: -6,-1 + 2103: -8,-1 + 2104: -9,-1 + 2105: -10,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 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 + 2525: 26,8 + 2526: 25,8 + 2527: 24,8 + 2529: 25,13 + 2544: 21,18 + 2545: 22,18 + 2546: 23,18 + 2547: 24,18 + 2548: 25,18 + 2558: 17,17 + 2559: 16,17 + 2566: 12,17 + 2567: 11,17 + 2572: 7,17 + 2573: 5,17 + 2609: 29,22 + 2610: 33,16 + 2611: 34,16 + 2612: 35,16 + 2613: 36,16 + 2614: 37,16 + 2615: 38,16 + 2616: 39,16 + 2617: 40,16 + 2618: 41,16 + 2656: 32,16 + 2657: 31,16 + 2768: 20,-17 + 2963: 21,-46 + 2964: 20,-46 + 3125: -16,27 + 3133: 30,16 + 3134: 29,16 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 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 + 2246: -24,-9 + 2247: -25,-9 + 2259: -29,-17 + 2260: -30,-17 + 2261: -31,-17 + 2309: -46,-6 + 2310: -47,-6 + 2311: -48,-6 + 2337: -54,-6 + 2338: -53,-6 + 2339: -52,-6 + 2373: -52,-17 + 2384: -56,-24 + 2385: -57,-24 + 2386: -58,-24 + 2387: -59,-24 + 2388: -60,-24 + 2389: -61,-24 + 2390: -62,-24 + 2406: -72,-24 + 2407: -73,-24 + 2408: -74,-24 + 3059: -29,-10 + 3085: -39,-6 + 3086: -38,-6 + 3087: -37,-6 + 3088: -36,-6 - node: color: '#EFB341B1' id: MiniTileWhiteLineN decals: - 3911: -54,-23 - 3912: -53,-23 - 3913: -52,-23 + 3717: -54,-23 + 3718: -53,-23 + 3719: -52,-23 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteLineN decals: - 651: -9,-55 - 659: 3,-64 - 751: -1,-55 + 3930: -9,-56 - node: color: '#258CC0EA' id: MiniTileWhiteLineS decals: - 3621: 4,-51 - 3622: 5,-51 - 3623: 3,-51 - 3624: 6,-51 - 3644: -25,-63 - 3645: -24,-63 + 3450: -25,-63 + 3451: -24,-63 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 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 + 2724: 29,-26 + 2725: 28,-26 + 2726: 27,-26 + 2727: 26,-26 + 2728: 25,-26 + 2729: 24,-26 + 2730: 23,-26 + 2731: 22,-26 + 2732: 21,-26 + 2733: 31,-23 + 2734: 19,-23 + 2770: 20,-44 - node: color: '#478C5DDC' id: MiniTileWhiteLineS decals: - 817: -20,-74 - 818: -21,-74 - 819: -19,-74 - 820: -22,-74 - 821: -23,-74 - 822: -24,-74 - 823: -25,-74 - 838: -27,-81 - 839: -26,-81 - 840: -25,-81 - 841: -24,-81 - 854: -21,-88 - 855: -22,-88 - 856: -23,-88 - 857: -24,-88 - 858: -25,-88 - 859: -26,-88 + 653: -20,-74 + 654: -21,-74 + 655: -19,-74 + 656: -22,-74 + 657: -23,-74 + 658: -24,-74 + 659: -25,-74 + 674: -27,-81 + 675: -26,-81 + 676: -25,-81 + 677: -24,-81 + 690: -21,-88 + 691: -22,-88 + 692: -23,-88 + 693: -24,-88 + 694: -25,-88 + 695: -26,-88 - node: color: '#52B4E963' id: MiniTileWhiteLineS decals: - 3187: 70,-50 - 3188: 71,-50 - 3189: 72,-50 + 3020: 70,-50 + 3021: 71,-50 + 3022: 72,-50 - node: color: '#52B4E9AE' id: MiniTileWhiteLineS decals: - 878: 0,-44 - 879: -1,-44 - 880: -2,-44 - 881: -8,-44 - 882: -9,-44 - 883: -10,-44 + 714: 0,-44 + 715: -1,-44 + 716: -2,-44 + 717: -8,-44 + 718: -9,-44 + 719: -10,-44 - node: color: '#52B4E9B7' id: MiniTileWhiteLineS decals: - 3593: 45,4 - 3594: 46,4 + 3419: 45,4 + 3420: 46,4 - node: color: '#52B4E9CD' id: MiniTileWhiteLineS decals: - 666: -1,-50 - 688: -7,-48 - 689: -6,-48 - 690: -5,-48 - 691: -4,-48 - 692: -3,-48 - 699: -15,-55 - 700: -14,-55 - 701: -13,-55 - 702: -11,-55 - 703: -10,-55 - 704: -8,-55 - 705: -7,-55 - 730: 5,-55 - 731: 4,-55 - 732: 3,-55 - 733: 2,-55 - 734: 1,-55 - 735: -1,-55 - 736: -2,-55 - 737: -4,-55 - 738: -5,-55 - 763: -9,-50 - 766: -13,-51 - 767: -14,-51 - 768: -16,-51 - 769: -15,-51 - 799: -2,-67 - 800: -2,-68 - 801: -1,-68 - 802: -3,-68 + 597: -1,-50 + 619: -7,-48 + 620: -6,-48 + 621: -5,-48 + 622: -4,-48 + 623: -3,-48 + 626: -9,-50 + 628: -13,-51 + 629: -14,-51 + 630: -15,-51 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteLineS + decals: + 4028: -5,-67 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteLineS + decals: + 3944: -3,-57 + 3945: -7,-57 + 3946: -8,-57 + 3947: -9,-57 + 3948: -1,-54 + 3965: -5,-57 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteLineS + decals: + 3995: -5,-63 + 3998: -7,-61 + 3999: -8,-61 + 4101: 3,-64 + 4102: 2,-64 + 4103: 4,-64 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteLineS + decals: + 4002: -13,-57 + 4003: -14,-57 + 4004: -15,-57 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteLineS + decals: + 3863: 5,-54 + 3864: 4,-54 + 3865: 3,-54 - node: color: '#73C2A496' id: MiniTileWhiteLineS decals: - 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 + 2418: -25,-37 + 2419: -24,-37 + 2438: -33,-36 + 2439: -32,-36 + 2446: -37,-37 + 2447: -38,-37 + 2448: -39,-37 + 2449: -40,-37 + 2494: -36,-58 + 2495: -37,-58 + 2503: -37,-47 + 2504: -38,-47 - node: color: '#787878AB' id: MiniTileWhiteLineS decals: - 3466: 28,-75 - 3467: 26,-75 - 3468: 27,-75 - 3469: 25,-75 - 3470: 23,-74 - 3471: 30,-76 + 3292: 28,-75 + 3293: 26,-75 + 3294: 27,-75 + 3295: 25,-75 + 3296: 23,-74 + 3297: 30,-76 - node: color: '#787878B7' id: MiniTileWhiteLineS decals: - 3499: 30,-93 - 3500: 28,-87 - 3515: 48,-76 - 3556: 48,-93 + 3325: 30,-93 + 3326: 28,-87 + 3341: 48,-76 + 3382: 48,-93 - node: color: '#88C598FF' id: MiniTileWhiteLineS decals: - 3964: 15,-86 - 3965: 16,-86 - 3966: 14,-86 + 3770: 15,-86 + 3771: 16,-86 + 3772: 14,-86 + - node: + color: '#9FED58E9' + id: MiniTileWhiteLineS + decals: + 4021: -14,-56 - node: color: '#A4610696' id: MiniTileWhiteLineS decals: - 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 + 2157: -25,17 + 2158: -24,17 + 2159: -29,17 + 2160: -30,17 + 2161: -31,17 + 2162: -34,17 + 2163: -33,17 + 2164: -32,17 + 2217: -48,20 + 2218: -48,31 - node: color: '#D381C996' id: MiniTileWhiteLineS decals: - 887: 45,-44 - 888: 44,-44 - 889: 43,-44 - 890: 42,-44 - 901: 50,-48 - 902: 49,-48 - 903: 52,-46 - 931: 56,-46 - 937: 62,-50 - 938: 63,-50 - 939: 64,-50 - 940: 61,-50 - 941: 60,-50 - 980: 50,-59 - 981: 49,-59 - 982: 48,-59 - 983: 47,-59 - 990: 45,-50 - 991: 44,-50 - 992: 43,-50 - 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 + 723: 45,-44 + 724: 44,-44 + 725: 43,-44 + 726: 42,-44 + 737: 50,-48 + 738: 49,-48 + 739: 52,-46 + 767: 56,-46 + 773: 62,-50 + 774: 63,-50 + 775: 64,-50 + 776: 61,-50 + 777: 60,-50 + 816: 50,-59 + 817: 49,-59 + 818: 48,-59 + 819: 47,-59 + 826: 45,-50 + 827: 44,-50 + 828: 43,-50 + 2880: 72,-34 + 2881: 72,-39 + 2882: 74,-33 + 2978: 75,-50 + 2979: 68,-45 + 2980: 69,-45 + 2981: 70,-45 + 2982: 71,-45 + 2983: 72,-45 + 3238: 63,-37 + 3239: 62,-37 + 3240: 61,-37 - node: color: '#D381C9AB' id: MiniTileWhiteLineS decals: - 3120: 71,-39 + 2953: 71,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteLineS decals: - 3118: 54,-37 + 2951: 54,-37 - node: color: '#D4D4D428' id: MiniTileWhiteLineS decals: - 2456: -47,-18 + 2291: -47,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteLineS decals: - 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 + 1975: 6,-2 + 1976: 7,-2 + 1977: 8,-2 + 1978: 9,-2 + 1979: 10,-2 + 1980: 11,-2 + 1981: 12,-2 + 1982: 13,-2 + 1983: 5,-2 + 1984: 4,-2 + 1985: 3,-2 + 1986: 2,-2 + 1987: 1,-2 + 1988: 0,-2 + 1989: -4,-2 + 1990: -5,-2 + 1991: -6,-2 + 1992: -7,-2 + 1993: -8,-2 + 1994: -9,-2 + 1995: -10,-2 + 2076: 10,3 + 2077: 4,3 + 2084: 12,2 + 2085: 13,2 + 2086: 8,2 + 2087: 7,2 + 2088: 6,2 + 2089: 2,2 + 2090: 1,2 + 2091: 0,2 + 2092: -4,2 + 2093: -5,2 + 2094: -6,2 + 2095: -7,2 + 2096: -8,2 + 2097: -9,2 + 2098: -10,2 - node: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 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 + 2528: 25,9 + 2550: 25,16 + 2551: 24,16 + 2552: 23,16 + 2553: 21,16 + 2554: 22,16 + 2556: 17,16 + 2557: 16,16 + 2568: 12,16 + 2569: 11,16 + 2576: 6,12 + 2577: 7,12 + 2579: 5,12 + 2629: 41,4 + 2634: 39,14 + 2635: 38,14 + 2636: 37,14 + 2637: 36,14 + 2638: 34,14 + 2639: 35,14 + 2640: 33,14 + 2641: 32,14 + 2642: 31,14 + 2643: 29,14 + 2644: 30,14 + 2961: 21,-48 + 2962: 20,-48 + 3126: -16,23 + 3137: 41,14 + 3138: 40,14 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 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: -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 + 2242: -29,-15 + 2263: -37,-14 + 2264: -38,-14 + 2265: -39,-14 + 2266: -36,-14 + 2312: -46,-7 + 2313: -48,-7 + 2314: -47,-7 + 2369: -54,-21 + 2370: -53,-21 + 2371: -52,-21 + 2374: -52,-7 + 2375: -53,-7 + 2391: -62,-26 + 2392: -61,-26 + 2393: -61,-26 + 2394: -60,-26 + 2395: -59,-26 + 2396: -58,-26 + 2397: -57,-26 + 2398: -56,-26 + 2399: -55,-26 + 2409: -72,-27 + 2410: -73,-27 + 2411: -74,-27 + 3062: -29,-18 + 3063: -30,-18 + 3064: -31,-18 + 3066: -25,-18 - node: color: '#EFB341B1' id: MiniTileWhiteLineS decals: - 3915: -52,-26 - 3916: -53,-26 - 3917: -54,-26 + 3721: -52,-26 + 3722: -53,-26 + 3723: -54,-26 - node: - color: '#FFFFFFFF' + color: '#F0F0F0FF' id: MiniTileWhiteLineS decals: - 660: 3,-66 - 752: -1,-53 - 759: -9,-53 + 3927: -9,-54 - node: color: '#258CC0EA' id: MiniTileWhiteLineW decals: - 3633: 2,-50 - 3634: 2,-49 - 3635: 2,-48 - 3636: 2,-47 - 3646: -27,-59 - 3647: -27,-60 - 3648: -27,-61 + 3452: -27,-59 + 3453: -27,-60 + 3454: -27,-61 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2911: 20,-25 - 2912: 20,-24 - 2913: 18,-22 - 2929: 34,-25 - 2930: 34,-26 - 2933: 34,-31 + 2746: 20,-25 + 2747: 20,-24 + 2748: 18,-22 + 2764: 34,-25 + 2765: 34,-26 - node: color: '#478C5DDC' id: MiniTileWhiteLineW decals: - 833: -26,-71 - 834: -26,-72 - 835: -26,-73 - 836: -28,-79 - 837: -28,-80 - 852: -26,-77 - 865: -27,-86 - 866: -27,-87 - 867: -24,-84 + 669: -26,-71 + 670: -26,-72 + 671: -26,-73 + 672: -28,-79 + 673: -28,-80 + 688: -26,-77 + 701: -27,-86 + 702: -27,-87 + 703: -24,-84 - node: color: '#52B4E963' id: MiniTileWhiteLineW decals: - 3190: 69,-49 + 3023: 69,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineW decals: - 3595: 44,7 - 3596: 44,6 - 3597: 44,5 + 3421: 44,7 + 3422: 44,6 + 3423: 44,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineW decals: - 682: -10,-47 - 683: -10,-48 - 684: -10,-49 - 693: -2,-49 - 698: -16,-54 - 780: -17,-47 - 781: -17,-48 - 782: -17,-49 - 783: -17,-50 - 795: -4,-65 - 796: -4,-66 - 797: -4,-67 - 798: -3,-66 + 613: -10,-47 + 614: -10,-48 + 615: -10,-49 + 624: -2,-49 + 641: -17,-47 + 642: -17,-48 + 643: -17,-49 + - node: + color: '#52B4E9D3' + id: MiniTileWhiteLineW + decals: + 4025: -16,-56 + 4026: -6,-66 + - node: + color: '#52B4E9D6' + id: MiniTileWhiteLineW + decals: + 3949: -10,-56 + 3950: -10,-55 + 3951: -10,-54 + 3952: -6,-58 + 3953: -6,-59 + 3954: -6,-62 + 3966: -4,-58 + 3967: -4,-59 + 3968: -4,-60 + 3969: -4,-61 + 3970: -4,-62 + - node: + color: '#52B4E9DC' + id: MiniTileWhiteLineW + decals: + 4091: 0,-57 + 4092: 0,-58 + 4093: 0,-59 + 4094: 0,-60 + 4095: 0,-61 + 4096: 0,-62 + - node: + color: '#52B4E9DF' + id: MiniTileWhiteLineW + decals: + 4008: -16,-54 + 4009: -16,-55 + - node: + color: '#52B4E9E6' + id: MiniTileWhiteLineW + decals: + 3866: 2,-53 + 3867: 2,-52 + 3868: 2,-51 + 3869: 2,-50 + 3870: 2,-49 + 3871: 2,-48 + 3872: 2,-47 - node: color: '#707070B7' id: MiniTileWhiteLineW decals: - 3448: 22,-73 + 3274: 22,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineW decals: - 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 + 2428: -26,-33 + 2429: -26,-34 + 2430: -26,-35 + 2431: -26,-36 + 2432: -34,-34 + 2433: -34,-35 + 2461: -41,-34 + 2462: -41,-35 + 2463: -41,-36 + 2471: -33,-39 + 2472: -33,-40 + 2473: -33,-41 + 2479: -36,-41 + 2497: -36,-53 + 2498: -36,-51 + 2499: -36,-50 + 2500: -36,-52 + 2501: -36,-49 + 2502: -36,-48 - node: color: '#787878B7' id: MiniTileWhiteLineW decals: - 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,-84 - 3504: 27,-85 - 3505: 27,-86 - 3516: 47,-75 - 3517: 47,-74 - 3518: 47,-73 - 3542: 47,-79 - 3543: 47,-80 - 3544: 47,-82 - 3545: 47,-81 - 3546: 47,-83 - 3547: 47,-84 - 3548: 47,-85 - 3549: 47,-86 - 3550: 47,-88 - 3551: 47,-87 - 3552: 47,-89 - 3553: 47,-90 - 3554: 47,-91 - 3555: 47,-92 + 3302: 29,-79 + 3303: 29,-80 + 3318: 29,-92 + 3319: 29,-91 + 3320: 29,-90 + 3321: 29,-89 + 3322: 29,-88 + 3328: 27,-82 + 3329: 27,-84 + 3330: 27,-85 + 3331: 27,-86 + 3342: 47,-75 + 3343: 47,-74 + 3344: 47,-73 + 3368: 47,-79 + 3369: 47,-80 + 3370: 47,-82 + 3371: 47,-81 + 3372: 47,-83 + 3373: 47,-84 + 3374: 47,-85 + 3375: 47,-86 + 3376: 47,-88 + 3377: 47,-87 + 3378: 47,-89 + 3379: 47,-90 + 3380: 47,-91 + 3381: 47,-92 - node: color: '#88C598FF' id: MiniTileWhiteLineW decals: - 3960: 13,-83 - 3961: 13,-84 - 3962: 13,-85 + 3766: 13,-83 + 3767: 13,-84 + 3768: 13,-85 + - node: + color: '#9FED58E9' + id: MiniTileWhiteLineW + decals: + 4023: -15,-55 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 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 + 2194: -26,18 + 2195: -26,19 + 2196: -26,20 + 2197: -26,21 + 2198: -26,22 + 2199: -26,23 + 2200: -26,24 + 2201: -35,18 + 2202: -35,19 + 2203: -35,21 + 2204: -35,22 + 2205: -35,20 + 2206: -35,23 + 2207: -35,24 + 2208: -35,25 + 2216: -49,21 + 2220: -49,32 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 893: 41,-43 - 911: 48,-47 - 912: 48,-46 - 913: 48,-45 - 914: 48,-44 - 915: 48,-43 - 916: 48,-42 - 917: 48,-41 - 918: 48,-40 - 919: 48,-39 - 948: 59,-46 - 949: 59,-47 - 950: 59,-48 - 951: 59,-49 - 970: 48,-51 - 971: 45,-58 - 987: 48,-56 - 1005: 41,-47 - 1006: 42,-49 - 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 + 729: 41,-43 + 747: 48,-47 + 748: 48,-46 + 749: 48,-45 + 750: 48,-44 + 751: 48,-43 + 752: 48,-42 + 753: 48,-41 + 754: 48,-40 + 755: 48,-39 + 784: 59,-46 + 785: 59,-47 + 786: 59,-48 + 787: 59,-49 + 806: 48,-51 + 807: 45,-58 + 823: 48,-56 + 841: 41,-47 + 842: 42,-49 + 2873: 70,-34 + 2874: 70,-35 + 2875: 70,-36 + 2876: 70,-37 + 2997: 67,-49 + 2998: 74,-49 + 3008: 76,-47 + 3009: 76,-46 + 3010: 76,-45 + 3244: 60,-33 + 3245: 60,-34 + 3246: 60,-35 + 3247: 60,-36 - node: color: '#D381C9AB' id: MiniTileWhiteLineW decals: - 3122: 70,-38 + 2955: 70,-38 - node: color: '#D381C9C0' id: MiniTileWhiteLineW decals: - 3102: 59,-45 + 2935: 59,-45 - node: color: '#D4D4D406' id: MiniTileWhiteLineW decals: - 3948: -41,14 - 3949: -37,14 + 3754: -41,14 + 3755: -37,14 - node: color: '#D4D4D40F' id: MiniTileWhiteLineW decals: - 3117: 53,-36 + 2950: 53,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineW decals: - 2465: -48,-10 - 2466: -48,-11 - 2467: -48,-12 - 2468: -48,-13 - 2469: -48,-14 - 2470: -48,-15 - 2471: -48,-16 - 2472: -48,-17 + 2300: -48,-10 + 2301: -48,-11 + 2302: -48,-12 + 2303: -48,-13 + 2304: -48,-14 + 2305: -48,-15 + 2306: -48,-16 + 2307: -48,-17 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 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 - 3586: 40,13 - 3587: 40,12 - 3588: 40,11 - 3589: 40,10 - 3590: 40,9 - 3591: 40,8 + 2533: 24,12 + 2534: 24,11 + 2535: 24,10 + 2555: 20,17 + 2585: 4,16 + 2586: 4,15 + 2587: 4,13 + 2588: 4,14 + 2631: 40,5 + 2632: 40,6 + 2633: 40,7 + 2646: 28,21 + 2647: 28,20 + 2648: 28,19 + 2649: 28,18 + 2650: 28,17 + 2651: 28,15 + 2898: -17,-22 + 2899: -17,-23 + 2965: 19,-47 + 3127: -17,24 + 3128: -17,25 + 3129: -17,26 + 3412: 40,13 + 3413: 40,12 + 3414: 40,11 + 3415: 40,10 + 3416: 40,9 + 3417: 40,8 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 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 - 3815: -33,-14 - 3816: -33,-13 - - node: - color: '#FFFFFFFF' + 2231: -26,-14 + 2232: -26,-13 + 2233: -26,-11 + 2234: -26,-12 + 2235: -26,-10 + 2236: -30,-12 + 2237: -30,-13 + 2238: -30,-14 + 2255: -33,-15 + 2256: -33,-17 + 2257: -33,-16 + 2258: -33,-18 + 2273: -40,-10 + 2274: -40,-11 + 2275: -40,-12 + 2276: -40,-13 + 2284: -43,-11 + 2285: -43,-12 + 2286: -43,-13 + 2327: -33,-23 + 2328: -33,-24 + 2329: -33,-25 + 2330: -33,-26 + 2331: -33,-27 + 2332: -33,-28 + 2333: -33,-29 + 2357: -56,-8 + 2358: -56,-9 + 2359: -56,-10 + 2360: -56,-11 + 2361: -56,-12 + 2362: -56,-14 + 2363: -56,-13 + 2364: -56,-15 + 2365: -56,-16 + 2366: -56,-17 + 2367: -56,-18 + 2368: -55,-20 + 2401: -63,-25 + 2414: -75,-25 + 2415: -75,-26 + 3046: -33,-12 + 3047: -33,-11 + 3060: -30,-11 + 3067: -26,-17 + 3068: -26,-16 + 3069: -26,-15 + 3089: -40,-7 + 3090: -40,-8 + 3091: -40,-9 + 3120: -43,-7 + 3621: -33,-14 + 3622: -33,-13 + - node: + color: '#F0F0F0FF' id: MiniTileWhiteLineW decals: - 652: -8,-54 - 654: 0,-54 - 662: 2,-65 + 3928: -8,-55 - node: color: '#646C6447' id: MonoOverlay decals: - 3778: -20,-19 - 3779: -20,-23 - 3780: -20,-11 - 3781: -20,-28 - 3782: -16,-27 - 3783: -20,-35 - 3784: -10,-27 - 3785: -5,-33 - 3786: -5,-25 - 3787: 1,-27 - 3788: 8,-27 - 3789: -1,-43 - 3790: -12,-43 - 3791: -19,-43 - 3792: -20,-37 - 3793: 33,-3 - 3794: 43,1 - 3795: 52,-2 - 3796: 32,7 + 3584: -20,-19 + 3585: -20,-23 + 3586: -20,-11 + 3587: -20,-28 + 3588: -16,-27 + 3589: -20,-35 + 3590: -10,-27 + 3591: -5,-33 + 3592: -5,-25 + 3593: 1,-27 + 3594: 8,-27 + 3595: -1,-43 + 3596: -12,-43 + 3597: -19,-43 + 3598: -20,-37 + 3599: 33,-3 + 3600: 43,1 + 3601: 52,-2 + 3602: 32,7 - node: color: '#D4F8D406' id: MonoOverlay decals: - 3950: -5,-11 - 3951: -5,-5 - 3952: -5,-20 - 3953: -20,-13 - 3954: -17,-27 + 3756: -5,-11 + 3757: -5,-5 + 3758: -5,-20 + 3759: -20,-13 + 3760: -17,-27 - node: color: '#646C6447' id: OffsetCheckerAOverlay decals: - 3797: -4,-26 - 3798: -5,-28 + 3603: -4,-26 + 3604: -5,-28 + - node: + color: '#52B4E9A1' + id: OffsetCheckerBOverlay + decals: + 4001: -9,-55 - node: color: '#8259640C' id: OffsetCheckerBOverlay decals: - 3799: -32,9 - 3800: -33,9 - 3801: -34,9 - 3802: -34,10 - 3803: -31,10 - 3804: -31,9 - 3805: -31,8 - 3806: -30,10 - 3807: -30,9 + 3605: -32,9 + 3606: -33,9 + 3607: -34,9 + 3608: -34,10 + 3609: -31,10 + 3610: -31,9 + 3611: -31,8 + 3612: -30,10 + 3613: -30,9 - node: color: '#FFFFFFFF' id: OriginStationSign1 decals: - 393: 22,-18 + 371: 22,-18 - node: color: '#FFFFFFFF' id: OriginStationSign10 decals: - 1063: 26,-17 + 899: 26,-17 - node: color: '#FFFFFFFF' id: OriginStationSign11 decals: - 1065: 24,-19 + 901: 24,-19 - node: color: '#FFFFFFFF' id: OriginStationSign12 decals: - 1064: 25,-19 + 900: 25,-19 - node: color: '#FFFFFFFF' id: OriginStationSign13 decals: - 1066: 26,-19 + 902: 26,-19 - node: color: '#FFFFFFFF' id: OriginStationSign2 decals: - 394: 23,-18 + 372: 23,-18 - node: color: '#FFFFFFFF' id: OriginStationSign3 decals: - 395: 24,-18 + 373: 24,-18 - node: color: '#FFFFFFFF' id: OriginStationSign4 decals: - 396: 25,-18 + 374: 25,-18 - node: color: '#FFFFFFFF' id: OriginStationSign5 decals: - 397: 26,-18 + 375: 26,-18 - node: color: '#FFFFFFFF' id: OriginStationSign6 decals: - 398: 27,-18 + 376: 27,-18 - node: color: '#FFFFFFFF' id: OriginStationSign7 decals: - 399: 28,-18 + 377: 28,-18 - node: color: '#FFFFFFFF' id: OriginStationSign8 decals: - 1062: 24,-17 + 898: 24,-17 - node: color: '#FFFFFFFF' id: OriginStationSign9 decals: - 1061: 25,-17 + 897: 25,-17 - node: color: '#3B000098' id: PavementVerticalCheckerAOverlay decals: - 3760: -39,6 - 3761: -39,5 - 3762: -39,4 - 3763: -39,3 - 3764: -38,3 - 3765: -38,4 - 3766: -38,5 - 3767: -38,6 + 3566: -39,6 + 3567: -39,5 + 3568: -39,4 + 3569: -39,3 + 3570: -38,3 + 3571: -38,4 + 3572: -38,5 + 3573: -38,6 - node: color: '#476F6433' id: PavementVerticalCheckerAOverlay decals: - 3808: -42,-13 - 3809: -43,-11 - 3810: -42,-7 - 3811: -43,-8 - 3812: -39,-11 - 3813: -30,-13 - 3814: -29,-15 + 3614: -42,-13 + 3615: -43,-11 + 3616: -42,-7 + 3617: -43,-8 + 3618: -39,-11 + 3619: -30,-13 + 3620: -29,-15 - node: color: '#00000093' id: PavementVerticalCheckerBOverlay decals: - 3768: -39,6 - 3769: -38,6 - 3770: -39,5 - 3771: -38,5 - 3772: -39,4 - 3773: -38,4 - 3774: -39,3 - 3775: -38,3 + 3574: -39,6 + 3575: -38,6 + 3576: -39,5 + 3577: -38,5 + 3578: -39,4 + 3579: -38,4 + 3580: -39,3 + 3581: -38,3 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale decals: - 2992: -15,-5 + 2826: -15,-5 + - node: + color: '#F0F0F08F' + id: QuarterTileOverlayGreyscale + decals: + 4050: -10,-62 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 2986: -25,6 + 2820: -25,6 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale180 decals: - 641: -21,-60 + 590: -21,-60 - node: color: '#EFB34153' id: QuarterTileOverlayGreyscale270 decals: - 3011: -15,6 + 2845: -15,6 + - node: + color: '#F0F0F08F' + id: QuarterTileOverlayGreyscale270 + decals: + 4049: -10,-59 - node: color: '#EFB34150' id: QuarterTileOverlayGreyscale90 decals: - 3017: -25,-5 + 2851: -25,-5 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale90 decals: - 639: -21,-62 + 588: -21,-62 - node: color: '#FFFFFFFF' id: Rock01 decals: - 4034: 32.28251,-88.02844 - 4036: 45.023026,-87.13585 + 3840: 32.28251,-88.02844 + 3842: 45.023026,-87.13585 - node: color: '#FFFFFFFF' id: Rock02 decals: - 482: -10.301918,53.89685 - 483: -9.380043,53.8031 - 484: -3.5987926,53.818726 - 3728: -8.789691,17.921444 - 3729: -4.6178155,17.827694 - 4033: 32.90751,-86.01282 + 460: -10.301918,53.89685 + 461: -9.380043,53.8031 + 462: -3.5987926,53.818726 + 3534: -8.789691,17.921444 + 3535: -4.6178155,17.827694 + 3839: 32.90751,-86.01282 - node: color: '#FFFFFFFF' id: Rock03 decals: - 456: -10.764814,50.076122 - 457: -10.296064,50.404247 - 458: -7.1241894,49.888622 - 485: -4.3331676,54.14685 - 486: -8.959863,49.049328 - 4035: 45.491776,-86.3546 + 434: -10.764814,50.076122 + 435: -10.296064,50.404247 + 436: -7.1241894,49.888622 + 463: -4.3331676,54.14685 + 464: -8.959863,49.049328 + 3841: 45.491776,-86.3546 - node: color: '#FFFFFFFF' id: Rock04 decals: - 459: -7.4210644,49.888622 - 460: -3.3754807,48.982372 - 461: -4.0786057,48.216747 - 462: -7.6469474,55.2557 - 463: -6.2719474,53.567944 - 3209: -36,6 - 3210: -32,5 - 3211: -31,3 + 437: -7.4210644,49.888622 + 438: -3.3754807,48.982372 + 439: -4.0786057,48.216747 + 440: -7.6469474,55.2557 + 441: -6.2719474,53.567944 + 3042: -36,6 + 3043: -32,5 + 3044: -31,3 - node: color: '#FFFFFFFF' id: Rock06 decals: - 3206: -42,3 - 3208: -35,4 - 3212: -33,3 + 3039: -42,3 + 3041: -35,4 + 3045: -33,3 - node: cleanable: True color: '#FFFFFFFF' id: Rock06 decals: - 3997: 53.911736,-9.502742 + 3803: 53.911736,-9.502742 - node: color: '#FFFFFFFF' id: Rock07 decals: - 3207: -40,5 + 3040: -40,5 - node: cleanable: True color: '#FFFFFFFF' id: Rock07 decals: - 3998: 60.067986,-9.424617 - 3999: 66.06798,-9.408992 + 3804: 60.067986,-9.424617 + 3805: 66.06798,-9.408992 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 237: 36,-73 + 215: 36,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 238: 37,-73 + 216: 37,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 239: 38,-73 + 217: 38,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 240: 39,-73 + 218: 39,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 241: 40,-73 + 219: 40,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 242: 41,-73 + 220: 41,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 243: 42,-73 + 221: 42,-73 - node: color: '#FFFFFFFF' id: StandClear decals: - 391: -9,-45 - 392: -1,-45 - 3092: 77.48695,-34.5492 - 3093: 77.50258,-37.51795 - 3324: -9,-52 - 3325: -1,-52 + 369: -9,-45 + 370: -1,-45 + 2925: 77.48695,-34.5492 + 2926: 77.50258,-37.51795 + 3154: -1,-52 + 4034: -9,-52 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 955: 63,-48 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3: -10,-64 + 791: 63,-48 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 956: 61,-46 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2: -6,-67 + 792: 61,-46 - node: color: '#FFFFFF79' id: ThreeQuarterTileOverlayGreyscale180 decals: - 606: -7,-60 - 607: 2,-60 - 608: -1,-60 - 609: -10,-60 - 610: -13,-60 - 611: -17,-60 - 650: -4,-60 + 583: -17,-60 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 957: 63,-46 - - node: - color: '#D4D4D47C' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3308: 4,-60 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1: -10,-67 - - node: - color: '#FFFFFF79' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 605: -5,-60 - 645: -14,-60 - 646: -11,-60 - 647: -8,-60 - 648: -2,-60 - 649: 1,-60 + 793: 63,-46 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 954: 61,-48 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 0: -6,-64 + 790: 61,-48 - node: cleanable: True color: '#DE3A3A96' id: Tunnel decals: - 388: -37,-81 + 366: -37,-81 - node: color: '#FFFFFFFF' id: VentSmall decals: - 3138: 62,-44 + 2971: 62,-44 - node: color: '#A46106FF' id: WarnBox decals: - 3314: -13,-13 + 3144: -13,-13 - node: color: '#FFFFFFFF' id: WarnBox decals: - 358: -52,22 - 359: -52,20 - 375: -52,33 - 376: -52,31 - 3315: -11,-13 - 3317: -41,18 + 336: -52,22 + 337: -52,20 + 353: -52,33 + 354: -52,31 + 3145: -11,-13 + 3147: -41,18 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3057: -40,-59 - 3087: 54,-62 - 3090: 78,-34 - 3091: 78,-37 - 3857: -50,-37 + 2890: -40,-59 + 2920: 54,-62 + 2923: 78,-34 + 2924: 78,-37 + 3663: -50,-37 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3058: -38,-59 - 3086: 56,-61 - 3088: 77,-34 - 3089: 77,-37 + 2891: -38,-59 + 2919: 56,-61 + 2921: 77,-34 + 2922: 77,-37 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3094: 78,-38 - 3095: 78,-35 - 3753: -72,-40 + 2927: 78,-38 + 2928: 78,-35 + 3559: -72,-40 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3096: 77,-35 - 3097: 77,-38 + 2929: 77,-35 + 2930: 77,-38 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3080: 17,36 - 3081: 15,37 - 3852: -78,-43 - 3862: -50,-40 + 2913: 17,36 + 2914: 15,37 + 3658: -78,-43 + 3668: -50,-40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 3082: 15,36 - 3083: 17,37 - 3851: -76,-43 + 2915: 15,36 + 2916: 17,37 + 3657: -76,-43 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3078: 15,39 - 3079: 17,38 - 3850: -78,-41 + 2911: 15,39 + 2912: 17,38 + 3656: -78,-41 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 328: 47,-58 - 2688: -38,-42 - 3076: 17,39 - 3077: 15,38 - 3853: -76,-41 + 306: 47,-58 + 2523: -38,-42 + 2909: 17,39 + 2910: 15,38 + 3659: -76,-41 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 3758: -70,-46 + 3564: -70,-46 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 3759: -70,-47 + 3565: -70,-47 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 274: -39,-53 - 275: -39,-54 - 276: -39,-55 - 2317: 38,-26 - 2318: 38,-27 - 3070: 15,38 - 3074: 17,37 - 3754: -72,-39 - 3849: -78,-42 - 3860: -50,-38 - 3861: -50,-39 - 3864: -72,-38 + 252: -39,-53 + 253: -39,-54 + 254: -39,-55 + 2152: 38,-26 + 2153: 38,-27 + 2903: 15,38 + 2907: 17,37 + 3560: -72,-39 + 3655: -78,-42 + 3666: -50,-38 + 3667: -50,-39 + 3670: -72,-38 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 16: -19,-78 - 17: -19,-78 + 1: -19,-78 + 2: -19,-78 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 229: 53,-59 - 230: 54,-59 - 231: 55,-59 - 232: 56,-59 - 236: 46,-58 - 270: -40,-55 - 271: -39,-55 - 277: -39,-42 - 278: -40,-42 - 985: 45,-58 - 3069: 14,38 - 3072: 16,39 - 3073: 18,38 - 3425: 63,-31 - 3426: 62,-31 - 3427: 61,-31 - 3615: -42,-42 - 3617: -41,-42 - 3755: -73,-40 - 3756: -74,-40 - 3848: -77,-41 + 207: 53,-59 + 208: 54,-59 + 209: 55,-59 + 210: 56,-59 + 214: 46,-58 + 248: -40,-55 + 249: -39,-55 + 255: -39,-42 + 256: -40,-42 + 821: 45,-58 + 2902: 14,38 + 2905: 16,39 + 2906: 18,38 + 3251: 63,-31 + 3252: 62,-31 + 3253: 61,-31 + 3441: -42,-42 + 3443: -41,-42 + 3561: -73,-40 + 3562: -74,-40 + 3654: -77,-41 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 234: 56,-62 - 244: 48,-55 - 245: 48,-54 - 246: 48,-52 - 247: 48,-53 - 264: -37,-55 - 265: -37,-56 - 266: -37,-57 - 267: -40,-53 - 268: -40,-54 - 269: -40,-55 - 984: 47,-59 - 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 - 3847: -76,-42 + 212: 56,-62 + 222: 48,-55 + 223: 48,-54 + 224: 48,-52 + 225: 48,-53 + 242: -37,-55 + 243: -37,-56 + 244: -37,-57 + 245: -40,-53 + 246: -40,-54 + 247: -40,-55 + 820: 47,-59 + 2516: -38,-43 + 2517: -38,-44 + 2518: -38,-45 + 2519: -38,-46 + 2520: -38,-47 + 2521: -37,-54 + 2522: -37,-58 + 2524: -42,-42 + 2900: 15,37 + 2904: 17,38 + 3653: -76,-42 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 233: 57,-61 - 235: 53,-62 - 272: -40,-53 - 273: -39,-53 - 2679: -36,-41 - 2680: -35,-41 - 3068: 14,36 - 3075: 18,36 - 3085: 16,37 - 3846: -77,-43 - 3858: -49,-40 - 3859: -51,-37 + 211: 57,-61 + 213: 53,-62 + 250: -40,-53 + 251: -39,-53 + 2514: -36,-41 + 2515: -35,-41 + 2901: 14,36 + 2908: 18,36 + 2918: 16,37 + 3652: -77,-43 + 3664: -49,-40 + 3665: -51,-37 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerNe decals: - 3873: 29,-35 - 3874: 29,-39 + 3679: 29,-35 + 3680: 29,-39 - node: color: '#AE8C69FF' id: WoodTrimThinCornerNe decals: - 3976: 18,-81 - 3977: 19,-82 + 3782: 18,-81 + 3783: 19,-82 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNe decals: - 2826: 14,14 - 2852: 18,14 - 2863: 13,-11 - 2864: 12,-4 + 2661: 14,14 + 2687: 18,14 + 2698: 13,-11 + 2699: 12,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2308: 34,-54 - 3704: 2,21 + 2143: 34,-54 + 3510: 2,21 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerNw decals: - 3870: 21,-35 + 3676: 21,-35 - node: color: '#AE8C69FF' id: WoodTrimThinCornerNw decals: - 3981: 12,-81 + 3787: 12,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNw decals: - 2824: 8,10 - 2825: 10,14 - 2853: 16,14 - 2865: 10,-4 + 2659: 8,10 + 2660: 10,14 + 2688: 16,14 + 2700: 10,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2309: 28,-54 - 3702: -2,21 + 2144: 28,-54 + 3508: -2,21 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerSe decals: - 3875: 29,-37 - 3876: 29,-40 + 3681: 29,-37 + 3682: 29,-40 - node: color: '#AE8C69FF' id: WoodTrimThinCornerSe decals: - 3978: 18,-87 - 3979: 19,-86 + 3784: 18,-87 + 3785: 19,-86 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSe decals: - 2823: 14,5 - 2861: 13,-13 + 2658: 14,5 + 2696: 13,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSe decals: - 3192: 18,9 + 3025: 18,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2305: 34,-57 - 3703: 2,16 + 2140: 34,-57 + 3509: 2,16 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerSw decals: - 3871: 21,-38 - 3872: 22,-40 + 3677: 21,-38 + 3678: 22,-40 - node: color: '#AE8C69FF' id: WoodTrimThinCornerSw decals: - 3980: 12,-87 + 3786: 12,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSw decals: - 2827: 8,5 - 2862: 8,-13 + 2662: 8,5 + 2697: 8,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSw decals: - 3193: 16,9 + 3026: 16,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2304: 28,-57 - 3700: -1,16 - 3701: -2,17 + 2139: 28,-57 + 3506: -1,16 + 3507: -2,17 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerNe decals: - 3896: 28,-39 + 3702: 28,-39 - node: color: '#AE8C69FF' id: WoodTrimThinInnerNe decals: - 3990: 18,-82 + 3796: 18,-82 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNe decals: - 2883: 12,-11 + 2718: 12,-11 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNw decals: - 2850: 10,10 - 2884: 10,-5 + 2685: 10,10 + 2719: 10,-5 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerSe decals: - 3897: 28,-37 + 3703: 28,-37 - node: color: '#AE8C69FF' id: WoodTrimThinInnerSe decals: - 3991: 18,-86 + 3797: 18,-86 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerSw decals: - 3895: 22,-38 + 3701: 22,-38 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerSw decals: - 2851: 10,13 - 2885: 8,-8 + 2686: 10,13 + 2720: 8,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3717: -1,17 + 3523: -1,17 - node: color: '#A7A5FFFF' id: WoodTrimThinLineE decals: - 3883: 29,-36 - 3884: 28,-38 + 3689: 29,-36 + 3690: 28,-38 - node: color: '#AE8C69FF' id: WoodTrimThinLineE decals: - 3982: 19,-83 - 3983: 19,-84 - 3984: 19,-85 + 3788: 19,-83 + 3789: 19,-84 + 3790: 19,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineE decals: - 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 + 2667: 14,6 + 2668: 14,7 + 2669: 14,10 + 2670: 14,11 + 2671: 14,12 + 2672: 14,13 + 2689: 18,11 + 2690: 18,12 + 2691: 18,13 + 2711: 12,-5 + 2712: 12,-6 + 2713: 12,-7 + 2714: 12,-8 + 2715: 12,-9 + 2716: 12,-10 + 2717: 13,-12 - node: color: '#D4D4D4E9' id: WoodTrimThinLineE decals: - 3195: 14,8 - 3196: 14,9 + 3028: 14,8 + 3029: 14,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2306: 34,-56 - 2307: 34,-55 - 3713: 2,17 - 3714: 2,18 - 3715: 2,19 - 3716: 2,20 + 2141: 34,-56 + 2142: 34,-55 + 3519: 2,17 + 3520: 2,18 + 3521: 2,19 + 3522: 2,20 - node: color: '#A7A5FFFF' id: WoodTrimThinLineN decals: - 3885: 22,-35 - 3886: 23,-35 - 3887: 24,-35 - 3888: 25,-35 - 3889: 26,-35 - 3890: 27,-35 - 3891: 28,-35 + 3691: 22,-35 + 3692: 23,-35 + 3693: 24,-35 + 3694: 25,-35 + 3695: 26,-35 + 3696: 27,-35 + 3697: 28,-35 - node: color: '#AE8C69FF' id: WoodTrimThinLineN decals: - 3992: 13,-81 - 3993: 14,-81 - 3994: 15,-81 - 3995: 16,-81 - 3996: 17,-81 + 3798: 13,-81 + 3799: 14,-81 + 3800: 15,-81 + 3801: 16,-81 + 3802: 17,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinLineN decals: - 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 + 2663: 9,10 + 2664: 11,14 + 2665: 12,14 + 2666: 13,14 + 2695: 17,14 + 2708: 7,-5 + 2709: 8,-5 + 2710: 9,-5 + 2721: 11,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2310: 33,-54 - 2311: 32,-54 - 2312: 31,-54 - 2313: 30,-54 - 2314: 29,-54 - 3705: -1,21 - 3706: 0,21 - 3707: 1,21 + 2145: 33,-54 + 2146: 32,-54 + 2147: 31,-54 + 2148: 30,-54 + 2149: 29,-54 + 3511: -1,21 + 3512: 0,21 + 3513: 1,21 - node: color: '#A7A5FFFF' id: WoodTrimThinLineS decals: - 3877: 23,-40 - 3878: 24,-40 - 3879: 25,-40 - 3880: 26,-40 - 3881: 27,-40 - 3882: 28,-40 + 3683: 23,-40 + 3684: 24,-40 + 3685: 25,-40 + 3686: 26,-40 + 3687: 27,-40 + 3688: 28,-40 - node: color: '#AE8C69FF' id: WoodTrimThinLineS decals: - 3971: 13,-87 - 3972: 14,-87 - 3973: 15,-87 - 3974: 16,-87 - 3975: 17,-87 + 3777: 13,-87 + 3778: 14,-87 + 3779: 15,-87 + 3780: 16,-87 + 3781: 17,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinLineS decals: - 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 + 2680: 13,5 + 2681: 12,5 + 2682: 11,5 + 2683: 10,5 + 2684: 9,5 + 2701: 9,-13 + 2702: 10,-13 + 2703: 11,-13 + 2704: 12,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2300: 32,-57 - 2301: 33,-57 - 2302: 30,-57 - 2303: 29,-57 - 3711: 0,16 - 3712: 1,16 + 2135: 32,-57 + 2136: 33,-57 + 2137: 30,-57 + 2138: 29,-57 + 3517: 0,16 + 3518: 1,16 - node: color: '#A7A5FFFF' id: WoodTrimThinLineW decals: - 3892: 21,-36 - 3893: 21,-37 - 3894: 22,-39 + 3698: 21,-36 + 3699: 21,-37 + 3700: 22,-39 - node: color: '#AE8C69FF' id: WoodTrimThinLineW decals: - 3985: 12,-82 - 3986: 12,-83 - 3987: 12,-84 - 3988: 12,-85 - 3989: 12,-86 + 3791: 12,-82 + 3792: 12,-83 + 3793: 12,-84 + 3794: 12,-85 + 3795: 12,-86 - node: color: '#D4D4D4E3' id: WoodTrimThinLineW decals: - 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 + 2673: 10,13 + 2674: 10,12 + 2675: 10,11 + 2676: 8,9 + 2677: 8,8 + 2678: 8,7 + 2679: 8,6 + 2692: 16,13 + 2693: 16,12 + 2694: 16,11 + 2705: 8,-12 + 2706: 8,-11 + 2707: 8,-10 - node: color: '#D4D4D4E9' id: WoodTrimThinLineW decals: - 3194: 16,10 + 3027: 16,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2315: 28,-55 - 2316: 28,-56 - 3708: -2,18 - 3709: -2,19 - 3710: -2,20 + 2150: 28,-55 + 2151: 28,-56 + 3514: -2,18 + 3515: -2,19 + 3516: -2,20 - node: cleanable: True color: '#D03F4A21' id: corgi decals: - 3820: 27,-19 + 3626: 27,-19 - node: color: '#FFFFFFFF' id: grasssnowb2 decals: - 515: -6.3993635,53.002754 + 493: -6.3993635,53.002754 - node: color: '#FFFFFFFF' id: grasssnowc1 decals: - 449: 9.76384,53.565598 - 450: 6.3516917,53.659348 + 427: 9.76384,53.565598 + 428: 6.3516917,53.659348 - node: color: '#FFFFFFFF' id: grasssnowc2 decals: - 512: -7.712725,52.914776 - 513: -8.29085,52.758526 + 490: -7.712725,52.914776 + 491: -8.29085,52.758526 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 514: -8.806476,52.64177 + 492: -8.806476,52.64177 - node: cleanable: True color: '#DE3A3A96' id: revolution decals: - 387: -44,-83 + 365: -44,-83 - node: color: '#EFB341F5' id: shop decals: - 3313: -49,12 + 3143: -49,12 - node: cleanable: True color: '#A4610696' id: skull decals: - 390: -48,-77 + 368: -48,-77 - node: cleanable: True color: '#7F728818' id: splatter decals: - 383: 12,12 - 384: 14,6 + 361: 12,12 + 362: 14,6 - node: cleanable: True color: '#7F7288DF' id: splatter decals: - 385: 17,1 + 363: 17,1 - node: cleanable: True color: '#9FED5896' id: stickman decals: - 386: -47,-79 + 364: -47,-79 - type: GridAtmosphere version: 2 data: @@ -9127,7 +9518,7 @@ entities: -7,8: 0: 65535 5,-24: - 0: 56789 + 0: 57301 0,-27: 0: 50252 0,-26: @@ -10020,14 +10411,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -10043,14 +10426,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10066,14 +10441,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10089,14 +10456,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10112,14 +10471,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10135,14 +10486,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: BecomesStation id: Origin @@ -10177,27 +10520,25 @@ entities: parent: 2 - type: DeviceList devices: - - 19900 - - 818 - - 19691 - - 15046 - - 15106 - - 15108 - - 15130 - - 15129 - - 15131 - - 14891 - - 14869 - - 14870 - - 14868 - - 14866 - - 14867 - - 15135 - - 15037 - - 15036 - - 15035 - - type: AtmosDevice - joinedGrid: 2 + - 20026 + - 812 + - 19811 + - 15168 + - 15224 + - 15226 + - 15243 + - 15242 + - 15244 + - 15010 + - 14991 + - 14992 + - 14990 + - 14988 + - 14989 + - 15248 + - 15159 + - 15158 + - 15157 - uid: 6 components: - type: Transform @@ -10205,18 +10546,16 @@ entities: parent: 2 - type: DeviceList devices: - - 19930 - - 19659 - - 842 - - 15056 - - 15101 - - 15055 - - 15126 - - 15093 - - 15087 - - 15349 - - type: AtmosDevice - joinedGrid: 2 + - 20050 + - 19784 + - 829 + - 15178 + - 15219 + - 15177 + - 15239 + - 15212 + - 15207 + - 15449 - uid: 7 components: - type: Transform @@ -10224,24 +10563,22 @@ entities: parent: 2 - type: DeviceList devices: - - 19949 - - 845 - - 19662 - - 19901 - - 15000 - - 14999 - - 15081 - - 15021 - - 15018 - - 15052 - - 15074 - - 15094 - - 15025 - - 15059 - - 15031 - - 15068 - - type: AtmosDevice - joinedGrid: 2 + - 20068 + - 832 + - 19786 + - 20027 + - 15120 + - 15119 + - 15201 + - 15145 + - 15142 + - 15174 + - 15194 + - 15213 + - 15149 + - 15181 + - 15154 + - 15188 - uid: 8 components: - type: Transform @@ -10249,27 +10586,25 @@ entities: parent: 2 - type: DeviceList devices: - - 858 - - 19956 - - 19726 - - 19965 - - 19727 - - 19964 - - 19718 - - 19963 - - 19720 - - 19721 - - 19962 - - 19722 - - 19961 - - 19723 - - 19960 - - 19724 - - 19959 - - 19725 - - 19958 - - type: AtmosDevice - joinedGrid: 2 + - 845 + - 20075 + - 19845 + - 20084 + - 19846 + - 20083 + - 19837 + - 20082 + - 19839 + - 19840 + - 20081 + - 19841 + - 20080 + - 19842 + - 20079 + - 19843 + - 20078 + - 19844 + - 20077 - uid: 9 components: - type: Transform @@ -10277,11 +10612,9 @@ entities: parent: 2 - type: DeviceList devices: - - 877 - - 19817 - - 20054 - - type: AtmosDevice - joinedGrid: 2 + - 864 + - 19934 + - 20172 - uid: 10 components: - type: Transform @@ -10289,26 +10622,24 @@ entities: parent: 2 - type: DeviceList devices: - - 843 - - 19890 - - 19647 - - 15237 - - 15238 - - 15235 - - 15236 - - 14901 - - 15056 - - 15101 - - 15055 - - 15076 - - 15078 - - 15040 - - 15026 - - 15075 - - 15039 - - 15246 - - type: AtmosDevice - joinedGrid: 2 + - 830 + - 20016 + - 19774 + - 15342 + - 15343 + - 15340 + - 15341 + - 15020 + - 15178 + - 15219 + - 15177 + - 15196 + - 15198 + - 15162 + - 15150 + - 15195 + - 15161 + - 15351 - uid: 11 components: - type: Transform @@ -10316,21 +10647,19 @@ entities: parent: 2 - type: DeviceList devices: - - 847 - - 19658 - - 19937 - - 15132 - - 15092 - - 15133 - - 15102 - - 15074 - - 15094 - - 15025 - - 15098 - - 15127 - - 15128 - - type: AtmosDevice - joinedGrid: 2 + - 834 + - 19783 + - 20057 + - 15245 + - 15211 + - 15246 + - 15220 + - 15194 + - 15213 + - 15149 + - 15216 + - 15240 + - 15241 - uid: 12 components: - type: Transform @@ -10338,12 +10667,10 @@ entities: parent: 2 - type: DeviceList devices: - - 930 - - 19888 - - 19696 - - 15067 - - type: AtmosDevice - joinedGrid: 2 + - 916 + - 20014 + - 19816 + - 15187 - uid: 13 components: - type: Transform @@ -10351,22 +10678,20 @@ entities: parent: 2 - type: DeviceList devices: - - 882 - - 20005 - - 19767 - - 15171 - - 15189 - - 15089 - - 15013 - - 15125 - - 15231 - - 15232 - - 15233 - - 15168 - - 15195 - - 15196 - - type: AtmosDevice - joinedGrid: 2 + - 869 + - 20124 + - 19886 + - 15284 + - 15298 + - 15209 + - 15137 + - 15238 + - 15336 + - 15337 + - 15338 + - 15281 + - 15304 + - 15305 - uid: 14 components: - type: Transform @@ -10375,22 +10700,20 @@ entities: parent: 2 - type: DeviceList devices: - - 19690 - - 19921 - - 871 - - 15067 - - 15070 - - 15095 - - 15229 - - 15066 - - 15049 - - 15080 - - 15024 - - 15051 - - 15079 - - 15118 - - type: AtmosDevice - joinedGrid: 2 + - 19810 + - 20041 + - 858 + - 15187 + - 15190 + - 15214 + - 15334 + - 15186 + - 15171 + - 15200 + - 15148 + - 15173 + - 15199 + - 15233 - uid: 15 components: - type: Transform @@ -10398,18 +10721,16 @@ entities: parent: 2 - type: DeviceList devices: - - 902 - - 19743 - - 19982 - - 15153 - - 15011 - - 15010 - - 14904 - - 15154 - - 15264 - - 15265 - - type: AtmosDevice - joinedGrid: 2 + - 889 + - 19862 + - 20101 + - 15266 + - 15129 + - 15128 + - 15023 + - 15267 + - 15364 + - 15365 - uid: 16 components: - type: Transform @@ -10417,13 +10738,11 @@ entities: parent: 2 - type: DeviceList devices: - - 14906 - - 14905 - - 900 - - 19977 - - 15149 - - type: AtmosDevice - joinedGrid: 2 + - 15025 + - 15024 + - 887 + - 20096 + - 15262 - uid: 17 components: - type: Transform @@ -10431,17 +10750,13 @@ entities: parent: 2 - type: DeviceList devices: - - 857 - - 19750 - - type: AtmosDevice - joinedGrid: 2 + - 844 + - 19869 - uid: 18 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 19 components: - type: Transform @@ -10449,20 +10764,18 @@ entities: parent: 2 - type: DeviceList devices: - - 863 - - 20074 - - 19838 - - 15294 - - 15293 - - 15287 - - 15286 - - 15285 - - 15277 - - 15276 - - 15290 - - 15289 - - type: AtmosDevice - joinedGrid: 2 + - 850 + - 20192 + - 19955 + - 15394 + - 15393 + - 15387 + - 15386 + - 15385 + - 15377 + - 15376 + - 15390 + - 15389 - uid: 20 components: - type: Transform @@ -10470,13 +10783,11 @@ entities: parent: 2 - type: DeviceList devices: - - 20053 - - 866 - - 19813 - - 14937 - - 14934 - - type: AtmosDevice - joinedGrid: 2 + - 20171 + - 853 + - 19930 + - 15055 + - 15052 - uid: 21 components: - type: Transform @@ -10484,26 +10795,24 @@ entities: parent: 2 - type: DeviceList devices: - - 19682 - - 19935 - - 844 - - 15040 - - 15078 - - 15076 - - 15132 - - 15092 - - 15133 - - 15098 - - 15052 - - 15018 - - 15017 - - 15048 - - 15041 - - 15027 - - 15019 - - 15084 - - type: AtmosDevice - joinedGrid: 2 + - 19802 + - 20055 + - 831 + - 15162 + - 15198 + - 15196 + - 15245 + - 15211 + - 15246 + - 15216 + - 15174 + - 15142 + - 15141 + - 15170 + - 15163 + - 15151 + - 15143 + - 15204 - uid: 22 components: - type: Transform @@ -10511,27 +10820,25 @@ entities: parent: 2 - type: DeviceList devices: - - 19775 - - 867 - - 19757 - - 19995 - - 15208 - - 15209 - - 15210 - - 15237 - - 15238 - - 15235 - - 15236 - - 15228 - - 15226 - - 15227 - - 15170 - - 15167 - - 15105 - - 15239 - - 14888 - - type: AtmosDevice - joinedGrid: 2 + - 19893 + - 854 + - 19876 + - 20114 + - 15317 + - 15318 + - 15319 + - 15342 + - 15343 + - 15340 + - 15341 + - 15333 + - 15331 + - 15332 + - 15283 + - 15280 + - 15223 + - 15344 + - 15007 - uid: 23 components: - type: Transform @@ -10539,20 +10846,18 @@ entities: parent: 2 - type: DeviceList devices: - - 868 - - 19650 - - 19886 - - 15024 - - 15051 - - 15079 - - 15123 - - 15104 - - 15042 - - 15016 - - 15112 - - 15038 - - type: AtmosDevice - joinedGrid: 2 + - 855 + - 19776 + - 20012 + - 15148 + - 15173 + - 15199 + - 15236 + - 15222 + - 15164 + - 15140 + - 15229 + - 15160 - uid: 24 components: - type: Transform @@ -10560,1424 +10865,1251 @@ entities: parent: 2 - type: DeviceList devices: - - 872 - - 19936 - - 19688 - - 15258 - - 15243 - - 15242 - - 15241 - - 15023 - - 15072 - - 14862 - - 14864 - - 14874 - - 14880 - - 14894 - - 15022 - - type: AtmosDevice - joinedGrid: 2 + - 859 + - 20056 + - 19808 + - 15358 + - 15348 + - 15347 + - 15346 + - 15147 + - 15192 + - 14984 + - 14986 + - 14994 + - 15000 + - 15013 + - 15146 - uid: 25 components: - type: Transform - pos: -3.5,-51.5 + pos: -33.5,-42.5 parent: 2 - type: DeviceList devices: - - 820 - - 19913 - - 19675 - - 15109 - - 15114 - - 15122 - - 15120 - - 15257 - - 15061 - - 15062 - - 15107 - - 15181 - - 15180 - - 15182 - - 15188 - - 15116 - - 15097 - - 15029 - - 15034 - - 15218 - - 14988 - - type: AtmosDevice - joinedGrid: 2 + - 20177 + - 19938 + - 865 + - 15299 + - 15300 - uid: 26 components: - type: Transform - pos: -33.5,-42.5 + pos: -30.5,-31.5 parent: 2 - type: DeviceList devices: - - 20059 - - 19821 - - 878 - - 15190 - - 15191 - - type: AtmosDevice - joinedGrid: 2 + - 867 + - 20143 + - 19903 + - 15030 + - 15031 + - 15277 + - 15278 + - 15035 + - 15034 + - 15299 + - 15300 - uid: 27 components: - type: Transform - pos: -30.5,-31.5 + pos: 21.5,-20.5 parent: 2 - type: DeviceList devices: - - 880 - - 20025 - - 19785 - - 14911 - - 14912 - - 15164 - - 15165 - - 14916 - - 14915 - - 15190 - - 15191 - - type: AtmosDevice - joinedGrid: 2 + - 14977 + - 14981 + - 14982 + - 14980 + - 15011 + - 15006 + - 20061 + - 19823 + - 870 - uid: 28 components: - type: Transform - pos: -17.5,-58.5 + pos: 41.5,-69.5 parent: 2 - type: DeviceList devices: - - 19912 - - 19648 - - 821 - - 15063 - - 14885 - - 15091 - - 15176 - - 15177 - - 14872 - - 15064 - - 15220 - - 15224 - - 15183 - - 15248 - - 15065 - - 15219 - - 15249 - - 15247 - - 15253 - - type: AtmosDevice - joinedGrid: 2 + - 846 + - 19887 + - 20128 + - 15425 + - 15426 + - 15427 + - 15422 + - 15423 + - 15424 - uid: 29 components: - type: Transform - pos: 21.5,-20.5 + pos: 58.5,-4.5 parent: 2 - type: DeviceList devices: - - 14855 - - 14859 - - 14860 - - 14858 - - 14892 - - 14887 - - 19941 - - 19703 - - 883 - - type: AtmosDevice - joinedGrid: 2 + - 15276 + - 15258 + - 15257 + - 15256 + - 843 + - 19857 + - 20094 - uid: 30 components: - type: Transform - pos: 41.5,-69.5 + pos: -12.5,-24.5 parent: 2 - type: DeviceList devices: - - 859 - - 19768 - - 20009 - - 15325 - - 15326 - - 15327 - - 15322 - - 15323 - - 15324 - - type: AtmosDevice - joinedGrid: 2 + - 20174 + - 19936 + - 828 + - 15336 + - 15337 + - 15338 + - 15180 + - 15208 + - 15237 + - 15207 + - 15212 + - 15239 + - 15242 + - 15243 + - 15244 + - 14997 - uid: 31 components: - type: Transform - pos: 58.5,-4.5 + pos: 23.5,-15.5 parent: 2 - type: DeviceList devices: - - 15163 - - 15145 - - 15144 - - 15143 - - 856 - - 19738 - - 19975 - - type: AtmosDevice - joinedGrid: 2 + - 15140 + - 15229 + - 15160 + - 15231 + - 15193 + - 15182 + - 15217 + - 15197 + - 15166 + - 15167 + - 20031 + - 871 + - 19820 - uid: 32 components: - type: Transform - pos: -12.5,-24.5 + rot: -1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 - type: DeviceList devices: - - 20056 - - 19819 - - 841 - - 15231 - - 15232 - - 15233 - - 15058 - - 15088 - - 15124 - - 15087 - - 15093 - - 15126 - - 15129 - - 15130 - - 15131 - - 14877 - - type: AtmosDevice - joinedGrid: 2 + - 856 + - 19790 + - 20040 + - 15141 + - 15170 + - 15163 + - 15151 + - 15145 + - 15201 + - 15202 + - 15218 + - 15236 + - 15222 + - 15164 - uid: 33 components: - type: Transform - pos: 23.5,-15.5 + pos: 11.5,-24.5 parent: 2 - type: DeviceList devices: - - 15016 - - 15112 - - 15038 - - 15115 - - 15073 - - 15060 - - 15099 - - 15077 - - 15044 - - 15045 - - 19905 - - 884 - - 19700 - - type: AtmosDevice - joinedGrid: 2 + - 826 + - 20049 + - 19818 - uid: 34 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,4.5 + pos: 13.5,-36.5 parent: 2 - type: DeviceList devices: - - 869 - - 19666 - - 19920 - - 15017 - - 15048 - - 15041 - - 15027 - - 15021 - - 15081 - - 15082 - - 15100 - - 15123 - - 15104 - - 15042 - - type: AtmosDevice - joinedGrid: 2 + - 826 + - 20049 + - 19818 - uid: 35 components: - type: Transform - pos: 11.5,-24.5 + pos: 40.5,-24.5 parent: 2 - type: DeviceList devices: - - 839 - - 19929 - - 19698 - - type: AtmosDevice - joinedGrid: 2 + - 20063 + - 19826 + - 873 + - 20053 + - 19815 + - 19787 + - 20052 - uid: 36 components: - type: Transform - pos: 13.5,-36.5 + pos: 33.5,-21.5 parent: 2 - type: DeviceList devices: - - 839 - - 19929 - - 19698 - - type: AtmosDevice - joinedGrid: 2 + - 19830 + - 816 + - 20067 + - 14982 + - 14980 + - 15197 + - 15166 + - 15167 + - 14976 + - 14975 + - 15227 + - 15155 + - 15176 - uid: 37 components: - type: Transform - pos: 40.5,-24.5 + pos: 33.5,-37.5 parent: 2 - type: DeviceList devices: - - 19943 - - 19707 - - 886 - - 19933 - - 19695 - - 19663 - - 19932 - - type: AtmosDevice - joinedGrid: 2 + - 19830 + - 816 + - 20067 - uid: 38 components: - type: Transform - pos: 33.5,-21.5 + pos: -5.5,9.5 parent: 2 - type: DeviceList devices: - - 19711 - - 825 - - 19948 - - 14860 - - 14858 - - 15077 - - 15044 - - 15045 - - 14854 - - 14853 - - 15110 - - 15032 - - 15054 - - type: AtmosDevice - joinedGrid: 2 + - 20019 + - 836 + - 19817 + - 15220 + - 15029 + - 15351 + - 15161 + - 15195 + - 15150 - uid: 39 components: - type: Transform - pos: 33.5,-37.5 + pos: 50.5,3.5 parent: 2 - type: DeviceList devices: - - 19711 - - 825 - - 19948 - - type: AtmosDevice - joinedGrid: 2 + - 841 + - 19849 + - 20091 + - 15214 + - 15190 + - 15334 + - 15228 + - 15256 + - 15257 + - 15258 + - 15399 + - 15400 + - 15433 - uid: 40 components: - type: Transform - pos: -5.5,9.5 + pos: -33.5,2.5 parent: 2 - type: DeviceList devices: - - 19893 - - 849 - - 19697 - - 15102 - - 14910 - - 15246 - - 15039 - - 15075 - - 15026 - - type: AtmosDevice - joinedGrid: 2 + - 15322 + - 15321 + - 15323 + - 15324 + - 15328 + - 15223 + - 15280 + - 15283 + - 874 + - 19925 + - 20160 - uid: 41 components: - type: Transform - pos: 50.5,3.5 + pos: -44.5,9.5 parent: 2 - type: DeviceList devices: - - 854 - - 19730 - - 19972 - - 15095 - - 15070 - - 15229 - - 15111 - - 15143 - - 15144 - - 15145 - - 15299 - - 15300 - - 15333 - - type: AtmosDevice - joinedGrid: 2 + - 875 + - 19927 + - 20169 + - 15330 + - 15327 + - 15323 + - 15324 + - 15328 - uid: 42 components: - type: Transform - pos: -33.5,2.5 + pos: -50.5,12.5 parent: 2 - type: DeviceList devices: - - 15213 - - 15212 - - 15214 - - 15215 - - 15222 - - 15105 - - 15167 - - 15170 - - 887 - - 19808 - - 20042 - - type: AtmosDevice - joinedGrid: 2 + - 20166 + - 19932 + - 876 - uid: 43 components: - type: Transform - pos: -44.5,9.5 + pos: -39.5,26.5 parent: 2 - type: DeviceList devices: - - 888 - - 19810 - - 20051 - - 15225 - - 15221 - - 15214 - - 15215 - - 15222 - - type: AtmosDevice - joinedGrid: 2 + - 19913 + - 20155 + - 877 + - 15413 + - 15415 + - 15189 - uid: 44 components: - type: Transform - pos: -50.5,12.5 + pos: -39.5,30.5 parent: 2 - type: DeviceList devices: - - 20048 - - 19815 - - 889 - - type: AtmosDevice - joinedGrid: 2 + - 19917 + - 878 + - 15413 + - 15415 + - 15189 - uid: 45 components: - type: Transform - pos: -39.5,26.5 + pos: -29.5,20.5 parent: 2 - type: DeviceList devices: - - 19796 - - 20037 - - 890 - - 15313 - - 15315 - - 15069 - - type: AtmosDevice - joinedGrid: 2 + - 19911 + - 879 + - 20154 - uid: 46 components: - type: Transform - pos: -39.5,30.5 + pos: -17.5,18.5 parent: 2 - type: DeviceList devices: - - 19800 - - 891 - - 15313 + - 19909 + - 20151 + - 881 + - 15316 - 15315 - - 15069 - - type: AtmosDevice - joinedGrid: 2 + - 15259 + - 15371 + - 15372 + - 15317 + - 15318 + - 15319 + - 15320 - uid: 47 components: - type: Transform - pos: -29.5,20.5 + pos: -30.5,-15.5 parent: 2 - type: DeviceList devices: - - 19794 - - 892 - - 20036 - - type: AtmosDevice - joinedGrid: 2 + - 863 + - 20129 + - 15306 + - 15307 + - 15295 + - 15294 + - 15309 + - 15308 + - 15062 + - 15282 - uid: 48 components: - type: Transform - pos: -17.5,18.5 + pos: -39.5,-4.5 parent: 2 - type: DeviceList devices: - - 19792 - - 20033 - - 894 - - 15207 - - 15206 - - 15146 - - 15271 - - 15272 - - 15208 - - 15209 - - 15210 - - 15211 - - type: AtmosDevice - joinedGrid: 2 + - 885 + - 15297 + - 15296 + - 19891 + - 15063 + - 20132 + - 15312 + - 15355 - uid: 49 components: - type: Transform - pos: -30.5,-15.5 + pos: -53.5,-4.5 parent: 2 - type: DeviceList devices: - - 876 - - 20011 - - 15197 - - 15198 - - 15185 - - 15184 - - 15200 - - 15199 - - 14944 - - 15169 - - type: AtmosDevice - joinedGrid: 2 + - 884 + - 20137 + - 19896 + - 15039 + - 15040 + - 15302 + - 15301 - uid: 50 components: - type: Transform - pos: -39.5,-4.5 + pos: -55.5,-22.5 parent: 2 - type: DeviceList devices: - - 898 - - 15187 - - 15186 - - 19773 - - 14945 - - 20014 - - 15203 - - 15254 - - type: AtmosDevice - joinedGrid: 2 + - 20139 + - 883 + - 19899 + - 15301 + - 15302 + - 15313 + - 15339 + - 15036 - uid: 51 components: - type: Transform - pos: -53.5,-4.5 + pos: -71.5,-22.5 parent: 2 - type: DeviceList devices: - - 897 - - 20019 - - 19778 - - 14921 - - 14922 - - 15193 - - 15192 - - type: AtmosDevice - joinedGrid: 2 + - 882 + - 15089 + - 15303 + - 15136 - uid: 52 components: - type: Transform - pos: -55.5,-22.5 + pos: -30.5,-24.5 parent: 2 - type: DeviceList devices: - - 20021 - - 896 - - 19781 - - 15192 - - 15193 - - 15204 - - 15234 - - 14917 - - type: AtmosDevice - joinedGrid: 2 + - 886 + - 20130 + - 19889 - uid: 53 components: - type: Transform - pos: -71.5,-22.5 + pos: 48.5,-36.5 parent: 2 - type: DeviceList devices: - - 895 - - 14971 - - 15194 - - 15012 - - type: AtmosDevice - joinedGrid: 2 + - 849 + - 20097 + - 19858 + - 15262 + - 15265 + - 15274 + - 15263 + - 15264 + - 15268 + - 15272 + - 15273 + - 15362 + - 15363 - uid: 54 components: - type: Transform - pos: -30.5,-24.5 + pos: 52.5,-49.5 parent: 2 - type: DeviceList devices: - - 899 - - 20012 - - 19771 - - type: AtmosDevice - joinedGrid: 2 + - 19868 + - 20106 + - 20107 + - 848 + - 15272 + - 15273 - uid: 55 components: - type: Transform - pos: 48.5,-36.5 + pos: 60.5,0.5 parent: 2 - type: DeviceList devices: - - 862 - - 19978 - - 19739 - - 15149 - - 15152 - - 15161 - - 15150 - - 15151 - - 15155 - - 15159 - - 15160 - - 15262 - - 15263 - - type: AtmosDevice - joinedGrid: 2 + - 15276 + - 20103 + - 19865 + - 899 - uid: 56 components: - type: Transform - pos: 52.5,-49.5 + pos: 65.5,-53.5 parent: 2 - type: DeviceList devices: - - 19749 - - 19987 - - 19988 - - 861 - - 15159 - - 15160 - - type: AtmosDevice - joinedGrid: 2 + - 890 + - 20104 + - 19866 + - 15267 - uid: 57 components: - type: Transform - pos: 60.5,0.5 + pos: -39.5,-73.5 parent: 2 - type: DeviceList devices: - - 15163 - - 19984 - - 19746 - - 913 - - type: AtmosDevice - joinedGrid: 2 + - 894 + - 19906 + - 20150 + - 15401 + - 15402 - uid: 58 components: - type: Transform - pos: 65.5,-53.5 + pos: -51.5,-72.5 parent: 2 - type: DeviceList devices: - - 903 - - 19985 - - 19747 - - 15154 - - type: AtmosDevice - joinedGrid: 2 + - 20173 + - 19935 + - 893 - uid: 59 components: - type: Transform - pos: -39.5,-73.5 + pos: 31.5,20.5 parent: 2 - type: DeviceList devices: - - 907 - - 19789 - - 20032 - - 15301 - - 15302 - - type: AtmosDevice - joinedGrid: 2 + - 20090 + - 19854 + - 20018 + - 19853 + - 842 + - 15014 + - 15004 + - 14987 + - 15250 + - 15147 + - 15192 + - 15254 + - 15172 + - 15400 + - 15399 - uid: 60 components: - type: Transform - pos: -51.5,-72.5 + pos: 23.5,24.5 parent: 2 - type: DeviceList devices: - - 20055 - - 19818 - - 906 - - type: AtmosDevice - joinedGrid: 2 + - 20047 + - 840 + - 19793 + - 15358 + - 15348 + - 15347 + - 15346 + - 15250 - uid: 61 components: - type: Transform - pos: 31.5,20.5 + pos: 27.5,9.5 parent: 2 - type: DeviceList devices: - - 19971 - - 19735 - - 19892 - - 19734 - - 855 - - 14895 - - 14884 - - 14865 - - 15137 - - 15023 - - 15072 - - 15141 - - 15050 - - 15300 - - 15299 - - type: AtmosDevice - joinedGrid: 2 + - 857 + - 20029 + - 19782 + - 14994 + - 14986 + - 14984 + - 15186 + - 15171 + - 15200 + - 15202 + - 15218 + - 15059 - uid: 62 components: - type: Transform - pos: 23.5,24.5 + pos: -21.5,-83.5 parent: 2 - type: DeviceList devices: - - 19927 - - 853 - - 19669 - - 15258 - - 15243 - - 15242 - - 15241 - - 15137 - - type: AtmosDevice - joinedGrid: 2 + - 821 + - 20037 + - 19778 + - 15191 + - 15234 + - 15361 - uid: 63 components: - type: Transform - pos: 27.5,9.5 + pos: -27.5,-76.5 parent: 2 - type: DeviceList devices: - - 870 - - 19903 - - 19657 - - 14874 - - 14864 - - 14862 - - 15066 - - 15049 - - 15080 - - 15082 - - 15100 - - 14941 - - type: AtmosDevice - joinedGrid: 2 + - 20038 + - 19806 + - 819 + - 15354 + - 15234 + - 15191 - uid: 64 components: - type: Transform - pos: -21.5,-83.5 + pos: 37.5,-63.5 parent: 2 - type: DeviceList devices: - - 830 - - 19917 - - 19653 - - 15071 - - 15119 - - 15261 - - type: AtmosDevice - joinedGrid: 2 + - 847 + - 20122 + - 19883 - uid: 65 components: - type: Transform - pos: -27.5,-76.5 + pos: -25.5,-56.5 parent: 2 - type: DeviceList devices: - - 19918 - - 19686 - - 828 - - 15252 - - 15119 - - 15071 - - type: AtmosDevice - joinedGrid: 2 + - 927 + - 15314 - uid: 66 components: - type: Transform - pos: 37.5,-63.5 + pos: -29.5,-68.5 parent: 2 - - type: DeviceList - devices: - - 860 - - 20003 - - 19764 - - type: AtmosDevice - joinedGrid: 2 - uid: 67 components: - type: Transform - pos: -25.5,-56.5 + pos: -15.5,68.5 parent: 2 - type: DeviceList devices: - - 20029 - - 19788 - - 909 - - 15205 - - type: AtmosDevice - joinedGrid: 2 + - 898 + - 19972 + - 20224 + - 15432 + - 15431 - uid: 68 components: - type: Transform - pos: -29.5,-68.5 + pos: 43.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 69 components: - type: Transform - pos: -15.5,68.5 + pos: -17.5,39.5 parent: 2 - type: DeviceList devices: - - 912 - - 19855 - - 20106 - - 15332 - - 15331 - - type: AtmosDevice - joinedGrid: 2 + - 20183 + - 900 + - 19945 + - 15083 + - 15080 + - 15082 + - 15081 + - 15371 + - 15372 + - 15379 + - 15380 + - 15381 + - 15387 + - 15386 + - 15385 + - 15079 + - 15368 + - 15369 + - 15370 + - 15060 - uid: 70 components: - type: Transform - pos: 43.5,49.5 + pos: -10.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: DeviceList + devices: + - 901 + - 19950 + - 20191 + - 15379 + - 15380 + - 15381 + - 15374 + - 15375 + - 15395 + - 15383 + - 15384 + - 15382 - uid: 71 components: - type: Transform - pos: -17.5,39.5 + rot: -1.5707963267948966 rad + pos: -11.5,57.5 parent: 2 - type: DeviceList devices: - - 20065 - - 914 - - 19828 - - 14965 - - 14962 - - 14964 - - 14963 - - 15271 - - 15272 - - 15279 - - 15280 - - 15281 - - 15287 - - 15286 - - 15285 - - 14961 - - 15268 - - 15269 - - 15270 - - 14942 - - type: AtmosDevice - joinedGrid: 2 + - 20196 + - 19951 + - 851 + - 15391 + - 15392 + - 15396 + - 15393 + - 15394 + - 15431 + - 15388 + - 15366 - uid: 72 components: - type: Transform - pos: -10.5,47.5 + pos: 0.5,60.5 parent: 2 - type: DeviceList devices: - - 915 - - 19833 - - 20073 - - 15279 - - 15280 - - 15281 - - 15274 - - 15275 - - 15295 - - 15283 - - 15284 - - 15282 - - type: AtmosDevice - joinedGrid: 2 + - 852 + - 19956 + - 20197 + - 15384 + - 15383 + - 15382 + - 15397 + - 15391 + - 15392 - uid: 73 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,57.5 + pos: -33.5,-95.5 parent: 2 - type: DeviceList devices: - - 20078 - - 19834 - - 864 - - 15291 - - 15292 - - 15296 - - 15293 - - 15294 - - 15331 - - 15288 - - 15266 - - type: AtmosDevice - joinedGrid: 2 + - 19963 + - 20204 + - 903 - uid: 74 components: - type: Transform - pos: 0.5,60.5 + pos: -22.5,-68.5 parent: 2 - type: DeviceList devices: - - 865 - - 19839 - - 20079 - - 15284 - - 15283 - - 15282 - - 15297 - - 15291 - - 15292 - - type: AtmosDevice - joinedGrid: 2 + - 20065 + - 818 + - 15360 + - 15354 + - 15138 + - 15074 - uid: 75 components: - type: Transform - pos: -33.5,-95.5 + pos: 26.5,-33.5 parent: 2 - type: DeviceList devices: - - 19846 - - 20086 - - 917 - - type: AtmosDevice - joinedGrid: 2 + - 15445 + - 15446 + - 15448 + - 19990 + - 20233 + - 926 - uid: 76 components: - type: Transform - pos: -10.5,-48.5 + pos: 19.5,-9.5 parent: 2 - type: DeviceList devices: - - 817 - - 19914 - - 19676 - - 14868 - - 14867 - - 14866 - - 14891 - - 14869 - - 14870 - - 15216 - - 15217 - - 15182 - - 15180 - - 15181 - - 15062 - - 15061 - - 15107 - - 14954 - - 14988 - - type: AtmosDevice - joinedGrid: 2 + - 20059 + - 872 + - 19819 + - 15231 + - 15017 - uid: 77 components: - type: Transform - pos: -22.5,-68.5 + pos: 65.5,-31.5 parent: 2 - type: DeviceList devices: - - 19945 - - 827 - - 19708 - - 15260 - - 15252 - - 15014 - - 14956 - - type: AtmosDevice - joinedGrid: 2 - - uid: 78 - components: - - type: Transform - pos: 26.5,-33.5 + - 19964 + - 20205 + - 891 + - 15091 + - 15092 + - 907 + - 15026 + - 15090 + - uid: 78 + components: + - type: Transform + pos: 70.5,-31.5 parent: 2 - type: DeviceList devices: - - 15345 - - 15346 - - 15348 - - 19873 - - 20115 - - 940 - - type: AtmosDevice - joinedGrid: 2 + - 15093 + - 15094 + - 15405 + - 15406 + - 906 + - 20207 - uid: 79 components: - type: Transform - pos: 19.5,-9.5 + pos: 72.5,-42.5 parent: 2 - type: DeviceList devices: - - 19939 - - 885 - - 19699 - - 15115 - - 14898 - - type: AtmosDevice - joinedGrid: 2 + - 19967 + - 892 + - 15129 + - 15128 + - 15023 + - 15407 + - 15408 - uid: 80 components: - type: Transform - pos: 65.5,-31.5 + pos: 4.5,-24.5 parent: 2 - type: DeviceList devices: - - 19847 - - 20087 - - 904 - - 14973 - - 14974 - - 921 - - 14907 - - 14972 - - type: AtmosDevice - joinedGrid: 2 + - 15412 + - 15180 + - 15208 + - 15237 + - 15215 + - 15139 + - 15210 + - 20015 + - 19779 + - 827 - uid: 81 components: - type: Transform - pos: 70.5,-31.5 + pos: -22.5,-7.5 parent: 2 - type: DeviceList devices: - - 14975 - - 14976 - - 15305 + - 20116 + - 861 + - 19878 + - 15349 + - 15175 + - 15179 - 15306 - - 920 - - 20089 - - type: AtmosDevice - joinedGrid: 2 + - 15307 + - 15061 - uid: 82 components: - type: Transform - pos: 72.5,-42.5 + pos: -21.5,-16.5 parent: 2 - type: DeviceList devices: - - 19850 - - 905 - - 15011 - - 15010 - - 14904 - - 15307 - - 15308 - - type: AtmosDevice - joinedGrid: 2 + - 862 + - 20118 + - 19880 + - 15179 + - 15175 + - 15333 + - 15331 + - 15332 + - 15279 + - 15304 + - 15281 + - 15305 + - 15409 + - 15410 + - 15095 - uid: 83 components: - type: Transform - pos: 4.5,-24.5 + pos: 22.5,-70.5 parent: 2 - type: DeviceList devices: - - 15312 - - 15058 - - 15088 - - 15124 - - 15096 - - 15015 - - 15090 - - 19889 - - 19654 - - 840 - - type: AtmosDevice - joinedGrid: 2 + - 20222 + - 914 + - 19981 + - 15422 + - 15423 + - 15424 + - 15421 + - 15420 + - 15419 - uid: 84 components: - type: Transform - pos: -22.5,-7.5 + pos: 19.5,-80.5 parent: 2 - type: DeviceList devices: - - 19997 - - 874 - - 19759 - - 15244 - - 15053 - - 15057 - - 15197 - - 15198 - - 14943 - - type: AtmosDevice - joinedGrid: 2 + - 15418 + - 19982 + - 20221 + - 915 - uid: 85 components: - type: Transform - pos: -21.5,-16.5 + rot: -1.5707963267948966 rad + pos: 32.5,-83.5 parent: 2 - type: DeviceList devices: - - 875 - - 19999 - - 19761 - - 15057 - - 15053 - - 15228 - - 15226 - - 15227 - - 15166 - - 15195 - - 15168 - - 15196 - - 15309 - - 15310 - - 14977 - - type: AtmosDevice - joinedGrid: 2 + - 19979 + - 897 + - 20126 + - 15417 + - 15419 + - 15420 + - 15421 - uid: 86 components: - type: Transform - pos: 22.5,-70.5 + rot: 1.5707963267948966 rad + pos: 46.5,-80.5 parent: 2 - type: DeviceList devices: - - 20104 - - 928 - - 19864 - - 15322 - - 15323 - - 15324 - - 15321 - - 15320 - - 15319 - - type: AtmosDevice - joinedGrid: 2 + - 904 + - 20223 + - 19983 + - 15428 + - 15429 + - 15430 - uid: 87 components: - type: Transform - pos: 19.5,-80.5 + rot: 1.5707963267948966 rad + pos: 43.5,4.5 parent: 2 - type: DeviceList devices: - - 15318 - - 19865 - - 20103 - - 929 - - type: AtmosDevice - joinedGrid: 2 + - 809 + - 15251 + - 15433 + - 15345 + - 19985 + - 20226 - uid: 88 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-83.5 + rot: 1.5707963267948966 rad + pos: 39.5,10.5 parent: 2 - type: DeviceList devices: - - 19862 - - 911 - - 20007 - - 15317 - - 15319 - - 15320 - - 15321 - - type: AtmosDevice - joinedGrid: 2 + - 15254 + - 15172 + - 20093 + - 19853 + - 842 + - 20018 + - 19854 + - 20090 + - 15345 + - 15399 + - 15400 + - 15147 + - 15192 + - 15250 + - 15014 + - 15004 + - 14987 - uid: 89 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-80.5 + rot: -1.5707963267948966 rad + pos: -44.5,42.5 parent: 2 - type: DeviceList devices: + - 20228 + - 19986 - 918 - - 20105 - - 19866 - - 15328 - - 15329 - - 15330 - - type: AtmosDevice - joinedGrid: 2 + - 15435 + - 15436 - uid: 90 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,4.5 + pos: -7.5,20.5 parent: 2 - type: DeviceList devices: - - 815 - - 15138 - - 15333 - - 15240 - - 19868 - - 20108 - - type: AtmosDevice - joinedGrid: 2 + - 919 + - 20230 + - 19988 + - 15108 + - 15029 + - 15054 + - 15107 - uid: 91 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,10.5 + pos: -68.5,-36.5 parent: 2 - type: DeviceList devices: - - 15141 - - 15050 - - 19974 - - 19734 - - 855 - - 19892 - - 19735 - - 19971 - - 15240 - - 15299 - - 15300 - - 15023 - - 15072 - - 15137 - - 14895 - - 14884 - - 14865 - - type: AtmosDevice - joinedGrid: 2 + - 920 + - 19772 + - 20009 + - 15437 + - 15438 + - 15109 + - 15113 - uid: 92 components: - type: Transform - pos: 6.5,-44.5 + rot: 1.5707963267948966 rad + pos: -74.5,-39.5 parent: 2 - type: DeviceList devices: - - 835 - - 15218 - - 15217 - - 15216 - - type: AtmosDevice - joinedGrid: 2 + - 921 - uid: 93 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,42.5 + rot: 1.5707963267948966 rad + pos: -45.5,-38.5 parent: 2 - type: DeviceList devices: - - 20110 - - 19869 - - 932 - - 15335 - - 15336 - - type: AtmosDevice - joinedGrid: 2 + - 922 + - 20146 - uid: 94 components: - type: Transform - pos: -7.5,20.5 + pos: 5.5,-3.5 parent: 2 - type: DeviceList devices: - - 933 - - 20112 - - 19871 - - 14990 - - 14910 - - 14936 - - 14989 - - type: AtmosDevice - joinedGrid: 2 + - 924 + - 20007 + - 19770 + - 15439 + - 15441 + - 15442 - uid: 95 components: - type: Transform - pos: -68.5,-36.5 + rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 2 - type: DeviceList devices: - - 934 - - 19645 - - 19883 - - 15337 - - 15338 - - 14991 - - 14995 - - type: AtmosDevice - joinedGrid: 2 + - 923 + - 20231 + - 19769 + - 15441 + - 15440 - uid: 96 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-39.5 + pos: -1.5,-18.5 parent: 2 - type: DeviceList devices: - - 935 - - type: AtmosDevice - joinedGrid: 2 + - 925 + - 19989 + - 20232 + - 15443 + - 15444 - uid: 97 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-38.5 + pos: 22.5,-40.5 parent: 2 - type: DeviceList devices: - - 936 - - 20028 - - type: AtmosDevice - joinedGrid: 2 + - 814 + - 15205 + - 15261 + - 15230 + - 15168 + - 15224 + - 15226 + - 20175 + - 19780 + - 15249 + - 15247 + - 15169 + - 15235 + - 15350 + - 20017 + - 19937 + - 15448 + - 15227 + - 15155 + - 15176 + - 15271 + - 15269 + - 15270 + - 14998 - uid: 98 components: - type: Transform - pos: 5.5,-3.5 + pos: -6.5,-51.5 parent: 2 - type: DeviceList devices: - - 938 - - 19881 - - 19643 - - 15339 - - 15341 - - 15342 - - type: AtmosDevice - joinedGrid: 2 + - 19995 + - 20236 + - 929 + - 15225 + - 15184 + - 15183 + - 15292 + - 15291 + - 15293 + - 15131 + - 15451 + - 15452 - uid: 99 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-7.5 + pos: -9.5,-57.5 parent: 2 - type: DeviceList devices: - - 937 - - 20113 - - 19642 - - 15341 - - 15340 - - type: AtmosDevice - joinedGrid: 2 + - 15117 + - 15314 + - 15185 + - 20245 + - 20004 + - 928 + - 15133 + - 15134 + - 15132 - uid: 100 components: - type: Transform - pos: -1.5,-18.5 + pos: -15.5,-44.5 parent: 2 - type: DeviceList devices: - - 939 - - 19872 - - 20114 - - 15343 - - 15344 - - type: AtmosDevice - joinedGrid: 2 + - 20036 + - 810 + - 19775 + - 15072 + - 15118 - uid: 101 components: - type: Transform - pos: 22.5,-40.5 + pos: 0.5,-54.5 parent: 2 - type: DeviceList devices: - - 822 - - 15085 - - 15148 - - 15113 - - 15046 - - 15106 - - 15108 - - 20057 - - 19655 - - 15136 - - 15134 - - 15047 - - 15121 - - 15245 - - 19891 - - 19820 - - 15348 - - 15110 - - 15032 - - 15054 - - 15158 - - 15156 - - 15157 - - 14878 - - type: AtmosDevice - joinedGrid: 2 - - uid: 31676 + - 20244 + - 20003 + - 15131 + - 15450 + - 15135 + - 931 + - uid: 102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 + pos: -6.5,-44.5 parent: 2 - type: DeviceList devices: - - 19873 - - 31675 - - 15345 - - 10286 - - 31678 - - type: AtmosDevice - joinedGrid: 2 + - 811 + - 20035 + - 19797 + - 15183 + - 15184 + - 15225 + - 15292 + - 15291 + - 15293 + - 15072 + - 15325 + - 15326 + - 14992 + - 14991 + - 15010 + - 14990 + - 14989 + - 14988 + - uid: 103 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 822 + - 19993 + - 15135 + - 15326 + - 15325 + - 15450 + - 15130 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-53.5 + parent: 2 - proto: AirCanister entities: - - uid: 102 + - uid: 105 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 103 + - uid: 106 components: - type: Transform pos: -29.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 104 + - uid: 107 components: - type: Transform pos: 60.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 105 + - uid: 108 components: - type: Transform pos: 45.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 106 + - uid: 109 components: - type: Transform pos: -15.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 107 + - uid: 110 components: - type: Transform pos: 71.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 108 + - uid: 111 components: - type: Transform pos: -42.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 109 + - uid: 112 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 110 + - uid: 113 components: - type: Transform pos: 46.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - uid: 114 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 - proto: Airlock entities: - - uid: 111 + - uid: 115 components: - type: Transform rot: 3.141592653589793 rad @@ -11985,16 +12117,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24279 - - uid: 112 + - 24384 + - uid: 116 components: - type: Transform pos: -51.5,12.5 parent: 2 - type: DeviceLinkSink links: - - 24277 - - uid: 113 + - 24382 + - uid: 117 components: - type: Transform rot: 3.141592653589793 rad @@ -12002,8 +12134,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24278 - - uid: 114 + - 24383 + - uid: 118 components: - type: Transform rot: -1.5707963267948966 rad @@ -12012,8 +12144,8 @@ entities: - type: DeviceLinkSink invokeCounter: 1 links: - - 24281 - - uid: 115 + - 24386 + - uid: 119 components: - type: Transform rot: -1.5707963267948966 rad @@ -12021,8 +12153,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24282 - - uid: 116 + - 24387 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad @@ -12030,8 +12162,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24284 - - uid: 117 + - 24389 + - uid: 121 components: - type: Transform rot: -1.5707963267948966 rad @@ -12039,7 +12171,7 @@ entities: parent: 2 - proto: AirlockArmoryGlassLocked entities: - - uid: 118 + - uid: 122 components: - type: MetaData name: secway garage @@ -12047,7 +12179,7 @@ entities: rot: 3.141592653589793 rad pos: 11.5,18.5 parent: 2 - - uid: 119 + - uid: 123 components: - type: MetaData name: warden office @@ -12055,7 +12187,7 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,21.5 parent: 2 - - uid: 120 + - uid: 124 components: - type: MetaData name: secway garage @@ -12063,7 +12195,7 @@ entities: rot: 3.141592653589793 rad pos: 13.5,22.5 parent: 2 - - uid: 121 + - uid: 125 components: - type: MetaData name: wardens office @@ -12071,19 +12203,19 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,19.5 parent: 2 - - uid: 122 + - uid: 126 components: - type: Transform pos: 46.5,15.5 parent: 2 - - uid: 123 + - uid: 127 components: - type: Transform pos: 46.5,14.5 parent: 2 - proto: AirlockArmoryLocked entities: - - uid: 124 + - uid: 128 components: - type: MetaData name: wardens office @@ -12093,61 +12225,61 @@ entities: parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 125 + - uid: 129 components: - type: MetaData name: atmos - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 126 + - uid: 130 components: - type: Transform pos: -45.5,-40.5 parent: 2 - - uid: 127 + - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-40.5 parent: 2 - - uid: 128 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-41.5 parent: 2 - - uid: 129 + - uid: 133 components: - type: Transform pos: -34.5,-33.5 parent: 2 - - uid: 130 + - uid: 134 components: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 131 + - uid: 135 components: - type: Transform pos: -52.5,-58.5 parent: 2 - - uid: 132 + - uid: 136 components: - type: Transform pos: -47.5,-39.5 parent: 2 - - uid: 133 + - uid: 137 components: - type: Transform pos: -43.5,-37.5 parent: 2 - - uid: 134 + - uid: 138 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 135 + - uid: 139 components: - type: Transform rot: -1.5707963267948966 rad @@ -12155,65 +12287,65 @@ entities: parent: 2 - proto: AirlockAtmosphericsLocked entities: - - uid: 136 + - uid: 140 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-34.5 parent: 2 - - uid: 137 + - uid: 141 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-33.5 parent: 2 - - uid: 138 + - uid: 142 components: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 139 + - uid: 143 components: - type: Transform pos: -32.5,-36.5 parent: 2 - - uid: 140 + - uid: 144 components: - type: MetaData name: atmos - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 141 + - uid: 145 components: - type: MetaData name: atmos - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 142 + - uid: 146 components: - type: Transform pos: -26.5,-33.5 parent: 2 - - uid: 143 + - uid: 147 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 144 + - uid: 148 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-74.5 parent: 2 - - uid: 145 + - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-37.5 parent: 2 - - uid: 146 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad @@ -12221,7 +12353,7 @@ entities: parent: 2 - proto: AirlockBarLocked entities: - - uid: 147 + - uid: 151 components: - type: MetaData name: bartender quarters @@ -12229,7 +12361,7 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 - - uid: 148 + - uid: 152 components: - type: MetaData name: bartender quarters @@ -12239,88 +12371,73 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 149 + - uid: 153 components: - type: MetaData name: interrogation - type: Transform pos: 16.5,18.5 parent: 2 - - uid: 150 + - uid: 154 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 151 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 2 - - uid: 152 + - uid: 155 components: - type: Transform pos: 19.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -3156.132 + secondsUntilStateChange: -25630.516 state: Opening - - uid: 153 + - uid: 156 components: - type: MetaData name: brig - type: Transform pos: 42.5,3.5 parent: 2 - - uid: 154 + - uid: 157 components: - type: MetaData name: brig - type: Transform pos: 41.5,3.5 parent: 2 - - uid: 155 + - uid: 158 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 156 + - uid: 159 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 157 + - uid: 160 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 158 - components: - - type: MetaData - name: suspect treatment - - type: Transform - pos: 3.5,-55.5 - parent: 2 - - uid: 159 + - uid: 161 components: - type: Transform pos: 39.5,11.5 parent: 2 - - uid: 160 + - uid: 162 components: - type: Transform pos: 27.5,17.5 parent: 2 - - type: Door - secondsUntilStateChange: -3143.8303 - state: Opening - - uid: 161 + - uid: 163 components: - type: Transform pos: 27.5,18.5 parent: 2 - proto: AirlockBrigLocked entities: - - uid: 162 + - uid: 164 components: - type: MetaData name: lawyers office @@ -12329,7 +12446,7 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 163 + - uid: 165 components: - type: MetaData name: captains quarters @@ -12338,17 +12455,17 @@ entities: parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 164 + - uid: 166 components: - type: Transform pos: -26.5,18.5 parent: 2 - - uid: 165 + - uid: 167 components: - type: Transform pos: -29.5,22.5 parent: 2 - - uid: 166 + - uid: 168 components: - type: MetaData name: cargo access @@ -12356,21 +12473,21 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 - - uid: 167 + - uid: 169 components: - type: MetaData name: cargo dock - type: Transform pos: -35.5,22.5 parent: 2 - - uid: 168 + - uid: 170 components: - type: MetaData name: cargo dock - type: Transform pos: -35.5,21.5 parent: 2 - - uid: 169 + - uid: 171 components: - type: Transform rot: -1.5707963267948966 rad @@ -12378,32 +12495,25 @@ entities: parent: 2 - proto: AirlockCargoLocked entities: - - uid: 170 + - uid: 172 components: - type: Transform pos: -45.5,17.5 parent: 2 - - uid: 171 + - uid: 173 components: - type: Transform pos: -45.5,13.5 parent: 2 -- proto: AirlockCentralCommandV2Locked - entities: - - uid: 12152 - components: - - type: Transform - pos: 24.5,-37.5 - parent: 2 - proto: AirlockChapelLocked entities: - - uid: 172 + - uid: 174 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 - - uid: 173 + - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad @@ -12411,23 +12521,29 @@ entities: parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 174 + - uid: 176 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 - proto: AirlockChemistryLocked entities: - - uid: 175 + - uid: 178 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-51.5 + pos: 7.5,-60.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 176 + - uid: 179 components: - type: MetaData name: vault substation @@ -12435,7 +12551,7 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-30.5 parent: 2 - - uid: 177 + - uid: 180 components: - type: MetaData name: ce room @@ -12443,14 +12559,14 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-16.5 parent: 2 - - uid: 178 + - uid: 181 components: - type: Transform pos: -36.5,-14.5 parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 179 + - uid: 182 components: - type: MetaData name: cmo office @@ -12460,62 +12576,62 @@ entities: parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 180 + - uid: 183 components: - type: Transform pos: 19.5,-25.5 parent: 2 - - uid: 181 + - uid: 184 components: - type: Transform pos: 19.5,-24.5 parent: 2 - - uid: 182 + - uid: 185 components: - type: Transform pos: 33.5,-24.5 parent: 2 - - uid: 183 + - uid: 186 components: - type: MetaData name: EVA - type: Transform pos: 32.5,-15.5 parent: 2 - - uid: 184 + - uid: 187 components: - type: Transform pos: 31.5,-24.5 parent: 2 - - uid: 185 + - uid: 188 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 186 + - uid: 189 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 - - uid: 187 + - uid: 190 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 188 + - uid: 191 components: - type: Transform pos: 33.5,-25.5 parent: 2 - - uid: 189 + - uid: 192 components: - type: Transform pos: 31.5,-25.5 parent: 2 - proto: AirlockCommandLocked entities: - - uid: 190 + - uid: 193 components: - type: MetaData name: conference room @@ -12523,34 +12639,37 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 2 - - uid: 192 + - uid: 194 components: - type: MetaData name: bridge bar - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-33.5 + pos: 22.5,-33.5 parent: 2 - - uid: 193 + - uid: 195 components: + - type: MetaData + name: bridge bar - type: Transform - pos: 25.5,-40.5 + rot: 3.141592653589793 rad + pos: 28.5,-33.5 parent: 2 - - uid: 26189 + - uid: 196 components: - type: Transform - pos: 25.5,-33.5 + pos: 25.5,-40.5 parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 194 + - uid: 197 components: - type: Transform pos: 20.5,-15.5 parent: 2 - proto: AirlockEngineering entities: - - uid: 195 + - uid: 198 components: - type: MetaData name: PA smes @@ -12559,72 +12678,72 @@ entities: parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 196 + - uid: 199 components: - type: Transform pos: -69.5,-23.5 parent: 2 - - uid: 197 + - uid: 200 components: - type: Transform pos: -63.5,-24.5 parent: 2 - - uid: 198 + - uid: 201 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-17.5 parent: 2 - - uid: 199 + - uid: 202 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-16.5 parent: 2 - - uid: 200 + - uid: 203 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 - - uid: 201 + - uid: 204 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 202 + - uid: 205 components: - type: Transform pos: -43.5,-5.5 parent: 2 - - uid: 203 + - uid: 206 components: - type: Transform pos: -69.5,-24.5 parent: 2 - - uid: 204 + - uid: 207 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 205 + - uid: 208 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 206 + - uid: 209 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 - - uid: 207 + - uid: 210 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 - - uid: 208 + - uid: 211 components: - type: MetaData name: particle accelerator @@ -12632,44 +12751,44 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-23.5 parent: 2 - - uid: 209 + - uid: 212 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 - - uid: 210 + - uid: 213 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 - - uid: 211 + - uid: 214 components: - type: Transform pos: -33.5,-11.5 parent: 2 - - uid: 212 + - uid: 215 components: - type: Transform pos: -33.5,-10.5 parent: 2 - - uid: 213 + - uid: 216 components: - type: Transform pos: -43.5,-6.5 parent: 2 - - uid: 214 + - uid: 217 components: - type: Transform pos: -64.5,-29.5 parent: 2 - - uid: 215 + - uid: 218 components: - type: Transform pos: -68.5,-29.5 parent: 2 - - uid: 216 + - uid: 219 components: - type: MetaData name: electrical storage @@ -12677,108 +12796,108 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,38.5 parent: 2 - - uid: 217 + - uid: 220 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 - - uid: 218 + - uid: 221 components: - type: Transform pos: -40.5,-5.5 parent: 2 - - uid: 219 + - uid: 222 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-30.5 parent: 2 - - uid: 220 + - uid: 223 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 - - uid: 221 + - uid: 224 components: - type: Transform pos: -69.5,-31.5 parent: 2 - - uid: 222 + - uid: 225 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-26.5 parent: 2 - - uid: 223 + - uid: 226 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 - - uid: 224 + - uid: 227 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-33.5 parent: 2 - - uid: 225 + - uid: 228 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 - - uid: 226 + - uid: 229 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-36.5 parent: 2 - - uid: 227 + - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-45.5 parent: 2 - - uid: 228 + - uid: 231 components: - type: Transform pos: -64.5,-36.5 parent: 2 - - uid: 229 + - uid: 232 components: - type: Transform pos: -49.5,-23.5 parent: 2 - - uid: 230 + - uid: 233 components: - type: Transform pos: -64.5,-37.5 parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 231 + - uid: 234 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 232 + - uid: 235 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 233 + - uid: 236 components: - type: Transform pos: -19.5,-1.5 parent: 2 - - uid: 234 + - uid: 237 components: - type: Transform pos: -26.5,-14.5 parent: 2 - - uid: 235 + - uid: 238 components: - type: MetaData name: command substation @@ -12786,7 +12905,7 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 - - uid: 236 + - uid: 239 components: - type: MetaData name: detective substation @@ -12794,33 +12913,33 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-15.5 parent: 2 - - uid: 237 + - uid: 240 components: - type: MetaData name: virology substation - type: Transform pos: -11.5,-70.5 parent: 2 - - uid: 238 + - uid: 241 components: - type: Transform pos: 30.5,-3.5 parent: 2 - - uid: 239 + - uid: 242 components: - type: MetaData name: gravity generator - type: Transform pos: -19.5,-3.5 parent: 2 - - uid: 240 + - uid: 243 components: - type: MetaData name: south solar - type: Transform pos: -1.5,-76.5 parent: 2 - - uid: 241 + - uid: 244 components: - type: MetaData name: medical substation @@ -12828,31 +12947,31 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-57.5 parent: 2 - - uid: 242 + - uid: 245 components: - type: MetaData name: substation - type: Transform pos: 32.5,23.5 parent: 2 - - uid: 243 + - uid: 246 components: - type: Transform pos: 46.5,-0.5 parent: 2 - - uid: 244 + - uid: 247 components: - type: Transform pos: 63.5,27.5 parent: 2 - - uid: 245 + - uid: 248 components: - type: MetaData name: evac substation - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 246 + - uid: 249 components: - type: MetaData name: science substation @@ -12860,42 +12979,42 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-44.5 parent: 2 - - uid: 247 + - uid: 250 components: - type: MetaData name: engineering substation - type: Transform pos: -27.5,-22.5 parent: 2 - - uid: 248 + - uid: 251 components: - type: MetaData name: engineering substation - type: Transform pos: -30.5,-23.5 parent: 2 - - uid: 249 + - uid: 252 components: - type: MetaData name: arrivals substation - type: Transform pos: 42.5,-59.5 parent: 2 - - uid: 250 + - uid: 253 components: - type: MetaData name: storage - type: Transform pos: -41.5,-14.5 parent: 2 - - uid: 251 + - uid: 254 components: - type: MetaData name: ame - type: Transform pos: -43.5,-10.5 parent: 2 - - uid: 252 + - uid: 255 components: - type: MetaData name: ame @@ -12903,54 +13022,54 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-11.5 parent: 2 - - uid: 253 + - uid: 256 components: - type: MetaData name: singularity - type: Transform pos: -49.5,-6.5 parent: 2 - - uid: 254 + - uid: 257 components: - type: MetaData name: singularity - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 255 + - uid: 258 components: - type: MetaData name: atmos substation - type: Transform pos: -27.5,-35.5 parent: 2 - - uid: 256 + - uid: 259 components: - type: Transform pos: -72.5,-27.5 parent: 2 - - uid: 257 + - uid: 260 components: - type: MetaData name: singularity substation - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 258 + - uid: 261 components: - type: MetaData name: maints bar substation - type: Transform pos: -29.5,-55.5 parent: 2 - - uid: 259 + - uid: 262 components: - type: MetaData name: cargo substation - type: Transform pos: -21.5,15.5 parent: 2 - - uid: 260 + - uid: 263 components: - type: MetaData name: substation @@ -12958,7 +13077,7 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-59.5 parent: 2 - - uid: 261 + - uid: 264 components: - type: MetaData name: chapel substation @@ -12966,7 +13085,7 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-2.5 parent: 2 - - uid: 262 + - uid: 265 components: - type: MetaData name: maints substation @@ -12974,33 +13093,33 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,28.5 parent: 2 - - uid: 263 + - uid: 266 components: - type: MetaData name: north maints substation - type: Transform pos: -8.5,33.5 parent: 2 - - uid: 264 + - uid: 267 components: - type: MetaData name: ai substation - type: Transform pos: -10.5,60.5 parent: 2 - - uid: 265 + - uid: 268 components: - type: MetaData name: robotics substation - type: Transform pos: 68.5,-60.5 parent: 2 - - uid: 266 + - uid: 269 components: - type: Transform pos: -21.5,0.5 parent: 2 - - uid: 267 + - uid: 270 components: - type: MetaData name: telecoms substation @@ -13008,12 +13127,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-21.5 parent: 2 - - uid: 268 + - uid: 271 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 269 + - uid: 272 components: - type: MetaData name: teg substation @@ -13021,198 +13140,201 @@ entities: rot: -1.5707963267948966 rad pos: -71.5,-35.5 parent: 2 - - uid: 270 + - uid: 273 components: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 271 + - uid: 274 components: - type: Transform pos: -49.5,-17.5 parent: 2 - - uid: 272 + - uid: 275 components: - type: MetaData name: substation - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 273 + - uid: 276 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 277 components: - - type: MetaData - name: substation - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 274 + - uid: 278 components: - type: Transform - pos: -2.5,-14.5 + pos: 6.5,-40.5 parent: 2 - proto: AirlockExternalGlass entities: - - uid: 275 + - uid: 279 components: - type: Transform pos: -57.5,-71.5 parent: 2 - - uid: 276 + - uid: 280 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-5.5 parent: 2 - - uid: 277 + - uid: 281 components: - type: Transform pos: 76.5,-34.5 parent: 2 - - uid: 278 + - uid: 282 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-89.5 parent: 2 - - uid: 279 + - uid: 283 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-93.5 parent: 2 - - uid: 280 + - uid: 284 components: - type: Transform pos: -57.5,-81.5 parent: 2 - - uid: 281 + - uid: 285 components: - type: Transform pos: -57.5,-79.5 parent: 2 - - uid: 282 + - uid: 286 components: - type: Transform pos: -57.5,-73.5 parent: 2 - - uid: 283 + - uid: 287 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-3.5 parent: 2 - - uid: 284 + - uid: 288 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-11.5 parent: 2 - - uid: 285 + - uid: 289 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-13.5 parent: 2 - - uid: 286 + - uid: 290 components: - type: Transform pos: 27.5,45.5 parent: 2 - - uid: 287 + - uid: 291 components: - type: Transform pos: 21.5,45.5 parent: 2 - - uid: 288 + - uid: 292 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,68.5 parent: 2 - - uid: 289 + - uid: 293 components: - type: Transform pos: 16.5,41.5 parent: 2 - - uid: 290 + - uid: 294 components: - type: Transform pos: 76.5,-36.5 parent: 2 - - uid: 291 + - uid: 295 components: - type: Transform pos: 76.5,-37.5 parent: 2 - - uid: 292 + - uid: 296 components: - type: Transform pos: 76.5,-33.5 parent: 2 - - uid: 293 + - uid: 297 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-82.5 parent: 2 - - uid: 294 + - uid: 298 components: - type: Transform pos: 48.5,-93.5 parent: 2 - - uid: 295 + - uid: 299 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-82.5 parent: 2 - - uid: 296 + - uid: 300 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-89.5 parent: 2 - - uid: 297 + - uid: 301 components: - type: Transform pos: 50.5,-82.5 parent: 2 - - uid: 298 + - uid: 302 components: - type: Transform pos: 50.5,-89.5 parent: 2 - - uid: 299 + - uid: 303 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 - - uid: 300 + - uid: 304 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-81.5 parent: 2 - - uid: 301 + - uid: 305 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-81.5 parent: 2 - - uid: 302 + - uid: 306 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 - - uid: 303 + - uid: 307 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-69.5 parent: 2 - - uid: 304 + - uid: 308 components: - type: Transform rot: 3.141592653589793 rad @@ -13220,281 +13342,281 @@ entities: parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 305 + - uid: 309 components: - type: Transform pos: -52.5,33.5 parent: 2 - - uid: 306 + - uid: 310 components: - type: Transform pos: -49.5,33.5 parent: 2 - - uid: 307 + - uid: 311 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 308 + - uid: 312 components: - type: Transform pos: -49.5,31.5 parent: 2 - - uid: 309 + - uid: 313 components: - type: Transform pos: -51.5,43.5 parent: 2 - - uid: 310 + - uid: 314 components: - type: Transform pos: -51.5,42.5 parent: 2 - - uid: 311 + - uid: 315 components: - type: Transform pos: -49.5,20.5 parent: 2 - - uid: 312 + - uid: 316 components: - type: Transform pos: -49.5,22.5 parent: 2 - - uid: 313 + - uid: 317 components: - type: Transform pos: -49.5,47.5 parent: 2 - - uid: 314 + - uid: 318 components: - type: Transform pos: -49.5,45.5 parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 315 + - uid: 319 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 316 + - uid: 320 components: - type: Transform pos: -56.5,-18.5 parent: 2 - proto: AirlockExternalGlassLocked entities: - - uid: 317 + - uid: 321 components: - type: Transform pos: -1.5,-80.5 parent: 2 - - uid: 318 + - uid: 322 components: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 319 + - uid: 323 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 320 + - uid: 324 components: - type: Transform pos: -7.5,-94.5 parent: 2 - - uid: 321 + - uid: 325 components: - type: Transform pos: 67.5,-14.5 parent: 2 - - uid: 322 + - uid: 326 components: - type: Transform pos: 6.5,-86.5 parent: 2 - - uid: 323 + - uid: 327 components: - type: Transform pos: -37.5,43.5 parent: 2 - - uid: 324 + - uid: 328 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 325 + - uid: 329 components: - type: Transform pos: -58.5,-54.5 parent: 2 - - uid: 326 + - uid: 330 components: - type: Transform pos: -60.5,-54.5 parent: 2 - - uid: 327 + - uid: 331 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 328 + - uid: 332 components: - type: Transform pos: -37.5,41.5 parent: 2 - - uid: 329 + - uid: 333 components: - type: Transform pos: -1.5,-84.5 parent: 2 - - uid: 330 + - uid: 334 components: - type: Transform pos: 52.5,-16.5 parent: 2 - - uid: 331 + - uid: 335 components: - type: Transform pos: -46.5,-41.5 parent: 2 - - uid: 332 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 - - uid: 333 + - uid: 337 components: - type: Transform pos: 69.5,36.5 parent: 2 - - uid: 334 + - uid: 338 components: - type: Transform pos: 75.5,36.5 parent: 2 - - uid: 335 + - uid: 339 components: - type: Transform pos: 77.5,36.5 parent: 2 - - uid: 336 + - uid: 340 components: - type: Transform pos: 67.5,36.5 parent: 2 - - uid: 337 + - uid: 341 components: - type: Transform pos: 63.5,32.5 parent: 2 - - uid: 338 + - uid: 342 components: - type: Transform pos: 29.5,41.5 parent: 2 - - uid: 339 + - uid: 343 components: - type: Transform pos: 29.5,43.5 parent: 2 - - uid: 340 + - uid: 344 components: - type: Transform pos: -12.5,71.5 parent: 2 - - uid: 341 + - uid: 345 components: - type: Transform pos: -13.5,71.5 parent: 2 - - uid: 342 + - uid: 346 components: - type: Transform pos: -21.5,71.5 parent: 2 - - uid: 343 + - uid: 347 components: - type: Transform pos: -22.5,71.5 parent: 2 - - uid: 344 + - uid: 348 components: - type: Transform pos: 67.5,-16.5 parent: 2 - - uid: 345 + - uid: 349 components: - type: Transform pos: -35.5,-99.5 parent: 2 - - uid: 346 + - uid: 350 components: - type: Transform pos: -35.5,-101.5 parent: 2 - - uid: 347 + - uid: 351 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-58.5 parent: 2 - - uid: 348 + - uid: 352 components: - type: Transform pos: -75.5,-31.5 parent: 2 - - uid: 349 + - uid: 353 components: - type: Transform pos: -77.5,-31.5 parent: 2 - - uid: 350 + - uid: 354 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-45.5 parent: 2 - - uid: 351 + - uid: 355 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-44.5 parent: 2 - - uid: 352 + - uid: 356 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,59.5 parent: 2 - - uid: 353 + - uid: 357 components: - type: Transform pos: -57.5,-1.5 parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 354 + - uid: 358 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 - - uid: 355 + - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-82.5 parent: 2 - - uid: 356 + - uid: 360 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 - - uid: 357 + - uid: 361 components: - type: Transform rot: 1.5707963267948966 rad @@ -13502,25 +13624,25 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 358 + - uid: 362 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-3.5 parent: 2 - - uid: 359 + - uid: 363 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-13.5 parent: 2 - - uid: 360 + - uid: 364 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 - - uid: 361 + - uid: 365 components: - type: Transform rot: 1.5707963267948966 rad @@ -13528,43 +13650,43 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 362 + - uid: 366 components: - type: Transform pos: 30.5,-95.5 parent: 2 - - uid: 363 + - uid: 367 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,70.5 parent: 2 - - uid: 364 + - uid: 368 components: - type: Transform pos: 48.5,-95.5 parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 365 + - uid: 369 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 - - uid: 366 + - uid: 370 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 - - uid: 367 + - uid: 371 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 - - uid: 368 + - uid: 372 components: - type: Transform rot: 3.141592653589793 rad @@ -13572,12 +13694,12 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleSyndicateLocked entities: - - uid: 369 + - uid: 373 components: - type: Transform pos: -54.5,-90.5 parent: 2 - - uid: 370 + - uid: 374 components: - type: Transform rot: 3.141592653589793 rad @@ -13585,26 +13707,26 @@ entities: parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 371 + - uid: 375 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 372 + - uid: 376 components: - type: MetaData name: service - type: Transform pos: -9.5,15.5 parent: 2 - - uid: 373 + - uid: 377 components: - type: Transform pos: -1.5,14.5 parent: 2 - proto: AirlockGlass entities: - - uid: 374 + - uid: 378 components: - type: MetaData name: lawyer office @@ -13612,59 +13734,59 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-3.5 parent: 2 - - uid: 375 + - uid: 379 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 - - uid: 376 + - uid: 380 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 377 + - uid: 381 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 - - uid: 378 + - uid: 382 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 379 + - uid: 383 components: - type: MetaData name: bar - type: Transform pos: 10.5,4.5 parent: 2 - - uid: 380 + - uid: 384 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 - - uid: 381 + - uid: 385 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 - - uid: 382 + - uid: 386 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 - - uid: 383 + - uid: 387 components: - type: Transform pos: -16.5,-42.5 parent: 2 - - uid: 384 + - uid: 388 components: - type: MetaData name: youtool @@ -13672,133 +13794,117 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-21.5 parent: 2 - - uid: 385 + - uid: 389 components: - type: Transform pos: 26.5,15.5 parent: 2 - type: DeviceLinkSink links: - - 24344 - - uid: 386 + - 24448 + - uid: 390 components: - type: Transform pos: 24.5,15.5 parent: 2 - type: DeviceLinkSink links: - - 24344 - - uid: 387 + - 24448 + - uid: 391 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 388 + - uid: 392 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 389 + - uid: 393 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 - - uid: 390 + - uid: 394 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-44.5 parent: 2 - - uid: 391 + - uid: 395 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-39.5 parent: 2 - - uid: 392 + - uid: 396 components: - type: Transform pos: 25.5,15.5 parent: 2 - type: DeviceLinkSink links: - - 24344 - - uid: 393 + - 24448 + - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 2 - - uid: 394 + - uid: 398 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 - - uid: 395 + - uid: 399 components: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 396 + - uid: 400 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 - - uid: 397 + - uid: 401 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 - - uid: 398 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 - - uid: 399 + - uid: 403 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-27.5 parent: 2 - - uid: 400 + - uid: 404 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 2 - - uid: 401 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24359 - - uid: 402 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24359 - - uid: 403 + - uid: 405 components: - type: Transform pos: 31.5,1.5 parent: 2 - - uid: 404 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 - - uid: 405 + - uid: 407 components: - type: MetaData name: lawyer office @@ -13806,256 +13912,248 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 406 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24359 - - uid: 407 + - uid: 408 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 - - uid: 408 + - uid: 409 components: - type: MetaData name: bar - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 409 + - uid: 410 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 - - uid: 410 + - uid: 411 components: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 411 + - uid: 412 components: - type: Transform pos: -16.5,-41.5 parent: 2 - - uid: 412 + - uid: 413 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 - - uid: 413 + - uid: 414 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 414 + - uid: 415 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 - - uid: 415 + - uid: 416 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 416 + - uid: 417 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 417 + - uid: 418 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-39.5 parent: 2 - - uid: 418 + - uid: 419 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 - - uid: 419 + - uid: 420 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 - - uid: 420 + - uid: 421 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 421 + - uid: 422 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 422 + - uid: 423 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 2 - - uid: 423 + - uid: 424 components: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 424 + - uid: 425 components: - type: Transform pos: -19.5,-24.5 parent: 2 - - uid: 425 + - uid: 426 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 - - uid: 426 + - uid: 427 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 427 + - uid: 428 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-38.5 parent: 2 - - uid: 428 + - uid: 429 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 - - uid: 429 + - uid: 430 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 2 - - uid: 430 + - uid: 431 components: - type: Transform pos: 35.5,2.5 parent: 2 - - uid: 431 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 - - uid: 432 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 2 - - uid: 433 + - uid: 434 components: - type: Transform pos: 31.5,6.5 parent: 2 - - uid: 434 + - uid: 435 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-38.5 parent: 2 - - uid: 435 + - uid: 436 components: - type: Transform pos: 1.5,53.5 parent: 2 - - uid: 436 + - uid: 437 components: - type: Transform pos: 0.5,53.5 parent: 2 - - uid: 437 + - uid: 438 components: - type: Transform pos: -0.5,53.5 parent: 2 - - uid: 438 + - uid: 439 components: - type: Transform pos: 40.5,-41.5 parent: 2 - type: DeviceLinkSink links: - - 24358 - - uid: 439 + - 24461 + - uid: 440 components: - type: Transform pos: 40.5,-42.5 parent: 2 - type: DeviceLinkSink links: - - 24358 - - uid: 440 + - 24461 + - uid: 441 components: - type: Transform pos: 40.5,-43.5 parent: 2 - type: DeviceLinkSink links: - - 24358 - - uid: 441 + - 24461 + - uid: 442 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 442 + - uid: 443 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 443 + - uid: 444 components: - type: Transform pos: 7.5,-42.5 parent: 2 - - uid: 444 + - uid: 445 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 445 + - uid: 446 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 446 + - uid: 447 components: - type: MetaData name: Psychologist office - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 447 + - uid: 448 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 - - uid: 448 + - uid: 449 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,46.5 parent: 2 - - uid: 449 + - uid: 450 components: - type: MetaData name: visitor meeting @@ -14063,84 +14161,84 @@ entities: rot: 3.141592653589793 rad pos: 37.5,20.5 parent: 2 - - uid: 450 + - uid: 451 components: - type: MetaData name: open library - type: Transform pos: 43.5,19.5 parent: 2 - - uid: 451 + - uid: 452 components: - type: MetaData name: open library - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 452 + - uid: 453 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 - - uid: 453 + - uid: 454 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 - - uid: 454 + - uid: 455 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 - - uid: 455 + - uid: 456 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 - - uid: 456 + - uid: 457 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-3.5 parent: 2 - type: Door - secondsUntilStateChange: -1969.9486 + secondsUntilStateChange: -24444.334 state: Opening - - uid: 457 + - uid: 458 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 - type: Door - secondsUntilStateChange: -1968.732 + secondsUntilStateChange: -24443.117 state: Opening - - uid: 458 + - uid: 459 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 2 - - uid: 459 + - uid: 460 components: - type: Transform pos: -13.5,-27.5 parent: 2 - - uid: 460 + - uid: 461 components: - type: Transform pos: -13.5,-26.5 parent: 2 - - uid: 461 + - uid: 462 components: - type: Transform pos: -13.5,-25.5 parent: 2 - - uid: 462 + - uid: 463 components: - type: MetaData name: courtroom @@ -14148,67 +14246,67 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-57.5 parent: 2 - - uid: 463 + - uid: 464 components: - type: Transform pos: 30.5,-76.5 parent: 2 - - uid: 464 + - uid: 465 components: - type: Transform pos: 31.5,-76.5 parent: 2 - - uid: 465 + - uid: 466 components: - type: Transform pos: 29.5,-76.5 parent: 2 - - uid: 466 + - uid: 467 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-72.5 parent: 2 - - uid: 467 + - uid: 468 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 - - uid: 468 + - uid: 469 components: - type: Transform pos: 40.5,-69.5 parent: 2 - - uid: 469 + - uid: 470 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 470 + - uid: 471 components: - type: Transform pos: 38.5,-69.5 parent: 2 - - uid: 471 + - uid: 472 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-58.5 parent: 2 - - uid: 472 + - uid: 473 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-59.5 parent: 2 - - uid: 473 + - uid: 474 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-60.5 parent: 2 - - uid: 474 + - uid: 475 components: - type: MetaData name: youtool @@ -14216,384 +14314,360 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-57.5 parent: 2 - - uid: 475 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24359 - uid: 476 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24359 - - uid: 477 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24359 - - uid: 478 components: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 479 + - uid: 477 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 480 + - uid: 478 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 481 + - uid: 479 components: - type: Transform pos: -19.5,-39.5 parent: 2 - - uid: 482 + - uid: 480 components: - type: Transform pos: -20.5,-39.5 parent: 2 - - uid: 483 + - uid: 481 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 484 + - uid: 482 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 485 + - uid: 483 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-7.5 parent: 2 - - uid: 486 + - uid: 484 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 - - uid: 487 + - uid: 485 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 - - uid: 488 + - uid: 486 components: - type: Transform pos: -21.5,-12.5 parent: 2 - type: DeviceLinkSink links: - - 24356 - - uid: 489 + - 24459 + - uid: 487 components: - type: Transform pos: -21.5,-11.5 parent: 2 - type: DeviceLinkSink links: - - 24356 - - uid: 490 + - 24459 + - uid: 488 components: - type: Transform pos: -21.5,20.5 parent: 2 - type: DeviceLinkSink links: - - 24345 - - uid: 491 + - 24449 + - uid: 489 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,29.5 parent: 2 - - uid: 492 + - uid: 490 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 - - uid: 493 + - uid: 491 components: - type: Transform pos: -30.5,7.5 parent: 2 - - uid: 494 + - uid: 492 components: - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 495 + - uid: 493 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 496 + - uid: 494 components: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 497 + - uid: 495 components: - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 498 + - uid: 496 components: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 499 + - uid: 497 components: - type: Transform pos: -38.5,2.5 parent: 2 - - uid: 500 + - uid: 498 components: - type: Transform pos: -37.5,2.5 parent: 2 - - uid: 501 + - uid: 499 components: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 502 + - uid: 500 components: - type: Transform pos: -27.5,0.5 parent: 2 - - uid: 503 + - uid: 501 components: - type: Transform pos: -27.5,-0.5 parent: 2 - - uid: 504 + - uid: 502 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 505 + - uid: 503 components: - type: Transform pos: -21.5,21.5 parent: 2 - type: DeviceLinkSink links: - - 24345 - - uid: 506 + - 24449 + - uid: 504 components: - type: Transform pos: -46.5,2.5 parent: 2 - - uid: 507 + - uid: 505 components: - type: Transform pos: -47.5,2.5 parent: 2 - - uid: 508 + - uid: 506 components: - type: Transform pos: -45.5,2.5 parent: 2 - - uid: 509 + - uid: 507 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 - - uid: 510 + - uid: 508 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 - - uid: 511 + - uid: 509 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 - - uid: 512 + - uid: 510 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 2 - - uid: 513 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 - - uid: 514 + - uid: 512 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,48.5 parent: 2 - - uid: 515 + - uid: 513 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,48.5 parent: 2 - - uid: 516 + - uid: 514 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 - - uid: 517 + - uid: 515 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 - - uid: 518 + - uid: 516 components: - type: Transform pos: -11.5,59.5 parent: 2 - - uid: 519 + - uid: 517 components: - type: Transform pos: -11.5,58.5 parent: 2 - - uid: 520 + - uid: 518 components: - type: Transform pos: -15.5,51.5 parent: 2 - - uid: 521 + - uid: 519 components: - type: Transform pos: -15.5,50.5 parent: 2 - - uid: 522 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 - - uid: 523 + - uid: 521 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 524 + - uid: 522 components: - type: Transform pos: 47.5,-76.5 parent: 2 - - uid: 525 + - uid: 523 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 2 - - uid: 526 + - uid: 524 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-83.5 parent: 2 - - uid: 527 + - uid: 525 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-72.5 parent: 2 - - uid: 528 + - uid: 526 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 - - uid: 529 + - uid: 527 components: - type: Transform pos: 49.5,-76.5 parent: 2 - - uid: 530 + - uid: 528 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-71.5 parent: 2 - - uid: 531 + - uid: 529 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 - - uid: 532 + - uid: 530 components: - type: Transform pos: 48.5,-76.5 parent: 2 - - uid: 533 + - uid: 531 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 - - uid: 534 + - uid: 532 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-53.5 parent: 2 - - uid: 535 + - uid: 533 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-53.5 parent: 2 - - uid: 536 + - uid: 534 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-54.5 parent: 2 - - uid: 537 + - uid: 535 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-11.5 parent: 2 - - uid: 538 + - uid: 536 components: - type: Transform pos: 47.5,-43.5 parent: 2 - - uid: 539 + - uid: 537 components: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 540 + - uid: 538 components: - type: Transform pos: 47.5,-42.5 parent: 2 - - uid: 541 + - uid: 539 components: - type: MetaData name: barbers @@ -14603,111 +14677,111 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 542 + - uid: 540 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 - - uid: 543 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 - - uid: 544 + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-71.5 parent: 2 - - uid: 545 + - uid: 543 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-73.5 parent: 2 - - uid: 546 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-81.5 parent: 2 - - uid: 547 + - uid: 545 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-79.5 parent: 2 - - uid: 548 + - uid: 546 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-37.5 parent: 2 - - uid: 549 + - uid: 547 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-34.5 parent: 2 - - uid: 550 + - uid: 548 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 - - uid: 551 + - uid: 549 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-33.5 parent: 2 - - uid: 552 + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-82.5 parent: 2 - - uid: 553 + - uid: 551 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-89.5 parent: 2 - - uid: 554 + - uid: 552 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-50.5 parent: 2 - - uid: 555 + - uid: 553 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-50.5 parent: 2 - - uid: 556 + - uid: 554 components: - type: Transform pos: -73.5,-57.5 parent: 2 - - uid: 557 + - uid: 555 components: - type: Transform pos: -71.5,-57.5 parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 558 + - uid: 556 components: - type: Transform pos: 0.5,-5.5 parent: 2 - type: DeviceLinkSink links: - - 24057 - - uid: 559 + - 24152 + - uid: 557 components: - type: MetaData name: hop office @@ -14716,15 +14790,15 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24057 - - uid: 560 + - 24152 + - uid: 558 components: - type: Transform pos: -2.5,-5.5 parent: 2 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 561 + - uid: 559 components: - type: MetaData name: hos office @@ -14732,7 +14806,7 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 2 - - uid: 562 + - uid: 560 components: - type: Transform rot: 1.5707963267948966 rad @@ -14740,7 +14814,7 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 563 + - uid: 561 components: - type: MetaData name: hos office @@ -14749,24 +14823,24 @@ entities: parent: 2 - proto: AirlockHydroponicsLocked entities: - - uid: 564 + - uid: 562 components: - type: Transform pos: -3.5,9.5 parent: 2 - - uid: 565 + - uid: 563 components: - type: MetaData name: hydrophonics - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 566 + - uid: 564 components: - type: Transform pos: -6.5,13.5 parent: 2 - - uid: 567 + - uid: 565 components: - type: Transform rot: -1.5707963267948966 rad @@ -14774,24 +14848,24 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 568 + - uid: 566 components: - type: Transform pos: -11.5,-16.5 parent: 2 - - uid: 569 + - uid: 567 components: - type: Transform pos: -11.5,-20.5 parent: 2 - - uid: 570 + - uid: 568 components: - type: MetaData name: janitorial closet - type: Transform pos: -11.5,-24.5 parent: 2 - - uid: 571 + - uid: 569 components: - type: Transform rot: -1.5707963267948966 rad @@ -14799,7 +14873,7 @@ entities: parent: 2 - proto: AirlockKitchenLocked entities: - - uid: 572 + - uid: 570 components: - type: MetaData name: kitchen @@ -14809,7 +14883,7 @@ entities: parent: 2 - proto: AirlockMaint entities: - - uid: 573 + - uid: 571 components: - type: MetaData name: waste disposal @@ -14817,23 +14891,23 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-51.5 parent: 2 - - uid: 574 + - uid: 572 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 - - uid: 575 + - uid: 573 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 576 + - uid: 574 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - uid: 577 + - uid: 575 components: - type: MetaData name: waste disposal @@ -14843,7 +14917,7 @@ entities: parent: 2 - proto: AirlockMaintAtmoLocked entities: - - uid: 578 + - uid: 576 components: - type: MetaData name: atmospherics @@ -14851,14 +14925,14 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-30.5 parent: 2 - - uid: 579 + - uid: 577 components: - type: MetaData name: atmos - type: Transform pos: -30.5,-40.5 parent: 2 - - uid: 580 + - uid: 578 components: - type: MetaData name: atmos @@ -14866,7 +14940,7 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-50.5 parent: 2 - - uid: 581 + - uid: 579 components: - type: MetaData name: atmospherics @@ -14875,71 +14949,70 @@ entities: parent: 2 - proto: AirlockMaintCaptainLocked entities: - - uid: 582 + - uid: 580 components: - type: MetaData name: captains quarters - type: Transform pos: 29.5,-31.5 parent: 2 -- proto: AirlockMaintCentralCommandLocked - entities: - - uid: 10287 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 583 + - uid: 581 components: - type: MetaData name: chemistry - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: 10.5,-48.5 parent: 2 - - uid: 584 + - uid: 582 components: - type: MetaData name: chemistry - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + pos: 8.5,-49.5 + parent: 2 +- proto: AirlockMaintChiefMedicalOfficerLocked + entities: + - uid: 583 + components: + - type: Transform + pos: -20.5,-52.5 parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 585 + - uid: 584 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-32.5 parent: 2 - - uid: 586 + - uid: 585 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 - - uid: 587 + - uid: 586 components: - type: Transform pos: 18.5,-30.5 parent: 2 - - uid: 588 + - uid: 587 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,0.5 parent: 2 - - uid: 589 + - uid: 588 components: - type: MetaData name: bridge - type: Transform pos: 26.5,-26.5 parent: 2 - - uid: 590 + - uid: 589 components: - type: MetaData name: conference room @@ -14949,216 +15022,216 @@ entities: parent: 2 - proto: AirlockMaintDetectiveLocked entities: - - uid: 591 + - uid: 590 components: - type: Transform pos: 20.5,-9.5 parent: 2 - proto: AirlockMaintEngiLocked entities: - - uid: 592 + - uid: 591 components: - type: MetaData name: engineering - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 593 + - uid: 592 components: - type: Transform pos: -51.5,-26.5 parent: 2 - proto: AirlockMaintGlass entities: - - uid: 594 + - uid: 593 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 - - uid: 595 + - uid: 594 components: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 596 + - uid: 595 components: - type: Transform pos: -41.5,-86.5 parent: 2 - - uid: 597 + - uid: 596 components: - type: Transform pos: -42.5,-86.5 parent: 2 - - uid: 598 + - uid: 597 components: - type: Transform pos: -7.5,21.5 parent: 2 - - uid: 599 + - uid: 598 components: - type: Transform pos: -8.5,30.5 parent: 2 - - uid: 600 + - uid: 599 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-28.5 parent: 2 - - uid: 601 + - uid: 600 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,25.5 parent: 2 - - uid: 602 + - uid: 601 components: - type: Transform pos: 57.5,-27.5 parent: 2 - - uid: 603 + - uid: 602 components: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 604 + - uid: 603 components: - type: Transform pos: -16.5,16.5 parent: 2 - - uid: 605 + - uid: 604 components: - type: Transform pos: 52.5,-32.5 parent: 2 - - uid: 606 + - uid: 605 components: - type: Transform pos: 54.5,40.5 parent: 2 - - uid: 607 + - uid: 606 components: - type: Transform pos: 54.5,54.5 parent: 2 - - uid: 608 + - uid: 607 components: - type: Transform pos: 52.5,41.5 parent: 2 - - uid: 609 + - uid: 608 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,34.5 parent: 2 - - uid: 610 + - uid: 609 components: - type: Transform pos: 44.5,45.5 parent: 2 - - uid: 611 + - uid: 610 components: - type: Transform pos: 31.5,45.5 parent: 2 - - uid: 612 + - uid: 611 components: - type: Transform pos: -26.5,35.5 parent: 2 - - uid: 613 + - uid: 612 components: - type: Transform pos: -26.5,33.5 parent: 2 - - uid: 614 + - uid: 613 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,21.5 parent: 2 - - uid: 615 + - uid: 614 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-76.5 parent: 2 - - uid: 616 + - uid: 615 components: - type: Transform pos: -13.5,-97.5 parent: 2 - - uid: 617 + - uid: 616 components: - type: Transform pos: -31.5,-97.5 parent: 2 - - uid: 618 + - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-93.5 parent: 2 - - uid: 619 + - uid: 618 components: - type: Transform pos: 65.5,-65.5 parent: 2 - - uid: 620 + - uid: 619 components: - type: Transform pos: 57.5,-65.5 parent: 2 - - uid: 621 + - uid: 620 components: - type: Transform pos: 54.5,-33.5 parent: 2 - proto: AirlockMaintGlassLocked entities: - - uid: 622 + - uid: 621 components: - type: Transform pos: 56.5,35.5 parent: 2 - - uid: 623 + - uid: 622 components: - type: Transform pos: 51.5,31.5 parent: 2 - - uid: 624 + - uid: 623 components: - type: Transform pos: -17.5,64.5 parent: 2 - - uid: 625 + - uid: 624 components: - type: Transform pos: -17.5,59.5 parent: 2 - - uid: 626 + - uid: 625 components: - type: MetaData name: forgotten dock - type: Transform pos: -48.5,-76.5 parent: 2 - - uid: 627 + - uid: 626 components: - type: Transform pos: 57.5,30.5 parent: 2 - - uid: 628 + - uid: 627 components: - type: Transform pos: 16.5,35.5 parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 629 + - uid: 628 components: - type: MetaData name: hop office @@ -15168,246 +15241,233 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24057 + - 24152 - proto: AirlockMaintJanitorLocked entities: - - uid: 630 + - uid: 629 components: - type: Transform pos: -14.5,-14.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 631 + - uid: 630 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-29.5 parent: 2 - - uid: 632 + - uid: 631 components: - type: Transform pos: 18.5,-7.5 parent: 2 - - uid: 633 + - uid: 632 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 634 + - uid: 633 components: - type: Transform pos: -8.5,-70.5 parent: 2 - - uid: 635 + - uid: 634 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-8.5 parent: 2 - - uid: 636 + - uid: 635 components: - type: Transform pos: 35.5,-15.5 parent: 2 - - uid: 637 + - uid: 636 components: - type: Transform pos: -13.5,-7.5 parent: 2 - - uid: 638 + - uid: 637 components: - type: Transform pos: 36.5,-44.5 parent: 2 - - uid: 639 - components: - - type: MetaData - name: medbay - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 2 - - uid: 640 + - uid: 638 components: - type: Transform pos: 15.5,-15.5 parent: 2 - - uid: 641 + - uid: 639 components: - type: Transform pos: 13.5,-29.5 parent: 2 - - uid: 642 + - uid: 640 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 2 - - uid: 643 + - uid: 641 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 - - uid: 644 + - uid: 642 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 645 + - uid: 643 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 - - uid: 646 + - uid: 644 components: - type: MetaData name: evac - type: Transform pos: 48.5,-8.5 parent: 2 - - uid: 647 + - uid: 645 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 648 + - uid: 646 components: - type: Transform pos: 64.5,2.5 parent: 2 - - uid: 649 + - uid: 647 components: - type: Transform pos: -17.5,-14.5 parent: 2 - - uid: 650 + - uid: 648 components: - type: MetaData name: evac - type: Transform pos: 62.5,-14.5 parent: 2 - - uid: 651 + - uid: 649 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 - - uid: 652 + - uid: 650 components: - type: Transform pos: -17.5,52.5 parent: 2 - - uid: 653 + - uid: 651 components: - type: Transform pos: -20.5,55.5 parent: 2 - - uid: 654 + - uid: 652 components: - type: MetaData name: courtroom - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 655 + - uid: 653 components: - type: Transform pos: -21.5,-26.5 parent: 2 - - uid: 656 + - uid: 654 components: - type: Transform pos: -21.5,-42.5 parent: 2 - - uid: 657 + - uid: 655 components: - type: Transform pos: 36.5,-57.5 parent: 2 - - uid: 658 + - uid: 656 components: - type: Transform pos: 9.5,-70.5 parent: 2 - - uid: 659 + - uid: 657 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-64.5 parent: 2 - - uid: 660 + - uid: 658 components: - type: Transform pos: 21.5,-73.5 parent: 2 - - uid: 661 + - uid: 659 components: - type: MetaData name: engineering - type: Transform pos: -30.5,-26.5 parent: 2 - - uid: 662 + - uid: 660 components: - type: MetaData name: engineering - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 663 + - uid: 661 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 - - uid: 664 + - uid: 662 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 - - uid: 665 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 2 - - uid: 666 + - uid: 663 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 - - uid: 667 + - uid: 664 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 668 + - uid: 665 components: - type: Transform pos: -4.5,32.5 parent: 2 - - uid: 669 + - uid: 666 components: - type: Transform pos: 1.5,32.5 parent: 2 - - uid: 670 + - uid: 667 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 - - uid: 671 + - uid: 668 components: - type: Transform pos: -48.5,0.5 parent: 2 - - uid: 672 + - uid: 669 components: - type: MetaData name: singularity catwalk @@ -15415,80 +15475,80 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-2.5 parent: 2 - - uid: 673 + - uid: 670 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,27.5 parent: 2 - - uid: 674 + - uid: 671 components: - type: Transform pos: 11.5,32.5 parent: 2 - - uid: 675 + - uid: 672 components: - type: Transform pos: -23.5,56.5 parent: 2 - - uid: 676 + - uid: 673 components: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 677 + - uid: 674 components: - type: Transform pos: -22.5,34.5 parent: 2 - type: DeviceLinkSink links: - - 24282 - - uid: 678 + - 24387 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-93.5 parent: 2 - - uid: 679 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-57.5 parent: 2 - - uid: 680 + - uid: 677 components: - type: Transform pos: 6.5,-35.5 parent: 2 - - uid: 681 + - uid: 678 components: - type: Transform pos: 61.5,-26.5 parent: 2 - - uid: 682 + - uid: 679 components: - type: Transform pos: 10.5,-83.5 parent: 2 - - uid: 683 + - uid: 680 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-34.5 parent: 2 - - uid: 684 + - uid: 681 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 - - uid: 685 + - uid: 682 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 686 + - uid: 683 components: - type: MetaData name: library @@ -15496,29 +15556,29 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 - - uid: 687 + - uid: 684 components: - type: Transform pos: -56.5,-40.5 parent: 2 - - uid: 688 + - uid: 685 components: - type: MetaData name: science - type: Transform pos: 50.5,-36.5 parent: 2 - - uid: 689 + - uid: 686 components: - type: Transform pos: 17.5,-44.5 parent: 2 - - uid: 690 + - uid: 687 components: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 691 + - uid: 688 components: - type: Transform rot: 3.141592653589793 rad @@ -15526,59 +15586,56 @@ entities: parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 692 + - uid: 689 components: - type: MetaData - name: surgery + name: virology - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-68.5 + pos: -32.5,-71.5 parent: 2 - - uid: 693 + - uid: 690 components: - - type: MetaData - name: storeroom - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-67.5 + pos: -11.5,-31.5 parent: 2 - - uid: 694 + - uid: 691 components: - - type: MetaData - name: medbay - type: Transform - pos: 6.5,-62.5 + rot: 3.141592653589793 rad + pos: -4.5,-67.5 parent: 2 - - uid: 695 + - uid: 692 components: + - type: MetaData + name: cryo - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-72.5 + rot: 1.5707963267948966 rad + pos: 5.5,-64.5 parent: 2 - - uid: 696 + - uid: 693 components: - type: MetaData - name: virology + name: cryo - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-71.5 + pos: 7.5,-56.5 parent: 2 - - uid: 697 + - uid: 694 components: - - type: MetaData - name: cryogenics - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-58.5 + rot: -1.5707963267948966 rad + pos: -16.5,-72.5 parent: 2 - - uid: 698 + - uid: 695 components: + - type: MetaData + name: medbay - type: Transform - pos: -11.5,-31.5 + pos: -21.5,-64.5 parent: 2 - proto: AirlockMaintRnDLocked entities: - - uid: 699 + - uid: 696 components: - type: MetaData name: robotics @@ -15586,21 +15643,21 @@ entities: rot: -1.5707963267948966 rad pos: 75.5,-50.5 parent: 2 - - uid: 700 + - uid: 697 components: - type: MetaData name: r&d - type: Transform pos: 45.5,-34.5 parent: 2 - - uid: 701 + - uid: 698 components: - type: MetaData name: toxins - type: Transform pos: 44.5,-56.5 parent: 2 - - uid: 702 + - uid: 699 components: - type: MetaData name: science @@ -15609,7 +15666,7 @@ entities: parent: 2 - proto: AirlockMaintSalvageLocked entities: - - uid: 703 + - uid: 700 components: - type: MetaData name: salvage @@ -15617,7 +15674,7 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,34.5 parent: 2 - - uid: 704 + - uid: 701 components: - type: Transform rot: -1.5707963267948966 rad @@ -15625,43 +15682,43 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 705 + - uid: 702 components: - type: Transform pos: 31.5,21.5 parent: 2 - - uid: 706 + - uid: 703 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 707 + - uid: 704 components: - type: MetaData name: interrogation room - type: Transform pos: 14.5,24.5 parent: 2 - - uid: 708 + - uid: 705 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-48.5 parent: 2 - - uid: 709 + - uid: 706 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,26.5 parent: 2 - - uid: 710 + - uid: 707 components: - type: Transform pos: -1.5,22.5 parent: 2 - proto: AirlockMaintTheatreLocked entities: - - uid: 711 + - uid: 708 components: - type: MetaData name: theatre @@ -15670,155 +15727,144 @@ entities: parent: 2 - proto: AirlockMedicalGlass entities: - - uid: 712 + - uid: 709 components: - type: Transform pos: 43.5,6.5 parent: 2 - proto: AirlockMedicalGlassLocked entities: + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-50.5 + parent: 2 + - uid: 712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 2 - uid: 713 components: - - type: MetaData - name: cloning - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-62.5 + rot: -1.5707963267948966 rad + pos: -1.5,-50.5 parent: 2 - uid: 714 components: - type: Transform - pos: -15.5,-55.5 + rot: -1.5707963267948966 rad + pos: -0.5,-50.5 parent: 2 - uid: 715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-58.5 + rot: -1.5707963267948966 rad + pos: 0.5,-50.5 parent: 2 - uid: 716 components: - - type: MetaData - name: cryogenics - type: Transform - pos: -21.5,-60.5 + pos: 45.5,3.5 parent: 2 - uid: 717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-58.5 + rot: -1.5707963267948966 rad + pos: -8.5,-60.5 parent: 2 - uid: 718 components: - - type: MetaData - name: medical storage - type: Transform - pos: 7.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-57.5 parent: 2 - uid: 719 components: - type: Transform - pos: 45.5,3.5 + rot: -1.5707963267948966 rad + pos: -4.5,-63.5 parent: 2 - uid: 720 components: - - type: MetaData - name: cloning - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-62.5 + rot: -1.5707963267948966 rad + pos: -8.5,-59.5 parent: 2 - uid: 721 components: - - type: MetaData - name: surgery - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-62.5 + pos: -6.5,-66.5 parent: 2 - uid: 722 components: - type: Transform - pos: -14.5,-58.5 + pos: -21.5,-60.5 parent: 2 - uid: 723 components: - type: Transform - pos: -14.5,-55.5 + rot: 1.5707963267948966 rad + pos: -10.5,-54.5 parent: 2 - uid: 724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-58.5 + rot: -1.5707963267948966 rad + pos: -0.5,-56.5 parent: 2 +- proto: AirlockMedicalLocked + entities: - uid: 725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-58.5 + pos: -4.5,-51.5 parent: 2 - uid: 726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-58.5 + pos: -13.5,-38.5 parent: 2 - uid: 727 components: - type: Transform - pos: -15.5,-58.5 + pos: -11.5,-34.5 parent: 2 - uid: 728 components: - type: MetaData - name: surgery + name: changing room - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-62.5 + pos: -10.5,-46.5 parent: 2 - uid: 729 components: - - type: MetaData - name: changing room - type: Transform - pos: -13.5,-51.5 + rot: 3.141592653589793 rad + pos: -13.5,-62.5 parent: 2 -- proto: AirlockMedicalLocked - entities: - uid: 730 components: - type: Transform - pos: -4.5,-51.5 + rot: 1.5707963267948966 rad + pos: -14.5,-68.5 parent: 2 - uid: 731 components: - - type: MetaData - name: morgue - - type: Transform - pos: -13.5,-62.5 - parent: 2 - - uid: 732 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 733 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 2 - - uid: 734 - components: - - type: MetaData - name: changing room - type: Transform - pos: -10.5,-46.5 + pos: -13.5,-44.5 parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - - uid: 735 + - uid: 732 components: - type: MetaData name: quartermasters office @@ -15827,7 +15873,7 @@ entities: parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 736 + - uid: 733 components: - type: MetaData name: quartermasters office @@ -15836,7 +15882,7 @@ entities: parent: 2 - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 737 + - uid: 734 components: - type: MetaData name: server room @@ -15845,7 +15891,7 @@ entities: parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 738 + - uid: 735 components: - type: MetaData name: research director's office @@ -15854,34 +15900,34 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 739 + - uid: 736 components: - type: MetaData name: salvage magnet - type: Transform pos: -46.5,27.5 parent: 2 - - uid: 740 + - uid: 737 components: - type: MetaData name: salvage magnet - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 741 + - uid: 738 components: - type: MetaData name: salvage - type: Transform pos: -39.5,29.5 parent: 2 - - uid: 742 + - uid: 739 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,37.5 parent: 2 - - uid: 743 + - uid: 740 components: - type: Transform rot: -1.5707963267948966 rad @@ -15889,7 +15935,7 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 744 + - uid: 741 components: - type: MetaData name: anomaly lab @@ -15897,59 +15943,59 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-41.5 parent: 2 - - uid: 745 + - uid: 742 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 746 + - uid: 743 components: - type: Transform pos: 54.5,-45.5 parent: 2 - - uid: 747 + - uid: 744 components: - type: Transform pos: 57.5,-43.5 parent: 2 - - uid: 748 + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-41.5 parent: 2 - - uid: 749 + - uid: 746 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 750 + - uid: 747 components: - type: Transform pos: 58.5,-44.5 parent: 2 - - uid: 751 + - uid: 748 components: - type: MetaData name: toxins - type: Transform pos: 49.5,-48.5 parent: 2 - - uid: 752 + - uid: 749 components: - type: MetaData name: science canteen - type: Transform pos: 47.5,-45.5 parent: 2 - - uid: 753 + - uid: 750 components: - type: MetaData name: toxins - type: Transform pos: 50.5,-48.5 parent: 2 - - uid: 754 + - uid: 751 components: - type: MetaData name: science canteen @@ -15957,14 +16003,14 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-46.5 parent: 2 - - uid: 755 + - uid: 752 components: - type: MetaData name: anomaly lab - type: Transform pos: 62.5,-41.5 parent: 2 - - uid: 756 + - uid: 753 components: - type: MetaData name: r&d @@ -15972,100 +16018,100 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-37.5 parent: 2 - - uid: 757 + - uid: 754 components: - type: Transform pos: 69.5,-33.5 parent: 2 - - uid: 758 + - uid: 755 components: - type: Transform pos: 69.5,-34.5 parent: 2 - - uid: 759 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-42.5 parent: 2 - - uid: 760 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-42.5 parent: 2 - - uid: 761 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 - - uid: 762 + - uid: 759 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-39.5 parent: 2 - - uid: 763 + - uid: 760 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-37.5 parent: 2 - - uid: 764 + - uid: 761 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-30.5 parent: 2 - - uid: 765 + - uid: 762 components: - type: Transform pos: 68.5,-32.5 parent: 2 - - uid: 766 + - uid: 763 components: - type: Transform pos: 51.5,-59.5 parent: 2 - proto: AirlockScienceLocked entities: - - uid: 767 + - uid: 764 components: - type: MetaData name: r&d - type: Transform pos: 45.5,-40.5 parent: 2 - - uid: 768 + - uid: 765 components: - type: MetaData name: robotics - type: Transform pos: 66.5,-48.5 parent: 2 - - uid: 769 + - uid: 766 components: - type: MetaData name: anomaly lab - type: Transform pos: 62.5,-37.5 parent: 2 - - uid: 770 + - uid: 767 components: - type: MetaData name: anomaly lab - type: Transform pos: 66.5,-33.5 parent: 2 - - uid: 771 + - uid: 768 components: - type: MetaData name: anomaly lab - type: Transform pos: 66.5,-34.5 parent: 2 - - uid: 772 + - uid: 769 components: - type: MetaData name: anomaly lab @@ -16075,42 +16121,42 @@ entities: parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 773 + - uid: 770 components: - type: Transform pos: 43.5,15.5 parent: 2 - - uid: 774 + - uid: 771 components: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 775 + - uid: 772 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 2 - - uid: 776 + - uid: 773 components: - type: MetaData name: prison substation - type: Transform pos: 61.5,4.5 parent: 2 - - uid: 777 + - uid: 774 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 - - uid: 778 + - uid: 775 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-46.5 parent: 2 - - uid: 779 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad @@ -16118,7 +16164,7 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 780 + - uid: 777 components: - type: MetaData name: sec dorm @@ -16126,18 +16172,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,17.5 parent: 2 - - uid: 781 + - uid: 778 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-44.5 parent: 2 - - uid: 782 + - uid: 779 components: - type: Transform pos: -17.5,-20.5 parent: 2 - - uid: 783 + - uid: 780 components: - type: MetaData name: sec dorm @@ -16145,7 +16191,7 @@ entities: rot: 3.141592653589793 rad pos: 3.5,16.5 parent: 2 - - uid: 784 + - uid: 781 components: - type: MetaData name: courtroom @@ -16153,13 +16199,13 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-44.5 parent: 2 - - uid: 785 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 - - uid: 786 + - uid: 783 components: - type: Transform rot: -1.5707963267948966 rad @@ -16167,14 +16213,14 @@ entities: parent: 2 - proto: AirlockServiceLocked entities: - - uid: 787 + - uid: 784 components: - type: MetaData name: reporters office - type: Transform pos: -24.5,9.5 parent: 2 - - uid: 788 + - uid: 785 components: - type: MetaData name: donk cafe @@ -16182,34 +16228,34 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,41.5 parent: 2 - - uid: 789 + - uid: 786 components: - type: MetaData name: changs - type: Transform pos: -23.5,41.5 parent: 2 - - uid: 790 + - uid: 787 components: - type: MetaData name: changs - type: Transform pos: -19.5,45.5 parent: 2 - - uid: 791 + - uid: 788 components: - type: Transform pos: -23.5,47.5 parent: 2 - proto: AirlockShuttle entities: - - uid: 792 + - uid: 789 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,43.5 parent: 2 - - uid: 793 + - uid: 790 components: - type: Transform rot: -1.5707963267948966 rad @@ -16217,7 +16263,7 @@ entities: parent: 2 - proto: AirlockSyndicateGlass entities: - - uid: 794 + - uid: 791 components: - type: Transform rot: 1.5707963267948966 rad @@ -16225,21 +16271,21 @@ entities: parent: 2 - proto: AirlockTheatreLocked entities: - - uid: 795 + - uid: 792 components: - type: MetaData name: theatre - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 796 + - uid: 793 components: - type: MetaData name: recording studio - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 797 + - uid: 794 components: - type: MetaData name: recording studio @@ -16247,7 +16293,7 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - - uid: 798 + - uid: 795 components: - type: MetaData name: mime room @@ -16256,8 +16302,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24283 - - uid: 799 + - 24388 + - uid: 796 components: - type: MetaData name: clown room @@ -16266,10 +16312,10 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24280 + - 24385 - proto: AirlockVirologyGlass entities: - - uid: 800 + - uid: 797 components: - type: MetaData name: virology testing @@ -16277,28 +16323,28 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-83.5 parent: 2 - - uid: 801 + - uid: 798 components: - type: Transform pos: -17.5,-77.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 802 + - uid: 799 components: - type: MetaData name: zombie containment - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 803 + - uid: 800 components: - type: MetaData name: zombie containment - type: Transform pos: -18.5,-74.5 parent: 2 - - uid: 804 + - uid: 801 components: - type: MetaData name: virology testing @@ -16306,13 +16352,13 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-81.5 parent: 2 - - uid: 805 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-72.5 parent: 2 - - uid: 806 + - uid: 803 components: - type: MetaData name: virology testing @@ -16320,19 +16366,19 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-81.5 parent: 2 - - uid: 807 + - uid: 804 components: - type: MetaData name: virology treatment - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 808 + - uid: 805 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 809 + - uid: 806 components: - type: Transform rot: 1.5707963267948966 rad @@ -16340,780 +16386,773 @@ entities: parent: 2 - proto: AirlockVirologyLocked entities: + - uid: 807 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 808 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 - uid: 810 components: - - type: MetaData - name: morgue - type: Transform - pos: -14.5,-68.5 + pos: -12.5,-49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - 14965 - uid: 811 components: - type: Transform - pos: -19.5,-65.5 + pos: -5.5,-47.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 - uid: 812 components: - - type: MetaData - name: virology - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-62.5 + pos: 2.5,-42.5 parent: 2 -- proto: AirSensor - entities: - uid: 813 components: - type: Transform - pos: -20.5,-64.5 + pos: 0.5,11.5 parent: 2 - uid: 814 components: - type: Transform - pos: 22.5,-27.5 + pos: 25.5,-42.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 97 - uid: 815 components: - type: Transform - pos: 46.5,6.5 + pos: 28.5,-28.5 parent: 2 - uid: 816 components: - type: Transform - pos: -12.5,-49.5 + pos: 36.5,-27.5 parent: 2 - uid: 817 components: - type: Transform - pos: -5.5,-47.5 + pos: -20.5,-67.5 parent: 2 - uid: 818 components: - type: Transform - pos: 2.5,-42.5 + pos: -18.5,-71.5 parent: 2 - uid: 819 components: - type: Transform - pos: 0.5,11.5 + pos: -25.5,-80.5 parent: 2 - uid: 820 components: - type: Transform - pos: -3.5,-53.5 + pos: -19.5,-79.5 parent: 2 - uid: 821 components: - type: Transform - pos: 0.5,-60.5 + pos: -20.5,-86.5 parent: 2 - uid: 822 components: - type: Transform - pos: 25.5,-42.5 + pos: 6.5,-49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 + - 103 + - 14964 - uid: 823 components: - type: Transform - pos: -11.5,-57.5 + pos: -10.5,-38.5 parent: 2 - uid: 824 components: - type: Transform - pos: 28.5,-28.5 + pos: -9.5,-33.5 parent: 2 - uid: 825 components: - type: Transform - pos: 36.5,-27.5 + pos: -9.5,-23.5 parent: 2 - uid: 826 components: - type: Transform - pos: -20.5,-67.5 + pos: 14.5,-27.5 parent: 2 - uid: 827 components: - type: Transform - pos: -18.5,-71.5 + pos: 6.5,-27.5 parent: 2 - uid: 828 components: - type: Transform - pos: -25.5,-80.5 + pos: -5.5,-28.5 parent: 2 - uid: 829 components: - type: Transform - pos: -19.5,-79.5 + pos: -3.5,-7.5 parent: 2 - uid: 830 components: - type: Transform - pos: -20.5,-86.5 + pos: -5.5,2.5 parent: 2 - uid: 831 components: - type: Transform - pos: -6.5,-64.5 + pos: 6.5,-0.5 parent: 2 - uid: 832 components: - type: Transform - pos: -3.5,-63.5 + pos: 11.5,11.5 parent: 2 - uid: 833 components: - type: Transform - pos: 4.5,-65.5 + pos: 4.5,13.5 parent: 2 - uid: 834 components: - type: Transform - pos: 8.5,-60.5 + pos: 6.5,7.5 parent: 2 - uid: 835 components: - type: Transform - pos: 6.5,-49.5 + pos: -2.5,10.5 parent: 2 - uid: 836 components: - type: Transform - pos: -10.5,-38.5 + pos: -10.5,6.5 parent: 2 - uid: 837 components: - type: Transform - pos: -9.5,-33.5 + pos: 7.5,19.5 parent: 2 - uid: 838 components: - type: Transform - pos: -9.5,-23.5 + pos: 18.5,20.5 parent: 2 - uid: 839 components: - type: Transform - pos: 14.5,-27.5 + pos: 11.5,22.5 parent: 2 - uid: 840 components: - type: Transform - pos: 6.5,-27.5 + pos: 20.5,20.5 parent: 2 - uid: 841 components: - type: Transform - pos: -5.5,-28.5 + pos: 51.5,1.5 parent: 2 - uid: 842 components: - type: Transform - pos: -3.5,-7.5 + pos: 35.5,15.5 parent: 2 - uid: 843 components: - type: Transform - pos: -5.5,2.5 + rot: -1.5707963267948966 rad + pos: 62.5,-8.5 parent: 2 - uid: 844 components: - type: Transform - pos: 6.5,-0.5 + pos: 26.5,-59.5 parent: 2 - uid: 845 components: - type: Transform - pos: 11.5,11.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - uid: 846 components: - type: Transform - pos: 4.5,13.5 + rot: 1.5707963267948966 rad + pos: 39.5,-73.5 parent: 2 - uid: 847 components: - type: Transform - pos: 6.5,7.5 + rot: 1.5707963267948966 rad + pos: 39.5,-59.5 parent: 2 - uid: 848 components: - type: Transform - pos: -2.5,10.5 + rot: 1.5707963267948966 rad + pos: 49.5,-54.5 parent: 2 - uid: 849 components: - type: Transform - pos: -10.5,6.5 + rot: 1.5707963267948966 rad + pos: 50.5,-39.5 parent: 2 - uid: 850 components: - type: Transform - pos: 7.5,19.5 + pos: -21.5,56.5 parent: 2 - uid: 851 components: - type: Transform - pos: 18.5,20.5 + pos: -13.5,63.5 parent: 2 - uid: 852 components: - type: Transform - pos: 11.5,22.5 + pos: -2.5,59.5 parent: 2 - uid: 853 components: - type: Transform - pos: 20.5,20.5 + pos: -47.5,15.5 parent: 2 - uid: 854 components: - type: Transform - pos: 51.5,1.5 + pos: -17.5,-4.5 parent: 2 - uid: 855 components: - type: Transform - pos: 35.5,15.5 + pos: 23.5,-5.5 parent: 2 - uid: 856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-8.5 + pos: 16.5,3.5 parent: 2 - uid: 857 - components: - - type: Transform - pos: 26.5,-59.5 - parent: 2 - - uid: 858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - - uid: 859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-73.5 - parent: 2 - - uid: 860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-59.5 - parent: 2 - - uid: 861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-54.5 - parent: 2 - - uid: 862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 - parent: 2 - - uid: 863 - components: - - type: Transform - pos: -21.5,56.5 - parent: 2 - - uid: 864 - components: - - type: Transform - pos: -13.5,63.5 - parent: 2 - - uid: 865 - components: - - type: Transform - pos: -2.5,59.5 - parent: 2 - - uid: 866 - components: - - type: Transform - pos: -47.5,15.5 - parent: 2 - - uid: 867 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 2 - - uid: 868 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 2 - - uid: 869 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - - uid: 870 components: - type: Transform pos: 24.5,6.5 parent: 2 - - uid: 871 + - uid: 858 components: - type: Transform pos: 32.5,-0.5 parent: 2 - - uid: 872 + - uid: 859 components: - type: Transform pos: 25.5,17.5 parent: 2 - - uid: 873 + - uid: 860 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 874 + - uid: 861 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 - - uid: 875 + - uid: 862 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-17.5 parent: 2 - - uid: 876 + - uid: 863 components: - type: Transform pos: -32.5,-14.5 parent: 2 - - uid: 877 + - uid: 864 components: - type: Transform pos: 18.5,-53.5 parent: 2 - - uid: 878 + - uid: 865 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 - - uid: 879 + - uid: 866 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 - - uid: 880 + - uid: 867 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-35.5 parent: 2 - - uid: 881 + - uid: 868 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-32.5 parent: 2 - - uid: 882 + - uid: 869 components: - type: Transform pos: -20.5,-28.5 parent: 2 - - uid: 883 + - uid: 870 components: - type: Transform pos: 21.5,-25.5 parent: 2 - - uid: 884 + - uid: 871 components: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 885 + - uid: 872 components: - type: Transform pos: 21.5,-14.5 parent: 2 - - uid: 886 + - uid: 873 components: - type: Transform pos: 41.5,-24.5 parent: 2 - - uid: 887 + - uid: 874 components: - type: Transform pos: -36.5,0.5 parent: 2 - - uid: 888 + - uid: 875 components: - type: Transform pos: -45.5,7.5 parent: 2 - - uid: 889 + - uid: 876 components: - type: Transform pos: -48.5,11.5 parent: 2 - - uid: 890 + - uid: 877 components: - type: Transform pos: -43.5,24.5 parent: 2 - - uid: 891 + - uid: 878 components: - type: Transform pos: -43.5,30.5 parent: 2 - - uid: 892 + - uid: 879 components: - type: Transform pos: -31.5,23.5 parent: 2 - - uid: 893 + - uid: 880 components: - type: Transform pos: -24.5,20.5 parent: 2 - - uid: 894 + - uid: 881 components: - type: Transform pos: -19.5,21.5 parent: 2 - - uid: 895 + - uid: 882 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 - - uid: 896 + - uid: 883 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 - - uid: 897 + - uid: 884 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-10.5 parent: 2 - - uid: 898 + - uid: 885 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-6.5 parent: 2 - - uid: 899 + - uid: 886 components: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 900 + - uid: 887 components: - type: Transform pos: 44.5,-37.5 parent: 2 - - uid: 901 + - uid: 888 components: - type: Transform pos: 42.5,-43.5 parent: 2 - - uid: 902 + - uid: 889 components: - type: Transform pos: 59.5,-47.5 parent: 2 - - uid: 903 + - uid: 890 components: - type: Transform pos: 63.5,-51.5 parent: 2 - - uid: 904 + - uid: 891 components: - type: Transform pos: 59.5,-35.5 parent: 2 - - uid: 905 + - uid: 892 components: - type: Transform pos: 70.5,-47.5 parent: 2 - - uid: 906 + - uid: 893 components: - type: Transform pos: -55.5,-75.5 parent: 2 - - uid: 907 + - uid: 894 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 908 + - uid: 895 components: - type: Transform pos: -31.5,-71.5 parent: 2 - - uid: 909 - components: - - type: Transform - pos: -23.5,-61.5 - parent: 2 - - uid: 910 + - uid: 896 components: - type: Transform pos: 42.5,-42.5 parent: 2 - - uid: 911 + - uid: 897 components: - type: Transform pos: 30.5,-83.5 parent: 2 - - uid: 912 + - uid: 898 components: - type: Transform pos: -17.5,66.5 parent: 2 - - uid: 913 + - uid: 899 components: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 914 + - uid: 900 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,45.5 parent: 2 - - uid: 915 + - uid: 901 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,45.5 parent: 2 - - uid: 916 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,47.5 parent: 2 - - uid: 917 + - uid: 903 components: - type: Transform pos: -33.5,-96.5 parent: 2 - - uid: 918 + - uid: 904 components: - type: Transform pos: 48.5,-83.5 parent: 2 - - uid: 919 + - uid: 905 components: - type: Transform pos: 49.5,-72.5 parent: 2 - - uid: 920 + - uid: 906 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-34.5 parent: 2 - - uid: 921 + - uid: 907 components: - type: Transform pos: 62.5,-36.5 parent: 2 - - uid: 922 + - uid: 908 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 2 - - uid: 923 + - uid: 909 components: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 924 + - uid: 910 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 2 - - uid: 925 + - uid: 911 components: - type: Transform pos: -11.5,-19.5 parent: 2 - - uid: 926 + - uid: 912 components: - type: Transform pos: -9.5,-14.5 parent: 2 - - uid: 927 + - uid: 913 components: - type: Transform pos: -29.5,-74.5 parent: 2 - - uid: 928 + - uid: 914 components: - type: Transform pos: 25.5,-72.5 parent: 2 - - uid: 929 + - uid: 915 components: - type: Transform pos: 15.5,-86.5 parent: 2 - - uid: 930 + - uid: 916 components: - type: Transform pos: 27.5,2.5 parent: 2 - - uid: 931 + - uid: 917 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,32.5 parent: 2 - - uid: 932 + - uid: 918 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,42.5 parent: 2 - - uid: 933 + - uid: 919 components: - type: Transform pos: -5.5,15.5 parent: 2 - - uid: 934 + - uid: 920 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-38.5 parent: 2 - - uid: 935 + - uid: 921 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-41.5 parent: 2 - - uid: 936 + - uid: 922 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-34.5 parent: 2 - - uid: 937 + - uid: 923 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 938 + - uid: 924 components: - type: Transform pos: 1.5,-7.5 parent: 2 - - uid: 939 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 - - uid: 940 + - uid: 926 components: - type: Transform pos: 25.5,-37.5 parent: 2 + - uid: 927 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 191 - - uid: 31675 + - 65 + - uid: 928 components: - type: Transform - pos: 22.5,-35.5 + pos: -12.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - 14960 + - uid: 929 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - uid: 930 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 3.5,-55.5 parent: 2 - type: DeviceNetwork deviceLists: - - 31676 - - 10284 + - 101 + - 14963 + - uid: 932 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 - proto: AltarConvertRed entities: - - uid: 941 + - uid: 933 components: - type: Transform pos: -37.5,14.5 parent: 2 - - uid: 942 + - uid: 934 components: - type: Transform pos: -38.5,14.5 parent: 2 - proto: AltarSpawner entities: - - uid: 943 + - uid: 935 components: - type: Transform pos: 45.5,47.5 parent: 2 - proto: AltarToolbox entities: - - uid: 944 + - uid: 936 components: - type: Transform pos: 61.5,-69.5 parent: 2 - proto: AmeController entities: - - uid: 945 + - uid: 937 components: - type: Transform pos: -46.5,-16.5 parent: 2 - proto: AmeJar entities: - - uid: 946 + - uid: 938 components: - type: Transform pos: -49.455143,64.63223 parent: 2 - proto: AnomalyScanner entities: - - uid: 947 + - uid: 939 components: - type: Transform pos: 63.468235,-36.25785 parent: 2 - - uid: 948 + - uid: 940 components: - type: Transform pos: 63.686985,-36.460976 parent: 2 - proto: AnomalyVesselCircuitboard entities: - - uid: 949 + - uid: 941 components: - type: Transform pos: 64.46823,-36.460976 parent: 2 - proto: APCBasic entities: - - uid: 951 + - uid: 942 + components: + - type: MetaData + name: Head Bar APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 2 + - uid: 943 components: - type: MetaData name: Bar APC - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 952 + - uid: 944 components: - type: MetaData name: Boxing APC @@ -17121,14 +17160,14 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 - - uid: 953 + - uid: 945 components: - type: MetaData name: Janitorial APC - type: Transform pos: -10.5,-20.5 parent: 2 - - uid: 954 + - uid: 946 components: - type: MetaData name: Armory APC @@ -17136,7 +17175,7 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 - - uid: 955 + - uid: 947 components: - type: MetaData name: Electrical Storage APC @@ -17144,84 +17183,88 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 - - uid: 956 + - uid: 948 components: - type: MetaData name: Lawyer Offic APC - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 957 + - uid: 949 components: - type: MetaData name: Evac APC - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 958 + - uid: 950 components: - type: MetaData name: Toxins APC - type: Transform pos: 48.5,-48.5 parent: 2 - - uid: 959 + - uid: 951 components: - type: MetaData name: Gravity APC - type: Transform pos: -20.5,0.5 parent: 2 - - uid: 960 + - uid: 952 components: - type: MetaData name: Arrivals APC - type: Transform pos: 37.5,-57.5 parent: 2 - - uid: 961 + - uid: 953 components: - type: MetaData name: Syndicate Shuttle APC - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 962 + - uid: 954 components: - type: MetaData name: Maints Bar APC - type: Transform pos: -39.5,-69.5 parent: 2 - - uid: 963 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 955 components: - type: MetaData name: Sec Maints APC - type: Transform pos: 52.5,38.5 parent: 2 - - uid: 964 + - uid: 956 components: - type: MetaData name: AI APC - type: Transform pos: -8.5,60.5 parent: 2 - - uid: 965 + - uid: 957 components: - type: MetaData name: Maints Chapel APC - type: Transform pos: 55.5,-62.5 parent: 2 - - uid: 966 + - uid: 958 components: - type: MetaData name: Telecoms APC - type: Transform pos: 11.5,-18.5 parent: 2 - - uid: 967 + - uid: 959 components: - type: MetaData name: Brig APC @@ -17229,175 +17272,198 @@ entities: rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 - - uid: 968 + - uid: 960 components: - type: MetaData name: Junk Shuttle APC - type: Transform pos: -74.5,-50.5 parent: 2 - - uid: 969 + - uid: 961 components: - type: MetaData name: Salvage APC - type: Transform pos: -44.5,36.5 parent: 2 - - uid: 10290 + - uid: 962 components: + - type: MetaData + name: Surgey APC - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-34.5 + pos: -10.5,-57.5 parent: 2 - - uid: 22137 + - uid: 963 components: + - type: MetaData + name: Virology APC + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 964 + components: + - type: MetaData + name: Medbay Corridor APC + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 965 + components: + - type: MetaData + name: Medbay Storage APC + - type: Transform + pos: -23.5,-56.5 + parent: 2 + - uid: 966 + components: + - type: MetaData + name: Chemistry APC - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-38.5 + pos: 7.5,-52.5 parent: 2 -- proto: APCHighCapacity - entities: - - uid: 970 + - uid: 967 components: - type: MetaData - name: North Maints APC + name: Psychology Office APC - type: Transform - pos: 0.5,35.5 + rot: 1.5707963267948966 rad + pos: -13.5,-39.5 parent: 2 - - uid: 971 + - uid: 968 components: - type: MetaData - name: Warden Office APC + name: West Medbay Maintenance APC - type: Transform - pos: 24.5,24.5 + pos: -27.5,-65.5 parent: 2 - - uid: 972 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full +- proto: APCHighCapacity + entities: + - uid: 969 components: - type: MetaData - name: Virology APC + name: Cryo APC - type: Transform - pos: -21.5,-68.5 + rot: -1.5707963267948966 rad + pos: 7.5,-58.5 parent: 2 - - uid: 973 + - uid: 970 components: - type: MetaData - name: Psychologist Office APC + name: North Maints APC - type: Transform - pos: 0.5,-40.5 + pos: 0.5,35.5 parent: 2 - - uid: 974 + - uid: 971 components: - type: MetaData - name: Disposal APC + name: Warden Office APC - type: Transform - pos: 19.5,-51.5 + pos: 24.5,24.5 parent: 2 - - uid: 975 + - uid: 972 components: - type: MetaData - name: Lower Medbay APC + name: Disposal APC - type: Transform - pos: -10.5,-58.5 + pos: 19.5,-51.5 parent: 2 - - uid: 976 + - uid: 973 components: - type: MetaData name: Library APC - type: Transform pos: 8.5,-3.5 parent: 2 - - uid: 977 + - uid: 974 components: - type: MetaData name: Kitchen APC - type: Transform pos: 1.5,10.5 parent: 2 - - uid: 978 + - uid: 975 components: - type: MetaData name: Detective APC - type: Transform pos: 21.5,-9.5 parent: 2 - - uid: 979 + - uid: 976 components: - type: MetaData name: Prison APC - type: Transform pos: 58.5,11.5 parent: 2 - - uid: 980 + - uid: 977 components: - type: MetaData name: Science APC - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 981 + - uid: 978 components: - type: MetaData name: West Engineering APC - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 982 + - uid: 979 components: - type: MetaData name: Atmos APC - type: Transform pos: -35.5,-31.5 parent: 2 - - uid: 983 - components: - - type: MetaData - name: West Medbay Maints APC - - type: Transform - pos: -29.5,-64.5 - parent: 2 - - uid: 984 + - uid: 980 components: - type: MetaData name: Command APC - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 985 + - uid: 981 components: - type: MetaData name: Cargo APC - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 986 + - uid: 982 components: - type: MetaData name: Chapel APC - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 987 + - uid: 983 components: - type: MetaData name: East Engineering APC - type: Transform pos: -29.5,-8.5 parent: 2 - - uid: 988 + - uid: 984 components: - type: MetaData name: Robotics APC - type: Transform pos: 71.5,-42.5 parent: 2 - - uid: 989 + - uid: 985 components: - type: MetaData name: TEG APC - type: Transform pos: -66.5,-35.5 parent: 2 - - uid: 990 + - uid: 986 components: - type: MetaData name: HOP Office APC @@ -17405,3719 +17471,3735 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 + - uid: 987 + components: + - type: MetaData + name: Medbay APC + - type: Transform + pos: -2.5,-51.5 + parent: 2 - proto: APCSuperCapacity entities: - - uid: 991 + - uid: 988 components: - type: MetaData - name: South Medbay Maints APC + name: South Maintenance APC - type: Transform - pos: -3.5,-68.5 + pos: -1.5,-68.5 parent: 2 - - uid: 992 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 989 components: - type: MetaData - name: Upper Medbay APC + name: Maintenance APC - type: Transform - pos: -2.5,-51.5 + pos: 10.5,-66.5 parent: 2 - proto: AppraisalTool entities: - - uid: 993 + - uid: 990 components: - type: Transform pos: -38.189224,18.730852 parent: 2 - - uid: 994 + - uid: 991 components: - type: Transform pos: -38.01735,18.465227 parent: 2 - proto: AsteroidRock entities: - - uid: 995 + - uid: 992 components: - type: Transform pos: 67.5,51.5 parent: 2 - - uid: 996 + - uid: 993 components: - type: Transform pos: 70.5,47.5 parent: 2 - - uid: 997 + - uid: 994 components: - type: Transform pos: 12.5,58.5 parent: 2 - - uid: 998 + - uid: 995 components: - type: Transform pos: 72.5,-73.5 parent: 2 - - uid: 999 + - uid: 996 components: - type: Transform pos: 73.5,-71.5 parent: 2 - - uid: 1000 + - uid: 997 components: - type: Transform pos: 70.5,48.5 parent: 2 - - uid: 1001 + - uid: 998 components: - type: Transform pos: 9.5,58.5 parent: 2 - - uid: 1002 + - uid: 999 components: - type: Transform pos: 66.5,51.5 parent: 2 - - uid: 1003 + - uid: 1000 components: - type: Transform pos: 69.5,51.5 parent: 2 - - uid: 1004 + - uid: 1001 components: - type: Transform pos: 68.5,51.5 parent: 2 - - uid: 1005 + - uid: 1002 components: - type: Transform pos: 72.5,-72.5 parent: 2 - - uid: 1006 + - uid: 1003 components: - type: Transform pos: 75.5,-69.5 parent: 2 - - uid: 1007 + - uid: 1004 components: - type: Transform pos: 76.5,-70.5 parent: 2 - - uid: 1008 + - uid: 1005 components: - type: Transform pos: 77.5,-70.5 parent: 2 - - uid: 1009 + - uid: 1006 components: - type: Transform pos: 74.5,-70.5 parent: 2 - - uid: 1010 + - uid: 1007 components: - type: Transform pos: 14.5,52.5 parent: 2 - - uid: 1011 + - uid: 1008 components: - type: Transform pos: 11.5,58.5 parent: 2 - - uid: 1012 + - uid: 1009 components: - type: Transform pos: -55.5,70.5 parent: 2 - - uid: 1013 + - uid: 1010 components: - type: Transform pos: -41.5,65.5 parent: 2 - - uid: 1014 + - uid: 1011 components: - type: Transform pos: -36.5,68.5 parent: 2 - - uid: 1015 + - uid: 1012 components: - type: Transform pos: -39.5,69.5 parent: 2 - - uid: 1016 + - uid: 1013 components: - type: Transform pos: -54.5,71.5 parent: 2 - - uid: 1017 + - uid: 1014 components: - type: Transform pos: -46.5,59.5 parent: 2 - - uid: 1018 + - uid: 1015 components: - type: Transform pos: -49.5,67.5 parent: 2 - - uid: 1019 + - uid: 1016 components: - type: Transform pos: -46.5,66.5 parent: 2 - - uid: 1020 + - uid: 1017 components: - type: Transform pos: -48.5,61.5 parent: 2 - - uid: 1021 + - uid: 1018 components: - type: Transform pos: -58.5,65.5 parent: 2 - - uid: 1022 + - uid: 1019 components: - type: Transform pos: -49.5,66.5 parent: 2 - - uid: 1023 + - uid: 1020 components: - type: Transform pos: -47.5,66.5 parent: 2 - - uid: 1024 + - uid: 1021 components: - type: Transform pos: -48.5,55.5 parent: 2 - - uid: 1025 + - uid: 1022 components: - type: Transform pos: -58.5,64.5 parent: 2 - - uid: 1026 + - uid: 1023 components: - type: Transform pos: -48.5,67.5 parent: 2 - - uid: 1027 + - uid: 1024 components: - type: Transform pos: -48.5,66.5 parent: 2 - - uid: 1028 + - uid: 1025 components: - type: Transform pos: -51.5,56.5 parent: 2 - - uid: 1029 + - uid: 1026 components: - type: Transform pos: -58.5,66.5 parent: 2 - - uid: 1030 + - uid: 1027 components: - type: Transform pos: -58.5,67.5 parent: 2 - - uid: 1031 + - uid: 1028 components: - type: Transform pos: -56.5,70.5 parent: 2 - - uid: 1032 + - uid: 1029 components: - type: Transform pos: -43.5,60.5 parent: 2 - - uid: 1033 + - uid: 1030 components: - type: Transform pos: -43.5,57.5 parent: 2 - - uid: 1034 + - uid: 1031 components: - type: Transform pos: -43.5,58.5 parent: 2 - - uid: 1035 + - uid: 1032 components: - type: Transform pos: -46.5,63.5 parent: 2 - - uid: 1036 + - uid: 1033 components: - type: Transform pos: -47.5,64.5 parent: 2 - - uid: 1037 + - uid: 1034 components: - type: Transform pos: -45.5,64.5 parent: 2 - - uid: 1038 + - uid: 1035 components: - type: Transform pos: -41.5,67.5 parent: 2 - - uid: 1039 + - uid: 1036 components: - type: Transform pos: -43.5,55.5 parent: 2 - - uid: 1040 + - uid: 1037 components: - type: Transform pos: -43.5,54.5 parent: 2 - - uid: 1041 + - uid: 1038 components: - type: Transform pos: -41.5,55.5 parent: 2 - - uid: 1042 + - uid: 1039 components: - type: Transform pos: -42.5,66.5 parent: 2 - - uid: 1043 + - uid: 1040 components: - type: Transform pos: -47.5,63.5 parent: 2 - - uid: 1044 + - uid: 1041 components: - type: Transform pos: -43.5,67.5 parent: 2 - - uid: 1045 + - uid: 1042 components: - type: Transform pos: -43.5,65.5 parent: 2 - - uid: 1046 + - uid: 1043 components: - type: Transform pos: -51.5,65.5 parent: 2 - - uid: 1047 + - uid: 1044 components: - type: Transform pos: -42.5,55.5 parent: 2 - - uid: 1048 + - uid: 1045 components: - type: Transform pos: -42.5,65.5 parent: 2 - - uid: 1049 + - uid: 1046 components: - type: Transform pos: -45.5,63.5 parent: 2 - - uid: 1050 + - uid: 1047 components: - type: Transform pos: -39.5,65.5 parent: 2 - - uid: 1051 + - uid: 1048 components: - type: Transform pos: -43.5,66.5 parent: 2 - - uid: 1052 + - uid: 1049 components: - type: Transform pos: -40.5,54.5 parent: 2 - - uid: 1053 + - uid: 1050 components: - type: Transform pos: -53.5,65.5 parent: 2 - - uid: 1054 + - uid: 1051 components: - type: Transform pos: -37.5,66.5 parent: 2 - - uid: 1055 + - uid: 1052 components: - type: Transform pos: -37.5,65.5 parent: 2 - - uid: 1056 + - uid: 1053 components: - type: Transform pos: -38.5,65.5 parent: 2 - - uid: 1057 + - uid: 1054 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 1058 + - uid: 1055 components: - type: Transform pos: -40.5,55.5 parent: 2 - - uid: 1059 + - uid: 1056 components: - type: Transform pos: -44.5,63.5 parent: 2 - - uid: 1060 + - uid: 1057 components: - type: Transform pos: -37.5,67.5 parent: 2 - - uid: 1061 + - uid: 1058 components: - type: Transform pos: -36.5,65.5 parent: 2 - - uid: 1062 + - uid: 1059 components: - type: Transform pos: -44.5,65.5 parent: 2 - - uid: 1063 + - uid: 1060 components: - type: Transform pos: -54.5,66.5 parent: 2 - - uid: 1064 + - uid: 1061 components: - type: Transform pos: -55.5,69.5 parent: 2 - - uid: 1065 + - uid: 1062 components: - type: Transform pos: -55.5,71.5 parent: 2 - - uid: 1066 + - uid: 1063 components: - type: Transform pos: -54.5,65.5 parent: 2 - - uid: 1067 + - uid: 1064 components: - type: Transform pos: -43.5,61.5 parent: 2 - - uid: 1068 + - uid: 1065 components: - type: Transform pos: -37.5,68.5 parent: 2 - - uid: 1069 + - uid: 1066 components: - type: Transform pos: -41.5,69.5 parent: 2 - - uid: 1070 + - uid: 1067 components: - type: Transform pos: -44.5,58.5 parent: 2 - - uid: 1071 + - uid: 1068 components: - type: Transform pos: -54.5,69.5 parent: 2 - - uid: 1072 + - uid: 1069 components: - type: Transform pos: -45.5,59.5 parent: 2 - - uid: 1073 + - uid: 1070 components: - type: Transform pos: -45.5,61.5 parent: 2 - - uid: 1074 + - uid: 1071 components: - type: Transform pos: -37.5,69.5 parent: 2 - - uid: 1075 + - uid: 1072 components: - type: Transform pos: -40.5,69.5 parent: 2 - - uid: 1076 + - uid: 1073 components: - type: Transform pos: -42.5,60.5 parent: 2 - - uid: 1077 + - uid: 1074 components: - type: Transform pos: -42.5,59.5 parent: 2 - - uid: 1078 + - uid: 1075 components: - type: Transform pos: -50.5,66.5 parent: 2 - - uid: 1079 + - uid: 1076 components: - type: Transform pos: -50.5,69.5 parent: 2 - - uid: 1080 + - uid: 1077 components: - type: Transform pos: -50.5,65.5 parent: 2 - - uid: 1081 + - uid: 1078 components: - type: Transform pos: -48.5,65.5 parent: 2 - - uid: 1082 + - uid: 1079 components: - type: Transform pos: -50.5,68.5 parent: 2 - - uid: 1083 + - uid: 1080 components: - type: Transform pos: -48.5,64.5 parent: 2 - - uid: 1084 + - uid: 1081 components: - type: Transform pos: -50.5,67.5 parent: 2 - - uid: 1085 + - uid: 1082 components: - type: Transform pos: -40.5,65.5 parent: 2 - - uid: 1086 + - uid: 1083 components: - type: Transform pos: -41.5,66.5 parent: 2 - - uid: 1087 + - uid: 1084 components: - type: Transform pos: -40.5,66.5 parent: 2 - - uid: 1088 + - uid: 1085 components: - type: Transform pos: -39.5,66.5 parent: 2 - - uid: 1089 + - uid: 1086 components: - type: Transform pos: -40.5,67.5 parent: 2 - - uid: 1090 + - uid: 1087 components: - type: Transform pos: -39.5,67.5 parent: 2 - - uid: 1091 + - uid: 1088 components: - type: Transform pos: -38.5,66.5 parent: 2 - - uid: 1092 + - uid: 1089 components: - type: Transform pos: -38.5,67.5 parent: 2 - - uid: 1093 + - uid: 1090 components: - type: Transform pos: -45.5,67.5 parent: 2 - - uid: 1094 + - uid: 1091 components: - type: Transform pos: -44.5,66.5 parent: 2 - - uid: 1095 + - uid: 1092 components: - type: Transform pos: -40.5,68.5 parent: 2 - - uid: 1096 + - uid: 1093 components: - type: Transform pos: -44.5,67.5 parent: 2 - - uid: 1097 + - uid: 1094 components: - type: Transform pos: -39.5,68.5 parent: 2 - - uid: 1098 + - uid: 1095 components: - type: Transform pos: -41.5,70.5 parent: 2 - - uid: 1099 + - uid: 1096 components: - type: Transform pos: -36.5,66.5 parent: 2 - - uid: 1100 + - uid: 1097 components: - type: Transform pos: -36.5,67.5 parent: 2 - - uid: 1101 + - uid: 1098 components: - type: Transform pos: -35.5,65.5 parent: 2 - - uid: 1102 + - uid: 1099 components: - type: Transform pos: -38.5,69.5 parent: 2 - - uid: 1103 + - uid: 1100 components: - type: Transform pos: -45.5,66.5 parent: 2 - - uid: 1104 + - uid: 1101 components: - type: Transform pos: -45.5,65.5 parent: 2 - - uid: 1105 + - uid: 1102 components: - type: Transform pos: -38.5,68.5 parent: 2 - - uid: 1106 + - uid: 1103 components: - type: Transform pos: -40.5,70.5 parent: 2 - - uid: 1107 + - uid: 1104 components: - type: Transform pos: -41.5,68.5 parent: 2 - - uid: 1108 + - uid: 1105 components: - type: Transform pos: -46.5,67.5 parent: 2 - - uid: 1109 + - uid: 1106 components: - type: Transform pos: -44.5,69.5 parent: 2 - - uid: 1110 + - uid: 1107 components: - type: Transform pos: -43.5,70.5 parent: 2 - - uid: 1111 + - uid: 1108 components: - type: Transform pos: -46.5,58.5 parent: 2 - - uid: 1112 + - uid: 1109 components: - type: Transform pos: -44.5,70.5 parent: 2 - - uid: 1113 + - uid: 1110 components: - type: Transform pos: -44.5,68.5 parent: 2 - - uid: 1114 + - uid: 1111 components: - type: Transform pos: -45.5,69.5 parent: 2 - - uid: 1115 + - uid: 1112 components: - type: Transform pos: -47.5,54.5 parent: 2 - - uid: 1116 + - uid: 1113 components: - type: Transform pos: -45.5,68.5 parent: 2 - - uid: 1117 + - uid: 1114 components: - type: Transform pos: -57.5,64.5 parent: 2 - - uid: 1118 + - uid: 1115 components: - type: Transform pos: -57.5,65.5 parent: 2 - - uid: 1119 + - uid: 1116 components: - type: Transform pos: -57.5,66.5 parent: 2 - - uid: 1120 + - uid: 1117 components: - type: Transform pos: -52.5,66.5 parent: 2 - - uid: 1121 + - uid: 1118 components: - type: Transform pos: -38.5,64.5 parent: 2 - - uid: 1122 + - uid: 1119 components: - type: Transform pos: -42.5,68.5 parent: 2 - - uid: 1123 + - uid: 1120 components: - type: Transform pos: -39.5,64.5 parent: 2 - - uid: 1124 + - uid: 1121 components: - type: Transform pos: -43.5,59.5 parent: 2 - - uid: 1125 + - uid: 1122 components: - type: Transform pos: -51.5,68.5 parent: 2 - - uid: 1126 + - uid: 1123 components: - type: Transform pos: -43.5,68.5 parent: 2 - - uid: 1127 + - uid: 1124 components: - type: Transform pos: -42.5,70.5 parent: 2 - - uid: 1128 + - uid: 1125 components: - type: Transform pos: -43.5,69.5 parent: 2 - - uid: 1129 + - uid: 1126 components: - type: Transform pos: -43.5,56.5 parent: 2 - - uid: 1130 + - uid: 1127 components: - type: Transform pos: -35.5,67.5 parent: 2 - - uid: 1131 + - uid: 1128 components: - type: Transform pos: -47.5,59.5 parent: 2 - - uid: 1132 + - uid: 1129 components: - type: Transform pos: -42.5,69.5 parent: 2 - - uid: 1133 + - uid: 1130 components: - type: Transform pos: -46.5,61.5 parent: 2 - - uid: 1134 + - uid: 1131 components: - type: Transform pos: -45.5,62.5 parent: 2 - - uid: 1135 + - uid: 1132 components: - type: Transform pos: -47.5,62.5 parent: 2 - - uid: 1136 + - uid: 1133 components: - type: Transform pos: -48.5,63.5 parent: 2 - - uid: 1137 + - uid: 1134 components: - type: Transform pos: -44.5,62.5 parent: 2 - - uid: 1138 + - uid: 1135 components: - type: Transform pos: -48.5,59.5 parent: 2 - - uid: 1139 + - uid: 1136 components: - type: Transform pos: -48.5,58.5 parent: 2 - - uid: 1140 + - uid: 1137 components: - type: Transform pos: -48.5,57.5 parent: 2 - - uid: 1141 + - uid: 1138 components: - type: Transform pos: -41.5,63.5 parent: 2 - - uid: 1142 + - uid: 1139 components: - type: Transform pos: -41.5,62.5 parent: 2 - - uid: 1143 + - uid: 1140 components: - type: Transform pos: -41.5,64.5 parent: 2 - - uid: 1144 + - uid: 1141 components: - type: Transform pos: -42.5,64.5 parent: 2 - - uid: 1145 + - uid: 1142 components: - type: Transform pos: -51.5,69.5 parent: 2 - - uid: 1146 + - uid: 1143 components: - type: Transform pos: -37.5,64.5 parent: 2 - - uid: 1147 + - uid: 1144 components: - type: Transform pos: -47.5,55.5 parent: 2 - - uid: 1148 + - uid: 1145 components: - type: Transform pos: -39.5,62.5 parent: 2 - - uid: 1149 + - uid: 1146 components: - type: Transform pos: -39.5,63.5 parent: 2 - - uid: 1150 + - uid: 1147 components: - type: Transform pos: -40.5,62.5 parent: 2 - - uid: 1151 + - uid: 1148 components: - type: Transform pos: -43.5,63.5 parent: 2 - - uid: 1152 + - uid: 1149 components: - type: Transform pos: -51.5,67.5 parent: 2 - - uid: 1153 + - uid: 1150 components: - type: Transform pos: -47.5,56.5 parent: 2 - - uid: 1154 + - uid: 1151 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 1155 + - uid: 1152 components: - type: Transform pos: -43.5,64.5 parent: 2 - - uid: 1156 + - uid: 1153 components: - type: Transform pos: -42.5,63.5 parent: 2 - - uid: 1157 + - uid: 1154 components: - type: Transform pos: -35.5,66.5 parent: 2 - - uid: 1158 + - uid: 1155 components: - type: Transform pos: -52.5,67.5 parent: 2 - - uid: 1159 + - uid: 1156 components: - type: Transform pos: -52.5,68.5 parent: 2 - - uid: 1160 + - uid: 1157 components: - type: Transform pos: -53.5,67.5 parent: 2 - - uid: 1161 + - uid: 1158 components: - type: Transform pos: -52.5,69.5 parent: 2 - - uid: 1162 + - uid: 1159 components: - type: Transform pos: -47.5,60.5 parent: 2 - - uid: 1163 + - uid: 1160 components: - type: Transform pos: -44.5,60.5 parent: 2 - - uid: 1164 + - uid: 1161 components: - type: Transform pos: -43.5,62.5 parent: 2 - - uid: 1165 + - uid: 1162 components: - type: Transform pos: -44.5,59.5 parent: 2 - - uid: 1166 + - uid: 1163 components: - type: Transform pos: -54.5,60.5 parent: 2 - - uid: 1167 + - uid: 1164 components: - type: Transform pos: -57.5,63.5 parent: 2 - - uid: 1168 + - uid: 1165 components: - type: Transform pos: -45.5,58.5 parent: 2 - - uid: 1169 + - uid: 1166 components: - type: Transform pos: -49.5,62.5 parent: 2 - - uid: 1170 + - uid: 1167 components: - type: Transform pos: -40.5,56.5 parent: 2 - - uid: 1171 + - uid: 1168 components: - type: Transform pos: -37.5,57.5 parent: 2 - - uid: 1172 + - uid: 1169 components: - type: Transform pos: -48.5,56.5 parent: 2 - - uid: 1173 + - uid: 1170 components: - type: Transform pos: -46.5,56.5 parent: 2 - - uid: 1174 + - uid: 1171 components: - type: Transform pos: -54.5,67.5 parent: 2 - - uid: 1175 + - uid: 1172 components: - type: Transform pos: -54.5,68.5 parent: 2 - - uid: 1176 + - uid: 1173 components: - type: Transform pos: -42.5,67.5 parent: 2 - - uid: 1177 + - uid: 1174 components: - type: Transform pos: -49.5,59.5 parent: 2 - - uid: 1178 + - uid: 1175 components: - type: Transform pos: -51.5,57.5 parent: 2 - - uid: 1179 + - uid: 1176 components: - type: Transform pos: -51.5,64.5 parent: 2 - - uid: 1180 + - uid: 1177 components: - type: Transform pos: -44.5,57.5 parent: 2 - - uid: 1181 + - uid: 1178 components: - type: Transform pos: -55.5,68.5 parent: 2 - - uid: 1182 + - uid: 1179 components: - type: Transform pos: -54.5,70.5 parent: 2 - - uid: 1183 + - uid: 1180 components: - type: Transform pos: -51.5,70.5 parent: 2 - - uid: 1184 + - uid: 1181 components: - type: Transform pos: -50.5,60.5 parent: 2 - - uid: 1185 + - uid: 1182 components: - type: Transform pos: -50.5,61.5 parent: 2 - - uid: 1186 + - uid: 1183 components: - type: Transform pos: -53.5,59.5 parent: 2 - - uid: 1187 + - uid: 1184 components: - type: Transform pos: -44.5,56.5 parent: 2 - - uid: 1188 + - uid: 1185 components: - type: Transform pos: -55.5,67.5 parent: 2 - - uid: 1189 + - uid: 1186 components: - type: Transform pos: -48.5,54.5 parent: 2 - - uid: 1190 + - uid: 1187 components: - type: Transform pos: -48.5,62.5 parent: 2 - - uid: 1191 + - uid: 1188 components: - type: Transform pos: -52.5,71.5 parent: 2 - - uid: 1192 + - uid: 1189 components: - type: Transform pos: -50.5,59.5 parent: 2 - - uid: 1193 + - uid: 1190 components: - type: Transform pos: -52.5,58.5 parent: 2 - - uid: 1194 + - uid: 1191 components: - type: Transform pos: -53.5,58.5 parent: 2 - - uid: 1195 + - uid: 1192 components: - type: Transform pos: -45.5,54.5 parent: 2 - - uid: 1196 + - uid: 1193 components: - type: Transform pos: -55.5,66.5 parent: 2 - - uid: 1197 + - uid: 1194 components: - type: Transform pos: -49.5,56.5 parent: 2 - - uid: 1198 + - uid: 1195 components: - type: Transform pos: -47.5,61.5 parent: 2 - - uid: 1199 + - uid: 1196 components: - type: Transform pos: -49.5,68.5 parent: 2 - - uid: 1200 + - uid: 1197 components: - type: Transform pos: -57.5,69.5 parent: 2 - - uid: 1201 + - uid: 1198 components: - type: Transform pos: -52.5,59.5 parent: 2 - - uid: 1202 + - uid: 1199 components: - type: Transform pos: -54.5,59.5 parent: 2 - - uid: 1203 + - uid: 1200 components: - type: Transform pos: -44.5,55.5 parent: 2 - - uid: 1204 + - uid: 1201 components: - type: Transform pos: -55.5,65.5 parent: 2 - - uid: 1205 + - uid: 1202 components: - type: Transform pos: -50.5,55.5 parent: 2 - - uid: 1206 + - uid: 1203 components: - type: Transform pos: -50.5,56.5 parent: 2 - - uid: 1207 + - uid: 1204 components: - type: Transform pos: -49.5,69.5 parent: 2 - - uid: 1208 + - uid: 1205 components: - type: Transform pos: -56.5,63.5 parent: 2 - - uid: 1209 + - uid: 1206 components: - type: Transform pos: -52.5,60.5 parent: 2 - - uid: 1210 + - uid: 1207 components: - type: Transform pos: -45.5,56.5 parent: 2 - - uid: 1211 + - uid: 1208 components: - type: Transform pos: -45.5,55.5 parent: 2 - - uid: 1212 + - uid: 1209 components: - type: Transform pos: -54.5,58.5 parent: 2 - - uid: 1213 + - uid: 1210 components: - type: Transform pos: -49.5,54.5 parent: 2 - - uid: 1214 + - uid: 1211 components: - type: Transform pos: -51.5,55.5 parent: 2 - - uid: 1215 + - uid: 1212 components: - type: Transform pos: -49.5,70.5 parent: 2 - - uid: 1216 + - uid: 1213 components: - type: Transform pos: -53.5,60.5 parent: 2 - - uid: 1217 + - uid: 1214 components: - type: Transform pos: -52.5,61.5 parent: 2 - - uid: 1218 + - uid: 1215 components: - type: Transform pos: -45.5,57.5 parent: 2 - - uid: 1219 + - uid: 1216 components: - type: Transform pos: -44.5,54.5 parent: 2 - - uid: 1220 + - uid: 1217 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 1221 + - uid: 1218 components: - type: Transform pos: -49.5,55.5 parent: 2 - - uid: 1222 + - uid: 1219 components: - type: Transform pos: -52.5,56.5 parent: 2 - - uid: 1223 + - uid: 1220 components: - type: Transform pos: -52.5,55.5 parent: 2 - - uid: 1224 + - uid: 1221 components: - type: Transform pos: -50.5,63.5 parent: 2 - - uid: 1225 + - uid: 1222 components: - type: Transform pos: -51.5,60.5 parent: 2 - - uid: 1226 + - uid: 1223 components: - type: Transform pos: -51.5,61.5 parent: 2 - - uid: 1227 + - uid: 1224 components: - type: Transform pos: -46.5,54.5 parent: 2 - - uid: 1228 + - uid: 1225 components: - type: Transform pos: -38.5,58.5 parent: 2 - - uid: 1229 + - uid: 1226 components: - type: Transform pos: -46.5,55.5 parent: 2 - - uid: 1230 + - uid: 1227 components: - type: Transform pos: -52.5,57.5 parent: 2 - - uid: 1231 + - uid: 1228 components: - type: Transform pos: -53.5,57.5 parent: 2 - - uid: 1232 + - uid: 1229 components: - type: Transform pos: -51.5,63.5 parent: 2 - - uid: 1233 + - uid: 1230 components: - type: Transform pos: -51.5,62.5 parent: 2 - - uid: 1234 + - uid: 1231 components: - type: Transform pos: -51.5,59.5 parent: 2 - - uid: 1235 + - uid: 1232 components: - type: Transform pos: -51.5,58.5 parent: 2 - - uid: 1236 + - uid: 1233 components: - type: Transform pos: -37.5,59.5 parent: 2 - - uid: 1237 + - uid: 1234 components: - type: Transform pos: -37.5,58.5 parent: 2 - - uid: 1238 + - uid: 1235 components: - type: Transform pos: -38.5,59.5 parent: 2 - - uid: 1239 + - uid: 1236 components: - type: Transform pos: -37.5,61.5 parent: 2 - - uid: 1240 + - uid: 1237 components: - type: Transform pos: -49.5,63.5 parent: 2 - - uid: 1241 + - uid: 1238 components: - type: Transform pos: -39.5,56.5 parent: 2 - - uid: 1242 + - uid: 1239 components: - type: Transform pos: -39.5,57.5 parent: 2 - - uid: 1243 + - uid: 1240 components: - type: Transform pos: -38.5,60.5 parent: 2 - - uid: 1244 + - uid: 1241 components: - type: Transform pos: -37.5,60.5 parent: 2 - - uid: 1245 + - uid: 1242 components: - type: Transform pos: -36.5,59.5 parent: 2 - - uid: 1246 + - uid: 1243 components: - type: Transform pos: -50.5,58.5 parent: 2 - - uid: 1247 + - uid: 1244 components: - type: Transform pos: -50.5,57.5 parent: 2 - - uid: 1248 + - uid: 1245 components: - type: Transform pos: -40.5,58.5 parent: 2 - - uid: 1249 + - uid: 1246 components: - type: Transform pos: -55.5,63.5 parent: 2 - - uid: 1250 + - uid: 1247 components: - type: Transform pos: -57.5,68.5 parent: 2 - - uid: 1251 + - uid: 1248 components: - type: Transform pos: -57.5,67.5 parent: 2 - - uid: 1252 + - uid: 1249 components: - type: Transform pos: -51.5,66.5 parent: 2 - - uid: 1253 + - uid: 1250 components: - type: Transform pos: -53.5,66.5 parent: 2 - - uid: 1254 + - uid: 1251 components: - type: Transform pos: -39.5,58.5 parent: 2 - - uid: 1255 + - uid: 1252 components: - type: Transform pos: -55.5,64.5 parent: 2 - - uid: 1256 + - uid: 1253 components: - type: Transform pos: -54.5,64.5 parent: 2 - - uid: 1257 + - uid: 1254 components: - type: Transform pos: -42.5,56.5 parent: 2 - - uid: 1258 + - uid: 1255 components: - type: Transform pos: -52.5,64.5 parent: 2 - - uid: 1259 + - uid: 1256 components: - type: Transform pos: -53.5,64.5 parent: 2 - - uid: 1260 + - uid: 1257 components: - type: Transform pos: -49.5,60.5 parent: 2 - - uid: 1261 + - uid: 1258 components: - type: Transform pos: -35.5,61.5 parent: 2 - - uid: 1262 + - uid: 1259 components: - type: Transform pos: -36.5,61.5 parent: 2 - - uid: 1263 + - uid: 1260 components: - type: Transform pos: -47.5,57.5 parent: 2 - - uid: 1264 + - uid: 1261 components: - type: Transform pos: -35.5,64.5 parent: 2 - - uid: 1265 + - uid: 1262 components: - type: Transform pos: -38.5,61.5 parent: 2 - - uid: 1266 + - uid: 1263 components: - type: Transform pos: -38.5,62.5 parent: 2 - - uid: 1267 + - uid: 1264 components: - type: Transform pos: -36.5,64.5 parent: 2 - - uid: 1268 + - uid: 1265 components: - type: Transform pos: -56.5,68.5 parent: 2 - - uid: 1269 + - uid: 1266 components: - type: Transform pos: -56.5,67.5 parent: 2 - - uid: 1270 + - uid: 1267 components: - type: Transform pos: -56.5,71.5 parent: 2 - - uid: 1271 + - uid: 1268 components: - type: Transform pos: -56.5,69.5 parent: 2 - - uid: 1272 + - uid: 1269 components: - type: Transform pos: -36.5,60.5 parent: 2 - - uid: 1273 + - uid: 1270 components: - type: Transform pos: -46.5,57.5 parent: 2 - - uid: 1274 + - uid: 1271 components: - type: Transform pos: -58.5,68.5 parent: 2 - - uid: 1275 + - uid: 1272 components: - type: Transform pos: -58.5,69.5 parent: 2 - - uid: 1276 + - uid: 1273 components: - type: Transform pos: -56.5,66.5 parent: 2 - - uid: 1277 + - uid: 1274 components: - type: Transform pos: -56.5,64.5 parent: 2 - - uid: 1278 + - uid: 1275 components: - type: Transform pos: -38.5,63.5 parent: 2 - - uid: 1279 + - uid: 1276 components: - type: Transform pos: -56.5,65.5 parent: 2 - - uid: 1280 + - uid: 1277 components: - type: Transform pos: -44.5,64.5 parent: 2 - - uid: 1281 + - uid: 1278 components: - type: Transform pos: -53.5,68.5 parent: 2 - - uid: 1282 + - uid: 1279 components: - type: Transform pos: -52.5,70.5 parent: 2 - - uid: 1283 + - uid: 1280 components: - type: Transform pos: -53.5,69.5 parent: 2 - - uid: 1284 + - uid: 1281 components: - type: Transform pos: -49.5,58.5 parent: 2 - - uid: 1285 + - uid: 1282 components: - type: Transform pos: -49.5,61.5 parent: 2 - - uid: 1286 + - uid: 1283 components: - type: Transform pos: -49.5,57.5 parent: 2 - - uid: 1287 + - uid: 1284 components: - type: Transform pos: -41.5,58.5 parent: 2 - - uid: 1288 + - uid: 1285 components: - type: Transform pos: -41.5,56.5 parent: 2 - - uid: 1289 + - uid: 1286 components: - type: Transform pos: -42.5,58.5 parent: 2 - - uid: 1290 + - uid: 1287 components: - type: Transform pos: -42.5,57.5 parent: 2 - - uid: 1291 + - uid: 1288 components: - type: Transform pos: -37.5,56.5 parent: 2 - - uid: 1292 + - uid: 1289 components: - type: Transform pos: 13.5,44.5 parent: 2 - - uid: 1293 + - uid: 1290 components: - type: Transform pos: 61.5,53.5 parent: 2 - - uid: 1294 + - uid: 1291 components: - type: Transform pos: 60.5,54.5 parent: 2 - - uid: 1295 + - uid: 1292 components: - type: Transform pos: 70.5,46.5 parent: 2 - - uid: 1296 + - uid: 1293 components: - type: Transform pos: 61.5,55.5 parent: 2 - - uid: 1297 + - uid: 1294 components: - type: Transform pos: 69.5,44.5 parent: 2 - - uid: 1298 + - uid: 1295 components: - type: Transform pos: 70.5,50.5 parent: 2 - - uid: 1299 + - uid: 1296 components: - type: Transform pos: 70.5,49.5 parent: 2 - - uid: 1300 + - uid: 1297 components: - type: Transform pos: 70.5,51.5 parent: 2 - - uid: 1301 + - uid: 1298 components: - type: Transform pos: 69.5,50.5 parent: 2 - - uid: 1302 + - uid: 1299 components: - type: Transform pos: 69.5,47.5 parent: 2 - - uid: 1303 + - uid: 1300 components: - type: Transform pos: 69.5,46.5 parent: 2 - - uid: 1304 + - uid: 1301 components: - type: Transform pos: 69.5,45.5 parent: 2 - - uid: 1305 + - uid: 1302 components: - type: Transform pos: 69.5,48.5 parent: 2 - - uid: 1306 + - uid: 1303 components: - type: Transform pos: 69.5,49.5 parent: 2 - - uid: 1307 + - uid: 1304 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 1308 + - uid: 1305 components: - type: Transform pos: 64.5,53.5 parent: 2 - - uid: 1309 + - uid: 1306 components: - type: Transform pos: 64.5,52.5 parent: 2 - - uid: 1310 + - uid: 1307 components: - type: Transform pos: 64.5,53.5 parent: 2 - - uid: 1311 + - uid: 1308 components: - type: Transform pos: 64.5,51.5 parent: 2 - - uid: 1312 + - uid: 1309 components: - type: Transform pos: 67.5,53.5 parent: 2 - - uid: 1313 + - uid: 1310 components: - type: Transform pos: 65.5,52.5 parent: 2 - - uid: 1314 + - uid: 1311 components: - type: Transform pos: 65.5,53.5 parent: 2 - - uid: 1315 + - uid: 1312 components: - type: Transform pos: 65.5,54.5 parent: 2 - - uid: 1316 + - uid: 1313 components: - type: Transform pos: 62.5,55.5 parent: 2 - - uid: 1317 + - uid: 1314 components: - type: Transform pos: 64.5,55.5 parent: 2 - - uid: 1318 + - uid: 1315 components: - type: Transform pos: 64.5,54.5 parent: 2 - - uid: 1319 + - uid: 1316 components: - type: Transform pos: 68.5,52.5 parent: 2 - - uid: 1320 + - uid: 1317 components: - type: Transform pos: 65.5,52.5 parent: 2 - - uid: 1321 + - uid: 1318 components: - type: Transform pos: 66.5,54.5 parent: 2 - - uid: 1322 + - uid: 1319 components: - type: Transform pos: 66.5,53.5 parent: 2 - - uid: 1323 + - uid: 1320 components: - type: Transform pos: 67.5,52.5 parent: 2 - - uid: 1324 + - uid: 1321 components: - type: Transform pos: 65.5,55.5 parent: 2 - - uid: 1325 + - uid: 1322 components: - type: Transform pos: 62.5,52.5 parent: 2 - - uid: 1326 + - uid: 1323 components: - type: Transform pos: 63.5,55.5 parent: 2 - - uid: 1327 + - uid: 1324 components: - type: Transform pos: 10.5,58.5 parent: 2 - - uid: 1328 + - uid: 1325 components: - type: Transform pos: 4.5,42.5 parent: 2 - - uid: 1329 + - uid: 1326 components: - type: Transform pos: 9.5,50.5 parent: 2 - - uid: 1330 + - uid: 1327 components: - type: Transform pos: 3.5,42.5 parent: 2 - - uid: 1331 + - uid: 1328 components: - type: Transform pos: 3.5,52.5 parent: 2 - - uid: 1332 + - uid: 1329 components: - type: Transform pos: 63.5,54.5 parent: 2 - - uid: 1333 + - uid: 1330 components: - type: Transform pos: 62.5,54.5 parent: 2 - - uid: 1334 + - uid: 1331 components: - type: Transform pos: 11.5,57.5 parent: 2 - - uid: 1335 + - uid: 1332 components: - type: Transform pos: 12.5,56.5 parent: 2 - - uid: 1336 + - uid: 1333 components: - type: Transform pos: 12.5,57.5 parent: 2 - - uid: 1337 + - uid: 1334 components: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 1338 + - uid: 1335 components: - type: Transform pos: 5.5,42.5 parent: 2 - - uid: 1339 + - uid: 1336 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 1340 + - uid: 1337 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 1341 + - uid: 1338 components: - type: Transform pos: 10.5,56.5 parent: 2 - - uid: 1342 + - uid: 1339 components: - type: Transform pos: 9.5,56.5 parent: 2 - - uid: 1343 + - uid: 1340 components: - type: Transform pos: 8.5,56.5 parent: 2 - - uid: 1344 + - uid: 1341 components: - type: Transform pos: 7.5,56.5 parent: 2 - - uid: 1345 + - uid: 1342 components: - type: Transform pos: 3.5,53.5 parent: 2 - - uid: 1346 + - uid: 1343 components: - type: Transform pos: 61.5,54.5 parent: 2 - - uid: 1347 + - uid: 1344 components: - type: Transform pos: 3.5,45.5 parent: 2 - - uid: 1348 + - uid: 1345 components: - type: Transform pos: 3.5,46.5 parent: 2 - - uid: 1349 + - uid: 1346 components: - type: Transform pos: 60.5,53.5 parent: 2 - - uid: 1350 + - uid: 1347 components: - type: Transform pos: 61.5,52.5 parent: 2 - - uid: 1351 + - uid: 1348 components: - type: Transform pos: 60.5,50.5 parent: 2 - - uid: 1352 + - uid: 1349 components: - type: Transform pos: 60.5,51.5 parent: 2 - - uid: 1353 + - uid: 1350 components: - type: Transform pos: 5.5,44.5 parent: 2 - - uid: 1354 + - uid: 1351 components: - type: Transform pos: 4.5,45.5 parent: 2 - - uid: 1355 + - uid: 1352 components: - type: Transform pos: 5.5,43.5 parent: 2 - - uid: 1356 + - uid: 1353 components: - type: Transform pos: 3.5,44.5 parent: 2 - - uid: 1357 + - uid: 1354 components: - type: Transform pos: 60.5,52.5 parent: 2 - - uid: 1358 + - uid: 1355 components: - type: Transform pos: 61.5,50.5 parent: 2 - - uid: 1359 + - uid: 1356 components: - type: Transform pos: 61.5,51.5 parent: 2 - - uid: 1360 + - uid: 1357 components: - type: Transform pos: 60.5,49.5 parent: 2 - - uid: 1361 + - uid: 1358 components: - type: Transform pos: 6.5,43.5 parent: 2 - - uid: 1362 + - uid: 1359 components: - type: Transform pos: 4.5,43.5 parent: 2 - - uid: 1363 + - uid: 1360 components: - type: Transform pos: 4.5,43.5 parent: 2 - - uid: 1364 + - uid: 1361 components: - type: Transform pos: 4.5,44.5 parent: 2 - - uid: 1365 + - uid: 1362 components: - type: Transform pos: 63.5,53.5 parent: 2 - - uid: 1366 + - uid: 1363 components: - type: Transform pos: 63.5,52.5 parent: 2 - - uid: 1367 + - uid: 1364 components: - type: Transform pos: 76.5,-60.5 parent: 2 - - uid: 1368 + - uid: 1365 components: - type: Transform pos: 77.5,-60.5 parent: 2 - - uid: 1369 + - uid: 1366 components: - type: Transform pos: 77.5,-61.5 parent: 2 - - uid: 1370 + - uid: 1367 components: - type: Transform pos: 77.5,-62.5 parent: 2 - - uid: 1371 + - uid: 1368 components: - type: Transform pos: 80.5,-66.5 parent: 2 - - uid: 1372 + - uid: 1369 components: - type: Transform pos: 77.5,-59.5 parent: 2 - - uid: 1373 + - uid: 1370 components: - type: Transform pos: 72.5,-65.5 parent: 2 - - uid: 1374 + - uid: 1371 components: - type: Transform pos: 75.5,-61.5 parent: 2 - - uid: 1375 + - uid: 1372 components: - type: Transform pos: 78.5,-53.5 parent: 2 - - uid: 1376 + - uid: 1373 components: - type: Transform pos: 78.5,-54.5 parent: 2 - - uid: 1377 + - uid: 1374 components: - type: Transform pos: 78.5,-54.5 parent: 2 - - uid: 1378 + - uid: 1375 components: - type: Transform pos: 76.5,-58.5 parent: 2 - - uid: 1379 + - uid: 1376 components: - type: Transform pos: 75.5,-59.5 parent: 2 - - uid: 1380 + - uid: 1377 components: - type: Transform pos: 78.5,-52.5 parent: 2 - - uid: 1381 + - uid: 1378 components: - type: Transform pos: 78.5,-51.5 parent: 2 - - uid: 1382 + - uid: 1379 components: - type: Transform pos: 70.5,45.5 parent: 2 - - uid: 1383 + - uid: 1380 components: - type: Transform pos: 78.5,-50.5 parent: 2 - - uid: 1384 + - uid: 1381 components: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 1385 + - uid: 1382 components: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 1386 + - uid: 1383 components: - type: Transform pos: 69.5,-70.5 parent: 2 - - uid: 1387 + - uid: 1384 components: - type: Transform pos: 4.5,-91.5 parent: 2 - - uid: 1388 + - uid: 1385 components: - type: Transform pos: 6.5,-90.5 parent: 2 - - uid: 1389 + - uid: 1386 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1390 + - uid: 1387 components: - type: Transform pos: 18.5,45.5 parent: 2 - - uid: 1391 + - uid: 1388 components: - type: Transform pos: 11.5,-91.5 parent: 2 - - uid: 1392 + - uid: 1389 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1393 + - uid: 1390 components: - type: Transform pos: 10.5,-90.5 parent: 2 - - uid: 1394 + - uid: 1391 components: - type: Transform pos: 17.5,48.5 parent: 2 - - uid: 1395 + - uid: 1392 components: - type: Transform pos: 80.5,-65.5 parent: 2 - - uid: 1396 + - uid: 1393 components: - type: Transform pos: 78.5,-61.5 parent: 2 - - uid: 1397 + - uid: 1394 components: - type: Transform pos: 78.5,-69.5 parent: 2 - - uid: 1398 + - uid: 1395 components: - type: Transform pos: 79.5,-68.5 parent: 2 - - uid: 1399 + - uid: 1396 components: - type: Transform pos: 73.5,-62.5 parent: 2 - - uid: 1400 + - uid: 1397 components: - type: Transform pos: 73.5,-61.5 parent: 2 - - uid: 1401 + - uid: 1398 components: - type: Transform pos: 74.5,-59.5 parent: 2 - - uid: 1402 + - uid: 1399 components: - type: Transform pos: 74.5,-60.5 parent: 2 - - uid: 1403 + - uid: 1400 components: - type: Transform pos: 78.5,-53.5 parent: 2 - - uid: 1404 + - uid: 1401 components: - type: Transform pos: 78.5,-52.5 parent: 2 - - uid: 1405 + - uid: 1402 components: - type: Transform pos: 70.5,44.5 parent: 2 - - uid: 1406 + - uid: 1403 components: - type: Transform pos: 68.5,45.5 parent: 2 - - uid: 1407 + - uid: 1404 components: - type: Transform pos: 67.5,45.5 parent: 2 - - uid: 1408 + - uid: 1405 components: - type: Transform pos: 68.5,44.5 parent: 2 - - uid: 1409 + - uid: 1406 components: - type: Transform pos: 67.5,44.5 parent: 2 - - uid: 1410 + - uid: 1407 components: - type: Transform pos: 71.5,-73.5 parent: 2 - - uid: 1411 + - uid: 1408 components: - type: Transform pos: 70.5,-73.5 parent: 2 - - uid: 1412 + - uid: 1409 components: - type: Transform pos: 73.5,-72.5 parent: 2 - - uid: 1413 + - uid: 1410 components: - type: Transform pos: 71.5,-72.5 parent: 2 - - uid: 1414 + - uid: 1411 components: - type: Transform pos: 74.5,-72.5 parent: 2 - - uid: 1415 + - uid: 1412 components: - type: Transform pos: 74.5,-71.5 parent: 2 - - uid: 1416 + - uid: 1413 components: - type: Transform pos: 77.5,-69.5 parent: 2 - - uid: 1417 + - uid: 1414 components: - type: Transform pos: 18.5,46.5 parent: 2 - - uid: 1418 + - uid: 1415 components: - type: Transform pos: 19.5,44.5 parent: 2 - - uid: 1419 + - uid: 1416 components: - type: Transform pos: 18.5,44.5 parent: 2 - - uid: 1420 + - uid: 1417 components: - type: Transform pos: 18.5,43.5 parent: 2 - - uid: 1421 + - uid: 1418 components: - type: Transform pos: 16.5,46.5 parent: 2 - - uid: 1422 + - uid: 1419 components: - type: Transform pos: 15.5,48.5 parent: 2 - - uid: 1423 + - uid: 1420 components: - type: Transform pos: 16.5,47.5 parent: 2 - - uid: 1424 + - uid: 1421 components: - type: Transform pos: 16.5,49.5 parent: 2 - - uid: 1425 + - uid: 1422 components: - type: Transform pos: 16.5,48.5 parent: 2 - - uid: 1426 + - uid: 1423 components: - type: Transform pos: 17.5,43.5 parent: 2 - - uid: 1427 + - uid: 1424 components: - type: Transform pos: 65.5,47.5 parent: 2 - - uid: 1428 + - uid: 1425 components: - type: Transform pos: 65.5,44.5 parent: 2 - - uid: 1429 + - uid: 1426 components: - type: Transform pos: 65.5,43.5 parent: 2 - - uid: 1430 + - uid: 1427 components: - type: Transform pos: 67.5,42.5 parent: 2 - - uid: 1431 + - uid: 1428 components: - type: Transform pos: 66.5,42.5 parent: 2 - - uid: 1432 + - uid: 1429 components: - type: Transform pos: 65.5,42.5 parent: 2 - - uid: 1433 + - uid: 1430 components: - type: Transform pos: 64.5,42.5 parent: 2 - - uid: 1434 + - uid: 1431 components: - type: Transform pos: 63.5,42.5 parent: 2 - - uid: 1435 + - uid: 1432 components: - type: Transform pos: 62.5,43.5 parent: 2 - - uid: 1436 + - uid: 1433 components: - type: Transform pos: 61.5,43.5 parent: 2 - - uid: 1437 + - uid: 1434 components: - type: Transform pos: 62.5,44.5 parent: 2 - - uid: 1438 + - uid: 1435 components: - type: Transform pos: 65.5,51.5 parent: 2 - - uid: 1439 + - uid: 1436 components: - type: Transform pos: 65.5,50.5 parent: 2 - - uid: 1440 + - uid: 1437 components: - type: Transform pos: 9.5,41.5 parent: 2 - - uid: 1441 + - uid: 1438 components: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 1442 + - uid: 1439 components: - type: Transform pos: 77.5,-68.5 parent: 2 - - uid: 1443 + - uid: 1440 components: - type: Transform pos: 15.5,49.5 parent: 2 - - uid: 1444 + - uid: 1441 components: - type: Transform pos: 16.5,50.5 parent: 2 - - uid: 1445 + - uid: 1442 components: - type: Transform pos: 76.5,-71.5 parent: 2 - - uid: 1446 + - uid: 1443 components: - type: Transform pos: 76.5,-69.5 parent: 2 - - uid: 1447 + - uid: 1444 components: - type: Transform pos: 16.5,51.5 parent: 2 - - uid: 1448 + - uid: 1445 components: - type: Transform pos: 75.5,-71.5 parent: 2 - - uid: 1449 + - uid: 1446 components: - type: Transform pos: 81.5,-58.5 parent: 2 - - uid: 1450 + - uid: 1447 components: - type: Transform pos: 81.5,-62.5 parent: 2 - - uid: 1451 + - uid: 1448 components: - type: Transform pos: 75.5,-72.5 parent: 2 - - uid: 1452 + - uid: 1449 components: - type: Transform pos: 80.5,-63.5 parent: 2 - - uid: 1453 + - uid: 1450 components: - type: Transform pos: 81.5,-63.5 parent: 2 - - uid: 1454 + - uid: 1451 components: - type: Transform pos: 81.5,-61.5 parent: 2 - - uid: 1455 + - uid: 1452 components: - type: Transform pos: 81.5,-60.5 parent: 2 - - uid: 1456 + - uid: 1453 components: - type: Transform pos: 81.5,-57.5 parent: 2 - - uid: 1457 + - uid: 1454 components: - type: Transform pos: 77.5,-56.5 parent: 2 - - uid: 1458 + - uid: 1455 components: - type: Transform pos: 77.5,-57.5 parent: 2 - - uid: 1459 + - uid: 1456 components: - type: Transform pos: 77.5,-55.5 parent: 2 - - uid: 1460 + - uid: 1457 components: - type: Transform pos: 77.5,-54.5 parent: 2 - - uid: 1461 + - uid: 1458 components: - type: Transform pos: 77.5,-52.5 parent: 2 - - uid: 1462 + - uid: 1459 components: - type: Transform pos: 81.5,-59.5 parent: 2 - - uid: 1463 + - uid: 1460 components: - type: Transform pos: 80.5,-51.5 parent: 2 - - uid: 1464 + - uid: 1461 components: - type: Transform pos: 66.5,-69.5 parent: 2 - - uid: 1465 + - uid: 1462 components: - type: Transform pos: 70.5,-70.5 parent: 2 - - uid: 1466 + - uid: 1463 components: - type: Transform pos: 67.5,-71.5 parent: 2 - - uid: 1467 + - uid: 1464 components: - type: Transform pos: 66.5,-70.5 parent: 2 - - uid: 1468 + - uid: 1465 components: - type: Transform pos: 66.5,-68.5 parent: 2 - - uid: 1469 + - uid: 1466 components: - type: Transform pos: 66.5,-71.5 parent: 2 - - uid: 1470 + - uid: 1467 components: - type: Transform pos: 65.5,-69.5 parent: 2 - - uid: 1471 + - uid: 1468 components: - type: Transform pos: 77.5,-65.5 parent: 2 - - uid: 1472 + - uid: 1469 components: - type: Transform pos: 76.5,-65.5 parent: 2 - - uid: 1473 + - uid: 1470 components: - type: Transform pos: 78.5,-67.5 parent: 2 - - uid: 1474 + - uid: 1471 components: - type: Transform pos: 78.5,-66.5 parent: 2 - - uid: 1475 + - uid: 1472 components: - type: Transform pos: 79.5,-67.5 parent: 2 - - uid: 1476 + - uid: 1473 components: - type: Transform pos: 75.5,-68.5 parent: 2 - - uid: 1477 + - uid: 1474 components: - type: Transform pos: 75.5,-65.5 parent: 2 - - uid: 1478 + - uid: 1475 components: - type: Transform pos: 66.5,-72.5 parent: 2 - - uid: 1479 + - uid: 1476 components: - type: Transform pos: 64.5,47.5 parent: 2 - - uid: 1480 + - uid: 1477 components: - type: Transform pos: 64.5,46.5 parent: 2 - - uid: 1481 + - uid: 1478 components: - type: Transform pos: 65.5,46.5 parent: 2 - - uid: 1482 + - uid: 1479 components: - type: Transform pos: 66.5,52.5 parent: 2 - - uid: 1483 + - uid: 1480 components: - type: Transform pos: 4.5,54.5 parent: 2 - - uid: 1484 + - uid: 1481 components: - type: Transform pos: 15.5,51.5 parent: 2 - - uid: 1485 + - uid: 1482 components: - type: Transform pos: 78.5,-68.5 parent: 2 - - uid: 1486 + - uid: 1483 components: - type: Transform pos: 12.5,50.5 parent: 2 - - uid: 1487 + - uid: 1484 components: - type: Transform pos: 79.5,-65.5 parent: 2 - - uid: 1488 + - uid: 1485 components: - type: Transform pos: 76.5,-68.5 parent: 2 - - uid: 1489 + - uid: 1486 components: - type: Transform pos: 15.5,52.5 parent: 2 - - uid: 1490 + - uid: 1487 components: - type: Transform pos: 17.5,44.5 parent: 2 - - uid: 1491 + - uid: 1488 components: - type: Transform pos: 6.5,-91.5 parent: 2 - - uid: 1492 + - uid: 1489 components: - type: Transform pos: 5.5,-91.5 parent: 2 - - uid: 1493 + - uid: 1490 components: - type: Transform pos: 75.5,-70.5 parent: 2 - - uid: 1494 + - uid: 1491 components: - type: Transform pos: 3.5,-91.5 parent: 2 - - uid: 1495 + - uid: 1492 components: - type: Transform pos: 17.5,45.5 parent: 2 - - uid: 1496 + - uid: 1493 components: - type: Transform pos: 79.5,-65.5 parent: 2 - - uid: 1497 + - uid: 1494 components: - type: Transform pos: 65.5,48.5 parent: 2 - - uid: 1498 + - uid: 1495 components: - type: Transform pos: 66.5,43.5 parent: 2 - - uid: 1499 + - uid: 1496 components: - type: Transform pos: 67.5,43.5 parent: 2 - - uid: 1500 + - uid: 1497 components: - type: Transform pos: 65.5,47.5 parent: 2 - - uid: 1501 + - uid: 1498 components: - type: Transform pos: 68.5,43.5 parent: 2 - - uid: 1502 + - uid: 1499 components: - type: Transform pos: 14.5,44.5 parent: 2 - - uid: 1503 + - uid: 1500 components: - type: Transform pos: 11.5,-90.5 parent: 2 - - uid: 1504 + - uid: 1501 components: - type: Transform pos: 9.5,-91.5 parent: 2 - - uid: 1505 + - uid: 1502 components: - type: Transform pos: 8.5,-91.5 parent: 2 - - uid: 1506 + - uid: 1503 components: - type: Transform pos: 9.5,-90.5 parent: 2 - - uid: 1507 + - uid: 1504 components: - type: Transform pos: 17.5,47.5 parent: 2 - - uid: 1508 + - uid: 1505 components: - type: Transform pos: 8.5,-90.5 parent: 2 - - uid: 1509 + - uid: 1506 components: - type: Transform pos: 17.5,46.5 parent: 2 - - uid: 1510 + - uid: 1507 components: - type: Transform pos: 77.5,-51.5 parent: 2 - - uid: 1511 + - uid: 1508 components: - type: Transform pos: 77.5,-53.5 parent: 2 - - uid: 1512 + - uid: 1509 components: - type: Transform pos: 80.5,-57.5 parent: 2 - - uid: 1513 + - uid: 1510 components: - type: Transform pos: 80.5,-58.5 parent: 2 - - uid: 1514 + - uid: 1511 components: - type: Transform pos: 80.5,-55.5 parent: 2 - - uid: 1515 + - uid: 1512 components: - type: Transform pos: 80.5,-56.5 parent: 2 - - uid: 1516 + - uid: 1513 components: - type: Transform pos: 81.5,-56.5 parent: 2 - - uid: 1517 + - uid: 1514 components: - type: Transform pos: 80.5,-54.5 parent: 2 - - uid: 1518 + - uid: 1515 components: - type: Transform pos: 80.5,-53.5 parent: 2 - - uid: 1519 + - uid: 1516 components: - type: Transform pos: 80.5,-52.5 parent: 2 - - uid: 1520 + - uid: 1517 components: - type: Transform pos: 81.5,-55.5 parent: 2 - - uid: 1521 + - uid: 1518 components: - type: Transform pos: 80.5,-64.5 parent: 2 - - uid: 1522 + - uid: 1519 components: - type: Transform pos: 79.5,-66.5 parent: 2 - - uid: 1523 + - uid: 1520 components: - type: Transform pos: 76.5,-64.5 parent: 2 - - uid: 1524 + - uid: 1521 components: - type: Transform pos: 80.5,-67.5 parent: 2 - - uid: 1525 + - uid: 1522 components: - type: Transform pos: 72.5,-66.5 parent: 2 - - uid: 1526 + - uid: 1523 components: - type: Transform pos: 70.5,-68.5 parent: 2 - - uid: 1527 + - uid: 1524 components: - type: Transform pos: 70.5,-69.5 parent: 2 - - uid: 1528 + - uid: 1525 components: - type: Transform pos: 71.5,-68.5 parent: 2 - - uid: 1529 + - uid: 1526 components: - type: Transform pos: 71.5,-68.5 parent: 2 - - uid: 1530 + - uid: 1527 components: - type: Transform pos: 76.5,-66.5 parent: 2 - - uid: 1531 + - uid: 1528 components: - type: Transform pos: 76.5,-67.5 parent: 2 - - uid: 1532 + - uid: 1529 components: - type: Transform pos: 65.5,-71.5 parent: 2 - - uid: 1533 + - uid: 1530 components: - type: Transform pos: 75.5,-64.5 parent: 2 - - uid: 1534 + - uid: 1531 components: - type: Transform pos: 65.5,-70.5 parent: 2 - - uid: 1535 + - uid: 1532 components: - type: Transform pos: 64.5,-70.5 parent: 2 - - uid: 1536 + - uid: 1533 components: - type: Transform pos: 24.5,51.5 parent: 2 - - uid: 1537 + - uid: 1534 components: - type: Transform pos: 17.5,42.5 parent: 2 - - uid: 1538 + - uid: 1535 components: - type: Transform pos: 15.5,42.5 parent: 2 - - uid: 1539 + - uid: 1536 components: - type: Transform pos: 14.5,42.5 parent: 2 - - uid: 1540 + - uid: 1537 components: - type: Transform pos: 11.5,41.5 parent: 2 - - uid: 1541 + - uid: 1538 components: - type: Transform pos: 12.5,42.5 parent: 2 - - uid: 1542 + - uid: 1539 components: - type: Transform pos: 11.5,42.5 parent: 2 - - uid: 1543 + - uid: 1540 components: - type: Transform pos: 11.5,43.5 parent: 2 - - uid: 1544 + - uid: 1541 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 1545 + - uid: 1542 components: - type: Transform pos: 8.5,51.5 parent: 2 - - uid: 1546 + - uid: 1543 components: - type: Transform pos: 5.5,55.5 parent: 2 - - uid: 1547 + - uid: 1544 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 1548 + - uid: 1545 components: - type: Transform pos: 6.5,56.5 parent: 2 - - uid: 1549 + - uid: 1546 components: - type: Transform pos: 5.5,56.5 parent: 2 - - uid: 1550 + - uid: 1547 components: - type: Transform pos: 4.5,55.5 parent: 2 - - uid: 1551 + - uid: 1548 components: - type: Transform pos: 21.5,57.5 parent: 2 - - uid: 1552 + - uid: 1549 components: - type: Transform pos: 20.5,57.5 parent: 2 - - uid: 1553 + - uid: 1550 components: - type: Transform pos: 21.5,56.5 parent: 2 - - uid: 1554 + - uid: 1551 components: - type: Transform pos: 18.5,56.5 parent: 2 - - uid: 1555 + - uid: 1552 components: - type: Transform pos: 17.5,55.5 parent: 2 - - uid: 1556 + - uid: 1553 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 1557 + - uid: 1554 components: - type: Transform pos: 19.5,57.5 parent: 2 - - uid: 1558 + - uid: 1555 components: - type: Transform pos: 18.5,53.5 parent: 2 - - uid: 1559 + - uid: 1556 components: - type: Transform pos: 19.5,53.5 parent: 2 - - uid: 1560 + - uid: 1557 components: - type: Transform pos: 18.5,52.5 parent: 2 - - uid: 1561 + - uid: 1558 components: - type: Transform pos: 16.5,52.5 parent: 2 - - uid: 1562 + - uid: 1559 components: - type: Transform pos: 17.5,52.5 parent: 2 - - uid: 1563 + - uid: 1560 components: - type: Transform pos: 19.5,52.5 parent: 2 - - uid: 1564 + - uid: 1561 components: - type: Transform pos: 22.5,54.5 parent: 2 - - uid: 1565 + - uid: 1562 components: - type: Transform pos: 21.5,55.5 parent: 2 - - uid: 1566 + - uid: 1563 components: - type: Transform pos: 22.5,53.5 parent: 2 - - uid: 1567 + - uid: 1564 components: - type: Transform pos: 17.5,51.5 parent: 2 - - uid: 1568 + - uid: 1565 components: - type: Transform pos: 21.5,54.5 parent: 2 - - uid: 1569 + - uid: 1566 components: - type: Transform pos: 16.5,53.5 parent: 2 - - uid: 1570 + - uid: 1567 components: - type: Transform pos: 16.5,54.5 parent: 2 - - uid: 1571 + - uid: 1568 components: - type: Transform pos: 17.5,53.5 parent: 2 - - uid: 1572 + - uid: 1569 components: - type: Transform pos: 5.5,54.5 parent: 2 - - uid: 1573 + - uid: 1570 components: - type: Transform pos: 5.5,53.5 parent: 2 - - uid: 1574 + - uid: 1571 components: - type: Transform pos: 13.5,57.5 parent: 2 - - uid: 1575 + - uid: 1572 components: - type: Transform pos: 18.5,57.5 parent: 2 - - uid: 1576 + - uid: 1573 components: - type: Transform pos: 13.5,51.5 parent: 2 - - uid: 1577 + - uid: 1574 components: - type: Transform pos: 10.5,51.5 parent: 2 - - uid: 1578 + - uid: 1575 components: - type: Transform pos: 8.5,52.5 parent: 2 - - uid: 1579 + - uid: 1576 components: - type: Transform pos: 9.5,51.5 parent: 2 - - uid: 1580 + - uid: 1577 components: - type: Transform pos: 13.5,52.5 parent: 2 - - uid: 1581 + - uid: 1578 components: - type: Transform pos: 14.5,53.5 parent: 2 - - uid: 1582 + - uid: 1579 components: - type: Transform pos: 13.5,56.5 parent: 2 - - uid: 1583 + - uid: 1580 components: - type: Transform pos: 14.5,55.5 parent: 2 - - uid: 1584 + - uid: 1581 components: - type: Transform pos: 13.5,55.5 parent: 2 - - uid: 1585 + - uid: 1582 components: - type: Transform pos: 15.5,54.5 parent: 2 - - uid: 1586 + - uid: 1583 components: - type: Transform pos: 15.5,53.5 parent: 2 - - uid: 1587 + - uid: 1584 components: - type: Transform pos: 7.5,52.5 parent: 2 - - uid: 1588 + - uid: 1585 components: - type: Transform pos: 15.5,58.5 parent: 2 - - uid: 1589 + - uid: 1586 components: - type: Transform pos: 14.5,58.5 parent: 2 - - uid: 1590 + - uid: 1587 components: - type: Transform pos: 13.5,58.5 parent: 2 - - uid: 1591 + - uid: 1588 components: - type: Transform pos: 12.5,51.5 parent: 2 - - uid: 1592 + - uid: 1589 components: - type: Transform pos: 17.5,58.5 parent: 2 - - uid: 1593 + - uid: 1590 components: - type: Transform pos: 22.5,56.5 parent: 2 - - uid: 1594 + - uid: 1591 components: - type: Transform pos: 22.5,57.5 parent: 2 - - uid: 1595 + - uid: 1592 components: - type: Transform pos: 11.5,51.5 parent: 2 - - uid: 1596 + - uid: 1593 components: - type: Transform pos: 17.5,50.5 parent: 2 - - uid: 1597 + - uid: 1594 components: - type: Transform pos: 18.5,48.5 parent: 2 - - uid: 1598 + - uid: 1595 components: - type: Transform pos: 21.5,51.5 parent: 2 - - uid: 1599 + - uid: 1596 components: - type: Transform pos: 17.5,49.5 parent: 2 - - uid: 1600 + - uid: 1597 components: - type: Transform pos: 21.5,49.5 parent: 2 - - uid: 1601 + - uid: 1598 components: - type: Transform pos: 18.5,51.5 parent: 2 - - uid: 1602 + - uid: 1599 components: - type: Transform pos: 19.5,48.5 parent: 2 - - uid: 1603 + - uid: 1600 components: - type: Transform pos: 20.5,51.5 parent: 2 - - uid: 1604 + - uid: 1601 components: - type: Transform pos: 21.5,52.5 parent: 2 - - uid: 1605 + - uid: 1602 components: - type: Transform pos: 20.5,52.5 parent: 2 - - uid: 1606 + - uid: 1603 components: - type: Transform pos: 20.5,54.5 parent: 2 - - uid: 1607 + - uid: 1604 components: - type: Transform pos: 23.5,54.5 parent: 2 - - uid: 1608 + - uid: 1605 components: - type: Transform pos: 20.5,53.5 parent: 2 - - uid: 1609 + - uid: 1606 components: - type: Transform pos: 23.5,52.5 parent: 2 - - uid: 1610 + - uid: 1607 components: - type: Transform pos: 18.5,42.5 parent: 2 - - uid: 1611 + - uid: 1608 components: - type: Transform pos: 20.5,48.5 parent: 2 - - uid: 1612 + - uid: 1609 components: - type: Transform pos: 21.5,47.5 parent: 2 - - uid: 1613 + - uid: 1610 components: - type: Transform pos: 20.5,44.5 parent: 2 - - uid: 1614 + - uid: 1611 components: - type: Transform pos: 19.5,42.5 parent: 2 - - uid: 1615 + - uid: 1612 components: - type: Transform pos: 21.5,48.5 parent: 2 - - uid: 1616 + - uid: 1613 components: - type: Transform pos: 20.5,43.5 parent: 2 - - uid: 1617 + - uid: 1614 components: - type: Transform pos: 19.5,43.5 parent: 2 - - uid: 1618 + - uid: 1615 components: - type: Transform pos: 22.5,49.5 parent: 2 - - uid: 1619 + - uid: 1616 components: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 1620 + - uid: 1617 components: - type: Transform pos: 22.5,50.5 parent: 2 - - uid: 1621 + - uid: 1618 components: - type: Transform pos: 24.5,52.5 parent: 2 - - uid: 1622 + - uid: 1619 components: - type: Transform pos: 23.5,51.5 parent: 2 - - uid: 1623 + - uid: 1620 components: - type: Transform pos: 24.5,53.5 parent: 2 - - uid: 1624 + - uid: 1621 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 1625 + - uid: 1622 components: - type: Transform pos: 25.5,54.5 parent: 2 - - uid: 1626 + - uid: 1623 components: - type: Transform pos: 25.5,55.5 parent: 2 - - uid: 1627 + - uid: 1624 components: - type: Transform pos: 25.5,53.5 parent: 2 - - uid: 1628 + - uid: 1625 components: - type: Transform pos: 24.5,57.5 parent: 2 - - uid: 1629 + - uid: 1626 components: - type: Transform pos: 23.5,57.5 parent: 2 - - uid: 1630 + - uid: 1627 components: - type: Transform pos: 21.5,58.5 parent: 2 - - uid: 1631 + - uid: 1628 components: - type: Transform pos: 19.5,58.5 parent: 2 - - uid: 1632 + - uid: 1629 components: - type: Transform pos: 20.5,58.5 parent: 2 - - uid: 1633 + - uid: 1630 components: - type: Transform pos: 18.5,58.5 parent: 2 - - uid: 1634 + - uid: 1631 components: - type: Transform pos: 17.5,59.5 parent: 2 - - uid: 1635 + - uid: 1632 components: - type: Transform pos: 18.5,59.5 parent: 2 - - uid: 1636 + - uid: 1633 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 1637 + - uid: 1634 components: - type: Transform pos: 19.5,51.5 parent: 2 - - uid: 1638 + - uid: 1635 components: - type: Transform pos: 21.5,50.5 parent: 2 - - uid: 1639 + - uid: 1636 components: - type: Transform pos: 14.5,59.5 parent: 2 - - uid: 1640 + - uid: 1637 components: - type: Transform pos: 16.5,59.5 parent: 2 - - uid: 1641 + - uid: 1638 components: - type: Transform pos: 22.5,58.5 parent: 2 - - uid: 1642 + - uid: 1639 components: - type: Transform pos: 23.5,55.5 parent: 2 - - uid: 1643 + - uid: 1640 components: - type: Transform pos: 24.5,55.5 parent: 2 - - uid: 1644 + - uid: 1641 components: - type: Transform pos: 23.5,56.5 parent: 2 - - uid: 1645 + - uid: 1642 components: - type: Transform pos: 24.5,55.5 parent: 2 - - uid: 1646 + - uid: 1643 components: - type: Transform pos: 13.5,59.5 parent: 2 - - uid: 1647 + - uid: 1644 components: - type: Transform pos: 15.5,59.5 parent: 2 - - uid: 1648 + - uid: 1645 components: - type: Transform pos: 23.5,53.5 parent: 2 - - uid: 1649 + - uid: 1646 components: - type: Transform pos: 24.5,54.5 parent: 2 - - uid: 1650 + - uid: 1647 components: - type: Transform pos: 23.5,53.5 parent: 2 - - uid: 1651 + - uid: 1648 components: - type: Transform pos: 22.5,52.5 parent: 2 - - uid: 1652 + - uid: 1649 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 1653 + - uid: 1650 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 1654 + - uid: 1651 components: - type: Transform pos: 22.5,48.5 parent: 2 - - uid: 1655 + - uid: 1652 components: - type: Transform pos: 75.5,-60.5 parent: 2 - - uid: 1656 + - uid: 1653 components: - type: Transform pos: 76.5,-59.5 parent: 2 - - uid: 1657 + - uid: 1654 components: - type: Transform pos: 4.5,53.5 parent: 2 - - uid: 1658 + - uid: 1655 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 1659 + - uid: 1656 components: - type: Transform pos: 7.5,42.5 parent: 2 - - uid: 1660 + - uid: 1657 components: - type: Transform pos: 10.5,43.5 parent: 2 - - uid: 1661 + - uid: 1658 components: - type: Transform pos: 7.5,43.5 parent: 2 - - uid: 1662 + - uid: 1659 components: - type: Transform pos: 6.5,42.5 parent: 2 - - uid: 1663 + - uid: 1660 components: - type: Transform pos: 8.5,44.5 parent: 2 - - uid: 1664 + - uid: 1661 components: - type: Transform pos: 13.5,43.5 parent: 2 - - uid: 1665 + - uid: 1662 components: - type: Transform pos: 9.5,44.5 parent: 2 - - uid: 1666 + - uid: 1663 components: - type: Transform pos: 12.5,43.5 parent: 2 - - uid: 1667 + - uid: 1664 components: - type: Transform pos: 13.5,42.5 parent: 2 - - uid: 1668 + - uid: 1665 components: - type: Transform pos: 65.5,45.5 parent: 2 - - uid: 1669 + - uid: 1666 components: - type: Transform pos: 11.5,44.5 parent: 2 - - uid: 1670 + - uid: 1667 components: - type: Transform pos: 10.5,45.5 parent: 2 - - uid: 1671 + - uid: 1668 components: - type: Transform pos: 11.5,45.5 parent: 2 - - uid: 1672 + - uid: 1669 components: - type: Transform pos: 10.5,44.5 parent: 2 - - uid: 1673 + - uid: 1670 components: - type: Transform pos: 12.5,44.5 parent: 2 - - uid: 1674 + - uid: 1671 components: - type: Transform pos: 67.5,-73.5 parent: 2 - - uid: 1675 + - uid: 1672 components: - type: Transform pos: -38.5,55.5 parent: 2 - - uid: 1676 + - uid: 1673 components: - type: Transform pos: -47.5,58.5 parent: 2 - - uid: 1677 + - uid: 1674 components: - type: Transform pos: 5.5,52.5 parent: 2 - - uid: 1678 + - uid: 1675 components: - type: Transform pos: -47.5,70.5 parent: 2 - - uid: 1679 + - uid: 1676 components: - type: Transform pos: -44.5,73.5 parent: 2 - - uid: 1680 + - uid: 1677 components: - type: Transform pos: -45.5,73.5 parent: 2 - - uid: 1681 + - uid: 1678 components: - type: Transform pos: -46.5,73.5 parent: 2 - - uid: 1682 + - uid: 1679 components: - type: Transform pos: -47.5,73.5 parent: 2 - - uid: 1683 + - uid: 1680 components: - type: Transform pos: -48.5,73.5 parent: 2 - - uid: 1684 + - uid: 1681 components: - type: Transform pos: -49.5,73.5 parent: 2 - - uid: 1685 + - uid: 1682 components: - type: Transform pos: -50.5,73.5 parent: 2 - - uid: 1686 + - uid: 1683 components: - type: Transform pos: -49.5,74.5 parent: 2 - - uid: 1687 + - uid: 1684 components: - type: Transform pos: -48.5,74.5 parent: 2 - - uid: 1688 + - uid: 1685 components: - type: Transform pos: -47.5,74.5 parent: 2 - - uid: 1689 + - uid: 1686 components: - type: Transform pos: -46.5,74.5 parent: 2 - - uid: 1690 + - uid: 1687 components: - type: Transform pos: -45.5,74.5 parent: 2 - - uid: 1691 + - uid: 1688 components: - type: Transform pos: -49.5,71.5 parent: 2 - - uid: 1692 + - uid: 1689 components: - type: Transform pos: -45.5,71.5 parent: 2 - - uid: 1693 + - uid: 1690 components: - type: Transform pos: -45.5,70.5 parent: 2 - - uid: 1694 + - uid: 1691 components: - type: Transform pos: -44.5,71.5 parent: 2 - - uid: 1695 + - uid: 1692 components: - type: Transform pos: -56.5,62.5 parent: 2 - - uid: 1696 + - uid: 1693 components: - type: Transform pos: -56.5,61.5 parent: 2 - - uid: 1697 + - uid: 1694 components: - type: Transform pos: -54.5,61.5 parent: 2 - - uid: 1698 + - uid: 1695 components: - type: Transform pos: 8.5,41.5 parent: 2 - - uid: 1699 + - uid: 1696 components: - type: Transform pos: 7.5,41.5 parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 1700 + - uid: 1698 components: - type: Transform pos: 45.5,-89.5 parent: 2 - - uid: 1701 + - uid: 1699 components: - type: Transform pos: 33.5,-82.5 parent: 2 - - uid: 1702 + - uid: 1700 components: - type: Transform pos: 33.5,-89.5 parent: 2 - - uid: 1703 + - uid: 1701 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 1704 + - uid: 1702 components: - type: Transform pos: 79.5,-36.5 parent: 2 - - uid: 1705 + - uid: 1703 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 1706 + - uid: 1704 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-95.5 parent: 2 - - uid: 1707 + - uid: 1705 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 - - uid: 1708 + - uid: 1706 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 - - uid: 1709 + - uid: 1707 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 1710 + - uid: 1708 components: - type: Transform pos: -52.5,34.5 parent: 2 - - uid: 1711 + - uid: 1709 components: - type: Transform pos: 79.5,-37.5 parent: 2 - - uid: 1712 + - uid: 1710 components: - type: Transform pos: 79.5,-34.5 parent: 2 - - uid: 1713 + - uid: 1711 components: - type: Transform pos: 79.5,-33.5 parent: 2 - - uid: 1714 + - uid: 1712 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 1715 + - uid: 1713 components: - type: Transform pos: 69.5,-11.5 parent: 2 - - uid: 1716 + - uid: 1714 components: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 1717 + - uid: 1715 components: - type: Transform pos: -1.5,14.5 parent: 2 - - uid: 1718 + - uid: 1716 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-95.5 parent: 2 - - uid: 1719 + - uid: 1717 components: - type: Transform pos: -17.5,70.5 parent: 2 - - uid: 1720 + - uid: 1718 components: - type: Transform pos: -12.5,75.5 parent: 2 - - uid: 1721 + - uid: 1719 components: - type: Transform pos: -13.5,75.5 parent: 2 - - uid: 1722 + - uid: 1720 components: - type: Transform pos: -21.5,75.5 parent: 2 - - uid: 1723 + - uid: 1721 components: - type: Transform pos: -22.5,75.5 parent: 2 - - uid: 1724 + - uid: 1722 components: - type: Transform pos: -52.5,33.5 parent: 2 - - uid: 1725 + - uid: 1723 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 1726 + - uid: 1724 components: - type: Transform pos: 45.5,-82.5 parent: 2 - - uid: 1727 + - uid: 1725 components: - type: Transform pos: 52.5,-82.5 parent: 2 - - uid: 1728 + - uid: 1726 components: - type: Transform pos: 52.5,-89.5 parent: 2 - - uid: 1729 + - uid: 1727 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-15.5 parent: 2 - - uid: 1730 + - uid: 1728 components: - type: Transform rot: 3.141592653589793 rad @@ -21125,912 +21207,912 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: - - uid: 1731 + - uid: 1729 components: - type: Transform pos: 51.5,-60.5 parent: 2 - - uid: 1732 + - uid: 1730 components: - type: Transform pos: 50.5,-60.5 parent: 2 - - uid: 1733 + - uid: 1731 components: - type: Transform pos: 49.5,-60.5 parent: 2 - - uid: 1734 + - uid: 1732 components: - type: Transform pos: 48.5,-60.5 parent: 2 - - uid: 1735 + - uid: 1733 components: - type: Transform pos: 48.5,-61.5 parent: 2 - - uid: 1736 + - uid: 1734 components: - type: Transform pos: 49.5,-61.5 parent: 2 - - uid: 1737 + - uid: 1735 components: - type: Transform pos: 50.5,-61.5 parent: 2 - - uid: 1738 + - uid: 1736 components: - type: Transform pos: 51.5,-61.5 parent: 2 - - uid: 1739 + - uid: 1737 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 1740 + - uid: 1738 components: - type: Transform pos: -44.5,-35.5 parent: 2 - - uid: 1741 + - uid: 1739 components: - type: Transform pos: -43.5,-34.5 parent: 2 - - uid: 1742 + - uid: 1740 components: - type: Transform pos: -43.5,-35.5 parent: 2 - - uid: 1743 + - uid: 1741 components: - type: Transform pos: -42.5,-34.5 parent: 2 - - uid: 1744 + - uid: 1742 components: - type: Transform pos: -42.5,-35.5 parent: 2 - - uid: 1745 + - uid: 1743 components: - type: Transform pos: -42.5,-36.5 parent: 2 - - uid: 1746 + - uid: 1744 components: - type: Transform pos: -48.5,-50.5 parent: 2 - - uid: 1747 + - uid: 1745 components: - type: Transform pos: -49.5,-50.5 parent: 2 - - uid: 1748 + - uid: 1746 components: - type: Transform pos: -50.5,-50.5 parent: 2 - - uid: 1749 + - uid: 1747 components: - type: Transform pos: -48.5,-48.5 parent: 2 - - uid: 1750 + - uid: 1748 components: - type: Transform pos: -49.5,-48.5 parent: 2 - - uid: 1751 + - uid: 1749 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - uid: 1752 + - uid: 1750 components: - type: Transform pos: -48.5,-44.5 parent: 2 - - uid: 1753 + - uid: 1751 components: - type: Transform pos: -49.5,-44.5 parent: 2 - - uid: 1754 + - uid: 1752 components: - type: Transform pos: -50.5,-44.5 parent: 2 - - uid: 1755 + - uid: 1753 components: - type: Transform pos: -48.5,-42.5 parent: 2 - - uid: 1756 + - uid: 1754 components: - type: Transform pos: -49.5,-42.5 parent: 2 - - uid: 1757 + - uid: 1755 components: - type: Transform pos: -50.5,-42.5 parent: 2 - - uid: 1758 + - uid: 1756 components: - type: Transform pos: -43.5,-36.5 parent: 2 - - uid: 1759 + - uid: 1757 components: - type: Transform pos: -44.5,-36.5 parent: 2 - - uid: 1760 + - uid: 1758 components: - type: Transform pos: -77.5,-40.5 parent: 2 - - uid: 1761 + - uid: 1759 components: - type: Transform pos: -76.5,-40.5 parent: 2 - - uid: 1762 + - uid: 1760 components: - type: Transform pos: -75.5,-40.5 parent: 2 - - uid: 1763 + - uid: 1761 components: - type: Transform pos: -75.5,-41.5 parent: 2 - - uid: 1764 + - uid: 1762 components: - type: Transform pos: -76.5,-41.5 parent: 2 - - uid: 1765 + - uid: 1763 components: - type: Transform pos: -77.5,-41.5 parent: 2 - - uid: 1766 + - uid: 1764 components: - type: Transform pos: -77.5,-42.5 parent: 2 - - uid: 1767 + - uid: 1765 components: - type: Transform pos: -76.5,-42.5 parent: 2 - - uid: 1768 + - uid: 1766 components: - type: Transform pos: -75.5,-42.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1769 + - uid: 1767 components: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 1770 + - uid: 1768 components: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 1771 + - uid: 1769 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 1772 + - uid: 1770 components: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 1773 + - uid: 1771 components: - type: Transform pos: 0.5,14.5 parent: 2 - - uid: 1774 + - uid: 1772 components: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 1775 + - uid: 1773 components: - type: Transform pos: 2.5,14.5 parent: 2 - - uid: 1776 + - uid: 1774 components: - type: Transform pos: -0.5,12.5 parent: 2 - - uid: 1777 + - uid: 1775 components: - type: Transform pos: -0.5,11.5 parent: 2 - - uid: 1778 + - uid: 1776 components: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 1779 + - uid: 1777 components: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 1780 + - uid: 1778 components: - type: Transform pos: 1.5,12.5 parent: 2 - - uid: 1781 + - uid: 1779 components: - type: Transform pos: 1.5,11.5 parent: 2 - - uid: 1782 + - uid: 1780 components: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 1783 + - uid: 1781 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 1784 + - uid: 1782 components: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 1785 + - uid: 1783 components: - type: Transform pos: -5.5,73.5 parent: 2 - - uid: 1786 + - uid: 1784 components: - type: Transform pos: -5.5,72.5 parent: 2 - - uid: 1787 + - uid: 1785 components: - type: Transform pos: -5.5,71.5 parent: 2 - - uid: 1788 + - uid: 1786 components: - type: Transform pos: -5.5,70.5 parent: 2 - - uid: 1789 + - uid: 1787 components: - type: Transform pos: -5.5,69.5 parent: 2 - - uid: 1790 + - uid: 1788 components: - type: Transform pos: -5.5,68.5 parent: 2 - - uid: 1791 + - uid: 1789 components: - type: Transform pos: -5.5,67.5 parent: 2 - - uid: 1792 + - uid: 1790 components: - type: Transform pos: -5.5,66.5 parent: 2 - - uid: 1793 + - uid: 1791 components: - type: Transform pos: -4.5,73.5 parent: 2 - - uid: 1794 + - uid: 1792 components: - type: Transform pos: -4.5,72.5 parent: 2 - - uid: 1795 + - uid: 1793 components: - type: Transform pos: -4.5,71.5 parent: 2 - - uid: 1796 + - uid: 1794 components: - type: Transform pos: -4.5,70.5 parent: 2 - - uid: 1797 + - uid: 1795 components: - type: Transform pos: -4.5,69.5 parent: 2 - - uid: 1798 + - uid: 1796 components: - type: Transform pos: -4.5,68.5 parent: 2 - - uid: 1799 + - uid: 1797 components: - type: Transform pos: -4.5,67.5 parent: 2 - - uid: 1800 + - uid: 1798 components: - type: Transform pos: -4.5,66.5 parent: 2 - - uid: 1801 + - uid: 1799 components: - type: Transform pos: -3.5,73.5 parent: 2 - - uid: 1802 + - uid: 1800 components: - type: Transform pos: -3.5,72.5 parent: 2 - - uid: 1803 + - uid: 1801 components: - type: Transform pos: -3.5,71.5 parent: 2 - - uid: 1804 + - uid: 1802 components: - type: Transform pos: -3.5,70.5 parent: 2 - - uid: 1805 + - uid: 1803 components: - type: Transform pos: -3.5,69.5 parent: 2 - - uid: 1806 + - uid: 1804 components: - type: Transform pos: -3.5,68.5 parent: 2 - - uid: 1807 + - uid: 1805 components: - type: Transform pos: -3.5,67.5 parent: 2 - - uid: 1808 + - uid: 1806 components: - type: Transform pos: -3.5,66.5 parent: 2 - - uid: 1809 + - uid: 1807 components: - type: Transform pos: -2.5,73.5 parent: 2 - - uid: 1810 + - uid: 1808 components: - type: Transform pos: -2.5,72.5 parent: 2 - - uid: 1811 + - uid: 1809 components: - type: Transform pos: -2.5,71.5 parent: 2 - - uid: 1812 + - uid: 1810 components: - type: Transform pos: -2.5,70.5 parent: 2 - - uid: 1813 + - uid: 1811 components: - type: Transform pos: -2.5,69.5 parent: 2 - - uid: 1814 + - uid: 1812 components: - type: Transform pos: -2.5,68.5 parent: 2 - - uid: 1815 + - uid: 1813 components: - type: Transform pos: -2.5,67.5 parent: 2 - - uid: 1816 + - uid: 1814 components: - type: Transform pos: -2.5,66.5 parent: 2 - - uid: 1817 + - uid: 1815 components: - type: Transform pos: -6.5,72.5 parent: 2 - - uid: 1818 + - uid: 1816 components: - type: Transform pos: -6.5,71.5 parent: 2 - - uid: 1819 + - uid: 1817 components: - type: Transform pos: -6.5,70.5 parent: 2 - - uid: 1820 + - uid: 1818 components: - type: Transform pos: -6.5,69.5 parent: 2 - - uid: 1821 + - uid: 1819 components: - type: Transform pos: -6.5,68.5 parent: 2 - - uid: 1822 + - uid: 1820 components: - type: Transform pos: -6.5,67.5 parent: 2 - - uid: 1823 + - uid: 1821 components: - type: Transform pos: -6.5,66.5 parent: 2 - - uid: 1824 + - uid: 1822 components: - type: Transform pos: -7.5,71.5 parent: 2 - - uid: 1825 + - uid: 1823 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 1826 + - uid: 1824 components: - type: Transform pos: -7.5,69.5 parent: 2 - - uid: 1827 + - uid: 1825 components: - type: Transform pos: -7.5,68.5 parent: 2 - - uid: 1828 + - uid: 1826 components: - type: Transform pos: -7.5,67.5 parent: 2 - - uid: 1829 + - uid: 1827 components: - type: Transform pos: -1.5,72.5 parent: 2 - - uid: 1830 + - uid: 1828 components: - type: Transform pos: -1.5,71.5 parent: 2 - - uid: 1831 + - uid: 1829 components: - type: Transform pos: -0.5,72.5 parent: 2 - - uid: 1832 + - uid: 1830 components: - type: Transform pos: -0.5,71.5 parent: 2 - - uid: 1833 + - uid: 1831 components: - type: Transform pos: 0.5,72.5 parent: 2 - - uid: 1834 + - uid: 1832 components: - type: Transform pos: 0.5,71.5 parent: 2 - - uid: 1835 + - uid: 1833 components: - type: Transform pos: 1.5,72.5 parent: 2 - - uid: 1836 + - uid: 1834 components: - type: Transform pos: 1.5,71.5 parent: 2 - - uid: 1837 + - uid: 1835 components: - type: Transform pos: 2.5,72.5 parent: 2 - - uid: 1838 + - uid: 1836 components: - type: Transform pos: 2.5,71.5 parent: 2 - - uid: 1839 + - uid: 1837 components: - type: Transform pos: 3.5,72.5 parent: 2 - - uid: 1840 + - uid: 1838 components: - type: Transform pos: 3.5,71.5 parent: 2 - - uid: 1841 + - uid: 1839 components: - type: Transform pos: -0.5,73.5 parent: 2 - - uid: 1842 + - uid: 1840 components: - type: Transform pos: 0.5,73.5 parent: 2 - - uid: 1843 + - uid: 1841 components: - type: Transform pos: 1.5,73.5 parent: 2 - - uid: 1844 + - uid: 1842 components: - type: Transform pos: 2.5,73.5 parent: 2 - - uid: 1845 + - uid: 1843 components: - type: Transform pos: 4.5,71.5 parent: 2 - - uid: 1846 + - uid: 1844 components: - type: Transform pos: 4.5,70.5 parent: 2 - - uid: 1847 + - uid: 1845 components: - type: Transform pos: 4.5,69.5 parent: 2 - - uid: 1848 + - uid: 1846 components: - type: Transform pos: 4.5,68.5 parent: 2 - - uid: 1849 + - uid: 1847 components: - type: Transform pos: 4.5,67.5 parent: 2 - - uid: 1850 + - uid: 1848 components: - type: Transform pos: 2.5,70.5 parent: 2 - - uid: 1851 + - uid: 1849 components: - type: Transform pos: 2.5,69.5 parent: 2 - - uid: 1852 + - uid: 1850 components: - type: Transform pos: 2.5,68.5 parent: 2 - - uid: 1853 + - uid: 1851 components: - type: Transform pos: 2.5,67.5 parent: 2 - - uid: 1854 + - uid: 1852 components: - type: Transform pos: 2.5,66.5 parent: 2 - - uid: 1855 + - uid: 1853 components: - type: Transform pos: 3.5,70.5 parent: 2 - - uid: 1856 + - uid: 1854 components: - type: Transform pos: 3.5,69.5 parent: 2 - - uid: 1857 + - uid: 1855 components: - type: Transform pos: 3.5,68.5 parent: 2 - - uid: 1858 + - uid: 1856 components: - type: Transform pos: 3.5,67.5 parent: 2 - - uid: 1859 + - uid: 1857 components: - type: Transform pos: 3.5,66.5 parent: 2 - - uid: 1860 + - uid: 1858 components: - type: Transform pos: 0.5,70.5 parent: 2 - - uid: 1861 + - uid: 1859 components: - type: Transform pos: 0.5,69.5 parent: 2 - - uid: 1862 + - uid: 1860 components: - type: Transform pos: 0.5,68.5 parent: 2 - - uid: 1863 + - uid: 1861 components: - type: Transform pos: 0.5,67.5 parent: 2 - - uid: 1864 + - uid: 1862 components: - type: Transform pos: 0.5,66.5 parent: 2 - - uid: 1865 + - uid: 1863 components: - type: Transform pos: 0.5,65.5 parent: 2 - - uid: 1866 + - uid: 1864 components: - type: Transform pos: 1.5,70.5 parent: 2 - - uid: 1867 + - uid: 1865 components: - type: Transform pos: 1.5,69.5 parent: 2 - - uid: 1868 + - uid: 1866 components: - type: Transform pos: 1.5,68.5 parent: 2 - - uid: 1869 + - uid: 1867 components: - type: Transform pos: 1.5,67.5 parent: 2 - - uid: 1870 + - uid: 1868 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 1871 + - uid: 1869 components: - type: Transform pos: 1.5,65.5 parent: 2 - - uid: 1872 + - uid: 1870 components: - type: Transform pos: -1.5,70.5 parent: 2 - - uid: 1873 + - uid: 1871 components: - type: Transform pos: -1.5,69.5 parent: 2 - - uid: 1874 + - uid: 1872 components: - type: Transform pos: -1.5,68.5 parent: 2 - - uid: 1875 + - uid: 1873 components: - type: Transform pos: -1.5,67.5 parent: 2 - - uid: 1876 + - uid: 1874 components: - type: Transform pos: -1.5,66.5 parent: 2 - - uid: 1877 + - uid: 1875 components: - type: Transform pos: -1.5,65.5 parent: 2 - - uid: 1878 + - uid: 1876 components: - type: Transform pos: -0.5,70.5 parent: 2 - - uid: 1879 + - uid: 1877 components: - type: Transform pos: -0.5,69.5 parent: 2 - - uid: 1880 + - uid: 1878 components: - type: Transform pos: -0.5,68.5 parent: 2 - - uid: 1881 + - uid: 1879 components: - type: Transform pos: -0.5,67.5 parent: 2 - - uid: 1882 + - uid: 1880 components: - type: Transform pos: -0.5,66.5 parent: 2 - - uid: 1883 + - uid: 1881 components: - type: Transform pos: -0.5,65.5 parent: 2 - - uid: 1884 + - uid: 1882 components: - type: Transform pos: -2.5,65.5 parent: 2 - - uid: 1885 + - uid: 1883 components: - type: Transform pos: -3.5,65.5 parent: 2 - - uid: 1886 + - uid: 1884 components: - type: Transform pos: -4.5,65.5 parent: 2 - - uid: 1887 + - uid: 1885 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - uid: 1888 + - uid: 1886 components: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 1889 + - uid: 1887 components: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 1890 + - uid: 1888 components: - type: Transform pos: 54.5,-48.5 parent: 2 - - uid: 1891 + - uid: 1889 components: - type: Transform pos: 55.5,-47.5 parent: 2 - - uid: 1892 + - uid: 1890 components: - type: Transform pos: 55.5,-48.5 parent: 2 - - uid: 1893 + - uid: 1891 components: - type: Transform pos: 56.5,-47.5 parent: 2 - - uid: 1894 + - uid: 1892 components: - type: Transform pos: 56.5,-48.5 parent: 2 - - uid: 1895 + - uid: 1893 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 1896 + - uid: 1894 components: - type: Transform pos: 57.5,-48.5 parent: 2 - - uid: 1897 + - uid: 1895 components: - type: Transform pos: 54.5,-49.5 parent: 2 - - uid: 1898 + - uid: 1896 components: - type: Transform pos: 55.5,-49.5 parent: 2 - - uid: 1899 + - uid: 1897 components: - type: Transform pos: 56.5,-49.5 parent: 2 - - uid: 1900 + - uid: 1898 components: - type: Transform pos: 57.5,-49.5 parent: 2 - proto: AtmosFixNitrogenMarker entities: - - uid: 1901 + - uid: 1899 components: - type: Transform pos: -48.5,-54.5 parent: 2 - - uid: 1902 + - uid: 1900 components: - type: Transform pos: -49.5,-54.5 parent: 2 - - uid: 1903 + - uid: 1901 components: - type: Transform pos: -50.5,-54.5 parent: 2 - proto: AtmosFixOxygenMarker entities: - - uid: 1904 + - uid: 1902 components: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 1905 + - uid: 1903 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - uid: 1906 + - uid: 1904 components: - type: Transform pos: -50.5,-52.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 1907 + - uid: 1905 components: - type: Transform pos: -48.5,-46.5 parent: 2 - - uid: 1908 + - uid: 1906 components: - type: Transform pos: -49.5,-46.5 parent: 2 - - uid: 1909 + - uid: 1907 components: - type: Transform pos: -50.5,-46.5 parent: 2 - proto: Autolathe entities: - - uid: 1910 + - uid: 1908 components: - type: Transform pos: 40.5,-35.5 @@ -22042,299 +22124,304 @@ entities: - Wood - Glass - Cloth - - uid: 1911 + - uid: 1909 components: - type: Transform pos: -34.5,19.5 parent: 2 - - uid: 1912 + - uid: 1910 components: - type: Transform pos: -37.5,-9.5 parent: 2 - proto: AutolatheMachineCircuitboard entities: - - uid: 1913 + - uid: 1911 components: - type: Transform pos: -37.452168,-18.414932 parent: 2 - proto: BananaPhoneInstrument entities: - - uid: 1914 + - uid: 1912 components: - type: Transform pos: -19.559175,37.640453 parent: 2 - proto: BananaSeeds entities: - - uid: 1915 + - uid: 1913 components: - type: Transform pos: 2.4199185,-21.169794 parent: 2 - proto: BananiumOre1 entities: - - uid: 1916 + - uid: 1914 components: - type: Transform pos: -44.56904,61.76841 parent: 2 - - uid: 1917 + - uid: 1915 components: - type: Transform pos: -45.38154,60.565285 parent: 2 - - uid: 1918 + - uid: 1916 components: - type: Transform pos: -44.647163,61.39341 parent: 2 - proto: BannerCargo entities: - - uid: 1919 + - uid: 1917 components: - type: Transform pos: -25.5,24.5 parent: 2 - - uid: 1920 + - uid: 1918 components: - type: Transform pos: -25.5,17.5 parent: 2 - proto: BannerEngineering entities: - - uid: 1921 + - uid: 1919 components: - type: Transform pos: -25.5,-8.5 parent: 2 - - uid: 1922 + - uid: 1920 components: - type: Transform pos: -23.5,-17.5 parent: 2 - proto: BannerMedical entities: - - uid: 1923 + - uid: 1921 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 1924 + - uid: 1922 components: - type: Transform pos: -10.5,-43.5 parent: 2 - proto: BannerNanotrasen entities: - - uid: 1925 + - uid: 1923 components: - type: Transform pos: 28.5,-16.5 parent: 2 - - uid: 1926 + - uid: 1924 components: - type: Transform pos: 22.5,-16.5 parent: 2 - proto: BannerRevolution entities: - - uid: 1927 + - uid: 1925 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 1928 + - uid: 1926 components: - type: Transform pos: -47.5,-72.5 parent: 2 - - uid: 1929 + - uid: 1927 components: - type: Transform pos: -36.5,-72.5 parent: 2 - - uid: 1930 + - uid: 1928 components: - type: Transform pos: -46.5,-84.5 parent: 2 - - uid: 1931 + - uid: 1929 components: - type: Transform pos: -37.5,-84.5 parent: 2 - - uid: 1932 + - uid: 1930 components: - type: Transform pos: 62.5,-69.5 parent: 2 - - uid: 1933 + - uid: 1931 components: - type: Transform pos: 60.5,-69.5 parent: 2 - - uid: 1934 + - uid: 1932 components: - type: Transform pos: 55.5,57.5 parent: 2 - - uid: 1935 + - uid: 1933 components: - type: Transform pos: 53.5,57.5 parent: 2 - proto: BannerScience entities: - - uid: 1936 + - uid: 1934 components: - type: Transform pos: 48.5,-40.5 parent: 2 - - uid: 1937 + - uid: 1935 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 1938 + - uid: 1936 components: - type: Transform pos: 59.5,-49.5 parent: 2 - - uid: 1939 + - uid: 1937 components: - type: Transform pos: 65.5,-49.5 parent: 2 - proto: BannerSecurity entities: - - uid: 1940 + - uid: 1938 components: - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 1941 + - uid: 1939 components: - type: Transform pos: 27.5,8.5 parent: 2 - - uid: 1942 + - uid: 1940 components: - type: Transform pos: 23.5,8.5 parent: 2 - proto: BarberScissors entities: - - uid: 1943 + - uid: 1941 components: - type: Transform pos: 12.468836,-36.35414 parent: 2 - proto: Barricade entities: - - uid: 1944 + - uid: 1942 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-64.5 parent: 2 - - uid: 1945 + - uid: 1943 components: - type: Transform pos: -3.5,-75.5 parent: 2 - - uid: 1946 + - uid: 1944 components: - type: Transform pos: 42.5,-9.5 parent: 2 - - uid: 1947 + - uid: 1945 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 1948 + - uid: 1946 components: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 1949 + - uid: 1947 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 - - uid: 1950 + - uid: 1948 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-66.5 parent: 2 - - uid: 1951 + - uid: 1949 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-66.5 parent: 2 - - uid: 1952 + - uid: 1950 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-67.5 parent: 2 - - uid: 1953 + - uid: 1951 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-49.5 parent: 2 - - uid: 1954 + - uid: 1952 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-61.5 parent: 2 - - uid: 1955 + - uid: 1953 components: - type: Transform pos: 67.5,-63.5 parent: 2 - - uid: 1956 + - uid: 1954 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 1957 + - uid: 1955 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,53.5 parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 - proto: BarricadeBlock entities: - - uid: 1958 + - uid: 1957 components: - type: Transform pos: -39.5,-95.5 parent: 2 - - uid: 1959 + - uid: 1958 components: - type: Transform pos: -42.5,-86.5 parent: 2 - - uid: 1960 + - uid: 1959 components: - type: Transform pos: -42.5,-28.5 parent: 2 - - uid: 1961 + - uid: 1960 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,35.5 parent: 2 - - uid: 1962 + - uid: 1961 components: - type: Transform rot: -1.5707963267948966 rad @@ -22342,63 +22429,57 @@ entities: parent: 2 - proto: BarricadeDirectional entities: - - uid: 1963 + - uid: 1962 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-96.5 parent: 2 - - uid: 1964 + - uid: 1963 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-77.5 parent: 2 - - uid: 1965 + - uid: 1964 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-78.5 parent: 2 - - uid: 1966 + - uid: 1965 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-68.5 parent: 2 - - uid: 1967 + - uid: 1966 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-65.5 parent: 2 - - uid: 1968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-84.5 - parent: 2 - - uid: 1969 + - uid: 1967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-85.5 + rot: 1.5707963267948966 rad + pos: -15.5,-85.5 parent: 2 - - uid: 1970 + - uid: 1968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-81.5 + rot: 1.5707963267948966 rad + pos: -5.5,-84.5 parent: 2 - - uid: 1971 + - uid: 1969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-82.5 + rot: 3.141592653589793 rad + pos: -11.5,-84.5 parent: 2 - proto: BarSign entities: - - uid: 1972 + - uid: 1970 components: - type: MetaData desc: Recently relicensed after a long closure. @@ -22408,7 +22489,7 @@ entities: parent: 2 - type: BarSign current: EmergencyRumParty - - uid: 1973 + - uid: 1971 components: - type: MetaData desc: A very controversial bar known for its wide variety of constantly-changing drinks. @@ -22418,285 +22499,270 @@ entities: parent: 2 - type: BarSign current: TheCoderbus - - uid: 1974 + - uid: 1972 components: - type: Transform pos: 33.5,48.5 parent: 2 - proto: BaseGasCondenser entities: - - uid: 1975 + - uid: 1973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-45.5 + pos: -49.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 1976 + - uid: 1974 components: - type: Transform - pos: -49.5,-34.5 + pos: -49.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 1977 + - uid: 1975 components: - type: Transform - pos: -49.5,-35.5 + pos: 10.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Basketball entities: - - uid: 1978 + - uid: 1976 components: - type: Transform pos: 59.373314,-2.3464775 parent: 2 - - uid: 1979 + - uid: 1977 components: - type: Transform pos: -49.590145,-63.44321 parent: 2 - proto: Beaker entities: - - uid: 1980 + - uid: 1978 components: - type: Transform pos: -25.200409,-78.7421 parent: 2 - - uid: 1981 + - uid: 1979 components: - type: Transform pos: 54.768433,18.769468 parent: 2 - - uid: 1982 + - uid: 1980 components: - type: Transform pos: 54.659058,18.535093 parent: 2 - - uid: 1983 + - uid: 1981 components: - type: Transform pos: 51.539406,-40.488155 parent: 2 - proto: Bed entities: - - uid: 1984 + - uid: 1982 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 1985 + - uid: 1983 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 1986 + - uid: 1984 components: - type: Transform pos: 8.5,22.5 parent: 2 - - uid: 1987 + - uid: 1985 components: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 1988 + - uid: 1986 components: - type: Transform pos: 32.5,10.5 parent: 2 - - uid: 1989 + - uid: 1987 components: - type: Transform pos: 35.5,10.5 parent: 2 - - uid: 1990 + - uid: 1988 components: - type: Transform pos: -26.5,43.5 parent: 2 - - uid: 1991 + - uid: 1989 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 1992 + - uid: 1990 components: - type: Transform pos: 55.5,24.5 parent: 2 - - uid: 1993 + - uid: 1991 components: - type: Transform pos: 52.5,24.5 parent: 2 - - uid: 1994 + - uid: 1992 components: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 1995 + - uid: 1993 components: - type: Transform pos: 46.5,24.5 parent: 2 - - uid: 1996 + - uid: 1994 components: - type: Transform pos: 58.5,24.5 parent: 2 - - uid: 1997 + - uid: 1995 components: - type: Transform pos: 62.5,19.5 parent: 2 - - uid: 1998 + - uid: 1996 components: - type: Transform pos: 62.5,16.5 parent: 2 - - uid: 1999 + - uid: 1997 components: - type: Transform pos: 62.5,-55.5 parent: 2 - - uid: 2000 + - uid: 1998 components: - type: Transform pos: -30.5,31.5 parent: 2 - - uid: 2001 + - uid: 1999 components: - type: Transform pos: 32.5,-29.5 parent: 2 - - uid: 2002 + - uid: 2000 components: - type: Transform pos: -29.5,14.5 parent: 2 - - uid: 2003 + - uid: 2001 components: - type: Transform pos: -42.5,9.5 parent: 2 - - uid: 2004 + - uid: 2002 components: - type: Transform pos: -51.5,6.5 parent: 2 - - uid: 2005 + - uid: 2003 components: - type: Transform pos: -52.5,15.5 parent: 2 - - uid: 2006 + - uid: 2004 components: - type: Transform pos: -23.5,31.5 parent: 2 - - uid: 2007 + - uid: 2005 components: - type: Transform pos: -19.5,33.5 parent: 2 - - uid: 2008 + - uid: 2006 components: - type: Transform pos: -10.5,31.5 parent: 2 - - uid: 2009 + - uid: 2007 components: - type: Transform pos: -19.5,38.5 parent: 2 - - uid: 2010 + - uid: 2008 components: - type: Transform pos: 48.5,-11.5 parent: 2 - - uid: 2011 + - uid: 2009 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 2012 + - uid: 2010 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 2013 + - uid: 2011 components: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 2014 + - uid: 2012 components: - type: Transform pos: -52.5,-88.5 parent: 2 - - uid: 2015 + - uid: 2013 components: - type: Transform pos: -36.5,-20.5 parent: 2 - - uid: 10480 + - uid: 2014 components: - type: Transform - pos: 23.5,-35.5 + pos: 3.5,-65.5 parent: 2 - proto: BedsheetBlack entities: - - uid: 2016 + - uid: 2015 components: - type: Transform pos: -42.5,9.5 parent: 2 -- proto: BedsheetBrigmedic - entities: - - uid: 21624 - components: - - type: Transform - pos: 44.5,5.5 - parent: 2 - proto: BedsheetCaptain entities: - - uid: 2017 + - uid: 2016 components: - type: Transform pos: 32.5,-29.5 parent: 2 - proto: BedsheetCE entities: - - uid: 2018 + - uid: 2017 components: - type: Transform pos: -36.5,-20.5 parent: 2 -- proto: BedsheetCentcom +- proto: BedsheetClown entities: - - uid: 10481 + - uid: 2018 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-35.5 + pos: -19.5,38.5 parent: 2 -- proto: BedsheetClown - entities: - uid: 2019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,38.5 + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 parent: 2 +- proto: BedsheetCMO + entities: - uid: 2020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 + pos: -17.5,-51.5 parent: 2 - proto: BedsheetCult entities: @@ -22771,304 +22837,305 @@ entities: - uid: 2032 components: - type: Transform - pos: -21.5,-54.5 + pos: 44.5,4.5 parent: 2 - uid: 2033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-57.5 + pos: 44.5,5.5 parent: 2 +- proto: BedsheetMime + entities: - uid: 2034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 + pos: -26.5,43.5 parent: 2 - uid: 2035 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-57.5 + pos: -1.5,-19.5 parent: 2 +- proto: BedsheetOrange + entities: - uid: 2036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-57.5 + pos: 58.5,24.5 parent: 2 - uid: 2037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-57.5 + pos: 55.5,24.5 parent: 2 - uid: 2038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-56.5 + pos: 52.5,24.5 parent: 2 - uid: 2039 components: - type: Transform - pos: 44.5,4.5 + pos: 49.5,24.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: 46.5,24.5 parent: 2 -- proto: BedsheetMime - entities: - uid: 2041 components: - type: Transform - pos: -26.5,43.5 + pos: 62.5,19.5 parent: 2 - uid: 2042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 + pos: 62.5,16.5 parent: 2 -- proto: BedsheetOrange +- proto: BedsheetQM entities: - uid: 2043 components: - type: Transform - pos: 58.5,24.5 + rot: 3.141592653589793 rad + pos: -30.5,31.5 parent: 2 +- proto: BedsheetRD + entities: - uid: 2044 components: - type: Transform - pos: 55.5,24.5 + pos: 62.5,-55.5 parent: 2 +- proto: BedsheetSpawner + entities: - uid: 2045 components: - type: Transform - pos: 52.5,24.5 + pos: -10.5,31.5 parent: 2 - uid: 2046 components: - type: Transform - pos: 49.5,24.5 + pos: -19.5,33.5 parent: 2 +- proto: BedsheetSyndie + entities: - uid: 2047 components: - type: Transform - pos: 46.5,24.5 + rot: 3.141592653589793 rad + pos: -52.5,-88.5 parent: 2 +- proto: BedsheetUSA + entities: - uid: 2048 components: - type: Transform - pos: 62.5,19.5 + pos: -23.5,31.5 parent: 2 +- proto: BenchBlueComfy + entities: - uid: 2049 components: - type: Transform - pos: 62.5,16.5 + pos: -5.5,-45.5 parent: 2 -- proto: BedsheetQM - entities: - uid: 2050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,31.5 + pos: -4.5,-45.5 parent: 2 -- proto: BedsheetRD - entities: - uid: 2051 components: - type: Transform - pos: 62.5,-55.5 + pos: -3.5,-45.5 parent: 2 -- proto: BedsheetSpawner +- proto: BenchRedComfy entities: - uid: 2052 components: - type: Transform - pos: -10.5,31.5 + rot: 3.141592653589793 rad + pos: 21.5,16.5 parent: 2 - uid: 2053 components: - type: Transform - pos: -19.5,33.5 + rot: 3.141592653589793 rad + pos: 22.5,16.5 parent: 2 -- proto: BedsheetSyndie - entities: - uid: 2054 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-88.5 - parent: 2 -- proto: BedsheetUSA - entities: - - uid: 2055 - components: - - type: Transform - pos: -23.5,31.5 + pos: 23.5,16.5 parent: 2 - proto: Bible entities: - - uid: 2056 + - uid: 2055 components: - type: Transform pos: -30.453314,15.631503 parent: 2 - proto: BigBox entities: - - uid: 2057 + - uid: 2056 components: - type: Transform pos: 58.475555,34.501217 parent: 2 - proto: BikeHorn entities: - - uid: 2058 + - uid: 2057 components: - type: Transform pos: -22.127623,37.564125 parent: 2 - proto: BikeHornInstrument entities: - - uid: 2059 + - uid: 2058 components: - type: Transform pos: 2.4660668,-20.657997 parent: 2 - proto: BlastDoor entities: - - uid: 2060 + - uid: 2059 components: - type: Transform pos: -78.5,-41.5 parent: 2 - type: DeviceLinkSink links: - - 24341 - - uid: 2061 + - 24444 + - uid: 2060 components: - type: Transform pos: -78.5,-40.5 parent: 2 - type: DeviceLinkSink links: - - 24341 - - uid: 2062 + - 24444 + - uid: 2061 components: - type: Transform pos: -78.5,-42.5 parent: 2 - type: DeviceLinkSink links: - - 24341 - - uid: 2063 + - 24444 + - uid: 2062 components: - type: Transform pos: -74.5,-46.5 parent: 2 - type: DeviceLinkSink links: - - 24340 - - uid: 2064 + - 24443 + - uid: 2063 components: - type: Transform pos: -74.5,-44.5 parent: 2 - type: DeviceLinkSink links: - - 24340 - - uid: 2065 + - 24443 + - uid: 2064 components: - type: Transform pos: -74.5,-45.5 parent: 2 - type: DeviceLinkSink links: - - 24340 + - 24443 - proto: BlastDoorBridge entities: - - uid: 2066 + - uid: 2065 components: - type: Transform pos: 10.5,47.5 parent: 2 - type: DeviceLinkSink links: - - 24321 - - uid: 2067 + - 24425 + - uid: 2066 components: - type: Transform pos: 10.5,49.5 parent: 2 - type: DeviceLinkSink links: - - 24321 - - uid: 2068 + - 24425 + - uid: 2067 components: - type: Transform pos: 10.5,48.5 parent: 2 - type: DeviceLinkSink links: - - 24321 + - 24425 - proto: BlastDoorExterior1 entities: - - uid: 2069 + - uid: 2068 components: - type: Transform pos: 18.5,-56.5 parent: 2 - type: DeviceLinkSink links: - - 24297 - - uid: 2070 + - 24401 + - uid: 2069 components: - type: Transform pos: 47.5,-51.5 parent: 2 - type: DeviceLinkSink links: - - 24293 - - uid: 2071 + - 24397 + - uid: 2070 components: - type: Transform pos: 47.5,-52.5 parent: 2 - type: DeviceLinkSink links: - - 24293 - - uid: 2072 + - 24397 + - uid: 2071 components: - type: Transform pos: 47.5,-53.5 parent: 2 - type: DeviceLinkSink links: - - 24293 - - uid: 2073 + - 24397 + - uid: 2072 components: - type: Transform pos: 47.5,-54.5 parent: 2 - type: DeviceLinkSink links: - - 24293 - - uid: 2074 + - 24397 + - uid: 2073 components: - type: Transform pos: 52.5,-58.5 parent: 2 - type: DeviceLinkSink links: - - 24294 - - uid: 2075 + - 24398 + - uid: 2074 components: - type: Transform pos: 50.5,-62.5 parent: 2 - type: DeviceLinkSink links: - - 24327 - - uid: 2076 + - 24431 + - uid: 2075 components: - type: Transform rot: 1.5707963267948966 rad @@ -23076,8 +23143,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24296 - - uid: 2077 + - 24400 + - uid: 2076 components: - type: Transform rot: 1.5707963267948966 rad @@ -23085,16 +23152,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24296 - - uid: 2078 + - 24400 + - uid: 2077 components: - type: Transform pos: -45.5,-34.5 parent: 2 - type: DeviceLinkSink links: - - 24342 - - uid: 2079 + - 24445 + - uid: 2078 components: - type: Transform rot: -1.5707963267948966 rad @@ -23102,8 +23169,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24300 - - uid: 2080 + - 24404 + - uid: 2079 components: - type: Transform rot: -1.5707963267948966 rad @@ -23111,8 +23178,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24300 - - uid: 2081 + - 24404 + - uid: 2080 components: - type: Transform rot: -1.5707963267948966 rad @@ -23120,8 +23187,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24300 - - uid: 2082 + - 24404 + - uid: 2081 components: - type: Transform rot: -1.5707963267948966 rad @@ -23129,282 +23196,282 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24300 - - uid: 2083 + - 24404 + - uid: 2082 components: - type: Transform pos: -49.5,19.5 parent: 2 - type: DeviceLinkSink links: - - 24302 - - uid: 2084 + - 24406 + - uid: 2083 components: - type: Transform pos: -49.5,23.5 parent: 2 - type: DeviceLinkSink links: - - 24302 - - uid: 2085 + - 24406 + - uid: 2084 components: - type: Transform pos: 51.5,44.5 parent: 2 - type: DeviceLinkSink links: - - 24310 - - 24312 - - 24317 - - uid: 2086 + - 24414 + - 24416 + - 24421 + - uid: 2085 components: - type: Transform pos: 54.5,45.5 parent: 2 - type: DeviceLinkSink links: - - 24308 - - 24310 - - uid: 2087 + - 24412 + - 24414 + - uid: 2086 components: - type: Transform pos: -52.5,34.5 parent: 2 - type: DeviceLinkSink links: - - 24332 - - uid: 2088 + - 24435 + - uid: 2087 components: - type: Transform pos: -52.5,30.5 parent: 2 - type: DeviceLinkSink links: - - 24295 - - uid: 2089 + - 24399 + - uid: 2088 components: - type: Transform pos: -53.5,23.5 parent: 2 - type: DeviceLinkSink links: - - 24301 - - uid: 2090 + - 24405 + - uid: 2089 components: - type: Transform pos: -53.5,19.5 parent: 2 - type: DeviceLinkSink links: - - 24301 - - uid: 2091 + - 24405 + - uid: 2090 components: - type: Transform pos: 53.5,46.5 parent: 2 - type: DeviceLinkSink links: - - 24304 - - 24313 - - 24320 - - uid: 2092 + - 24408 + - 24417 + - 24424 + - uid: 2091 components: - type: Transform pos: 55.5,46.5 parent: 2 - type: DeviceLinkSink links: - - 24308 - - 24311 - - uid: 2093 + - 24412 + - 24415 + - uid: 2092 components: - type: Transform pos: 50.5,47.5 parent: 2 - type: DeviceLinkSink links: - - 24306 - - uid: 2094 + - 24410 + - uid: 2093 components: - type: Transform pos: 57.5,44.5 parent: 2 - type: DeviceLinkSink links: - - 24312 - - uid: 2095 + - 24416 + - uid: 2094 components: - type: Transform pos: 56.5,47.5 parent: 2 - type: DeviceLinkSink links: - - 24303 - - uid: 2096 + - 24407 + - uid: 2095 components: - type: Transform pos: 51.5,48.5 parent: 2 - - uid: 2097 + - uid: 2096 components: - type: Transform pos: 53.5,48.5 parent: 2 - type: DeviceLinkSink links: - - 24303 - - 24318 - - 24320 - - uid: 2098 + - 24407 + - 24422 + - 24424 + - uid: 2097 components: - type: Transform pos: 55.5,48.5 parent: 2 - type: DeviceLinkSink links: - - 24318 - - uid: 2099 + - 24422 + - uid: 2098 components: - type: Transform pos: 58.5,47.5 parent: 2 - type: DeviceLinkSink links: - - 24304 - - uid: 2100 + - 24408 + - uid: 2099 components: - type: Transform pos: 52.5,45.5 parent: 2 - type: DeviceLinkSink links: - - 24307 - - 24316 - - uid: 2101 + - 24411 + - 24420 + - uid: 2100 components: - type: Transform pos: 53.5,44.5 parent: 2 - type: DeviceLinkSink links: - - 24314 - - 24320 - - uid: 2102 + - 24418 + - 24424 + - uid: 2101 components: - type: Transform pos: 55.5,44.5 parent: 2 - type: DeviceLinkSink links: - - 24314 - - 24317 - - uid: 2103 + - 24418 + - 24421 + - uid: 2102 components: - type: Transform pos: 58.5,45.5 parent: 2 - type: DeviceLinkSink links: - - 24315 - - uid: 2104 + - 24419 + - uid: 2103 components: - type: Transform pos: 57.5,46.5 parent: 2 - type: DeviceLinkSink links: - - 24307 - - 24309 - - 24318 - - uid: 2105 + - 24411 + - 24413 + - 24422 + - uid: 2104 components: - type: Transform pos: 57.5,48.5 parent: 2 - - uid: 2106 + - uid: 2105 components: - type: Transform pos: 54.5,47.5 parent: 2 - type: DeviceLinkSink links: - - 24311 - - uid: 2107 + - 24415 + - uid: 2106 components: - type: Transform pos: 52.5,47.5 parent: 2 - type: DeviceLinkSink links: - - 24313 - - uid: 2108 + - 24417 + - uid: 2107 components: - type: Transform pos: 51.5,46.5 parent: 2 - type: DeviceLinkSink links: - - 24317 - - 24318 - - uid: 2109 + - 24421 + - 24422 + - uid: 2108 components: - type: Transform pos: 56.5,45.5 parent: 2 - type: DeviceLinkSink links: - - 24309 - - 24315 - - uid: 2110 + - 24413 + - 24419 + - uid: 2109 components: - type: Transform pos: 50.5,45.5 parent: 2 - type: DeviceLinkSink links: - - 24306 - - 24316 - - uid: 2111 + - 24410 + - 24420 + - uid: 2110 components: - type: Transform pos: -18.5,-96.5 parent: 2 - type: DeviceLinkSink links: - - 24323 - - uid: 2112 + - 24427 + - uid: 2111 components: - type: Transform pos: -18.5,-98.5 parent: 2 - type: DeviceLinkSink links: - - 24323 - - uid: 2113 + - 24427 + - uid: 2112 components: - type: Transform pos: -26.5,-96.5 parent: 2 - type: DeviceLinkSink links: - - 24324 - - uid: 2114 + - 24428 + - uid: 2113 components: - type: Transform pos: -26.5,-98.5 parent: 2 - type: DeviceLinkSink links: - - 24324 - - uid: 2115 + - 24428 + - uid: 2114 components: - type: Transform pos: 67.5,-39.5 parent: 2 - type: DeviceLinkSink links: - - 24292 - - uid: 2116 + - 24396 + - uid: 2115 components: - type: Transform rot: 3.141592653589793 rad @@ -23412,18 +23479,18 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24328 - - uid: 2117 + - 24432 + - uid: 2116 components: - type: Transform pos: -45.5,-35.5 parent: 2 - type: DeviceLinkSink links: - - 24342 + - 24445 - proto: BlastDoorExterior1Open entities: - - uid: 2118 + - uid: 2117 components: - type: Transform rot: -1.5707963267948966 rad @@ -23431,8 +23498,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2119 + - 24426 + - uid: 2118 components: - type: Transform rot: -1.5707963267948966 rad @@ -23440,8 +23507,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2120 + - 24426 + - uid: 2119 components: - type: Transform rot: -1.5707963267948966 rad @@ -23449,8 +23516,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2121 + - 24426 + - uid: 2120 components: - type: Transform rot: -1.5707963267948966 rad @@ -23458,8 +23525,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2122 + - 24426 + - uid: 2121 components: - type: Transform rot: -1.5707963267948966 rad @@ -23467,8 +23534,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2123 + - 24426 + - uid: 2122 components: - type: Transform rot: -1.5707963267948966 rad @@ -23476,8 +23543,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2124 + - 24426 + - uid: 2123 components: - type: Transform rot: -1.5707963267948966 rad @@ -23485,8 +23552,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2125 + - 24426 + - uid: 2124 components: - type: Transform rot: -1.5707963267948966 rad @@ -23494,8 +23561,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2126 + - 24426 + - uid: 2125 components: - type: Transform rot: -1.5707963267948966 rad @@ -23503,8 +23570,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2127 + - 24426 + - uid: 2126 components: - type: Transform rot: -1.5707963267948966 rad @@ -23512,132 +23579,122 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24322 - - uid: 2128 + - 24426 + - uid: 2127 components: - type: Transform pos: -8.5,-91.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2129 + - 24429 + - 24430 + - uid: 2128 components: - type: Transform pos: -8.5,-92.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2130 + - 24429 + - 24430 + - uid: 2129 components: - type: Transform pos: -8.5,-93.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2131 + - 24429 + - 24430 + - uid: 2130 components: - type: Transform pos: -6.5,-91.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2132 + - 24429 + - 24430 + - uid: 2131 components: - type: Transform pos: -6.5,-90.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2133 + - 24429 + - 24430 + - uid: 2132 components: - type: Transform pos: -6.5,-92.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2134 + - 24429 + - 24430 + - uid: 2133 components: - type: Transform pos: -6.5,-93.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 - - uid: 2135 + - 24429 + - 24430 + - uid: 2134 components: - type: Transform pos: -8.5,-90.5 parent: 2 - type: DeviceLinkSink links: - - 24325 - - 24326 -- proto: BlastDoorExterior2 - entities: - - uid: 2136 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24289 + - 24429 + - 24430 - proto: BlastDoorOpen entities: - - uid: 2137 + - uid: 2135 components: - type: Transform pos: -56.5,-11.5 parent: 2 - type: DeviceLinkSink links: - - 24299 - - uid: 2138 + - 24403 + - uid: 2136 components: - type: Transform pos: -56.5,-12.5 parent: 2 - type: DeviceLinkSink links: - - 24299 - - uid: 2139 + - 24403 + - uid: 2137 components: - type: Transform pos: -56.5,-13.5 parent: 2 - type: DeviceLinkSink links: - - 24299 - - uid: 2140 + - 24403 + - uid: 2138 components: - type: Transform pos: -56.5,-14.5 parent: 2 - type: DeviceLinkSink links: - - 24299 - - uid: 2141 + - 24403 + - uid: 2139 components: - type: Transform pos: -56.5,-15.5 parent: 2 - type: DeviceLinkSink links: - - 24299 - - uid: 2142 + - 24403 + - uid: 2140 components: - type: Transform rot: -1.5707963267948966 rad @@ -23645,8 +23702,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24298 - - uid: 2143 + - 24402 + - uid: 2141 components: - type: Transform rot: -1.5707963267948966 rad @@ -23654,8 +23711,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24298 - - uid: 2144 + - 24402 + - uid: 2142 components: - type: Transform rot: -1.5707963267948966 rad @@ -23663,8 +23720,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24298 - - uid: 2145 + - 24402 + - uid: 2143 components: - type: Transform rot: -1.5707963267948966 rad @@ -23672,8 +23729,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24298 - - uid: 2146 + - 24402 + - uid: 2144 components: - type: Transform rot: -1.5707963267948966 rad @@ -23681,193 +23738,192 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24298 + - 24402 - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 2147 + - uid: 2145 components: - type: Transform pos: -25.444056,-24.257809 parent: 2 +- proto: Bloodpack + entities: + - uid: 2146 + components: + - type: Transform + pos: -4.322395,-55.097134 + parent: 2 - proto: BookAtmosAirAlarms entities: - - uid: 2148 + - uid: 2147 components: - type: Transform pos: -24.358501,-36.435444 parent: 2 - proto: BookAtmosDistro entities: - - uid: 2149 + - uid: 2148 components: - type: Transform pos: -24.608501,-36.51357 parent: 2 - proto: BookAtmosVentsMore entities: - - uid: 2150 + - uid: 2149 components: - type: Transform pos: -25.155376,-36.48232 parent: 2 - proto: BookAtmosWaste entities: - - uid: 2151 + - uid: 2150 components: - type: Transform pos: -25.389751,-36.57607 parent: 2 - proto: BookChefGaming entities: - - uid: 2152 + - uid: 2151 components: - type: Transform pos: -8.120271,14.578207 parent: 2 -- proto: BookDetective +- proto: BookRandom entities: - - uid: 2153 + - uid: 2158 components: - type: Transform - pos: 8.262031,-12.4473095 + pos: 40.523384,18.611706 parent: 2 - - uid: 2154 + - uid: 2159 components: - type: Transform - pos: 40.304634,21.43983 + pos: 38.492134,18.674206 parent: 2 -- proto: BookEscalation - entities: - - uid: 2155 + - uid: 2160 components: - type: Transform - pos: 9.419705,-6.507422 + pos: 38.429634,21.580456 parent: 2 -- proto: BookEscalationSecurity - entities: - - uid: 2156 + - uid: 2161 components: - type: Transform - pos: 15.607252,21.663286 + pos: -33.495968,-67.45002 parent: 2 -- proto: BookFishing +- proto: BookRandomStory entities: - - uid: 2157 + - uid: 2152 components: - type: Transform - pos: 40.53901,21.517956 + pos: 8.262031,-12.4473095 parent: 2 -- proto: BookGnominomicon - entities: - - uid: 2158 + - uid: 2153 components: - type: Transform - pos: 8.605781,-12.4316845 + pos: 40.304634,21.43983 parent: 2 -- proto: BookRandom - entities: - - uid: 2159 + - uid: 2154 components: - type: Transform - pos: 40.523384,18.611706 + pos: 9.419705,-6.507422 parent: 2 - - uid: 2160 + - uid: 2155 components: - type: Transform - pos: 38.492134,18.674206 + pos: 15.607252,21.663286 parent: 2 - - uid: 2161 + - uid: 2156 components: - type: Transform - pos: 38.429634,21.580456 + pos: 40.53901,21.517956 parent: 2 - - uid: 2162 + - uid: 2157 components: - type: Transform - pos: -33.495968,-67.45002 + pos: 8.605781,-12.4316845 parent: 2 - proto: Bookshelf entities: - - uid: 2163 + - uid: 2162 components: - type: Transform pos: 6.5,-9.5 parent: 2 - proto: BookshelfFilled entities: - - uid: 2164 + - uid: 2163 components: - type: Transform pos: 6.5,-10.5 parent: 2 - - uid: 2165 + - uid: 2164 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 2166 + - uid: 2165 components: - type: Transform pos: 39.5,21.5 parent: 2 - - uid: 2167 + - uid: 2166 components: - type: Transform pos: 41.5,18.5 parent: 2 - - uid: 2168 + - uid: 2167 components: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 2169 + - uid: 2168 components: - type: Transform pos: 12.5,-10.5 parent: 2 - - uid: 2170 + - uid: 2169 components: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 2171 + - uid: 2170 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 2172 + - uid: 2171 components: - type: Transform pos: 12.5,-12.5 parent: 2 - - uid: 2173 + - uid: 2172 components: - type: Transform pos: 13.5,-12.5 parent: 2 - - uid: 2174 + - uid: 2173 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 2175 + - uid: 2174 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 2176 + - uid: 2175 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 2177 + - uid: 2176 components: - type: Transform pos: 13.5,-10.5 parent: 2 - proto: BookWatched entities: - - uid: 2178 + - uid: 2177 components: - type: Transform rot: 1.5707963267948966 rad @@ -23875,95 +23931,100 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 2179 + - uid: 2178 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 - - uid: 2180 + - uid: 2179 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 2181 + - uid: 2180 components: - type: Transform pos: 38.5,51.5 parent: 2 - - uid: 2182 + - uid: 2181 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 - - uid: 2183 + - uid: 2182 components: - type: Transform pos: 39.5,63.5 parent: 2 - proto: BorgCharger entities: - - uid: 2184 + - uid: 2183 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - uid: 2185 + - uid: 2184 components: - type: Transform pos: -22.5,-6.5 parent: 2 - - uid: 2186 + - uid: 2185 components: - type: Transform pos: 2.5,59.5 parent: 2 - - uid: 2187 + - uid: 2186 components: - type: Transform pos: 49.5,-9.5 parent: 2 - - uid: 2188 + - uid: 2187 components: - type: Transform pos: 70.5,-43.5 parent: 2 - proto: BoxBeaker entities: - - uid: 2189 + - uid: 2188 components: - type: Transform pos: 9.707096,-45.50268 parent: 2 - - uid: 2190 + - uid: 2189 components: - type: Transform pos: -26.122566,-84.458 parent: 2 - - uid: 2191 + - uid: 2190 components: - type: Transform pos: 42.431667,-35.402893 parent: 2 - - uid: 2192 + - uid: 2191 components: - type: Transform - pos: 8.7782135,-62.351368 + pos: -25.588665,-61.41238 parent: 2 - proto: BoxBeanbag entities: - - uid: 2193 + - uid: 2192 components: - type: Transform pos: 22.537981,13.588842 parent: 2 - proto: BoxBodyBag entities: + - uid: 2193 + components: + - type: Transform + pos: -16.368479,-66.33691 + parent: 2 - uid: 2194 components: - type: Transform - pos: -11.506837,-67.45136 + pos: -16.571604,-66.44628 parent: 2 - proto: BoxCardboard entities: @@ -23977,16 +24038,23 @@ entities: - type: Transform pos: 57.26263,34.39815 parent: 2 -- proto: BoxFlashbang +- proto: BoxEvidenceMarkers entities: - uid: 2197 + components: + - type: Transform + pos: 22.683474,-14.373043 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 2198 components: - type: Transform pos: 24.642923,23.542374 parent: 2 - proto: BoxFolderBase entities: - - uid: 2198 + - uid: 2199 components: - type: Transform rot: 1.5707963267948966 rad @@ -23994,7 +24062,7 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 2199 + - uid: 2200 components: - type: Transform rot: 1.5707963267948966 rad @@ -24002,25 +24070,20 @@ entities: parent: 2 - proto: BoxFolderBlue entities: - - uid: 2200 + - uid: 2201 components: - type: Transform pos: 38.992214,-2.4237523 parent: 2 - - uid: 31665 - components: - - type: Transform - pos: 23.73191,-34.500366 - parent: 2 - proto: BoxFolderGrey entities: - - uid: 2201 + - uid: 2202 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.514782,-42.450638 parent: 2 - - uid: 2202 + - uid: 2203 components: - type: Transform rot: 3.141592653589793 rad @@ -24028,103 +24091,98 @@ entities: parent: 2 - proto: BoxFolderRed entities: - - uid: 2203 + - uid: 2204 components: - type: Transform pos: 20.994316,-12.4294405 parent: 2 - - uid: 2204 + - uid: 2205 components: - type: Transform pos: 39.22659,-2.4550023 parent: 2 - - uid: 31666 - components: - - type: Transform - pos: 23.497536,-34.500366 - parent: 2 - proto: BoxFolderWhite entities: - - uid: 2205 + - uid: 2206 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.629791,-70.464714 parent: 2 - - uid: 2206 + - uid: 2207 components: - type: Transform pos: -5.7449856,-48.471176 parent: 2 - - uid: 2207 + - uid: 2208 components: - type: Transform pos: -5.5262356,-48.408676 parent: 2 - proto: BoxFolderYellow entities: - - uid: 2208 + - uid: 2209 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.554714,-4.439378 parent: 2 - - uid: 2209 + - uid: 2210 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.655407,-42.653763 parent: 2 - - uid: 2210 + - uid: 2211 components: - type: Transform rot: 3.141592653589793 rad pos: -23.71936,11.498327 parent: 2 - - uid: 2211 + - uid: 2212 components: - type: Transform pos: 55.534363,-40.44579 parent: 2 - proto: BoxForensicPad entities: - - uid: 2212 + - uid: 2213 components: - type: Transform pos: 22.673187,-14.497248 parent: 2 - proto: BoxHandcuff entities: - - uid: 2213 + - uid: 2214 components: - type: Transform pos: 2.4978194,19.97727 parent: 2 - - uid: 2214 + - uid: 2215 components: - type: Transform pos: 24.439798,23.714249 parent: 2 - proto: BoxHug entities: - - uid: 2215 + - uid: 2216 components: - type: Transform pos: 21.518953,53.54002 parent: 2 - - uid: 2216 + - uid: 2217 components: - type: Transform pos: 2.5439682,-20.063549 parent: 2 - proto: BoxingBell entities: - - uid: 2217 + - uid: 2218 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 2218 + - uid: 2219 components: - type: Transform rot: 1.5707963267948966 rad @@ -24132,11 +24190,6 @@ entities: parent: 2 - proto: BoxLatexGloves entities: - - uid: 2219 - components: - - type: Transform - pos: 8.430597,-62.372696 - parent: 2 - uid: 2220 components: - type: Transform @@ -24150,53 +24203,53 @@ entities: - uid: 2222 components: - type: Transform - pos: -0.28067696,-61.388348 + pos: -23.4413,-62.28618 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: -23.66005,-62.489304 parent: 2 - proto: BoxLightbulb entities: - - uid: 2223 + - uid: 2224 components: - type: Transform pos: -39.570137,-77.31351 parent: 2 - proto: BoxLightMixed entities: - - uid: 2224 + - uid: 2225 components: - type: Transform pos: 39.546867,49.67635 parent: 2 - - uid: 2225 + - uid: 2226 components: - type: Transform pos: -23.56665,-100.24527 parent: 2 - proto: BoxLighttube entities: - - uid: 2226 + - uid: 2227 components: - type: Transform pos: -40.05791,25.682219 parent: 2 - proto: BoxMousetrap entities: - - uid: 2227 + - uid: 2228 components: - type: Transform pos: -7.3951936,-15.377466 parent: 2 - - uid: 2228 + - uid: 2229 components: - type: Transform pos: 2.2602339,11.636776 parent: 2 - proto: BoxMouthSwab entities: - - uid: 2229 - components: - - type: Transform - pos: 10.414972,-62.341446 - parent: 2 - uid: 2230 components: - type: Transform @@ -24207,158 +24260,168 @@ entities: - type: Transform pos: -22.357168,-76.22882 parent: 2 -- proto: BoxPDA - entities: - uid: 2232 components: - type: Transform - pos: 4.5991206,-7.254335 + pos: -25.676897,-62.388275 parent: 2 -- proto: BoxPillCanister - entities: - uid: 2233 components: - type: Transform - pos: -25.106941,-84.458755 + pos: -25.395647,-62.2164 parent: 2 +- proto: BoxPDA + entities: - uid: 2234 components: - type: Transform - pos: -8.487805,-33.36571 + pos: 4.5991206,-7.254335 parent: 2 +- proto: BoxPillCanister + entities: - uid: 2235 components: - type: Transform - pos: 10.629656,-62.107815 + pos: -25.106941,-84.458755 parent: 2 - uid: 2236 components: - type: Transform - pos: 9.535221,-45.143307 + pos: -8.487805,-33.36571 parent: 2 -- proto: BoxShotgunSlug - entities: - uid: 2237 components: - type: Transform - pos: 27.073633,32.655933 + pos: 9.535221,-45.143307 parent: 2 - uid: 2238 components: - type: Transform - pos: 27.052765,32.658382 + pos: -22.414755,-62.239304 parent: 2 - uid: 2239 components: - type: Transform - pos: 27.017645,32.73731 + pos: -22.727255,-62.489304 parent: 2 -- proto: BoxSterileMask +- proto: BoxShotgunSlug entities: - uid: 2240 components: - type: Transform - pos: -0.45298922,-61.30278 + pos: 27.073633,32.655933 parent: 2 - uid: 2241 components: - type: Transform - pos: -22.622793,-78.244446 + pos: 27.052765,32.658382 parent: 2 - uid: 2242 components: - type: Transform - pos: -20.619028,-78.321075 + pos: 27.017645,32.73731 parent: 2 -- proto: BoxSyringe +- proto: BoxSterileMask entities: - uid: 2243 components: - type: Transform - pos: 9.300846,-45.47143 + pos: -22.622793,-78.244446 parent: 2 - uid: 2244 components: - type: Transform - pos: 8.848293,-62.473377 + pos: -20.619028,-78.321075 parent: 2 +- proto: BoxSyringe + entities: - uid: 2245 components: - type: Transform - pos: -22.337778,-78.539825 + pos: 9.300846,-45.47143 parent: 2 - uid: 2246 components: - type: Transform - pos: -20.634653,-77.352325 + pos: -22.337778,-78.539825 parent: 2 - uid: 2247 components: - type: Transform - pos: -26.571459,-84.31156 + pos: -20.634653,-77.352325 parent: 2 - uid: 2248 + components: + - type: Transform + pos: -26.571459,-84.31156 + parent: 2 + - uid: 2249 components: - type: Transform pos: -8.384587,-32.982723 parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -24.4402,-62.377586 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -24.737076,-62.51821 + parent: 2 - proto: BoxZiptie entities: - - uid: 2249 + - uid: 2252 components: - type: Transform pos: 15.609102,22.64932 parent: 2 - proto: BrbSign entities: - - uid: 2250 + - uid: 2253 components: - type: Transform pos: -28.403494,21.398111 parent: 2 - - uid: 2251 + - uid: 2254 components: - type: Transform pos: 4.567957,-7.561912 parent: 2 - proto: BriefcaseBrown entities: - - uid: 2252 + - uid: 2255 components: - type: Transform pos: 62.36704,-10.4423 parent: 2 - - uid: 2253 + - uid: 2256 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.463455,11.6035385 parent: 2 - - uid: 2254 + - uid: 2257 components: - type: Transform pos: -43.482876,-88.91509 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 2255 + - uid: 2258 components: - type: Transform pos: 43.51077,-2.4121785 parent: 2 - - uid: 2256 + - uid: 2259 components: - type: Transform pos: 32.38076,-48.30607 parent: 2 - - uid: 31667 - components: - - type: Transform - pos: 23.57566,-34.187866 - parent: 2 - proto: BrigTimer entities: - - uid: 2257 + - uid: 2260 components: - type: MetaData name: cell 3 brig timer @@ -24368,11 +24431,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 31161: + 31286: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 2258 + - uid: 2261 components: - type: MetaData name: cell 1 brig timer @@ -24382,11 +24445,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 31153: + 31279: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 2259 + - uid: 2262 components: - type: MetaData name: cell 2 brig timer @@ -24396,11 +24459,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 31158: + 31283: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 2260 + - uid: 2263 components: - type: MetaData name: cell 4 brig timer @@ -24410,11 +24473,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 31154: + 31280: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 2261 + - uid: 2264 components: - type: MetaData name: cell 5 brig timer @@ -24424,13 +24487,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 31159: + 31284: - Start: Close - Timer: AutoClose - Timer: Open - proto: BrokenBottle entities: - - uid: 2262 + - uid: 2265 components: - type: Transform rot: -1.5707963267948966 rad @@ -24438,51149 +24501,51711 @@ entities: parent: 2 - proto: Brutepack entities: - - uid: 2263 - components: - - type: Transform - pos: -9.633343,-56.47309 - parent: 2 - - uid: 2264 - components: - - type: Transform - pos: -10.641302,-3.848185 - parent: 2 - - uid: 2265 - components: - - type: Transform - pos: -10.266302,-3.785685 - parent: 2 - uid: 2266 components: - type: Transform - pos: -0.6646667,-56.50434 + pos: -10.641302,-3.848185 parent: 2 - uid: 2267 components: - type: Transform - pos: -3.5865417,-56.488716 + pos: -10.266302,-3.785685 parent: 2 - uid: 2268 components: - type: Transform - pos: -6.5713716,-56.519966 + pos: 30.05692,4.5786 parent: 2 - uid: 2269 components: - type: Transform - pos: -12.617692,-56.44184 + pos: -6.3699856,-49.096176 parent: 2 - uid: 2270 components: - type: Transform - pos: 30.05692,4.5786 + pos: -6.6512356,-49.408676 parent: 2 - uid: 2271 components: - type: Transform - pos: -6.3699856,-49.096176 + rot: -1.5707963267948966 rad + pos: 47.410034,4.616682 parent: 2 - uid: 2272 components: - type: Transform - pos: -6.6512356,-49.408676 + pos: -4.6713076,-54.75437 parent: 2 -- proto: Bucket +- proto: Brutepack1 entities: + - uid: 2273 + components: + - type: Transform + pos: -7.483823,-57.377747 + parent: 2 - uid: 2274 components: - type: Transform - pos: -7.4822392,14.606249 + pos: -7.421323,-61.408997 parent: 2 - uid: 2275 components: - type: Transform - pos: 2.6959906,11.392093 + pos: -1.515073,-57.42462 parent: 2 - uid: 2276 components: - type: Transform - pos: 55.336075,17.733736 + pos: -1.436948,-59.45587 parent: 2 - uid: 2277 components: - type: Transform - pos: -29.554869,3.5549593 + pos: -1.390073,-61.440247 parent: 2 +- proto: Bucket + entities: - uid: 2278 components: - type: Transform - pos: 13.468333,-66.41357 + pos: -7.4822392,14.606249 parent: 2 - uid: 2279 components: - type: Transform - pos: 55.53834,27.595942 + pos: 2.6959906,11.392093 parent: 2 - uid: 2280 components: - type: Transform - pos: -4.262462,56.45376 + pos: 55.336075,17.733736 parent: 2 - uid: 2281 components: - type: Transform - pos: -4.167221,5.7952065 + pos: -29.554869,3.5549593 parent: 2 - uid: 2282 components: - type: Transform - pos: -4.417221,5.4827065 + pos: 13.468333,-66.41357 parent: 2 - uid: 2283 components: - type: Transform - pos: -7.3575215,-19.475973 + pos: 55.53834,27.595942 parent: 2 -- proto: BulletFoam - entities: - uid: 2284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.707516,41.19452 + pos: -4.262462,56.45376 parent: 2 - uid: 2285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.879391,41.47577 + pos: -4.167221,5.7952065 parent: 2 -- proto: BungoSeeds - entities: - uid: 2286 components: - type: Transform - pos: -50.533592,-27.38226 + pos: -4.417221,5.4827065 parent: 2 -- proto: CableApcExtension - entities: - uid: 2287 components: - type: Transform - pos: 8.5,-40.5 + pos: -7.3575215,-19.475973 parent: 2 +- proto: BulletFoam + entities: - uid: 2288 components: - type: Transform - pos: 10.5,-46.5 + rot: -1.5707963267948966 rad + pos: -11.707516,41.19452 parent: 2 - uid: 2289 components: - type: Transform - pos: 4.5,-11.5 + rot: 3.141592653589793 rad + pos: -11.879391,41.47577 + parent: 2 +- proto: BungoSeeds + entities: + - uid: 2290 + components: + - type: Transform + pos: -50.533592,-27.38226 parent: 2 +- proto: CableApcExtension + entities: - uid: 2291 components: - type: Transform - pos: 4.5,-6.5 + pos: 6.5,-21.5 parent: 2 - uid: 2292 components: - type: Transform - pos: -16.5,11.5 + pos: 9.5,-55.5 parent: 2 - uid: 2293 components: - type: Transform - pos: -66.5,-35.5 + pos: -13.5,-58.5 parent: 2 - uid: 2294 components: - type: Transform - pos: -65.5,-38.5 + pos: 8.5,-40.5 parent: 2 - uid: 2295 components: - type: Transform - pos: -7.5,8.5 + pos: 10.5,-46.5 parent: 2 - uid: 2296 components: - type: Transform - pos: -12.5,-33.5 + pos: 4.5,-11.5 parent: 2 - uid: 2297 components: - type: Transform - pos: 18.5,-52.5 + pos: 21.5,-39.5 parent: 2 - uid: 2298 components: - type: Transform - pos: -5.5,1.5 + pos: 4.5,-6.5 parent: 2 - uid: 2299 components: - type: Transform - pos: -7.5,-26.5 + pos: -16.5,11.5 parent: 2 - uid: 2300 components: - type: Transform - pos: 33.5,-17.5 + pos: -66.5,-35.5 parent: 2 - uid: 2301 components: - type: Transform - pos: 15.5,-32.5 + pos: -65.5,-38.5 parent: 2 - uid: 2302 components: - type: Transform - pos: -10.5,-26.5 + pos: -7.5,8.5 parent: 2 - uid: 2303 components: - type: Transform - pos: 14.5,-51.5 + pos: -12.5,-33.5 parent: 2 - uid: 2304 components: - type: Transform - pos: 27.5,-60.5 + pos: 18.5,-52.5 parent: 2 - uid: 2305 components: - type: Transform - pos: 7.5,-8.5 + pos: -5.5,1.5 parent: 2 - uid: 2306 components: - type: Transform - pos: 7.5,-8.5 + pos: -7.5,-26.5 parent: 2 - uid: 2307 components: - type: Transform - pos: 15.5,-18.5 + pos: 33.5,-17.5 parent: 2 - uid: 2308 components: - type: Transform - pos: -47.5,38.5 + pos: 15.5,-32.5 parent: 2 - uid: 2309 components: - type: Transform - pos: 0.5,-41.5 + pos: -10.5,-26.5 parent: 2 - uid: 2310 components: - type: Transform - pos: -1.5,-41.5 + pos: 14.5,-51.5 parent: 2 - uid: 2311 components: - type: Transform - pos: 15.5,-10.5 + pos: 27.5,-60.5 parent: 2 - uid: 2312 components: - type: Transform - pos: -4.5,-41.5 + pos: 7.5,-8.5 parent: 2 - uid: 2313 components: - type: Transform - pos: 32.5,-11.5 + pos: 7.5,-8.5 parent: 2 - uid: 2314 components: - type: Transform - pos: -6.5,-75.5 + pos: 15.5,-18.5 parent: 2 - uid: 2315 components: - type: Transform - pos: 32.5,-13.5 + pos: -46.5,36.5 parent: 2 - uid: 2316 components: - type: Transform - pos: 14.5,-47.5 + pos: 0.5,-41.5 parent: 2 - uid: 2317 components: - type: Transform - pos: 6.5,-65.5 + pos: -1.5,-41.5 parent: 2 - uid: 2318 components: - type: Transform - pos: -4.5,-37.5 + pos: 15.5,-10.5 parent: 2 - uid: 2319 components: - type: Transform - pos: 8.5,-17.5 + pos: -4.5,-41.5 parent: 2 - uid: 2320 components: - type: Transform - pos: -12.5,-45.5 + pos: 32.5,-11.5 parent: 2 - uid: 2321 components: - type: Transform - pos: 14.5,-50.5 + pos: -6.5,-75.5 parent: 2 - uid: 2322 components: - type: Transform - pos: 15.5,-52.5 + pos: 32.5,-13.5 parent: 2 - uid: 2323 components: - type: Transform - pos: 27.5,-47.5 + pos: 14.5,-47.5 parent: 2 - uid: 2324 components: - type: Transform - pos: 31.5,-16.5 + pos: 6.5,-65.5 parent: 2 - uid: 2325 components: - type: Transform - pos: 20.5,-52.5 + pos: -4.5,-37.5 parent: 2 - uid: 2326 components: - type: Transform - pos: 21.5,-17.5 + pos: 8.5,-17.5 parent: 2 - uid: 2327 components: - type: Transform - pos: 15.5,-17.5 + pos: -12.5,-45.5 parent: 2 - uid: 2328 components: - type: Transform - pos: 16.5,-17.5 + pos: 14.5,-50.5 parent: 2 - uid: 2329 components: - type: Transform - pos: -8.5,3.5 + pos: 15.5,-52.5 parent: 2 - uid: 2330 components: - type: Transform - pos: -5.5,4.5 + pos: 27.5,-47.5 parent: 2 - uid: 2331 components: - type: Transform - pos: 30.5,-62.5 + pos: 31.5,-16.5 parent: 2 - uid: 2332 components: - type: Transform - pos: 15.5,-33.5 + pos: 20.5,-52.5 parent: 2 - uid: 2333 components: - type: Transform - pos: 18.5,-17.5 + pos: 21.5,-17.5 parent: 2 - uid: 2334 components: - type: Transform - pos: 20.5,-53.5 + pos: 15.5,-17.5 parent: 2 - uid: 2335 components: - type: Transform - pos: 6.5,-71.5 + pos: 16.5,-17.5 parent: 2 - uid: 2336 components: - type: Transform - pos: 19.5,-52.5 + pos: -8.5,3.5 parent: 2 - uid: 2337 components: - type: Transform - pos: 21.5,-8.5 + pos: -5.5,4.5 parent: 2 - uid: 2338 components: - type: Transform - pos: 25.5,-57.5 + pos: 30.5,-62.5 parent: 2 - uid: 2339 components: - type: Transform - pos: 15.5,-34.5 + pos: 15.5,-33.5 parent: 2 - uid: 2340 components: - type: Transform - pos: -0.5,-54.5 + pos: 18.5,-17.5 parent: 2 - uid: 2341 components: - type: Transform - pos: 0.5,10.5 + pos: 20.5,-53.5 parent: 2 - uid: 2342 components: - type: Transform - pos: 5.5,14.5 + pos: 6.5,-71.5 parent: 2 - uid: 2343 components: - type: Transform - pos: -1.5,14.5 + pos: 19.5,-52.5 parent: 2 - uid: 2344 components: - type: Transform - pos: 32.5,0.5 + pos: 21.5,-8.5 parent: 2 - uid: 2345 components: - type: Transform - pos: 33.5,2.5 + pos: 25.5,-57.5 parent: 2 - uid: 2346 components: - type: Transform - pos: 5.5,-10.5 + pos: 15.5,-34.5 parent: 2 - uid: 2347 components: - type: Transform - pos: 0.5,-10.5 + pos: 0.5,10.5 parent: 2 - uid: 2348 components: - type: Transform - pos: 10.5,-6.5 + pos: 5.5,14.5 parent: 2 - uid: 2349 components: - type: Transform - pos: -3.5,11.5 + pos: -1.5,14.5 parent: 2 - uid: 2350 components: - type: Transform - pos: -4.5,6.5 + pos: 32.5,0.5 parent: 2 - uid: 2351 components: - type: Transform - pos: -8.5,9.5 + pos: 33.5,2.5 parent: 2 - uid: 2352 components: - type: Transform - pos: -4.5,-47.5 + pos: 5.5,-10.5 parent: 2 - uid: 2353 components: - type: Transform - pos: 1.5,-48.5 + pos: 0.5,-10.5 parent: 2 - uid: 2354 components: - type: Transform - pos: -1.5,-48.5 + pos: 10.5,-6.5 parent: 2 - uid: 2355 components: - type: Transform - pos: -1.5,-50.5 + pos: -3.5,11.5 parent: 2 - uid: 2356 components: - type: Transform - pos: 4.5,-54.5 + pos: -4.5,6.5 parent: 2 - uid: 2357 components: - type: Transform - pos: 0.5,-54.5 + pos: -8.5,9.5 parent: 2 - uid: 2358 components: - type: Transform - pos: -15.5,-61.5 + pos: -4.5,-47.5 parent: 2 - uid: 2359 components: - type: Transform - pos: -6.5,-62.5 + pos: 1.5,-48.5 parent: 2 - uid: 2360 components: - type: Transform - pos: -8.5,6.5 + pos: -1.5,-48.5 parent: 2 - uid: 2361 components: - type: Transform - pos: -0.5,14.5 + pos: -1.5,-50.5 parent: 2 - uid: 2362 components: - type: Transform - pos: -5.5,-42.5 + pos: -8.5,6.5 parent: 2 - uid: 2363 components: - type: Transform - pos: 36.5,18.5 + pos: -0.5,14.5 parent: 2 - uid: 2364 components: - type: Transform - pos: 29.5,32.5 + pos: -5.5,-42.5 parent: 2 - uid: 2365 components: - type: Transform - pos: 62.5,-6.5 + pos: 36.5,18.5 parent: 2 - uid: 2366 components: - type: Transform - pos: -1.5,-51.5 + pos: 29.5,32.5 parent: 2 - uid: 2367 components: - type: Transform - pos: 6.5,-48.5 + pos: 62.5,-6.5 parent: 2 - uid: 2368 components: - type: Transform - pos: -1.5,-45.5 + pos: -1.5,-51.5 parent: 2 - uid: 2369 components: - type: Transform - pos: -3.5,-52.5 + pos: 6.5,-48.5 parent: 2 - uid: 2370 components: - type: Transform - pos: -4.5,-54.5 + pos: -1.5,-45.5 parent: 2 - uid: 2371 components: - type: Transform - pos: -7.5,-54.5 + pos: 2.5,-70.5 parent: 2 - uid: 2372 components: - type: Transform - pos: -9.5,-54.5 + pos: 16.5,-29.5 parent: 2 - uid: 2373 components: - type: Transform - pos: 1.5,-54.5 + pos: 1.5,-10.5 parent: 2 - uid: 2374 components: - type: Transform - pos: 2.5,-60.5 + pos: 4.5,-10.5 parent: 2 - uid: 2375 components: - type: Transform - pos: -13.5,-62.5 + pos: 11.5,-17.5 parent: 2 - uid: 2376 components: - type: Transform - pos: -14.5,-66.5 + pos: 2.5,-26.5 parent: 2 - uid: 2377 components: - type: Transform - pos: -15.5,-65.5 + pos: -10.5,-21.5 parent: 2 - uid: 2378 components: - type: Transform - pos: -15.5,-54.5 + pos: -8.5,-45.5 parent: 2 - uid: 2379 components: - type: Transform - pos: 2.5,-70.5 + pos: -1.5,-46.5 parent: 2 - uid: 2380 components: - type: Transform - pos: 16.5,-29.5 + pos: -2.5,-45.5 parent: 2 - uid: 2381 components: - type: Transform - pos: 1.5,-10.5 + pos: 12.5,2.5 parent: 2 - uid: 2382 components: - type: Transform - pos: 4.5,-10.5 + pos: 8.5,2.5 parent: 2 - uid: 2383 components: - type: Transform - pos: 11.5,-17.5 + pos: 4.5,0.5 parent: 2 - uid: 2384 components: - type: Transform - pos: 2.5,-26.5 + pos: -12.5,-22.5 parent: 2 - uid: 2385 components: - type: Transform - pos: -10.5,-21.5 + pos: -13.5,-22.5 parent: 2 - uid: 2386 components: - type: Transform - pos: -8.5,-45.5 + pos: 30.5,-32.5 parent: 2 - uid: 2387 components: - type: Transform - pos: 3.5,-62.5 + pos: 22.5,-29.5 parent: 2 - uid: 2388 components: - type: Transform - pos: -5.5,-60.5 + pos: 20.5,-23.5 parent: 2 - uid: 2389 components: - type: Transform - pos: -1.5,-46.5 + pos: 29.5,-28.5 parent: 2 - uid: 2390 components: - type: Transform - pos: -2.5,-45.5 + pos: 25.5,-23.5 parent: 2 - uid: 2391 components: - type: Transform - pos: 12.5,2.5 + pos: 9.5,-6.5 parent: 2 - uid: 2392 components: - type: Transform - pos: 8.5,2.5 + pos: 8.5,-6.5 parent: 2 - uid: 2393 components: - type: Transform - pos: 4.5,0.5 + pos: 8.5,-6.5 parent: 2 - uid: 2394 components: - type: Transform - pos: -12.5,-22.5 + pos: 8.5,-6.5 parent: 2 - uid: 2395 components: - type: Transform - pos: -13.5,-22.5 + pos: 7.5,-8.5 parent: 2 - uid: 2396 components: - type: Transform - pos: 30.5,-32.5 + pos: 7.5,-7.5 parent: 2 - uid: 2397 components: - type: Transform - pos: 22.5,-29.5 + pos: 4.5,-41.5 parent: 2 - uid: 2398 components: - type: Transform - pos: 20.5,-23.5 + pos: -6.5,-74.5 parent: 2 - uid: 2399 components: - type: Transform - pos: 29.5,-28.5 + pos: -8.5,-75.5 parent: 2 - uid: 2400 components: - type: Transform - pos: 25.5,-23.5 + pos: -10.5,-75.5 parent: 2 - uid: 2401 components: - type: Transform - pos: 9.5,-6.5 + pos: 11.5,-49.5 parent: 2 - uid: 2402 components: - type: Transform - pos: 8.5,-6.5 + pos: 20.5,-46.5 parent: 2 - uid: 2403 components: - type: Transform - pos: 8.5,-6.5 + pos: 18.5,-48.5 parent: 2 - uid: 2404 components: - type: Transform - pos: 8.5,-6.5 + pos: 21.5,-46.5 parent: 2 - uid: 2405 components: - type: Transform - pos: 7.5,-8.5 + pos: 21.5,-50.5 parent: 2 - uid: 2406 components: - type: Transform - pos: 7.5,-7.5 + pos: 21.5,-53.5 parent: 2 - uid: 2407 components: - type: Transform - pos: 4.5,-41.5 + pos: 23.5,-53.5 parent: 2 - uid: 2408 components: - type: Transform - pos: -6.5,-74.5 + pos: 25.5,-52.5 parent: 2 - uid: 2409 components: - type: Transform - pos: -8.5,-75.5 + pos: -4.5,-16.5 parent: 2 - uid: 2410 components: - type: Transform - pos: -10.5,-75.5 + pos: 6.5,8.5 parent: 2 - uid: 2411 components: - type: Transform - pos: 10.5,-50.5 + pos: 46.5,-22.5 parent: 2 - uid: 2412 components: - type: Transform - pos: 20.5,-46.5 + pos: 0.5,14.5 parent: 2 - uid: 2413 components: - type: Transform - pos: 18.5,-48.5 + pos: 9.5,-26.5 parent: 2 - uid: 2414 components: - type: Transform - pos: 21.5,-46.5 + pos: 18.5,-29.5 parent: 2 - uid: 2415 components: - type: Transform - pos: 21.5,-50.5 + pos: -8.5,-6.5 parent: 2 - uid: 2416 components: - type: Transform - pos: 21.5,-53.5 + pos: -4.5,14.5 parent: 2 - uid: 2417 components: - type: Transform - pos: 23.5,-53.5 + pos: -5.5,14.5 parent: 2 - uid: 2418 components: - type: Transform - pos: 25.5,-52.5 + pos: 3.5,-46.5 parent: 2 - uid: 2419 components: - type: Transform - pos: -4.5,-16.5 + pos: -33.5,-70.5 parent: 2 - uid: 2420 components: - type: Transform - pos: 6.5,8.5 + pos: -34.5,-70.5 parent: 2 - uid: 2421 components: - type: Transform - pos: 46.5,-22.5 + pos: -12.5,-26.5 parent: 2 - uid: 2422 components: - type: Transform - pos: 0.5,14.5 + pos: 31.5,-32.5 parent: 2 - uid: 2423 components: - type: Transform - pos: 9.5,-26.5 + pos: 24.5,4.5 parent: 2 - uid: 2424 components: - type: Transform - pos: 18.5,-29.5 + pos: -3.5,-74.5 parent: 2 - uid: 2425 components: - type: Transform - pos: -8.5,-6.5 + pos: 8.5,-42.5 parent: 2 - uid: 2426 components: - type: Transform - pos: -4.5,14.5 + pos: 8.5,-65.5 parent: 2 - uid: 2427 components: - type: Transform - pos: -5.5,14.5 + pos: -9.5,-4.5 parent: 2 - uid: 2428 components: - type: Transform - pos: 3.5,-46.5 + pos: -7.5,-71.5 parent: 2 - uid: 2429 components: - type: Transform - pos: -33.5,-70.5 + pos: -12.5,-75.5 parent: 2 - uid: 2430 components: - type: Transform - pos: -34.5,-70.5 + pos: -8.5,-71.5 parent: 2 - uid: 2431 components: - type: Transform - pos: -12.5,-26.5 + pos: -8.5,4.5 parent: 2 - uid: 2432 components: - type: Transform - pos: 31.5,-32.5 + pos: 12.5,-17.5 parent: 2 - uid: 2433 components: - type: Transform - pos: 24.5,4.5 + pos: 46.5,-27.5 parent: 2 - uid: 2434 components: - type: Transform - pos: -3.5,-74.5 + pos: 50.5,8.5 parent: 2 - uid: 2435 components: - type: Transform - pos: 8.5,-42.5 + pos: 50.5,7.5 parent: 2 - uid: 2436 components: - type: Transform - pos: 8.5,-65.5 + pos: -16.5,-16.5 parent: 2 - uid: 2437 components: - type: Transform - pos: -8.5,-66.5 + pos: -4.5,-40.5 parent: 2 - uid: 2438 components: - type: Transform - pos: -9.5,-4.5 + pos: 30.5,-72.5 parent: 2 - uid: 2439 components: - type: Transform - pos: -7.5,-71.5 + pos: -18.5,-55.5 parent: 2 - uid: 2440 components: - type: Transform - pos: -12.5,-75.5 + pos: -4.5,-48.5 parent: 2 - uid: 2441 components: - type: Transform - pos: -8.5,-71.5 + pos: 25.5,-14.5 parent: 2 - uid: 2442 components: - type: Transform - pos: -8.5,4.5 + pos: 25.5,-7.5 parent: 2 - uid: 2443 components: - type: Transform - pos: -14.5,-61.5 + pos: 24.5,-6.5 parent: 2 - uid: 2444 components: - type: Transform - pos: -14.5,-55.5 + pos: 18.5,-12.5 parent: 2 - uid: 2445 components: - type: Transform - pos: 12.5,-17.5 + pos: 35.5,-40.5 parent: 2 - uid: 2446 components: - type: Transform - pos: 46.5,-27.5 + pos: 17.5,-53.5 parent: 2 - uid: 2447 components: - type: Transform - pos: 50.5,8.5 + pos: 9.5,-17.5 parent: 2 - uid: 2448 components: - type: Transform - pos: 50.5,7.5 + pos: 15.5,-28.5 parent: 2 - uid: 2449 components: - type: Transform - pos: -16.5,-16.5 + pos: 14.5,-28.5 parent: 2 - uid: 2450 components: - type: Transform - pos: -4.5,-40.5 + pos: 14.5,-27.5 parent: 2 - uid: 2451 components: - type: Transform - pos: 30.5,-72.5 + pos: 13.5,-26.5 parent: 2 - uid: 2452 components: - type: Transform - pos: -9.5,-61.5 + pos: -5.5,-73.5 parent: 2 - uid: 2453 components: - type: Transform - pos: -13.5,-64.5 + pos: 8.5,-26.5 parent: 2 - uid: 2454 components: - type: Transform - pos: -16.5,-54.5 + pos: -2.5,-74.5 parent: 2 - uid: 2455 components: - type: Transform - pos: -17.5,-54.5 + pos: 11.5,-26.5 parent: 2 - uid: 2456 components: - type: Transform - pos: -17.5,-55.5 + pos: 3.5,-26.5 parent: 2 - uid: 2457 components: - type: Transform - pos: -18.5,-55.5 + pos: -7.5,1.5 parent: 2 - uid: 2458 components: - type: Transform - pos: -6.5,-64.5 + pos: -8.5,1.5 parent: 2 - uid: 2459 components: - type: Transform - pos: -6.5,-65.5 + pos: -1.5,-75.5 parent: 2 - uid: 2460 components: - type: Transform - pos: -1.5,-54.5 + pos: -3.5,8.5 parent: 2 - uid: 2461 components: - type: Transform - pos: -4.5,-48.5 + pos: -3.5,10.5 parent: 2 - uid: 2462 components: - type: Transform - pos: 25.5,-14.5 + pos: 28.5,2.5 parent: 2 - uid: 2463 components: - type: Transform - pos: 25.5,-7.5 + pos: 32.5,1.5 parent: 2 - uid: 2464 components: - type: Transform - pos: 24.5,-6.5 + pos: 32.5,2.5 parent: 2 - uid: 2465 components: - type: Transform - pos: 18.5,-12.5 + pos: 1.5,-9.5 parent: 2 - uid: 2466 components: - type: Transform - pos: 35.5,-40.5 + pos: 2.5,8.5 parent: 2 - uid: 2467 components: - type: Transform - pos: 17.5,-53.5 + pos: 61.5,-11.5 parent: 2 - uid: 2468 components: - type: Transform - pos: 9.5,-17.5 + pos: 21.5,-10.5 parent: 2 - uid: 2469 components: - type: Transform - pos: 15.5,-28.5 + pos: 20.5,-13.5 parent: 2 - uid: 2470 components: - type: Transform - pos: 14.5,-28.5 + pos: -0.5,0.5 parent: 2 - uid: 2471 components: - type: Transform - pos: 14.5,-27.5 + pos: 20.5,-5.5 parent: 2 - uid: 2472 components: - type: Transform - pos: 13.5,-26.5 + pos: 22.5,-6.5 parent: 2 - uid: 2473 components: - type: Transform - pos: -5.5,-73.5 + pos: 23.5,-6.5 parent: 2 - uid: 2474 components: - type: Transform - pos: 8.5,-26.5 + pos: 25.5,-6.5 parent: 2 - uid: 2475 components: - type: Transform - pos: -2.5,-74.5 + pos: 25.5,-13.5 parent: 2 - uid: 2476 components: - type: Transform - pos: 11.5,-26.5 + pos: 25.5,-12.5 parent: 2 - uid: 2477 components: - type: Transform - pos: 3.5,-26.5 + pos: 25.5,-8.5 parent: 2 - uid: 2478 components: - type: Transform - pos: -7.5,1.5 + pos: 24.5,-11.5 parent: 2 - uid: 2479 components: - type: Transform - pos: -8.5,1.5 + pos: 10.5,-17.5 parent: 2 - uid: 2480 components: - type: Transform - pos: -1.5,-75.5 + pos: 10.5,-14.5 parent: 2 - uid: 2481 components: - type: Transform - pos: -3.5,8.5 + pos: 11.5,-14.5 parent: 2 - uid: 2482 components: - type: Transform - pos: -3.5,10.5 + pos: 13.5,-14.5 parent: 2 - uid: 2483 components: - type: Transform - pos: 28.5,2.5 + pos: 14.5,-14.5 parent: 2 - uid: 2484 components: - type: Transform - pos: 32.5,1.5 + pos: 15.5,-14.5 parent: 2 - uid: 2485 components: - type: Transform - pos: 32.5,2.5 + pos: 15.5,-13.5 parent: 2 - uid: 2486 components: - type: Transform - pos: 1.5,-9.5 + pos: 15.5,-11.5 parent: 2 - uid: 2487 components: - type: Transform - pos: 2.5,8.5 + pos: 14.5,-2.5 parent: 2 - uid: 2488 components: - type: Transform - pos: 61.5,-11.5 + pos: -19.5,-56.5 parent: 2 - uid: 2489 components: - type: Transform - pos: 21.5,-10.5 + pos: -19.5,-55.5 parent: 2 - uid: 2490 components: - type: Transform - pos: 20.5,-13.5 + pos: 14.5,-3.5 parent: 2 - uid: 2491 components: - type: Transform - pos: -0.5,0.5 + pos: 14.5,-6.5 parent: 2 - uid: 2492 components: - type: Transform - pos: 20.5,-5.5 + pos: 20.5,-45.5 parent: 2 - uid: 2493 components: - type: Transform - pos: 22.5,-6.5 + pos: -41.5,25.5 parent: 2 - uid: 2494 components: - type: Transform - pos: 23.5,-6.5 + pos: 32.5,-8.5 parent: 2 - uid: 2495 components: - type: Transform - pos: 25.5,-6.5 + pos: 14.5,-5.5 parent: 2 - uid: 2496 components: - type: Transform - pos: 25.5,-13.5 + pos: 12.5,-14.5 parent: 2 - uid: 2497 components: - type: Transform - pos: 25.5,-12.5 + pos: -3.5,-69.5 parent: 2 - uid: 2498 components: - type: Transform - pos: 25.5,-8.5 + pos: -4.5,-69.5 parent: 2 - uid: 2499 components: - type: Transform - pos: 24.5,-11.5 + pos: -5.5,-70.5 parent: 2 - uid: 2500 components: - type: Transform - pos: 5.5,-60.5 + pos: -1.5,-77.5 parent: 2 - uid: 2501 components: - type: Transform - pos: 5.5,-54.5 + pos: -0.5,-69.5 parent: 2 - uid: 2502 components: - type: Transform - pos: 2.5,-54.5 + pos: 10.5,2.5 parent: 2 - uid: 2503 components: - type: Transform - pos: -14.5,-60.5 + pos: -5.5,-47.5 parent: 2 - uid: 2504 components: - type: Transform - pos: -8.5,-65.5 + pos: -4.5,-11.5 parent: 2 - uid: 2505 components: - type: Transform - pos: -7.5,-65.5 + pos: 62.5,-9.5 parent: 2 - uid: 2506 components: - type: Transform - pos: -6.5,-60.5 + pos: 62.5,-7.5 parent: 2 - uid: 2507 components: - type: Transform - pos: -3.5,-60.5 + pos: 8.5,-8.5 parent: 2 - uid: 2508 components: - type: Transform - pos: -2.5,-60.5 + pos: 8.5,-10.5 parent: 2 - uid: 2509 components: - type: Transform - pos: -0.5,-60.5 + pos: 1.5,9.5 parent: 2 - uid: 2510 components: - type: Transform - pos: 3.5,-63.5 + pos: 2.5,-71.5 parent: 2 - uid: 2511 components: - type: Transform - pos: 3.5,-61.5 + pos: 22.5,-32.5 parent: 2 - uid: 2512 components: - type: Transform - pos: 10.5,-17.5 + pos: -15.5,-21.5 parent: 2 - uid: 2513 components: - type: Transform - pos: 10.5,-14.5 + pos: -2.5,-69.5 parent: 2 - uid: 2514 components: - type: Transform - pos: 11.5,-14.5 + pos: -9.5,10.5 parent: 2 - uid: 2515 components: - type: Transform - pos: 13.5,-14.5 + pos: 18.5,-13.5 parent: 2 - uid: 2516 components: - type: Transform - pos: 14.5,-14.5 + pos: 21.5,-11.5 parent: 2 - uid: 2517 components: - type: Transform - pos: 15.5,-14.5 + pos: -4.5,-28.5 parent: 2 - uid: 2518 components: - type: Transform - pos: 15.5,-13.5 + pos: 27.5,2.5 parent: 2 - uid: 2519 components: - type: Transform - pos: 15.5,-11.5 + pos: 6.5,15.5 parent: 2 - uid: 2520 components: - type: Transform - pos: 14.5,-2.5 + pos: 5.5,15.5 parent: 2 - uid: 2521 components: - type: Transform - pos: -19.5,-56.5 + pos: 0.5,12.5 parent: 2 - uid: 2522 components: - type: Transform - pos: -19.5,-55.5 + pos: 5.5,12.5 parent: 2 - uid: 2523 components: - type: Transform - pos: 14.5,-3.5 + pos: 5.5,13.5 parent: 2 - uid: 2524 components: - type: Transform - pos: 14.5,-6.5 + pos: 32.5,18.5 parent: 2 - uid: 2525 components: - type: Transform - pos: 20.5,-45.5 + pos: 1.5,0.5 parent: 2 - uid: 2526 components: - type: Transform - pos: -41.5,25.5 + pos: 13.5,2.5 parent: 2 - uid: 2527 components: - type: Transform - pos: 32.5,-8.5 + pos: 13.5,0.5 parent: 2 - uid: 2528 components: - type: Transform - pos: 14.5,-5.5 + pos: 12.5,-0.5 parent: 2 - uid: 2529 components: - type: Transform - pos: 12.5,-14.5 + pos: 27.5,1.5 parent: 2 - uid: 2530 components: - type: Transform - pos: -3.5,-69.5 + pos: -2.5,-41.5 parent: 2 - uid: 2531 components: - type: Transform - pos: -4.5,-69.5 + pos: -3.5,-0.5 parent: 2 - uid: 2532 components: - type: Transform - pos: -5.5,-70.5 + pos: 29.5,-47.5 parent: 2 - uid: 2533 components: - type: Transform - pos: -1.5,-77.5 + pos: 15.5,-40.5 parent: 2 - uid: 2534 components: - type: Transform - pos: -0.5,-69.5 + pos: 11.5,-42.5 parent: 2 - uid: 2535 components: - type: Transform - pos: 10.5,2.5 + pos: 8.5,-41.5 parent: 2 - uid: 2536 components: - type: Transform - pos: -5.5,-47.5 + pos: 13.5,-42.5 parent: 2 - uid: 2537 components: - type: Transform - pos: -14.5,-54.5 + pos: 17.5,-54.5 parent: 2 - uid: 2538 components: - type: Transform - pos: -13.5,-59.5 + pos: 34.5,-41.5 parent: 2 - uid: 2539 components: - type: Transform - pos: -10.5,-61.5 + pos: 36.5,-40.5 parent: 2 - uid: 2540 components: - type: Transform - pos: -4.5,-11.5 + pos: 34.5,-40.5 parent: 2 - uid: 2541 components: - type: Transform - pos: 62.5,-9.5 + pos: 12.5,-6.5 parent: 2 - uid: 2542 components: - type: Transform - pos: 62.5,-7.5 + pos: 11.5,-6.5 parent: 2 - uid: 2543 components: - type: Transform - pos: 8.5,-8.5 + pos: 4.5,5.5 parent: 2 - uid: 2544 components: - type: Transform - pos: 8.5,-10.5 + pos: 7.5,-17.5 parent: 2 - uid: 2545 components: - type: Transform - pos: 1.5,9.5 + pos: 1.5,7.5 parent: 2 - uid: 2546 components: - type: Transform - pos: 2.5,-71.5 + pos: 1.5,8.5 parent: 2 - uid: 2547 components: - type: Transform - pos: 22.5,-32.5 + pos: 3.5,8.5 parent: 2 - uid: 2548 components: - type: Transform - pos: -15.5,-21.5 + pos: -3.5,7.5 parent: 2 - uid: 2549 components: - type: Transform - pos: -2.5,-69.5 + pos: -1.5,7.5 parent: 2 - uid: 2550 components: - type: Transform - pos: -9.5,10.5 + pos: -2.5,7.5 parent: 2 - uid: 2551 components: - type: Transform - pos: 18.5,-13.5 + pos: -0.5,6.5 parent: 2 - uid: 2552 components: - type: Transform - pos: 21.5,-11.5 + pos: -0.5,7.5 parent: 2 - uid: 2553 components: - type: Transform - pos: -4.5,-28.5 + pos: 0.5,6.5 parent: 2 - uid: 2554 components: - type: Transform - pos: 27.5,2.5 + pos: 0.5,11.5 parent: 2 - uid: 2555 components: - type: Transform - pos: 6.5,15.5 + pos: 0.5,13.5 parent: 2 - uid: 2556 components: - type: Transform - pos: 5.5,15.5 + pos: 0.5,9.5 parent: 2 - uid: 2557 components: - type: Transform - pos: 0.5,12.5 + pos: -8.5,7.5 parent: 2 - uid: 2558 components: - type: Transform - pos: 5.5,12.5 + pos: -7.5,7.5 parent: 2 - uid: 2559 components: - type: Transform - pos: 5.5,13.5 + pos: -6.5,7.5 parent: 2 - uid: 2560 components: - type: Transform - pos: 32.5,18.5 + pos: -5.5,7.5 parent: 2 - uid: 2561 components: - type: Transform - pos: 1.5,0.5 + pos: 10.5,-11.5 parent: 2 - uid: 2562 components: - type: Transform - pos: 13.5,2.5 + pos: 7.5,-6.5 parent: 2 - uid: 2563 components: - type: Transform - pos: 13.5,0.5 + pos: 8.5,-6.5 parent: 2 - uid: 2564 components: - type: Transform - pos: 12.5,-0.5 + pos: 4.5,-13.5 parent: 2 - uid: 2565 components: - type: Transform - pos: -13.5,-54.5 + pos: 10.5,-10.5 parent: 2 - uid: 2566 components: - type: Transform - pos: -14.5,-59.5 + pos: 42.5,-26.5 parent: 2 - uid: 2567 components: - type: Transform - pos: -2.5,-54.5 + pos: -8.5,-50.5 parent: 2 - uid: 2568 components: - type: Transform - pos: 27.5,1.5 + pos: 5.5,8.5 parent: 2 - uid: 2569 components: - type: Transform - pos: -2.5,-41.5 + pos: -8.5,-51.5 parent: 2 - uid: 2570 components: - type: Transform - pos: -3.5,-0.5 + pos: 6.5,7.5 parent: 2 - uid: 2571 components: - type: Transform - pos: 29.5,-47.5 + pos: 31.5,-14.5 parent: 2 - uid: 2572 components: - type: Transform - pos: 15.5,-40.5 + pos: 32.5,-9.5 parent: 2 - uid: 2573 components: - type: Transform - pos: 11.5,-42.5 + pos: -4.5,-20.5 parent: 2 - uid: 2574 components: - type: Transform - pos: 8.5,-41.5 + pos: 5.5,11.5 parent: 2 - uid: 2575 components: - type: Transform - pos: 13.5,-42.5 + pos: 5.5,7.5 parent: 2 - uid: 2576 components: - type: Transform - pos: 17.5,-54.5 + pos: 32.5,-41.5 parent: 2 - uid: 2577 components: - type: Transform - pos: 34.5,-41.5 + pos: 33.5,-40.5 parent: 2 - uid: 2578 components: - type: Transform - pos: 36.5,-40.5 + pos: 34.5,-42.5 parent: 2 - uid: 2579 components: - type: Transform - pos: 34.5,-40.5 + pos: 23.5,-42.5 parent: 2 - uid: 2580 components: - type: Transform - pos: 12.5,-6.5 + pos: 21.5,-42.5 parent: 2 - uid: 2581 components: - type: Transform - pos: 11.5,-6.5 + pos: 8.5,-9.5 parent: 2 - uid: 2582 components: - type: Transform - pos: 4.5,5.5 + pos: -20.5,-87.5 parent: 2 - uid: 2583 components: - type: Transform - pos: 7.5,-17.5 + pos: -2.5,14.5 parent: 2 - uid: 2584 components: - type: Transform - pos: 1.5,7.5 + pos: -3.5,14.5 parent: 2 - uid: 2585 components: - type: Transform - pos: 1.5,8.5 + pos: 32.5,17.5 parent: 2 - uid: 2586 components: - type: Transform - pos: 3.5,8.5 + pos: 27.5,0.5 parent: 2 - uid: 2587 components: - type: Transform - pos: -3.5,7.5 + pos: 26.5,-32.5 parent: 2 - uid: 2588 components: - type: Transform - pos: -1.5,7.5 + pos: 25.5,-42.5 parent: 2 - uid: 2589 components: - type: Transform - pos: -2.5,7.5 + pos: 27.5,-42.5 parent: 2 - uid: 2590 components: - type: Transform - pos: -0.5,6.5 + pos: 35.5,-38.5 parent: 2 - uid: 2591 components: - type: Transform - pos: -0.5,7.5 + pos: 35.5,-39.5 parent: 2 - uid: 2592 components: - type: Transform - pos: 0.5,6.5 + pos: 23.5,-32.5 parent: 2 - uid: 2593 components: - type: Transform - pos: 0.5,11.5 + pos: 20.5,-32.5 parent: 2 - uid: 2594 components: - type: Transform - pos: 0.5,13.5 + pos: -7.5,-7.5 parent: 2 - uid: 2595 components: - type: Transform - pos: 0.5,9.5 + pos: 16.5,-32.5 parent: 2 - uid: 2596 components: - type: Transform - pos: -8.5,7.5 + pos: 1.5,10.5 parent: 2 - uid: 2597 components: - type: Transform - pos: -7.5,7.5 + pos: -15.5,25.5 parent: 2 - uid: 2598 components: - type: Transform - pos: -6.5,7.5 + pos: 7.5,-49.5 parent: 2 - uid: 2599 components: - type: Transform - pos: -5.5,7.5 + pos: 55.5,-32.5 parent: 2 - uid: 2600 components: - type: Transform - pos: 10.5,-11.5 + pos: 32.5,-4.5 parent: 2 - uid: 2601 components: - type: Transform - pos: 7.5,-6.5 + pos: 26.5,-25.5 parent: 2 - uid: 2602 components: - type: Transform - pos: 8.5,-6.5 + pos: 25.5,-25.5 parent: 2 - uid: 2603 components: - type: Transform - pos: 4.5,-13.5 + pos: 24.5,-22.5 parent: 2 - uid: 2604 components: - type: Transform - pos: 10.5,-10.5 + pos: 23.5,-22.5 parent: 2 - uid: 2605 components: - type: Transform - pos: 42.5,-26.5 + pos: 21.5,-24.5 parent: 2 - uid: 2606 components: - type: Transform - pos: -8.5,-50.5 + pos: 21.5,-23.5 parent: 2 - uid: 2607 components: - type: Transform - pos: 5.5,8.5 + pos: 21.5,-22.5 parent: 2 - uid: 2608 components: - type: Transform - pos: -8.5,-51.5 + pos: 26.5,-23.5 parent: 2 - uid: 2609 components: - type: Transform - pos: -8.5,-52.5 + pos: 27.5,-23.5 parent: 2 - uid: 2610 components: - type: Transform - pos: -7.5,-52.5 + pos: 28.5,-29.5 parent: 2 - uid: 2611 components: - type: Transform - pos: -7.5,-53.5 + pos: 27.5,-29.5 parent: 2 - uid: 2612 components: - type: Transform - pos: 6.5,7.5 + pos: 27.5,-30.5 parent: 2 - uid: 2613 components: - type: Transform - pos: 31.5,-14.5 + pos: 27.5,-33.5 parent: 2 - uid: 2614 components: - type: Transform - pos: 32.5,-9.5 + pos: 26.5,-30.5 parent: 2 - uid: 2615 components: - type: Transform - pos: -4.5,-20.5 + pos: 25.5,-30.5 parent: 2 - uid: 2616 components: - type: Transform - pos: 5.5,11.5 + pos: 24.5,-30.5 parent: 2 - uid: 2617 components: - type: Transform - pos: 5.5,7.5 + pos: 23.5,-30.5 parent: 2 - uid: 2618 components: - type: Transform - pos: 32.5,-41.5 + pos: 22.5,-30.5 parent: 2 - uid: 2619 components: - type: Transform - pos: 33.5,-40.5 + pos: 22.5,-28.5 parent: 2 - uid: 2620 components: - type: Transform - pos: 34.5,-42.5 + pos: 6.5,-3.5 parent: 2 - uid: 2621 components: - type: Transform - pos: 23.5,-42.5 + pos: 5.5,-3.5 parent: 2 - uid: 2622 components: - type: Transform - pos: 21.5,-42.5 + pos: 8.5,-4.5 parent: 2 - uid: 2623 components: - type: Transform - pos: 8.5,-9.5 + pos: 12.5,-5.5 parent: 2 - uid: 2624 components: - type: Transform - pos: -20.5,-87.5 + pos: 12.5,-9.5 parent: 2 - uid: 2625 components: - type: Transform - pos: -2.5,14.5 + pos: -10.5,-22.5 parent: 2 - uid: 2626 components: - type: Transform - pos: -3.5,14.5 + pos: -15.5,-22.5 parent: 2 - uid: 2627 components: - type: Transform - pos: 32.5,17.5 + pos: -24.5,-16.5 parent: 2 - uid: 2628 components: - type: Transform - pos: 27.5,0.5 + pos: -24.5,-15.5 parent: 2 - uid: 2629 components: - type: Transform - pos: 23.5,-34.5 + pos: 23.5,-11.5 parent: 2 - uid: 2630 components: - type: Transform - pos: 25.5,-42.5 + pos: 25.5,-11.5 parent: 2 - uid: 2631 components: - type: Transform - pos: 27.5,-42.5 + pos: 25.5,-10.5 parent: 2 - uid: 2632 components: - type: Transform - pos: 35.5,-38.5 + pos: 25.5,-9.5 parent: 2 - uid: 2633 components: - type: Transform - pos: 35.5,-39.5 + pos: 21.5,-6.5 parent: 2 - uid: 2634 components: - type: Transform - pos: 23.5,-32.5 + pos: 20.5,-6.5 parent: 2 - uid: 2635 components: - type: Transform - pos: 20.5,-32.5 + pos: 26.5,-6.5 parent: 2 - uid: 2636 components: - type: Transform - pos: -7.5,-7.5 + pos: 27.5,-6.5 parent: 2 - uid: 2637 components: - type: Transform - pos: 16.5,-32.5 + pos: 28.5,-6.5 parent: 2 - uid: 2638 components: - type: Transform - pos: 1.5,10.5 + pos: 29.5,-6.5 parent: 2 - uid: 2639 components: - type: Transform - pos: -15.5,25.5 + pos: 30.5,-6.5 parent: 2 - uid: 2640 components: - type: Transform - pos: 7.5,-49.5 + pos: 30.5,-5.5 parent: 2 - uid: 2641 components: - type: Transform - pos: 55.5,-32.5 + pos: 29.5,-32.5 parent: 2 - uid: 2642 components: - type: Transform - pos: 32.5,-4.5 + pos: 8.5,-3.5 parent: 2 - uid: 2643 components: - type: Transform - pos: 26.5,-25.5 + pos: 8.5,-2.5 parent: 2 - uid: 2644 components: - type: Transform - pos: 25.5,-25.5 + pos: 8.5,-1.5 parent: 2 - uid: 2645 components: - type: Transform - pos: 24.5,-22.5 + pos: 7.5,-1.5 parent: 2 - uid: 2646 components: - type: Transform - pos: 23.5,-22.5 + pos: 6.5,-1.5 parent: 2 - uid: 2647 components: - type: Transform - pos: 21.5,-24.5 + pos: 5.5,-1.5 parent: 2 - uid: 2648 components: - type: Transform - pos: 21.5,-23.5 + pos: 4.5,-1.5 parent: 2 - uid: 2649 components: - type: Transform - pos: 21.5,-22.5 + pos: 4.5,-0.5 parent: 2 - uid: 2650 components: - type: Transform - pos: 26.5,-23.5 + pos: 2.5,0.5 parent: 2 - uid: 2651 components: - type: Transform - pos: 27.5,-23.5 + pos: 0.5,0.5 parent: 2 - uid: 2652 components: - type: Transform - pos: 28.5,-29.5 + pos: -0.5,1.5 parent: 2 - uid: 2653 components: - type: Transform - pos: 27.5,-29.5 + pos: -0.5,2.5 parent: 2 - uid: 2654 components: - type: Transform - pos: 27.5,-30.5 + pos: 0.5,2.5 parent: 2 - uid: 2655 components: - type: Transform - pos: 27.5,-33.5 + pos: 1.5,2.5 parent: 2 - uid: 2656 components: - type: Transform - pos: 26.5,-30.5 + pos: 3.5,2.5 parent: 2 - uid: 2657 components: - type: Transform - pos: 25.5,-30.5 + pos: 4.5,2.5 parent: 2 - uid: 2658 components: - type: Transform - pos: 24.5,-30.5 + pos: 5.5,2.5 parent: 2 - uid: 2659 components: - type: Transform - pos: 23.5,-30.5 + pos: 6.5,2.5 parent: 2 - uid: 2660 components: - type: Transform - pos: 22.5,-30.5 + pos: 7.5,2.5 parent: 2 - uid: 2661 components: - type: Transform - pos: 22.5,-28.5 + pos: 11.5,-0.5 parent: 2 - uid: 2662 components: - type: Transform - pos: 6.5,-3.5 + pos: -2.5,-51.5 parent: 2 - uid: 2663 components: - type: Transform - pos: 5.5,-3.5 + pos: -1.5,-49.5 parent: 2 - uid: 2664 components: - type: Transform - pos: 8.5,-4.5 + pos: -0.5,-48.5 parent: 2 - uid: 2665 components: - type: Transform - pos: 12.5,-5.5 + pos: 2.5,-48.5 parent: 2 - uid: 2666 components: - type: Transform - pos: 12.5,-9.5 + pos: 4.5,-48.5 parent: 2 - uid: 2667 components: - type: Transform - pos: -10.5,-22.5 + pos: -1.5,-47.5 parent: 2 - uid: 2668 components: - type: Transform - pos: -15.5,-22.5 + pos: -6.5,-47.5 parent: 2 - uid: 2669 components: - type: Transform - pos: -24.5,-16.5 + pos: 6.5,-60.5 parent: 2 - uid: 2670 components: - type: Transform - pos: -24.5,-15.5 + pos: 7.5,-60.5 parent: 2 - uid: 2671 components: - type: Transform - pos: 23.5,-11.5 + pos: -11.5,-75.5 parent: 2 - uid: 2672 components: - type: Transform - pos: 25.5,-11.5 + pos: -21.5,-68.5 parent: 2 - uid: 2673 components: - type: Transform - pos: 25.5,-10.5 + pos: -21.5,-69.5 parent: 2 - uid: 2674 components: - type: Transform - pos: 25.5,-9.5 + pos: -21.5,-70.5 parent: 2 - uid: 2675 components: - type: Transform - pos: 21.5,-6.5 + pos: -20.5,-70.5 parent: 2 - uid: 2676 components: - type: Transform - pos: 20.5,-6.5 + pos: -19.5,-70.5 parent: 2 - uid: 2677 components: - type: Transform - pos: 26.5,-6.5 + pos: -19.5,-69.5 parent: 2 - uid: 2678 components: - type: Transform - pos: 27.5,-6.5 + pos: -19.5,-68.5 parent: 2 - uid: 2679 components: - type: Transform - pos: 28.5,-6.5 + pos: -19.5,-72.5 parent: 2 - uid: 2680 components: - type: Transform - pos: 29.5,-6.5 + pos: -19.5,-73.5 parent: 2 - uid: 2681 components: - type: Transform - pos: 30.5,-6.5 + pos: -18.5,-74.5 parent: 2 - uid: 2682 components: - type: Transform - pos: 30.5,-5.5 + pos: -18.5,-76.5 parent: 2 - uid: 2683 components: - type: Transform - pos: 29.5,-32.5 + pos: -18.5,-77.5 parent: 2 - uid: 2684 components: - type: Transform - pos: 8.5,-3.5 + pos: -17.5,-77.5 parent: 2 - uid: 2685 components: - type: Transform - pos: 8.5,-2.5 + pos: -19.5,-77.5 parent: 2 - uid: 2686 components: - type: Transform - pos: 8.5,-1.5 + pos: -20.5,-85.5 parent: 2 - uid: 2687 components: - type: Transform - pos: 7.5,-1.5 + pos: -25.5,-87.5 parent: 2 - uid: 2688 components: - type: Transform - pos: 6.5,-1.5 + pos: -25.5,-88.5 parent: 2 - uid: 2689 components: - type: Transform - pos: 5.5,-1.5 + pos: 8.5,-6.5 parent: 2 - uid: 2690 components: - type: Transform - pos: 4.5,-1.5 + pos: -7.5,-75.5 parent: 2 - uid: 2691 components: - type: Transform - pos: 4.5,-0.5 + pos: 17.5,-32.5 parent: 2 - uid: 2692 components: - type: Transform - pos: 2.5,0.5 + pos: -8.5,8.5 parent: 2 - uid: 2693 components: - type: Transform - pos: 0.5,0.5 + pos: -8.5,10.5 parent: 2 - uid: 2694 components: - type: Transform - pos: -0.5,1.5 + pos: -8.5,5.5 parent: 2 - uid: 2695 components: - type: Transform - pos: -0.5,2.5 + pos: -3.5,9.5 parent: 2 - uid: 2696 components: - type: Transform - pos: 0.5,2.5 + pos: 5.5,9.5 parent: 2 - uid: 2697 components: - type: Transform - pos: 1.5,2.5 + pos: 9.5,-10.5 parent: 2 - uid: 2698 components: - type: Transform - pos: 3.5,2.5 + pos: 32.5,16.5 parent: 2 - uid: 2699 components: - type: Transform - pos: 4.5,2.5 + pos: 0.5,-26.5 parent: 2 - uid: 2700 components: - type: Transform - pos: 5.5,2.5 + pos: -0.5,-26.5 parent: 2 - uid: 2701 components: - type: Transform - pos: 6.5,2.5 + pos: -8.5,2.5 parent: 2 - uid: 2702 components: - type: Transform - pos: 7.5,2.5 + pos: 1.5,-26.5 parent: 2 - uid: 2703 components: - type: Transform - pos: 11.5,-0.5 + pos: 6.5,-26.5 parent: 2 - uid: 2704 components: - type: Transform - pos: -2.5,-51.5 + pos: 7.5,-26.5 parent: 2 - uid: 2705 components: - type: Transform - pos: -1.5,-49.5 + pos: 12.5,-26.5 parent: 2 - uid: 2706 components: - type: Transform - pos: -0.5,-48.5 + pos: 14.5,-26.5 parent: 2 - uid: 2707 components: - type: Transform - pos: 2.5,-48.5 + pos: 17.5,-48.5 parent: 2 - uid: 2708 components: - type: Transform - pos: 4.5,-48.5 + pos: 27.5,4.5 parent: 2 - uid: 2709 components: - type: Transform - pos: -1.5,-47.5 + pos: 27.5,-0.5 parent: 2 - uid: 2710 components: - type: Transform - pos: -6.5,-47.5 + pos: 25.5,4.5 parent: 2 - uid: 2711 components: - type: Transform - pos: -3.5,-54.5 + pos: 26.5,4.5 parent: 2 - uid: 2712 components: - type: Transform - pos: -5.5,-54.5 + pos: -4.5,-13.5 parent: 2 - uid: 2713 components: - type: Transform - pos: -6.5,-54.5 + pos: -20.5,-86.5 parent: 2 - uid: 2714 components: - type: Transform - pos: -8.5,-54.5 + pos: 20.5,-42.5 parent: 2 - uid: 2715 components: - type: Transform - pos: -10.5,-54.5 + pos: -18.5,-60.5 parent: 2 - uid: 2716 components: - type: Transform - pos: -11.5,-54.5 + pos: 12.5,-55.5 parent: 2 - uid: 2717 components: - type: Transform - pos: 3.5,-54.5 + pos: -3.5,-51.5 parent: 2 - uid: 2718 components: - type: Transform - pos: 5.5,-55.5 + pos: 3.5,-48.5 parent: 2 - uid: 2719 components: - type: Transform - pos: 5.5,-57.5 + pos: 5.5,-48.5 parent: 2 - uid: 2720 components: - type: Transform - pos: 5.5,-58.5 + pos: 6.5,-47.5 parent: 2 - uid: 2721 components: - type: Transform - pos: 5.5,-59.5 + pos: -4.5,-50.5 parent: 2 - uid: 2722 components: - type: Transform - pos: 6.5,-60.5 + pos: -4.5,-49.5 parent: 2 - uid: 2723 components: - type: Transform - pos: 7.5,-60.5 + pos: -6.5,-45.5 parent: 2 - uid: 2724 components: - type: Transform - pos: 4.5,-60.5 + pos: 22.5,-24.5 parent: 2 - uid: 2725 components: - type: Transform - pos: 1.5,-60.5 + pos: -6.5,-71.5 parent: 2 - uid: 2726 components: - type: Transform - pos: 0.5,-60.5 + pos: -9.5,-71.5 parent: 2 - uid: 2727 components: - type: Transform - pos: -1.5,-61.5 + pos: 10.5,-49.5 parent: 2 - uid: 2728 components: - type: Transform - pos: -1.5,-62.5 + pos: 16.5,-52.5 parent: 2 - uid: 2729 components: - type: Transform - pos: -1.5,-64.5 + pos: 14.5,-52.5 parent: 2 - uid: 2730 components: - type: Transform - pos: -7.5,-61.5 + pos: 25.5,-50.5 parent: 2 - uid: 2731 components: - type: Transform - pos: -6.5,-61.5 + pos: 25.5,-54.5 parent: 2 - uid: 2732 components: - type: Transform - pos: -11.5,-75.5 + pos: 25.5,-55.5 parent: 2 - uid: 2733 components: - type: Transform - pos: -11.5,-61.5 + pos: 25.5,-56.5 parent: 2 - uid: 2734 components: - type: Transform - pos: -12.5,-61.5 + pos: -4.5,-14.5 parent: 2 - uid: 2735 components: - type: Transform - pos: -13.5,-61.5 + pos: -4.5,-18.5 parent: 2 - uid: 2736 components: - type: Transform - pos: -13.5,-63.5 + pos: 59.5,-4.5 parent: 2 - uid: 2737 components: - type: Transform - pos: -13.5,-65.5 + pos: 46.5,-25.5 parent: 2 - uid: 2738 components: - type: Transform - pos: -13.5,-66.5 + pos: 46.5,-24.5 parent: 2 - uid: 2739 components: - type: Transform - pos: -15.5,-64.5 + pos: 46.5,-29.5 parent: 2 - uid: 2740 components: - type: Transform - pos: -21.5,-68.5 + pos: 46.5,-28.5 parent: 2 - uid: 2741 components: - type: Transform - pos: -21.5,-69.5 + pos: 45.5,-27.5 parent: 2 - uid: 2742 components: - type: Transform - pos: -21.5,-70.5 + pos: 43.5,-27.5 parent: 2 - uid: 2743 components: - type: Transform - pos: -20.5,-70.5 + pos: 44.5,-27.5 parent: 2 - uid: 2744 components: - type: Transform - pos: -19.5,-70.5 + pos: 43.5,-26.5 parent: 2 - uid: 2745 components: - type: Transform - pos: -19.5,-69.5 + pos: 5.5,10.5 parent: 2 - uid: 2746 components: - type: Transform - pos: -19.5,-68.5 + pos: 5.5,8.5 parent: 2 - uid: 2747 components: - type: Transform - pos: -19.5,-72.5 + pos: 10.5,-26.5 parent: 2 - uid: 2748 components: - type: Transform - pos: -19.5,-73.5 + pos: -4.5,-21.5 parent: 2 - uid: 2749 components: - type: Transform - pos: -18.5,-74.5 + pos: 17.5,-29.5 parent: 2 - uid: 2750 components: - type: Transform - pos: -18.5,-76.5 + pos: -6.5,14.5 parent: 2 - uid: 2751 components: - type: Transform - pos: -18.5,-77.5 + pos: -6.5,13.5 parent: 2 - uid: 2752 components: - type: Transform - pos: -17.5,-77.5 + pos: 24.5,-32.5 parent: 2 - uid: 2753 components: - type: Transform - pos: -19.5,-77.5 + pos: 27.5,-25.5 parent: 2 - uid: 2754 components: - type: Transform - pos: -20.5,-85.5 + pos: 25.5,-22.5 parent: 2 - uid: 2755 components: - type: Transform - pos: -25.5,-87.5 + pos: 28.5,-23.5 parent: 2 - uid: 2756 components: - type: Transform - pos: -25.5,-88.5 + pos: 29.5,-23.5 parent: 2 - uid: 2757 components: - type: Transform - pos: 8.5,-6.5 + pos: 30.5,-23.5 parent: 2 - uid: 2758 components: - type: Transform - pos: -7.5,-75.5 + pos: 28.5,-28.5 parent: 2 - uid: 2759 components: - type: Transform - pos: 17.5,-32.5 + pos: 7.5,-3.5 parent: 2 - uid: 2760 components: - type: Transform - pos: -8.5,8.5 + pos: 25.5,-32.5 parent: 2 - uid: 2761 components: - type: Transform - pos: -8.5,10.5 + pos: -16.5,-22.5 parent: 2 - uid: 2762 components: - type: Transform - pos: -8.5,5.5 + pos: -13.5,-73.5 parent: 2 - uid: 2763 components: - type: Transform - pos: -3.5,9.5 + pos: -7.5,-6.5 parent: 2 - uid: 2764 components: - type: Transform - pos: 5.5,9.5 + pos: -29.5,1.5 parent: 2 - uid: 2765 components: - type: Transform - pos: 9.5,-10.5 + pos: 18.5,-40.5 parent: 2 - uid: 2766 components: - type: Transform - pos: 32.5,16.5 + pos: -39.5,-68.5 parent: 2 - uid: 2767 components: - type: Transform - pos: 0.5,8.5 + pos: -36.5,-70.5 parent: 2 - uid: 2768 components: - type: Transform - pos: 0.5,-26.5 + pos: 41.5,-26.5 parent: 2 - uid: 2769 components: - type: Transform - pos: -0.5,-26.5 + pos: -35.5,-70.5 parent: 2 - uid: 2770 components: - type: Transform - pos: -8.5,2.5 + pos: -37.5,-69.5 parent: 2 - uid: 2771 components: - type: Transform - pos: 1.5,-26.5 + pos: -9.5,-22.5 parent: 2 - uid: 2772 components: - type: Transform - pos: 6.5,-26.5 + pos: 12.5,-8.5 parent: 2 - uid: 2773 components: - type: Transform - pos: 7.5,-26.5 + pos: 8.5,-5.5 parent: 2 - uid: 2774 components: - type: Transform - pos: 12.5,-26.5 + pos: -8.5,-22.5 parent: 2 - uid: 2775 components: - type: Transform - pos: 14.5,-26.5 + pos: -11.5,-22.5 parent: 2 - uid: 2776 components: - type: Transform - pos: 17.5,-48.5 + pos: -4.5,-12.5 parent: 2 - uid: 2777 components: - type: Transform - pos: 27.5,4.5 + pos: 2.5,-69.5 parent: 2 - uid: 2778 components: - type: Transform - pos: 27.5,-0.5 + pos: 22.5,-32.5 parent: 2 - uid: 2779 components: - type: Transform - pos: 25.5,4.5 + pos: -10.5,-19.5 parent: 2 - uid: 2780 components: - type: Transform - pos: 26.5,4.5 + pos: 29.5,-42.5 parent: 2 - uid: 2781 components: - type: Transform - pos: -4.5,-13.5 + pos: 67.5,-13.5 parent: 2 - uid: 2782 components: - type: Transform - pos: -20.5,-86.5 + pos: 25.5,-46.5 parent: 2 - uid: 2783 components: - type: Transform - pos: 20.5,-42.5 + pos: -5.5,-72.5 parent: 2 - uid: 2784 components: - type: Transform - pos: -18.5,-60.5 + pos: -7.5,10.5 parent: 2 - uid: 2785 components: - type: Transform - pos: 8.5,-56.5 + pos: 15.5,-42.5 parent: 2 - uid: 2786 components: - type: Transform - pos: -4.5,-60.5 + pos: 2.5,-68.5 parent: 2 - uid: 2787 components: - type: Transform - pos: -1.5,-65.5 + pos: 8.5,-67.5 parent: 2 - uid: 2788 components: - type: Transform - pos: -1.5,-60.5 + pos: -2.5,-26.5 parent: 2 - uid: 2789 components: - type: Transform - pos: 3.5,-60.5 + pos: 12.5,-7.5 parent: 2 - uid: 2790 components: - type: Transform - pos: -3.5,-51.5 + pos: 15.5,-39.5 parent: 2 - uid: 2791 components: - type: Transform - pos: 3.5,-48.5 + pos: 29.5,-60.5 parent: 2 - uid: 2792 components: - type: Transform - pos: 5.5,-48.5 + pos: 30.5,-13.5 parent: 2 - uid: 2793 components: - type: Transform - pos: 6.5,-47.5 + pos: 15.5,-45.5 parent: 2 - uid: 2794 components: - type: Transform - pos: -4.5,-50.5 + pos: 17.5,-45.5 parent: 2 - uid: 2795 components: - type: Transform - pos: -4.5,-49.5 + pos: -3.5,-26.5 parent: 2 - uid: 2796 components: - type: Transform - pos: -6.5,-45.5 + pos: 1.5,-71.5 parent: 2 - uid: 2797 components: - type: Transform - pos: 22.5,-24.5 + pos: -8.5,-26.5 parent: 2 - uid: 2798 components: - type: Transform - pos: -6.5,-71.5 + pos: -4.5,1.5 parent: 2 - uid: 2799 components: - type: Transform - pos: -9.5,-71.5 + pos: 8.5,-70.5 parent: 2 - uid: 2800 components: - type: Transform - pos: 10.5,-51.5 + pos: 30.5,-61.5 parent: 2 - uid: 2801 components: - type: Transform - pos: 16.5,-52.5 + pos: -16.5,-21.5 parent: 2 - uid: 2802 components: - type: Transform - pos: 14.5,-52.5 + pos: -4.5,-24.5 parent: 2 - uid: 2803 components: - type: Transform - pos: 25.5,-50.5 + pos: -4.5,-23.5 parent: 2 - uid: 2804 components: - type: Transform - pos: 25.5,-54.5 + pos: -4.5,-30.5 parent: 2 - uid: 2805 components: - type: Transform - pos: 25.5,-55.5 + pos: -4.5,-29.5 parent: 2 - uid: 2806 components: - type: Transform - pos: 25.5,-56.5 + pos: -4.5,-31.5 parent: 2 - uid: 2807 components: - type: Transform - pos: -4.5,-14.5 + pos: -9.5,-26.5 parent: 2 - uid: 2808 components: - type: Transform - pos: -4.5,-18.5 + pos: -11.5,-26.5 parent: 2 - uid: 2809 components: - type: Transform - pos: 59.5,-4.5 + pos: -15.5,-20.5 parent: 2 - uid: 2810 components: - type: Transform - pos: 46.5,-25.5 + pos: -15.5,-19.5 parent: 2 - uid: 2811 components: - type: Transform - pos: 46.5,-24.5 + pos: -15.5,-16.5 parent: 2 - uid: 2812 components: - type: Transform - pos: 46.5,-29.5 + pos: 46.5,-23.5 parent: 2 - uid: 2813 components: - type: Transform - pos: 46.5,-28.5 + pos: 1.5,-69.5 parent: 2 - uid: 2814 components: - type: Transform - pos: 45.5,-27.5 + pos: 30.5,-60.5 parent: 2 - uid: 2815 components: - type: Transform - pos: 43.5,-27.5 + pos: 9.5,-65.5 parent: 2 - uid: 2816 components: - type: Transform - pos: 44.5,-27.5 + pos: 38.5,-25.5 parent: 2 - uid: 2817 components: - type: Transform - pos: 43.5,-26.5 + pos: 41.5,-25.5 parent: 2 - uid: 2818 components: - type: Transform - pos: 5.5,10.5 + pos: 14.5,-49.5 parent: 2 - uid: 2819 components: - type: Transform - pos: 5.5,8.5 + pos: 24.5,-53.5 parent: 2 - uid: 2820 components: - type: Transform - pos: 10.5,-26.5 + pos: 25.5,-51.5 parent: 2 - uid: 2821 components: - type: Transform - pos: -18.5,-52.5 + pos: -3.5,2.5 parent: 2 - uid: 2822 components: - type: Transform - pos: -4.5,-21.5 + pos: -9.5,-75.5 parent: 2 - uid: 2823 components: - type: Transform - pos: 17.5,-29.5 + pos: -5.5,-26.5 parent: 2 - uid: 2824 components: - type: Transform - pos: -6.5,14.5 + pos: 25.5,-58.5 parent: 2 - uid: 2825 components: - type: Transform - pos: -6.5,13.5 + pos: 25.5,-59.5 parent: 2 - uid: 2826 components: - type: Transform - pos: 25.5,-32.5 + pos: 26.5,-60.5 parent: 2 - uid: 2827 components: - type: Transform - pos: 27.5,-25.5 + pos: 28.5,-42.5 parent: 2 - uid: 2828 components: - type: Transform - pos: 25.5,-22.5 + pos: 8.5,-69.5 parent: 2 - uid: 2829 components: - type: Transform - pos: 28.5,-23.5 + pos: 19.5,-47.5 parent: 2 - uid: 2830 components: - type: Transform - pos: 29.5,-23.5 + pos: -1.5,-74.5 parent: 2 - uid: 2831 components: - type: Transform - pos: 30.5,-23.5 + pos: 30.5,1.5 parent: 2 - uid: 2832 components: - type: Transform - pos: 28.5,-28.5 + pos: -1.5,-76.5 parent: 2 - uid: 2833 components: - type: Transform - pos: 7.5,-3.5 + pos: -5.5,-74.5 parent: 2 - uid: 2834 components: - type: Transform - pos: 23.5,-35.5 + pos: -5.5,-71.5 parent: 2 - uid: 2835 components: - type: Transform - pos: -16.5,-22.5 + pos: 31.5,2.5 parent: 2 - uid: 2836 components: - type: Transform - pos: -13.5,-53.5 + pos: 19.5,-42.5 parent: 2 - uid: 2837 components: - type: Transform - pos: 7.5,-65.5 + pos: 44.5,7.5 parent: 2 - uid: 2838 components: - type: Transform - pos: -13.5,-73.5 + pos: 4.5,-71.5 parent: 2 - uid: 2839 components: - type: Transform - pos: -7.5,-6.5 + pos: 10.5,-42.5 parent: 2 - uid: 2840 components: - type: Transform - pos: -29.5,1.5 + pos: -14.5,-47.5 parent: 2 - uid: 2841 components: - type: Transform - pos: 18.5,-40.5 + pos: -12.5,-49.5 parent: 2 - uid: 2842 components: - type: Transform - pos: -39.5,-68.5 + pos: -13.5,-49.5 parent: 2 - uid: 2843 components: - type: Transform - pos: -36.5,-70.5 + pos: -13.5,-48.5 parent: 2 - uid: 2844 components: - type: Transform - pos: 41.5,-26.5 + pos: -13.5,-47.5 parent: 2 - uid: 2845 components: - type: Transform - pos: -35.5,-70.5 + pos: -12.5,-47.5 parent: 2 - uid: 2846 components: - type: Transform - pos: -37.5,-69.5 + pos: -10.5,-18.5 parent: 2 - uid: 2847 components: - type: Transform - pos: -9.5,-22.5 + pos: 21.5,-9.5 parent: 2 - uid: 2848 components: - type: Transform - pos: 12.5,-8.5 + pos: 20.5,-11.5 parent: 2 - uid: 2849 components: - type: Transform - pos: 8.5,-5.5 + pos: 20.5,-12.5 parent: 2 - uid: 2850 components: - type: Transform - pos: -8.5,-22.5 + pos: 22.5,-41.5 parent: 2 - uid: 2851 components: - type: Transform - pos: -11.5,-22.5 + pos: 19.5,-13.5 parent: 2 - uid: 2852 components: - type: Transform - pos: -15.5,-66.5 + pos: 22.5,-11.5 parent: 2 - uid: 2853 components: - type: Transform - pos: -4.5,-12.5 + pos: 62.5,-8.5 parent: 2 - uid: 2854 components: - type: Transform - pos: 2.5,-69.5 + pos: 8.5,-60.5 parent: 2 - uid: 2855 components: - type: Transform - pos: 22.5,-32.5 + pos: -20.5,-88.5 parent: 2 - uid: 2856 components: - type: Transform - pos: -47.5,37.5 + pos: 28.5,-60.5 parent: 2 - uid: 2857 components: - type: Transform - pos: -10.5,-19.5 + pos: -8.5,-24.5 parent: 2 - uid: 2858 components: - type: Transform - pos: 29.5,-42.5 + pos: -4.5,-25.5 parent: 2 - uid: 2859 components: - type: Transform - pos: 67.5,-13.5 + pos: 8.5,-54.5 parent: 2 - uid: 2860 components: - type: Transform - pos: 25.5,-46.5 + pos: 8.5,-55.5 parent: 2 - uid: 2861 components: - type: Transform - pos: -5.5,-72.5 + pos: 20.5,0.5 parent: 2 - uid: 2862 components: - type: Transform - pos: -7.5,10.5 + pos: -12.5,-74.5 parent: 2 - uid: 2863 components: - type: Transform - pos: 15.5,-42.5 + pos: 40.5,-25.5 parent: 2 - uid: 2864 components: - type: Transform - pos: 2.5,-68.5 + pos: 31.5,-62.5 parent: 2 - uid: 2865 components: - type: Transform - pos: 7.5,-70.5 + pos: 22.5,-53.5 parent: 2 - uid: 2866 components: - type: Transform - pos: -2.5,-26.5 + pos: 25.5,-47.5 parent: 2 - uid: 2867 components: - type: Transform - pos: 12.5,-7.5 + pos: 4.5,8.5 parent: 2 - uid: 2868 components: - type: Transform - pos: 15.5,-39.5 + pos: -31.5,30.5 parent: 2 - uid: 2869 components: - type: Transform - pos: 29.5,-60.5 + pos: 15.5,-41.5 parent: 2 - uid: 2870 components: - type: Transform - pos: 30.5,-13.5 + pos: 20.5,1.5 parent: 2 - uid: 2871 components: - type: Transform - pos: 3.5,-67.5 + pos: -8.5,-23.5 parent: 2 - uid: 2872 components: - type: Transform - pos: 15.5,-45.5 + pos: 25.5,-60.5 parent: 2 - uid: 2873 components: - type: Transform - pos: 17.5,-45.5 + pos: -1.5,-69.5 parent: 2 - uid: 2874 components: - type: Transform - pos: -3.5,-26.5 + pos: 18.5,-32.5 parent: 2 - uid: 2875 components: - type: Transform - pos: 1.5,-71.5 + pos: -1.5,-26.5 parent: 2 - uid: 2876 components: - type: Transform - pos: -8.5,-26.5 + pos: -41.5,28.5 parent: 2 - uid: 2877 components: - type: Transform - pos: -4.5,1.5 + pos: -37.5,-68.5 parent: 2 - uid: 2878 components: - type: Transform - pos: 8.5,-70.5 + pos: 1.5,6.5 parent: 2 - uid: 2879 components: - type: Transform - pos: 30.5,-61.5 + pos: 0.5,-71.5 parent: 2 - uid: 2880 components: - type: Transform - pos: -16.5,-21.5 + pos: -10.5,-20.5 parent: 2 - uid: 2881 components: - type: Transform - pos: -4.5,-24.5 + pos: 4.5,-46.5 parent: 2 - uid: 2882 components: - type: Transform - pos: -4.5,-23.5 + pos: -8.5,-46.5 parent: 2 - uid: 2883 components: - type: Transform - pos: -4.5,-30.5 + pos: 17.5,-55.5 parent: 2 - uid: 2884 components: - type: Transform - pos: -4.5,-29.5 + pos: 18.5,-55.5 parent: 2 - uid: 2885 components: - type: Transform - pos: -4.5,-31.5 + pos: -6.5,-26.5 parent: 2 - uid: 2886 components: - type: Transform - pos: -9.5,-26.5 + pos: 24.5,-42.5 parent: 2 - uid: 2887 components: - type: Transform - pos: -11.5,-26.5 + pos: 12.5,-42.5 parent: 2 - uid: 2888 components: - type: Transform - pos: -15.5,-20.5 + pos: 17.5,-47.5 parent: 2 - uid: 2889 components: - type: Transform - pos: -15.5,-19.5 + pos: 17.5,-52.5 parent: 2 - uid: 2890 components: - type: Transform - pos: -15.5,-16.5 + pos: 14.5,-48.5 parent: 2 - uid: 2891 components: - type: Transform - pos: 46.5,-23.5 + pos: 28.5,-47.5 parent: 2 - uid: 2892 components: - type: Transform - pos: 1.5,-69.5 + pos: 25.5,-49.5 parent: 2 - uid: 2893 components: - type: Transform - pos: 30.5,-60.5 + pos: -1.5,-71.5 parent: 2 - uid: 2894 components: - type: Transform - pos: 9.5,-65.5 + pos: -6.5,1.5 parent: 2 - uid: 2895 components: - type: Transform - pos: 38.5,-25.5 + pos: 15.5,-49.5 parent: 2 - uid: 2896 components: - type: Transform - pos: 41.5,-25.5 + pos: -2.5,11.5 parent: 2 - uid: 2897 components: - type: Transform - pos: 14.5,-49.5 + pos: 4.5,6.5 parent: 2 - uid: 2898 components: - type: Transform - pos: 24.5,-53.5 + pos: 46.5,-26.5 parent: 2 - uid: 2899 components: - type: Transform - pos: 25.5,-51.5 + pos: 15.5,-35.5 parent: 2 - uid: 2900 components: - type: Transform - pos: -3.5,2.5 + pos: 15.5,-36.5 parent: 2 - uid: 2901 components: - type: Transform - pos: -9.5,-75.5 + pos: 20.5,-14.5 parent: 2 - uid: 2902 components: - type: Transform - pos: 2.5,-67.5 + pos: 20.5,-15.5 parent: 2 - uid: 2903 components: - type: Transform - pos: -5.5,-26.5 + pos: 20.5,-16.5 parent: 2 - uid: 2904 components: - type: Transform - pos: 25.5,-58.5 + pos: 20.5,-17.5 parent: 2 - uid: 2905 components: - type: Transform - pos: 25.5,-59.5 + pos: 19.5,-17.5 parent: 2 - uid: 2906 components: - type: Transform - pos: 26.5,-60.5 + pos: 17.5,-17.5 parent: 2 - uid: 2907 components: - type: Transform - pos: 28.5,-42.5 + pos: 23.5,-17.5 parent: 2 - uid: 2908 components: - type: Transform - pos: 8.5,-69.5 + pos: 25.5,-18.5 parent: 2 - uid: 2909 components: - type: Transform - pos: 19.5,-47.5 + pos: 27.5,-17.5 parent: 2 - uid: 2910 components: - type: Transform - pos: -1.5,-74.5 + pos: 27.5,-18.5 parent: 2 - uid: 2911 components: - type: Transform - pos: 30.5,1.5 + pos: 23.5,-18.5 parent: 2 - uid: 2912 components: - type: Transform - pos: -1.5,-76.5 + pos: 28.5,-17.5 parent: 2 - uid: 2913 components: - type: Transform - pos: -5.5,-74.5 + pos: 29.5,-17.5 parent: 2 - uid: 2914 components: - type: Transform - pos: -5.5,-71.5 + pos: 30.5,-17.5 parent: 2 - uid: 2915 components: - type: Transform - pos: 31.5,2.5 + pos: 30.5,-16.5 parent: 2 - uid: 2916 components: - type: Transform - pos: 19.5,-42.5 + pos: 32.5,-16.5 parent: 2 - uid: 2917 components: - type: Transform - pos: 44.5,7.5 + pos: 32.5,-15.5 parent: 2 - uid: 2918 components: - type: Transform - pos: 4.5,-71.5 + pos: 32.5,-14.5 parent: 2 - uid: 2919 components: - type: Transform - pos: -17.5,-52.5 + pos: 32.5,-12.5 parent: 2 - uid: 2920 components: - type: Transform - pos: 10.5,-42.5 + pos: 32.5,-17.5 parent: 2 - uid: 2921 components: - type: Transform - pos: -14.5,-47.5 + pos: 34.5,-18.5 parent: 2 - uid: 2922 components: - type: Transform - pos: -12.5,-49.5 + pos: 20.5,-8.5 parent: 2 - uid: 2923 components: - type: Transform - pos: -13.5,-49.5 + pos: 19.5,-8.5 parent: 2 - uid: 2924 components: - type: Transform - pos: -13.5,-48.5 + pos: 17.5,-8.5 parent: 2 - uid: 2925 components: - type: Transform - pos: -13.5,-47.5 + pos: 15.5,-8.5 parent: 2 - uid: 2926 components: - type: Transform - pos: -12.5,-47.5 + pos: 14.5,-7.5 parent: 2 - uid: 2927 components: - type: Transform - pos: -10.5,-18.5 + pos: 9.5,-14.5 parent: 2 - uid: 2928 components: - type: Transform - pos: 21.5,-9.5 + pos: 26.5,-14.5 parent: 2 - uid: 2929 components: - type: Transform - pos: 20.5,-11.5 + pos: 29.5,-8.5 parent: 2 - uid: 2930 components: - type: Transform - pos: 20.5,-12.5 + pos: 27.5,-14.5 parent: 2 - uid: 2931 components: - type: Transform - pos: 22.5,-41.5 + pos: 30.5,-8.5 parent: 2 - uid: 2932 components: - type: Transform - pos: 19.5,-13.5 + pos: 31.5,-8.5 parent: 2 - uid: 2933 components: - type: Transform - pos: 22.5,-11.5 + pos: -4.5,-15.5 parent: 2 - uid: 2934 components: - type: Transform - pos: 62.5,-8.5 + pos: -15.5,-17.5 parent: 2 - uid: 2935 components: - type: Transform - pos: -3.5,-53.5 + pos: -12.5,-73.5 parent: 2 - uid: 2936 components: - type: Transform - pos: -14.5,-58.5 + pos: -4.5,-19.5 parent: 2 - uid: 2937 components: - type: Transform - pos: 8.5,-60.5 + pos: -7.5,-47.5 parent: 2 - uid: 2938 components: - type: Transform - pos: -8.5,-61.5 + pos: 25.5,-24.5 parent: 2 - uid: 2939 components: - type: Transform - pos: -20.5,-88.5 + pos: 23.5,-23.5 parent: 2 - uid: 2940 components: - type: Transform - pos: 28.5,-60.5 + pos: 20.5,-22.5 parent: 2 - uid: 2941 components: - type: Transform - pos: -8.5,-24.5 + pos: 30.5,-24.5 parent: 2 - uid: 2942 components: - type: Transform - pos: -4.5,-25.5 + pos: -8.5,-47.5 parent: 2 - uid: 2943 components: - type: Transform - pos: 8.5,-54.5 + pos: 27.5,-31.5 parent: 2 - uid: 2944 components: - type: Transform - pos: 8.5,-55.5 + pos: 22.5,-33.5 parent: 2 - uid: 2945 components: - type: Transform - pos: -17.5,-61.5 + pos: 22.5,-31.5 parent: 2 - uid: 2946 components: - type: Transform - pos: -18.5,-61.5 + pos: -7.5,-45.5 parent: 2 - uid: 2947 components: - type: Transform - pos: 20.5,0.5 + pos: -5.5,-45.5 parent: 2 - uid: 2948 components: - type: Transform - pos: -12.5,-74.5 + pos: -4.5,-45.5 parent: 2 - uid: 2949 components: - type: Transform - pos: 40.5,-25.5 + pos: -3.5,-45.5 parent: 2 - uid: 2950 components: - type: Transform - pos: 31.5,-62.5 + pos: 5.5,-46.5 parent: 2 - uid: 2951 components: - type: Transform - pos: 22.5,-53.5 + pos: 6.5,-46.5 parent: 2 - uid: 2952 components: - type: Transform - pos: 25.5,-47.5 + pos: 19.5,-50.5 parent: 2 - uid: 2953 components: - type: Transform - pos: 5.5,-70.5 + pos: -2.5,-42.5 parent: 2 - uid: 2954 components: - type: Transform - pos: 4.5,8.5 + pos: -4.5,-42.5 parent: 2 - uid: 2955 components: - type: Transform - pos: -31.5,30.5 + pos: -6.5,-42.5 parent: 2 - uid: 2956 components: - type: Transform - pos: 15.5,-41.5 + pos: -7.5,-42.5 parent: 2 - uid: 2957 components: - type: Transform - pos: 20.5,1.5 + pos: -8.5,-42.5 parent: 2 - uid: 2958 components: - type: Transform - pos: -8.5,-23.5 + pos: -9.5,-42.5 parent: 2 - uid: 2959 components: - type: Transform - pos: 25.5,-60.5 + pos: -10.5,-42.5 parent: 2 - uid: 2960 components: - type: Transform - pos: -1.5,-69.5 + pos: -11.5,-42.5 parent: 2 - uid: 2961 components: - type: Transform - pos: 18.5,-32.5 + pos: -12.5,-42.5 parent: 2 - uid: 2962 components: - type: Transform - pos: -1.5,-26.5 + pos: 1.5,-41.5 parent: 2 - uid: 2963 components: - type: Transform - pos: -41.5,28.5 + pos: 2.5,-41.5 parent: 2 - uid: 2964 components: - type: Transform - pos: -37.5,-68.5 + pos: 3.5,-41.5 parent: 2 - uid: 2965 components: - type: Transform - pos: 1.5,6.5 + pos: 5.5,-41.5 parent: 2 - uid: 2966 components: - type: Transform - pos: 0.5,-71.5 + pos: 5.5,-42.5 parent: 2 - uid: 2967 components: - type: Transform - pos: -10.5,-20.5 + pos: -4.5,-38.5 parent: 2 - uid: 2968 components: - type: Transform - pos: 4.5,-46.5 + pos: -4.5,-36.5 parent: 2 - uid: 2969 components: - type: Transform - pos: -8.5,-46.5 + pos: -4.5,-35.5 parent: 2 - uid: 2970 components: - type: Transform - pos: 17.5,-55.5 + pos: -4.5,-34.5 parent: 2 - uid: 2971 components: - type: Transform - pos: 18.5,-55.5 + pos: -11.5,-46.5 parent: 2 - uid: 2972 components: - type: Transform - pos: -6.5,-26.5 + pos: -12.5,-46.5 parent: 2 - uid: 2973 components: - type: Transform - pos: 24.5,-42.5 + pos: -5.5,-69.5 parent: 2 - uid: 2974 components: - type: Transform - pos: 14.5,-42.5 + pos: 26.5,-42.5 parent: 2 - uid: 2975 components: - type: Transform - pos: 17.5,-47.5 + pos: 30.5,2.5 parent: 2 - uid: 2976 components: - type: Transform - pos: 17.5,-52.5 + pos: 18.5,-41.5 parent: 2 - uid: 2977 components: - type: Transform - pos: 14.5,-48.5 + pos: 8.5,-68.5 parent: 2 - uid: 2978 components: - type: Transform - pos: 4.5,-70.5 + pos: 26.5,-47.5 parent: 2 - uid: 2979 components: - type: Transform - pos: 28.5,-47.5 + pos: -4.5,-27.5 parent: 2 - uid: 2980 components: - type: Transform - pos: 25.5,-49.5 + pos: 29.5,2.5 parent: 2 - uid: 2981 components: - type: Transform - pos: -1.5,-71.5 + pos: 25.5,-48.5 parent: 2 - uid: 2982 components: - type: Transform - pos: -6.5,1.5 + pos: -4.5,7.5 parent: 2 - uid: 2983 components: - type: Transform - pos: 15.5,-49.5 + pos: 28.5,-32.5 parent: 2 - uid: 2984 components: - type: Transform - pos: -2.5,11.5 + pos: 30.5,-30.5 parent: 2 - uid: 2985 components: - type: Transform - pos: 4.5,6.5 + pos: 30.5,-29.5 parent: 2 - uid: 2986 components: - type: Transform - pos: 46.5,-26.5 + pos: 30.5,-28.5 parent: 2 - uid: 2987 components: - type: Transform - pos: 15.5,-35.5 + pos: 62.5,-10.5 parent: 2 - uid: 2988 components: - type: Transform - pos: 15.5,-36.5 + pos: 9.5,2.5 parent: 2 - uid: 2989 components: - type: Transform - pos: 20.5,-14.5 + pos: 2.5,2.5 parent: 2 - uid: 2990 components: - type: Transform - pos: 20.5,-15.5 + pos: 27.5,-32.5 parent: 2 - uid: 2991 components: - type: Transform - pos: 20.5,-16.5 + pos: 62.5,-12.5 parent: 2 - uid: 2992 components: - type: Transform - pos: 20.5,-17.5 + pos: -4.5,-22.5 parent: 2 - uid: 2993 components: - type: Transform - pos: 19.5,-17.5 + pos: -4.5,-3.5 parent: 2 - uid: 2994 components: - type: Transform - pos: 17.5,-17.5 + pos: -4.5,-2.5 parent: 2 - uid: 2995 components: - type: Transform - pos: 23.5,-17.5 + pos: -4.5,-0.5 parent: 2 - uid: 2996 components: - type: Transform - pos: 25.5,-18.5 + pos: -4.5,-1.5 parent: 2 - uid: 2997 components: - type: Transform - pos: 27.5,-17.5 + pos: -8.5,-0.5 parent: 2 - uid: 2998 components: - type: Transform - pos: 27.5,-18.5 + pos: -8.5,0.5 parent: 2 - uid: 2999 components: - type: Transform - pos: 23.5,-18.5 + pos: -3.5,-42.5 parent: 2 - uid: 3000 components: - type: Transform - pos: 28.5,-17.5 + pos: -0.5,-41.5 parent: 2 - uid: 3001 components: - type: Transform - pos: 29.5,-17.5 + pos: -4.5,-32.5 parent: 2 - uid: 3002 components: - type: Transform - pos: 30.5,-17.5 + pos: 22.5,-42.5 parent: 2 - uid: 3003 components: - type: Transform - pos: 30.5,-16.5 + pos: -1.5,-78.5 parent: 2 - uid: 3004 components: - type: Transform - pos: 32.5,-16.5 + pos: -4.5,-74.5 parent: 2 - uid: 3005 components: - type: Transform - pos: 32.5,-15.5 + pos: 13.5,1.5 parent: 2 - uid: 3006 components: - type: Transform - pos: 32.5,-14.5 + pos: 3.5,0.5 parent: 2 - uid: 3007 components: - type: Transform - pos: 32.5,-12.5 + pos: 11.5,2.5 parent: 2 - uid: 3008 components: - type: Transform - pos: 32.5,-17.5 + pos: 5.5,6.5 parent: 2 - uid: 3009 components: - type: Transform - pos: 34.5,-18.5 + pos: 20.5,-0.5 parent: 2 - uid: 3010 components: - type: Transform - pos: 20.5,-8.5 + pos: 35.5,-37.5 parent: 2 - uid: 3011 components: - type: Transform - pos: 19.5,-8.5 + pos: 9.5,-42.5 parent: 2 - uid: 3012 components: - type: Transform - pos: 17.5,-8.5 + pos: 37.5,13.5 parent: 2 - uid: 3013 components: - type: Transform - pos: 15.5,-8.5 + pos: -33.5,-55.5 parent: 2 - uid: 3014 components: - type: Transform - pos: 14.5,-7.5 + pos: -38.5,-68.5 parent: 2 - uid: 3015 components: - type: Transform - pos: 9.5,-14.5 + pos: -8.5,-5.5 parent: 2 - uid: 3016 components: - type: Transform - pos: 26.5,-14.5 + pos: -9.5,-5.5 parent: 2 - uid: 3017 components: - type: Transform - pos: 29.5,-8.5 + pos: -9.5,-3.5 parent: 2 - uid: 3018 components: - type: Transform - pos: 27.5,-14.5 + pos: -4.5,-39.5 parent: 2 - uid: 3019 components: - type: Transform - pos: 30.5,-8.5 + pos: 0.5,-40.5 parent: 2 - uid: 3020 components: - type: Transform - pos: 31.5,-8.5 + pos: 21.5,-32.5 parent: 2 - uid: 3021 components: - type: Transform - pos: -4.5,-15.5 + pos: 0.5,-69.5 parent: 2 - uid: 3022 components: - type: Transform - pos: -15.5,-17.5 + pos: -19.5,-65.5 parent: 2 - uid: 3023 components: - type: Transform - pos: -12.5,-73.5 + pos: -19.5,-67.5 parent: 2 - uid: 3024 components: - type: Transform - pos: -4.5,-19.5 + pos: -19.5,-71.5 parent: 2 - uid: 3025 components: - type: Transform - pos: -1.5,-63.5 + pos: -18.5,-73.5 parent: 2 - uid: 3026 components: - type: Transform - pos: -7.5,-47.5 + pos: -18.5,-75.5 parent: 2 - uid: 3027 components: - type: Transform - pos: 25.5,-24.5 + pos: -16.5,-77.5 parent: 2 - uid: 3028 components: - type: Transform - pos: 23.5,-23.5 + pos: -24.5,-14.5 parent: 2 - uid: 3029 components: - type: Transform - pos: 20.5,-22.5 + pos: 23.5,-24.5 parent: 2 - uid: 3030 components: - type: Transform - pos: 30.5,-24.5 + pos: 45.5,-24.5 parent: 2 - uid: 3031 components: - type: Transform - pos: -8.5,-47.5 + pos: 12.5,-15.5 parent: 2 - uid: 3032 components: - type: Transform - pos: 27.5,-31.5 + pos: 7.5,-58.5 parent: 2 - uid: 3033 components: - type: Transform - pos: 22.5,-33.5 + pos: 13.5,-0.5 parent: 2 - uid: 3034 components: - type: Transform - pos: 22.5,-31.5 + pos: 20.5,2.5 parent: 2 - uid: 3035 components: - type: Transform - pos: -7.5,-45.5 + pos: 20.5,-1.5 parent: 2 - uid: 3036 components: - type: Transform - pos: -5.5,-45.5 + pos: 17.5,-13.5 parent: 2 - uid: 3037 components: - type: Transform - pos: -4.5,-45.5 + pos: 62.5,-11.5 parent: 2 - uid: 3038 components: - type: Transform - pos: -3.5,-45.5 + pos: -8.5,-25.5 parent: 2 - uid: 3039 components: - type: Transform - pos: 5.5,-46.5 + pos: -36.5,-69.5 parent: 2 - uid: 3040 components: - type: Transform - pos: 6.5,-46.5 + pos: 19.5,-32.5 parent: 2 - uid: 3041 components: - type: Transform - pos: -12.5,-54.5 + pos: 1.5,11.5 parent: 2 - uid: 3042 components: - type: Transform - pos: 19.5,-50.5 + pos: 22.5,-17.5 parent: 2 - uid: 3043 components: - type: Transform - pos: -2.5,-42.5 + pos: 24.5,-17.5 parent: 2 - uid: 3044 components: - type: Transform - pos: -4.5,-42.5 + pos: 25.5,-17.5 parent: 2 - uid: 3045 components: - type: Transform - pos: -6.5,-42.5 + pos: 26.5,-17.5 parent: 2 - uid: 3046 components: - type: Transform - pos: -7.5,-42.5 + pos: 17.5,-40.5 parent: 2 - uid: 3047 components: - type: Transform - pos: -8.5,-42.5 + pos: -4.5,-17.5 parent: 2 - uid: 3048 components: - type: Transform - pos: -9.5,-42.5 + pos: 20.5,-47.5 parent: 2 - uid: 3049 components: - type: Transform - pos: -10.5,-42.5 + pos: 6.5,-66.5 parent: 2 - uid: 3050 components: - type: Transform - pos: -11.5,-42.5 + pos: 6.5,-67.5 parent: 2 - uid: 3051 components: - type: Transform - pos: -12.5,-42.5 + pos: 6.5,-72.5 parent: 2 - uid: 3052 components: - type: Transform - pos: 1.5,-41.5 + pos: 3.5,-71.5 parent: 2 - uid: 3053 components: - type: Transform - pos: 2.5,-41.5 + pos: 6.5,-70.5 parent: 2 - uid: 3054 components: - type: Transform - pos: 3.5,-41.5 + pos: -0.5,-71.5 parent: 2 - uid: 3055 components: - type: Transform - pos: 5.5,-41.5 + pos: -3.5,0.5 parent: 2 - uid: 3056 components: - type: Transform - pos: 5.5,-42.5 + pos: -3.5,1.5 parent: 2 - uid: 3057 components: - type: Transform - pos: -4.5,-38.5 + pos: 15.5,-46.5 parent: 2 - uid: 3058 components: - type: Transform - pos: -4.5,-36.5 + pos: 17.5,-46.5 parent: 2 - uid: 3059 components: - type: Transform - pos: -4.5,-35.5 + pos: 19.5,-48.5 parent: 2 - uid: 3060 components: - type: Transform - pos: -4.5,-34.5 + pos: 25.5,-53.5 parent: 2 - uid: 3061 components: - type: Transform - pos: -12.5,-43.5 + pos: 18.5,-42.5 parent: 2 - uid: 3062 components: - type: Transform - pos: -12.5,-44.5 + pos: 16.5,-40.5 parent: 2 - uid: 3063 components: - type: Transform - pos: -12.5,-46.5 + pos: -4.5,-26.5 parent: 2 - uid: 3064 components: - type: Transform - pos: -5.5,-69.5 + pos: 33.5,-32.5 parent: 2 - uid: 3065 components: - type: Transform - pos: 26.5,-42.5 + pos: 34.5,-32.5 parent: 2 - uid: 3066 components: - type: Transform - pos: 30.5,2.5 + pos: 15.5,-31.5 parent: 2 - uid: 3067 components: - type: Transform - pos: 18.5,-41.5 + pos: 15.5,-30.5 parent: 2 - uid: 3068 components: - type: Transform - pos: 8.5,-68.5 + pos: 15.5,-29.5 parent: 2 - uid: 3069 components: - type: Transform - pos: 26.5,-47.5 + pos: 15.5,-21.5 parent: 2 - uid: 3070 components: - type: Transform - pos: -4.5,-27.5 + pos: 15.5,-22.5 parent: 2 - uid: 3071 components: - type: Transform - pos: 29.5,2.5 + pos: 15.5,-23.5 parent: 2 - uid: 3072 components: - type: Transform - pos: 25.5,-48.5 + pos: 15.5,-24.5 parent: 2 - uid: 3073 components: - type: Transform - pos: -4.5,7.5 + pos: 15.5,-25.5 parent: 2 - uid: 3074 components: - type: Transform - pos: 28.5,-32.5 + pos: 15.5,-26.5 parent: 2 - uid: 3075 components: - type: Transform - pos: 30.5,-30.5 + pos: 34.5,-17.5 parent: 2 - uid: 3076 components: - type: Transform - pos: 30.5,-29.5 + pos: 35.5,-18.5 parent: 2 - uid: 3077 components: - type: Transform - pos: 30.5,-28.5 + pos: 18.5,-8.5 parent: 2 - uid: 3078 components: - type: Transform - pos: 62.5,-10.5 + pos: 16.5,-8.5 parent: 2 - uid: 3079 components: - type: Transform - pos: 9.5,2.5 + pos: 14.5,-8.5 parent: 2 - uid: 3080 components: - type: Transform - pos: 2.5,2.5 + pos: 14.5,-4.5 parent: 2 - uid: 3081 components: - type: Transform - pos: 27.5,-32.5 + pos: 14.5,-1.5 parent: 2 - uid: 3082 components: - type: Transform - pos: 62.5,-12.5 + pos: 15.5,-9.5 parent: 2 - uid: 3083 components: - type: Transform - pos: -4.5,-22.5 + pos: 15.5,-12.5 parent: 2 - uid: 3084 components: - type: Transform - pos: -4.5,-3.5 + pos: 39.5,-25.5 parent: 2 - uid: 3085 components: - type: Transform - pos: -4.5,-2.5 + pos: 39.5,-26.5 parent: 2 - uid: 3086 components: - type: Transform - pos: -4.5,-0.5 + pos: -25.5,-86.5 parent: 2 - uid: 3087 components: - type: Transform - pos: -4.5,-1.5 + pos: -25.5,-85.5 parent: 2 - uid: 3088 components: - type: Transform - pos: -8.5,-0.5 + pos: 8.5,-53.5 parent: 2 - uid: 3089 components: - type: Transform - pos: -8.5,0.5 + pos: 10.5,-52.5 parent: 2 - uid: 3090 components: - type: Transform - pos: -3.5,-42.5 + pos: 10.5,-51.5 parent: 2 - uid: 3091 components: - type: Transform - pos: -0.5,-41.5 + pos: 10.5,-50.5 parent: 2 - uid: 3092 components: - type: Transform - pos: -4.5,-32.5 + pos: 8.5,-49.5 parent: 2 - uid: 3093 components: - type: Transform - pos: -6.5,-63.5 + pos: 15.5,-43.5 parent: 2 - uid: 3094 components: - type: Transform - pos: 22.5,-42.5 + pos: -10.5,-60.5 parent: 2 - uid: 3095 components: - type: Transform - pos: -1.5,-78.5 + pos: -19.5,-61.5 parent: 2 - uid: 3096 components: - type: Transform - pos: -4.5,-74.5 + pos: -19.5,-66.5 parent: 2 - uid: 3097 components: - type: Transform - pos: 13.5,1.5 + pos: -28.5,-79.5 parent: 2 - uid: 3098 components: - type: Transform - pos: 3.5,0.5 + pos: -28.5,-78.5 parent: 2 - uid: 3099 components: - type: Transform - pos: 11.5,2.5 + pos: -27.5,-78.5 parent: 2 - uid: 3100 components: - type: Transform - pos: 5.5,6.5 + pos: -26.5,-78.5 parent: 2 - uid: 3101 components: - type: Transform - pos: 20.5,-0.5 + pos: -26.5,-77.5 parent: 2 - uid: 3102 components: - type: Transform - pos: 35.5,-37.5 + pos: -25.5,-77.5 parent: 2 - uid: 3103 components: - type: Transform - pos: 9.5,-42.5 + pos: -22.5,-86.5 parent: 2 - uid: 3104 components: - type: Transform - pos: 37.5,13.5 + pos: -20.5,-85.5 parent: 2 - uid: 3105 components: - type: Transform - pos: -33.5,-55.5 + pos: -21.5,-85.5 parent: 2 - uid: 3106 components: - type: Transform - pos: -38.5,-68.5 + pos: -24.5,-85.5 parent: 2 - uid: 3107 components: - type: Transform - pos: -8.5,-5.5 + pos: -23.5,-85.5 parent: 2 - uid: 3108 components: - type: Transform - pos: -9.5,-5.5 + pos: -22.5,-85.5 parent: 2 - uid: 3109 components: - type: Transform - pos: -9.5,-3.5 + pos: -22.5,-84.5 parent: 2 - uid: 3110 components: - type: Transform - pos: -4.5,-39.5 + pos: -22.5,-81.5 parent: 2 - uid: 3111 components: - type: Transform - pos: 0.5,-40.5 + pos: -22.5,-83.5 parent: 2 - uid: 3112 components: - type: Transform - pos: 21.5,-32.5 + pos: -22.5,-82.5 parent: 2 - uid: 3113 components: - type: Transform - pos: 0.5,-69.5 + pos: -22.5,-80.5 parent: 2 - uid: 3114 components: - type: Transform - pos: -19.5,-65.5 + pos: -23.5,-80.5 parent: 2 - uid: 3115 components: - type: Transform - pos: -19.5,-67.5 + pos: -23.5,-79.5 parent: 2 - uid: 3116 components: - type: Transform - pos: -19.5,-71.5 + pos: -23.5,-78.5 parent: 2 - uid: 3117 components: - type: Transform - pos: -18.5,-73.5 + pos: -23.5,-77.5 parent: 2 - uid: 3118 components: - type: Transform - pos: -18.5,-75.5 + pos: -24.5,-77.5 parent: 2 - uid: 3119 components: - type: Transform - pos: -16.5,-77.5 + pos: -24.5,-76.5 parent: 2 - uid: 3120 components: - type: Transform - pos: -24.5,-14.5 + pos: -24.5,-75.5 parent: 2 - uid: 3121 components: - type: Transform - pos: 23.5,-24.5 + pos: -24.5,-74.5 parent: 2 - uid: 3122 components: - type: Transform - pos: 45.5,-24.5 + pos: -24.5,-73.5 parent: 2 - uid: 3123 components: - type: Transform - pos: -47.5,36.5 + pos: -24.5,-72.5 parent: 2 - uid: 3124 components: - type: Transform - pos: 12.5,-15.5 + pos: -23.5,-72.5 parent: 2 - uid: 3125 components: - type: Transform - pos: -14.5,-57.5 + pos: -22.5,-72.5 parent: 2 - uid: 3126 components: - type: Transform - pos: 0.5,-48.5 + pos: -21.5,-72.5 parent: 2 - uid: 3127 components: - type: Transform - pos: 13.5,-0.5 + pos: -21.5,-71.5 parent: 2 - uid: 3128 components: - type: Transform - pos: 20.5,2.5 + pos: -20.5,-79.5 parent: 2 - uid: 3129 components: - type: Transform - pos: 20.5,-1.5 + pos: -19.5,-79.5 parent: 2 - uid: 3130 components: - type: Transform - pos: 17.5,-13.5 + pos: -19.5,-78.5 parent: 2 - uid: 3131 components: - type: Transform - pos: 62.5,-11.5 + pos: 33.5,3.5 parent: 2 - uid: 3132 components: - type: Transform - pos: -8.5,-25.5 + pos: 33.5,4.5 parent: 2 - uid: 3133 components: - type: Transform - pos: -36.5,-69.5 + pos: 33.5,7.5 parent: 2 - uid: 3134 components: - type: Transform - pos: 19.5,-32.5 + pos: 33.5,6.5 parent: 2 - uid: 3135 components: - type: Transform - pos: 1.5,11.5 + pos: 33.5,5.5 parent: 2 - uid: 3136 components: - type: Transform - pos: 22.5,-17.5 + pos: 26.5,7.5 parent: 2 - uid: 3137 components: - type: Transform - pos: 24.5,-17.5 + pos: 33.5,0.5 parent: 2 - uid: 3138 components: - type: Transform - pos: 25.5,-17.5 + pos: 33.5,-0.5 parent: 2 - uid: 3139 components: - type: Transform - pos: 26.5,-17.5 + pos: 33.5,-1.5 parent: 2 - uid: 3140 components: - type: Transform - pos: 17.5,-40.5 + pos: 33.5,-2.5 parent: 2 - uid: 3141 components: - type: Transform - pos: -4.5,-17.5 + pos: 33.5,-3.5 parent: 2 - uid: 3142 components: - type: Transform - pos: 20.5,-47.5 + pos: 33.5,-4.5 parent: 2 - uid: 3143 components: - type: Transform - pos: -3.5,-68.5 + pos: 33.5,-5.5 parent: 2 - uid: 3144 components: - type: Transform - pos: 6.5,-66.5 + pos: 27.5,7.5 parent: 2 - uid: 3145 components: - type: Transform - pos: 6.5,-67.5 + pos: 28.5,7.5 parent: 2 - uid: 3146 components: - type: Transform - pos: 5.5,-67.5 + pos: 29.5,7.5 parent: 2 - uid: 3147 components: - type: Transform - pos: 4.5,-67.5 + pos: 30.5,7.5 parent: 2 - uid: 3148 components: - type: Transform - pos: 6.5,-72.5 + pos: 31.5,7.5 parent: 2 - uid: 3149 components: - type: Transform - pos: 3.5,-71.5 + pos: 32.5,7.5 parent: 2 - uid: 3150 components: - type: Transform - pos: 6.5,-70.5 + pos: 26.5,8.5 parent: 2 - uid: 3151 components: - type: Transform - pos: -0.5,-71.5 + pos: 26.5,9.5 parent: 2 - uid: 3152 components: - type: Transform - pos: -3.5,0.5 + pos: 26.5,10.5 parent: 2 - uid: 3153 components: - type: Transform - pos: -3.5,1.5 + pos: 26.5,11.5 parent: 2 - uid: 3154 components: - type: Transform - pos: 15.5,-46.5 + pos: 26.5,12.5 parent: 2 - uid: 3155 components: - type: Transform - pos: 17.5,-46.5 + pos: 26.5,13.5 parent: 2 - uid: 3156 components: - type: Transform - pos: 19.5,-48.5 + pos: 25.5,7.5 parent: 2 - uid: 3157 components: - type: Transform - pos: 25.5,-53.5 + pos: 24.5,7.5 parent: 2 - uid: 3158 components: - type: Transform - pos: 18.5,-42.5 + pos: 23.5,7.5 parent: 2 - uid: 3159 components: - type: Transform - pos: 16.5,-40.5 + pos: 22.5,7.5 parent: 2 - uid: 3160 components: - type: Transform - pos: -4.5,-26.5 + pos: 21.5,7.5 parent: 2 - uid: 3161 components: - type: Transform - pos: 33.5,-32.5 + pos: 34.5,0.5 parent: 2 - uid: 3162 components: - type: Transform - pos: 34.5,-32.5 + pos: 37.5,-25.5 parent: 2 - uid: 3163 components: - type: Transform - pos: 15.5,-31.5 + pos: 36.5,-25.5 parent: 2 - uid: 3164 components: - type: Transform - pos: 15.5,-30.5 + pos: 36.5,-24.5 parent: 2 - uid: 3165 components: - type: Transform - pos: 15.5,-29.5 + pos: 36.5,-23.5 parent: 2 - uid: 3166 components: - type: Transform - pos: 15.5,-21.5 + pos: 36.5,-22.5 parent: 2 - uid: 3167 components: - type: Transform - pos: 15.5,-22.5 + pos: 35.5,-22.5 parent: 2 - uid: 3168 components: - type: Transform - pos: 15.5,-23.5 + pos: 35.5,-21.5 parent: 2 - uid: 3169 components: - type: Transform - pos: 15.5,-24.5 + pos: 35.5,-25.5 parent: 2 - uid: 3170 components: - type: Transform - pos: 15.5,-25.5 + pos: 34.5,-25.5 parent: 2 - uid: 3171 components: - type: Transform - pos: 15.5,-26.5 + pos: 35.5,-26.5 parent: 2 - uid: 3172 components: - type: Transform - pos: 34.5,-17.5 + pos: 35.5,-27.5 parent: 2 - uid: 3173 components: - type: Transform - pos: 35.5,-18.5 + pos: 35.5,-28.5 parent: 2 - uid: 3174 components: - type: Transform - pos: 18.5,-8.5 + pos: 35.5,-29.5 parent: 2 - uid: 3175 components: - type: Transform - pos: 16.5,-8.5 + pos: 35.5,-30.5 parent: 2 - uid: 3176 components: - type: Transform - pos: 14.5,-8.5 + pos: 35.5,-31.5 parent: 2 - uid: 3177 components: - type: Transform - pos: 14.5,-4.5 + pos: 35.5,-32.5 parent: 2 - uid: 3178 components: - type: Transform - pos: 14.5,-1.5 + pos: 35.5,-33.5 parent: 2 - uid: 3179 components: - type: Transform - pos: 15.5,-9.5 + pos: 35.5,-34.5 parent: 2 - uid: 3180 components: - type: Transform - pos: 15.5,-12.5 + pos: 35.5,-35.5 parent: 2 - uid: 3181 components: - type: Transform - pos: 39.5,-25.5 + pos: 35.5,-36.5 parent: 2 - uid: 3182 components: - type: Transform - pos: 39.5,-26.5 + pos: 36.5,-30.5 parent: 2 - uid: 3183 components: - type: Transform - pos: -25.5,-86.5 + pos: 37.5,-30.5 parent: 2 - uid: 3184 components: - type: Transform - pos: -25.5,-85.5 + pos: 38.5,-30.5 parent: 2 - uid: 3185 components: - type: Transform - pos: 5.5,-53.5 + pos: 39.5,-30.5 parent: 2 - uid: 3186 components: - type: Transform - pos: 6.5,-53.5 + pos: 31.5,-4.5 parent: 2 - uid: 3187 components: - type: Transform - pos: 7.5,-53.5 + pos: -4.5,-10.5 parent: 2 - uid: 3188 components: - type: Transform - pos: 8.5,-53.5 + pos: -4.5,-9.5 parent: 2 - uid: 3189 components: - type: Transform - pos: 8.5,-52.5 + pos: -4.5,-8.5 parent: 2 - uid: 3190 components: - type: Transform - pos: 9.5,-52.5 + pos: -4.5,-7.5 parent: 2 - uid: 3191 components: - type: Transform - pos: 10.5,-52.5 + pos: -4.5,-6.5 parent: 2 - uid: 3192 components: - type: Transform - pos: 10.5,-49.5 + pos: -4.5,-5.5 parent: 2 - uid: 3193 components: - type: Transform - pos: 15.5,-43.5 + pos: 63.5,-5.5 parent: 2 - uid: 3194 components: - type: Transform - pos: -16.5,-61.5 + pos: 62.5,-5.5 parent: 2 - uid: 3195 components: - type: Transform - pos: -19.5,-64.5 + pos: 21.5,15.5 parent: 2 - uid: 3196 components: - type: Transform - pos: -19.5,-66.5 + pos: 21.5,14.5 parent: 2 - uid: 3197 components: - type: Transform - pos: -14.5,-67.5 + pos: 21.5,13.5 parent: 2 - uid: 3198 components: - type: Transform - pos: -28.5,-79.5 + pos: 21.5,12.5 parent: 2 - uid: 3199 components: - type: Transform - pos: -28.5,-78.5 + pos: 21.5,11.5 parent: 2 - uid: 3200 components: - type: Transform - pos: -27.5,-78.5 + pos: 21.5,10.5 parent: 2 - uid: 3201 components: - type: Transform - pos: -26.5,-78.5 + pos: 20.5,14.5 parent: 2 - uid: 3202 components: - type: Transform - pos: -26.5,-77.5 + pos: 19.5,14.5 parent: 2 - uid: 3203 components: - type: Transform - pos: -25.5,-77.5 + pos: 18.5,14.5 parent: 2 - uid: 3204 components: - type: Transform - pos: -22.5,-86.5 + pos: 17.5,14.5 parent: 2 - uid: 3205 components: - type: Transform - pos: -20.5,-85.5 + pos: 17.5,13.5 parent: 2 - uid: 3206 components: - type: Transform - pos: -21.5,-85.5 + pos: 17.5,12.5 parent: 2 - uid: 3207 components: - type: Transform - pos: -24.5,-85.5 + pos: 17.5,11.5 parent: 2 - uid: 3208 components: - type: Transform - pos: -23.5,-85.5 + pos: 16.5,11.5 parent: 2 - uid: 3209 components: - type: Transform - pos: -22.5,-85.5 + pos: 15.5,11.5 parent: 2 - uid: 3210 components: - type: Transform - pos: -22.5,-84.5 + pos: 14.5,11.5 parent: 2 - uid: 3211 components: - type: Transform - pos: -22.5,-81.5 + pos: 13.5,11.5 parent: 2 - uid: 3212 components: - type: Transform - pos: -22.5,-83.5 + pos: 13.5,12.5 parent: 2 - uid: 3213 components: - type: Transform - pos: -22.5,-82.5 + pos: 13.5,13.5 parent: 2 - uid: 3214 components: - type: Transform - pos: -22.5,-80.5 + pos: 12.5,13.5 parent: 2 - uid: 3215 components: - type: Transform - pos: -23.5,-80.5 + pos: 11.5,13.5 parent: 2 - uid: 3216 components: - type: Transform - pos: -23.5,-79.5 + pos: 11.5,12.5 parent: 2 - uid: 3217 components: - type: Transform - pos: -23.5,-78.5 + pos: 11.5,11.5 parent: 2 - uid: 3218 components: - type: Transform - pos: -23.5,-77.5 + pos: 11.5,10.5 parent: 2 - uid: 3219 components: - type: Transform - pos: -24.5,-77.5 + pos: 11.5,9.5 parent: 2 - uid: 3220 components: - type: Transform - pos: -24.5,-76.5 + pos: 11.5,8.5 parent: 2 - uid: 3221 components: - type: Transform - pos: -24.5,-75.5 + pos: 11.5,7.5 parent: 2 - uid: 3222 components: - type: Transform - pos: -24.5,-74.5 + pos: 11.5,6.5 parent: 2 - uid: 3223 components: - type: Transform - pos: -24.5,-73.5 + pos: 12.5,8.5 parent: 2 - uid: 3224 components: - type: Transform - pos: -24.5,-72.5 + pos: 13.5,8.5 parent: 2 - uid: 3225 components: - type: Transform - pos: -23.5,-72.5 + pos: 13.5,7.5 parent: 2 - uid: 3226 components: - type: Transform - pos: -22.5,-72.5 + pos: 14.5,7.5 parent: 2 - uid: 3227 components: - type: Transform - pos: -21.5,-72.5 + pos: 15.5,7.5 parent: 2 - uid: 3228 components: - type: Transform - pos: -21.5,-71.5 + pos: 16.5,7.5 parent: 2 - uid: 3229 components: - type: Transform - pos: -20.5,-79.5 + pos: 17.5,7.5 parent: 2 - uid: 3230 components: - type: Transform - pos: -19.5,-79.5 + pos: 17.5,6.5 parent: 2 - uid: 3231 components: - type: Transform - pos: -19.5,-78.5 + pos: 17.5,5.5 parent: 2 - uid: 3232 components: - type: Transform - pos: 33.5,3.5 + pos: 17.5,4.5 parent: 2 - uid: 3233 components: - type: Transform - pos: 33.5,4.5 + pos: 17.5,3.5 parent: 2 - uid: 3234 components: - type: Transform - pos: 33.5,7.5 + pos: 17.5,2.5 parent: 2 - uid: 3235 components: - type: Transform - pos: 33.5,6.5 + pos: 17.5,1.5 parent: 2 - uid: 3236 components: - type: Transform - pos: 33.5,5.5 + pos: 17.5,0.5 parent: 2 - uid: 3237 components: - type: Transform - pos: 26.5,7.5 + pos: 17.5,-0.5 parent: 2 - uid: 3238 components: - type: Transform - pos: 33.5,0.5 + pos: 17.5,-1.5 parent: 2 - uid: 3239 components: - type: Transform - pos: 33.5,-0.5 + pos: 17.5,-2.5 parent: 2 - uid: 3240 components: - type: Transform - pos: 33.5,-1.5 + pos: 17.5,-3.5 parent: 2 - uid: 3241 components: - type: Transform - pos: 33.5,-2.5 + pos: 17.5,-4.5 parent: 2 - uid: 3242 components: - type: Transform - pos: 33.5,-3.5 + pos: 17.5,-5.5 parent: 2 - uid: 3243 components: - type: Transform - pos: 33.5,-4.5 + pos: 18.5,4.5 parent: 2 - uid: 3244 components: - type: Transform - pos: 33.5,-5.5 + pos: 16.5,-2.5 parent: 2 - uid: 3245 components: - type: Transform - pos: 27.5,7.5 + pos: 10.5,8.5 parent: 2 - uid: 3246 components: - type: Transform - pos: 28.5,7.5 + pos: 24.5,24.5 parent: 2 - uid: 3247 components: - type: Transform - pos: 29.5,7.5 + pos: 24.5,23.5 parent: 2 - uid: 3248 components: - type: Transform - pos: 30.5,7.5 + pos: 24.5,22.5 parent: 2 - uid: 3249 components: - type: Transform - pos: 31.5,7.5 + pos: 23.5,22.5 parent: 2 - uid: 3250 components: - type: Transform - pos: 32.5,7.5 + pos: 22.5,22.5 parent: 2 - uid: 3251 components: - type: Transform - pos: 26.5,8.5 + pos: 22.5,21.5 parent: 2 - uid: 3252 components: - type: Transform - pos: 26.5,9.5 + pos: 22.5,20.5 parent: 2 - uid: 3253 components: - type: Transform - pos: 26.5,10.5 + pos: 22.5,19.5 parent: 2 - uid: 3254 components: - type: Transform - pos: 26.5,11.5 + pos: 22.5,18.5 parent: 2 - uid: 3255 components: - type: Transform - pos: 26.5,12.5 + pos: 22.5,17.5 parent: 2 - uid: 3256 components: - type: Transform - pos: 26.5,13.5 + pos: 21.5,17.5 parent: 2 - uid: 3257 components: - type: Transform - pos: 25.5,7.5 + pos: 20.5,17.5 parent: 2 - uid: 3258 components: - type: Transform - pos: 24.5,7.5 + pos: 19.5,17.5 parent: 2 - uid: 3259 components: - type: Transform - pos: 23.5,7.5 + pos: 18.5,17.5 parent: 2 - uid: 3260 components: - type: Transform - pos: 22.5,7.5 + pos: 17.5,17.5 parent: 2 - uid: 3261 components: - type: Transform - pos: 21.5,7.5 + pos: 16.5,17.5 parent: 2 - uid: 3262 components: - type: Transform - pos: 34.5,0.5 + pos: 15.5,17.5 parent: 2 - uid: 3263 components: - type: Transform - pos: 37.5,-25.5 + pos: 14.5,17.5 parent: 2 - uid: 3264 components: - type: Transform - pos: 36.5,-25.5 + pos: 13.5,17.5 parent: 2 - uid: 3265 components: - type: Transform - pos: 36.5,-24.5 + pos: 12.5,17.5 parent: 2 - uid: 3266 components: - type: Transform - pos: 36.5,-23.5 + pos: 11.5,17.5 parent: 2 - uid: 3267 components: - type: Transform - pos: 36.5,-22.5 + pos: 10.5,17.5 parent: 2 - uid: 3268 components: - type: Transform - pos: 35.5,-22.5 + pos: 9.5,17.5 parent: 2 - uid: 3269 components: - type: Transform - pos: 35.5,-21.5 + pos: 8.5,17.5 parent: 2 - uid: 3270 components: - type: Transform - pos: 35.5,-25.5 + pos: 7.5,17.5 parent: 2 - uid: 3271 components: - type: Transform - pos: 34.5,-25.5 + pos: 11.5,18.5 parent: 2 - uid: 3272 components: - type: Transform - pos: 35.5,-26.5 + pos: 11.5,19.5 parent: 2 - uid: 3273 components: - type: Transform - pos: 35.5,-27.5 + pos: 11.5,20.5 parent: 2 - uid: 3274 components: - type: Transform - pos: 35.5,-28.5 + pos: 11.5,21.5 parent: 2 - uid: 3275 components: - type: Transform - pos: 35.5,-29.5 + pos: 16.5,18.5 parent: 2 - uid: 3276 components: - type: Transform - pos: 35.5,-30.5 + pos: 16.5,19.5 parent: 2 - uid: 3277 components: - type: Transform - pos: 35.5,-31.5 + pos: 16.5,20.5 parent: 2 - uid: 3278 components: - type: Transform - pos: 35.5,-32.5 + pos: 16.5,21.5 parent: 2 - uid: 3279 components: - type: Transform - pos: 35.5,-33.5 + pos: 17.5,21.5 parent: 2 - uid: 3280 components: - type: Transform - pos: 35.5,-34.5 + pos: 15.5,21.5 parent: 2 - uid: 3281 components: - type: Transform - pos: 35.5,-35.5 + pos: 6.5,17.5 parent: 2 - uid: 3282 components: - type: Transform - pos: 35.5,-36.5 + pos: 6.5,18.5 parent: 2 - uid: 3283 components: - type: Transform - pos: 36.5,-30.5 + pos: 6.5,19.5 parent: 2 - uid: 3284 components: - type: Transform - pos: 37.5,-30.5 + pos: 6.5,20.5 parent: 2 - uid: 3285 components: - type: Transform - pos: 38.5,-30.5 + pos: 6.5,21.5 parent: 2 - uid: 3286 components: - type: Transform - pos: 39.5,-30.5 + pos: 7.5,21.5 parent: 2 - uid: 3287 components: - type: Transform - pos: 31.5,-4.5 + pos: 5.5,21.5 parent: 2 - uid: 3288 components: - type: Transform - pos: -4.5,-10.5 + pos: 5.5,17.5 parent: 2 - uid: 3289 components: - type: Transform - pos: -4.5,-9.5 + pos: 4.5,17.5 parent: 2 - uid: 3290 components: - type: Transform - pos: -4.5,-8.5 + pos: 2.5,17.5 parent: 2 - uid: 3291 components: - type: Transform - pos: -4.5,-7.5 + pos: 3.5,17.5 parent: 2 - uid: 3292 components: - type: Transform - pos: -4.5,-6.5 + pos: 1.5,17.5 parent: 2 - uid: 3293 components: - type: Transform - pos: -4.5,-5.5 + pos: 0.5,17.5 parent: 2 - uid: 3294 components: - type: Transform - pos: 63.5,-5.5 + pos: 0.5,18.5 parent: 2 - uid: 3295 components: - type: Transform - pos: 62.5,-5.5 + pos: -0.5,18.5 parent: 2 - uid: 3296 components: - type: Transform - pos: 21.5,15.5 + pos: -0.5,19.5 parent: 2 - uid: 3297 components: - type: Transform - pos: 21.5,14.5 + pos: -0.5,20.5 parent: 2 - uid: 3298 components: - type: Transform - pos: 21.5,13.5 + pos: 0.5,20.5 parent: 2 - uid: 3299 components: - type: Transform - pos: 21.5,12.5 + pos: 1.5,20.5 parent: 2 - uid: 3300 components: - type: Transform - pos: 21.5,11.5 + pos: 24.5,21.5 parent: 2 - uid: 3301 components: - type: Transform - pos: 21.5,10.5 + pos: 25.5,21.5 parent: 2 - uid: 3302 components: - type: Transform - pos: 20.5,14.5 + pos: 26.5,21.5 parent: 2 - uid: 3303 components: - type: Transform - pos: 19.5,14.5 + pos: 27.5,21.5 parent: 2 - uid: 3304 components: - type: Transform - pos: 18.5,14.5 + pos: 28.5,21.5 parent: 2 - uid: 3305 components: - type: Transform - pos: 17.5,14.5 + pos: 23.5,17.5 parent: 2 - uid: 3306 components: - type: Transform - pos: 17.5,13.5 + pos: 24.5,17.5 parent: 2 - uid: 3307 components: - type: Transform - pos: 17.5,12.5 + pos: 25.5,17.5 parent: 2 - uid: 3308 components: - type: Transform - pos: 17.5,11.5 + pos: 25.5,16.5 parent: 2 - uid: 3309 components: - type: Transform - pos: 16.5,11.5 + pos: 26.5,17.5 parent: 2 - uid: 3310 components: - type: Transform - pos: 15.5,11.5 + pos: 27.5,17.5 parent: 2 - uid: 3311 components: - type: Transform - pos: 14.5,11.5 + pos: 28.5,17.5 parent: 2 - uid: 3312 components: - type: Transform - pos: 13.5,11.5 + pos: 29.5,17.5 parent: 2 - uid: 3313 components: - type: Transform - pos: 13.5,12.5 + pos: 40.5,7.5 parent: 2 - uid: 3314 components: - type: Transform - pos: 13.5,13.5 + pos: 29.5,15.5 parent: 2 - uid: 3315 components: - type: Transform - pos: 12.5,13.5 + pos: 29.5,21.5 parent: 2 - uid: 3316 components: - type: Transform - pos: 11.5,13.5 + pos: 30.5,21.5 parent: 2 - uid: 3317 components: - type: Transform - pos: 11.5,12.5 + pos: 31.5,21.5 parent: 2 - uid: 3318 components: - type: Transform - pos: 11.5,11.5 + pos: 32.5,21.5 parent: 2 - uid: 3319 components: - type: Transform - pos: 11.5,10.5 + pos: 32.5,22.5 parent: 2 - uid: 3320 components: - type: Transform - pos: 11.5,9.5 + pos: 32.5,23.5 parent: 2 - uid: 3321 components: - type: Transform - pos: 11.5,8.5 + pos: 29.5,22.5 parent: 2 - uid: 3322 components: - type: Transform - pos: 11.5,7.5 + pos: 29.5,23.5 parent: 2 - uid: 3323 components: - type: Transform - pos: 11.5,6.5 + pos: 29.5,24.5 parent: 2 - uid: 3324 components: - type: Transform - pos: 12.5,8.5 + pos: 29.5,25.5 parent: 2 - uid: 3325 components: - type: Transform - pos: 13.5,8.5 + pos: 29.5,26.5 parent: 2 - uid: 3326 components: - type: Transform - pos: 13.5,7.5 + pos: 29.5,27.5 parent: 2 - uid: 3327 components: - type: Transform - pos: 14.5,7.5 + pos: 29.5,28.5 parent: 2 - uid: 3328 components: - type: Transform - pos: 15.5,7.5 + pos: 29.5,29.5 parent: 2 - uid: 3329 components: - type: Transform - pos: 16.5,7.5 + pos: 29.5,30.5 parent: 2 - uid: 3330 components: - type: Transform - pos: 17.5,7.5 + pos: 29.5,31.5 parent: 2 - uid: 3331 components: - type: Transform - pos: 17.5,6.5 + pos: 30.5,31.5 parent: 2 - uid: 3332 components: - type: Transform - pos: 17.5,5.5 + pos: 32.5,31.5 parent: 2 - uid: 3333 components: - type: Transform - pos: 17.5,4.5 + pos: 31.5,31.5 parent: 2 - uid: 3334 components: - type: Transform - pos: 17.5,3.5 + pos: 28.5,31.5 parent: 2 - uid: 3335 components: - type: Transform - pos: 17.5,2.5 + pos: 27.5,31.5 parent: 2 - uid: 3336 components: - type: Transform - pos: 17.5,1.5 + pos: 27.5,30.5 parent: 2 - uid: 3337 components: - type: Transform - pos: 17.5,0.5 + pos: 27.5,29.5 parent: 2 - uid: 3338 components: - type: Transform - pos: 17.5,-0.5 + pos: 32.5,30.5 parent: 2 - uid: 3339 components: - type: Transform - pos: 17.5,-1.5 + pos: 32.5,29.5 parent: 2 - uid: 3340 components: - type: Transform - pos: 17.5,-2.5 + pos: 27.5,28.5 parent: 2 - uid: 3341 components: - type: Transform - pos: 17.5,-3.5 + pos: 32.5,28.5 parent: 2 - uid: 3342 components: - type: Transform - pos: 17.5,-4.5 + pos: -8.5,-40.5 parent: 2 - uid: 3343 components: - type: Transform - pos: 17.5,-5.5 + pos: -8.5,-39.5 parent: 2 - uid: 3344 components: - type: Transform - pos: 18.5,4.5 + pos: -8.5,-38.5 parent: 2 - uid: 3345 components: - type: Transform - pos: 16.5,-2.5 + pos: -8.5,-37.5 parent: 2 - uid: 3346 components: - type: Transform - pos: 10.5,8.5 + pos: -8.5,-36.5 parent: 2 - uid: 3347 components: - type: Transform - pos: 24.5,24.5 + pos: -9.5,-36.5 parent: 2 - uid: 3348 components: - type: Transform - pos: 24.5,23.5 + pos: -10.5,-36.5 parent: 2 - uid: 3349 components: - type: Transform - pos: 24.5,22.5 + pos: -11.5,-36.5 parent: 2 - uid: 3350 components: - type: Transform - pos: 23.5,22.5 + pos: -12.5,-36.5 parent: 2 - uid: 3351 components: - type: Transform - pos: 22.5,22.5 + pos: -12.5,-37.5 parent: 2 - uid: 3352 components: - type: Transform - pos: 22.5,21.5 + pos: -12.5,-38.5 parent: 2 - uid: 3353 components: - type: Transform - pos: 22.5,20.5 + pos: -13.5,-38.5 parent: 2 - uid: 3354 components: - type: Transform - pos: 22.5,19.5 + pos: -14.5,-38.5 parent: 2 - uid: 3355 components: - type: Transform - pos: 22.5,18.5 + pos: -15.5,-38.5 parent: 2 - uid: 3356 components: - type: Transform - pos: 22.5,17.5 + pos: -11.5,-35.5 parent: 2 - uid: 3357 components: - type: Transform - pos: 21.5,17.5 + pos: -11.5,-34.5 parent: 2 - uid: 3358 components: - type: Transform - pos: 20.5,17.5 + pos: -11.5,-33.5 parent: 2 - uid: 3359 components: - type: Transform - pos: 19.5,17.5 + pos: -10.5,-33.5 parent: 2 - uid: 3360 components: - type: Transform - pos: 18.5,17.5 + pos: -9.5,-33.5 parent: 2 - uid: 3361 components: - type: Transform - pos: 17.5,17.5 + pos: -12.5,-39.5 parent: 2 - uid: 3362 components: - type: Transform - pos: 16.5,17.5 + pos: -11.5,-39.5 parent: 2 - uid: 3363 components: - type: Transform - pos: 15.5,17.5 + pos: 21.5,-47.5 parent: 2 - uid: 3364 components: - type: Transform - pos: 14.5,17.5 + pos: -55.5,-27.5 parent: 2 - uid: 3365 components: - type: Transform - pos: 13.5,17.5 + pos: -54.5,-27.5 parent: 2 - uid: 3366 components: - type: Transform - pos: 12.5,17.5 + pos: -53.5,-27.5 parent: 2 - uid: 3367 components: - type: Transform - pos: 11.5,17.5 + pos: 17.5,-49.5 parent: 2 - uid: 3368 components: - type: Transform - pos: 10.5,17.5 + pos: 18.5,-51.5 parent: 2 - uid: 3369 components: - type: Transform - pos: 9.5,17.5 + pos: 21.5,-48.5 parent: 2 - uid: 3370 components: - type: Transform - pos: 8.5,17.5 + pos: 21.5,-49.5 parent: 2 - uid: 3371 components: - type: Transform - pos: 7.5,17.5 + pos: 20.5,-50.5 parent: 2 - uid: 3372 components: - type: Transform - pos: 11.5,18.5 + pos: 27.5,3.5 parent: 2 - uid: 3373 components: - type: Transform - pos: 11.5,19.5 + pos: 18.5,-50.5 parent: 2 - uid: 3374 components: - type: Transform - pos: 11.5,20.5 + pos: 17.5,-50.5 parent: 2 - uid: 3375 components: - type: Transform - pos: 11.5,21.5 + pos: -13.5,42.5 parent: 2 - uid: 3376 components: - type: Transform - pos: 16.5,18.5 + pos: -7.5,-8.5 parent: 2 - uid: 3377 components: - type: Transform - pos: 16.5,19.5 + pos: 34.5,18.5 parent: 2 - uid: 3378 components: - type: Transform - pos: 16.5,20.5 + pos: 35.5,18.5 parent: 2 - uid: 3379 components: - type: Transform - pos: 16.5,21.5 + pos: 46.5,5.5 parent: 2 - uid: 3380 components: - type: Transform - pos: 17.5,21.5 + pos: 44.5,5.5 parent: 2 - uid: 3381 components: - type: Transform - pos: 15.5,21.5 + pos: 45.5,5.5 parent: 2 - uid: 3382 components: - type: Transform - pos: 6.5,17.5 + pos: 59.5,-5.5 parent: 2 - uid: 3383 components: - type: Transform - pos: 6.5,18.5 + pos: 61.5,-5.5 parent: 2 - uid: 3384 components: - type: Transform - pos: 6.5,19.5 + pos: 58.5,11.5 parent: 2 - uid: 3385 components: - type: Transform - pos: 6.5,20.5 + pos: 58.5,12.5 parent: 2 - uid: 3386 components: - type: Transform - pos: 6.5,21.5 + pos: 58.5,13.5 parent: 2 - uid: 3387 components: - type: Transform - pos: 7.5,21.5 + pos: 58.5,14.5 parent: 2 - uid: 3388 components: - type: Transform - pos: 5.5,21.5 + pos: 58.5,15.5 parent: 2 - uid: 3389 components: - type: Transform - pos: 5.5,17.5 + pos: 58.5,16.5 parent: 2 - uid: 3390 components: - type: Transform - pos: 4.5,17.5 + pos: 57.5,16.5 parent: 2 - uid: 3391 components: - type: Transform - pos: 2.5,17.5 + pos: 57.5,17.5 parent: 2 - uid: 3392 components: - type: Transform - pos: 3.5,17.5 + pos: 57.5,18.5 parent: 2 - uid: 3393 components: - type: Transform - pos: 1.5,17.5 + pos: 56.5,18.5 parent: 2 - uid: 3394 components: - type: Transform - pos: 0.5,17.5 + pos: 56.5,19.5 parent: 2 - uid: 3395 components: - type: Transform - pos: 0.5,18.5 + pos: 56.5,20.5 parent: 2 - uid: 3396 components: - type: Transform - pos: -0.5,18.5 + pos: 55.5,20.5 parent: 2 - uid: 3397 components: - type: Transform - pos: -0.5,19.5 + pos: 54.5,20.5 parent: 2 - uid: 3398 components: - type: Transform - pos: -0.5,20.5 + pos: 56.5,21.5 parent: 2 - uid: 3399 components: - type: Transform - pos: 0.5,20.5 + pos: 58.5,21.5 parent: 2 - uid: 3400 components: - type: Transform - pos: 1.5,20.5 + pos: 57.5,21.5 parent: 2 - uid: 3401 components: - type: Transform - pos: 24.5,21.5 + pos: 58.5,21.5 parent: 2 - uid: 3402 components: - type: Transform - pos: 25.5,21.5 + pos: 53.5,20.5 parent: 2 - uid: 3403 components: - type: Transform - pos: 26.5,21.5 + pos: 52.5,20.5 parent: 2 - uid: 3404 components: - type: Transform - pos: 27.5,21.5 + pos: 51.5,20.5 parent: 2 - uid: 3405 components: - type: Transform - pos: 28.5,21.5 + pos: 50.5,20.5 parent: 2 - uid: 3406 components: - type: Transform - pos: 23.5,17.5 + pos: 49.5,20.5 parent: 2 - uid: 3407 components: - type: Transform - pos: 24.5,17.5 + pos: 48.5,20.5 parent: 2 - uid: 3408 components: - type: Transform - pos: 25.5,17.5 + pos: 47.5,20.5 parent: 2 - uid: 3409 components: - type: Transform - pos: 25.5,16.5 + pos: 46.5,20.5 parent: 2 - uid: 3410 components: - type: Transform - pos: 26.5,17.5 + pos: 46.5,21.5 parent: 2 - uid: 3411 components: - type: Transform - pos: 27.5,17.5 + pos: 49.5,21.5 parent: 2 - uid: 3412 components: - type: Transform - pos: 28.5,17.5 + pos: 52.5,21.5 parent: 2 - uid: 3413 components: - type: Transform - pos: 29.5,17.5 + pos: 54.5,21.5 parent: 2 - uid: 3414 components: - type: Transform - pos: 40.5,7.5 + pos: 59.5,18.5 parent: 2 - uid: 3415 components: - type: Transform - pos: 29.5,15.5 + pos: 58.5,18.5 parent: 2 - uid: 3416 components: - type: Transform - pos: 29.5,21.5 + pos: 59.5,15.5 parent: 2 - uid: 3417 components: - type: Transform - pos: 30.5,21.5 + pos: 60.5,13.5 parent: 2 - uid: 3418 components: - type: Transform - pos: 31.5,21.5 + pos: 59.5,13.5 parent: 2 - uid: 3419 components: - type: Transform - pos: 32.5,21.5 + pos: 61.5,13.5 parent: 2 - uid: 3420 components: - type: Transform - pos: 32.5,22.5 + pos: 57.5,11.5 parent: 2 - uid: 3421 components: - type: Transform - pos: 32.5,23.5 + pos: 56.5,11.5 parent: 2 - uid: 3422 components: - type: Transform - pos: 29.5,22.5 + pos: 56.5,10.5 parent: 2 - uid: 3423 components: - type: Transform - pos: 29.5,23.5 + pos: 56.5,9.5 parent: 2 - uid: 3424 components: - type: Transform - pos: 29.5,24.5 + pos: 56.5,8.5 parent: 2 - uid: 3425 components: - type: Transform - pos: 29.5,25.5 + pos: 56.5,7.5 parent: 2 - uid: 3426 components: - type: Transform - pos: 29.5,26.5 + pos: 56.5,6.5 parent: 2 - uid: 3427 components: - type: Transform - pos: 29.5,27.5 + pos: 55.5,6.5 parent: 2 - uid: 3428 components: - type: Transform - pos: 29.5,28.5 + pos: 54.5,6.5 parent: 2 - uid: 3429 components: - type: Transform - pos: 29.5,29.5 + pos: 53.5,6.5 parent: 2 - uid: 3430 components: - type: Transform - pos: 29.5,30.5 + pos: 52.5,6.5 parent: 2 - uid: 3431 components: - type: Transform - pos: 29.5,31.5 + pos: 51.5,6.5 parent: 2 - uid: 3432 components: - type: Transform - pos: 30.5,31.5 + pos: 50.5,6.5 parent: 2 - uid: 3433 components: - type: Transform - pos: 32.5,31.5 + pos: 49.5,6.5 parent: 2 - uid: 3434 components: - type: Transform - pos: 31.5,31.5 + pos: 48.5,6.5 parent: 2 - uid: 3435 components: - type: Transform - pos: 28.5,31.5 + pos: 47.5,6.5 parent: 2 - uid: 3436 components: - type: Transform - pos: 27.5,31.5 + pos: 47.5,7.5 parent: 2 - uid: 3437 components: - type: Transform - pos: 27.5,30.5 + pos: 47.5,8.5 parent: 2 - uid: 3438 components: - type: Transform - pos: 27.5,29.5 + pos: 48.5,10.5 parent: 2 - uid: 3439 components: - type: Transform - pos: 32.5,30.5 + pos: 47.5,10.5 parent: 2 - uid: 3440 components: - type: Transform - pos: 32.5,29.5 + pos: 47.5,11.5 parent: 2 - uid: 3441 components: - type: Transform - pos: 27.5,28.5 + pos: 47.5,12.5 parent: 2 - uid: 3442 components: - type: Transform - pos: 32.5,28.5 + pos: 47.5,13.5 parent: 2 - uid: 3443 components: - type: Transform - pos: -8.5,-41.5 + pos: 47.5,14.5 parent: 2 - uid: 3444 components: - type: Transform - pos: -8.5,-40.5 + pos: 47.5,15.5 parent: 2 - uid: 3445 components: - type: Transform - pos: -8.5,-39.5 + pos: 48.5,13.5 parent: 2 - uid: 3446 components: - type: Transform - pos: -8.5,-38.5 + pos: 49.5,13.5 parent: 2 - uid: 3447 components: - type: Transform - pos: -8.5,-37.5 + pos: 49.5,14.5 parent: 2 - uid: 3448 components: - type: Transform - pos: -8.5,-36.5 + pos: 49.5,15.5 parent: 2 - uid: 3449 components: - type: Transform - pos: -9.5,-36.5 + pos: 49.5,16.5 parent: 2 - uid: 3450 components: - type: Transform - pos: -10.5,-36.5 + pos: 50.5,16.5 parent: 2 - uid: 3451 components: - type: Transform - pos: -11.5,-36.5 + pos: 51.5,16.5 parent: 2 - uid: 3452 components: - type: Transform - pos: -12.5,-36.5 + pos: 52.5,16.5 parent: 2 - uid: 3453 components: - type: Transform - pos: -12.5,-37.5 + pos: 53.5,16.5 parent: 2 - uid: 3454 components: - type: Transform - pos: -12.5,-38.5 + pos: 54.5,16.5 parent: 2 - uid: 3455 components: - type: Transform - pos: -13.5,-38.5 + pos: 55.5,16.5 parent: 2 - uid: 3456 components: - type: Transform - pos: -14.5,-38.5 + pos: 50.5,17.5 parent: 2 - uid: 3457 components: - type: Transform - pos: -15.5,-38.5 + pos: 50.5,18.5 parent: 2 - uid: 3458 components: - type: Transform - pos: -11.5,-35.5 + pos: 49.5,12.5 parent: 2 - uid: 3459 components: - type: Transform - pos: -11.5,-34.5 + pos: 50.5,12.5 parent: 2 - uid: 3460 components: - type: Transform - pos: -11.5,-33.5 + pos: 50.5,11.5 parent: 2 - uid: 3461 components: - type: Transform - pos: -10.5,-33.5 + pos: 50.5,10.5 parent: 2 - uid: 3462 components: - type: Transform - pos: -9.5,-33.5 + pos: 50.5,9.5 parent: 2 - uid: 3463 components: - type: Transform - pos: -12.5,-39.5 + pos: 51.5,9.5 parent: 2 - uid: 3464 components: - type: Transform - pos: -11.5,-39.5 + pos: 52.5,9.5 parent: 2 - uid: 3465 components: - type: Transform - pos: 21.5,-47.5 + pos: 53.5,9.5 parent: 2 - uid: 3466 components: - type: Transform - pos: -55.5,-27.5 + pos: 53.5,10.5 parent: 2 - uid: 3467 components: - type: Transform - pos: -54.5,-27.5 + pos: 53.5,11.5 parent: 2 - uid: 3468 components: - type: Transform - pos: -53.5,-27.5 + pos: 53.5,12.5 parent: 2 - uid: 3469 components: - type: Transform - pos: 17.5,-49.5 + pos: 59.5,11.5 parent: 2 - uid: 3470 components: - type: Transform - pos: 18.5,-51.5 + pos: 59.5,10.5 parent: 2 - uid: 3471 components: - type: Transform - pos: 21.5,-48.5 + pos: 59.5,9.5 parent: 2 - uid: 3472 components: - type: Transform - pos: 21.5,-49.5 + pos: 60.5,9.5 parent: 2 - uid: 3473 components: - type: Transform - pos: 20.5,-50.5 + pos: 60.5,8.5 parent: 2 - uid: 3474 components: - type: Transform - pos: 27.5,3.5 + pos: 60.5,7.5 parent: 2 - uid: 3475 components: - type: Transform - pos: 18.5,-50.5 + pos: 60.5,6.5 parent: 2 - uid: 3476 components: - type: Transform - pos: 17.5,-50.5 + pos: 60.5,5.5 parent: 2 - uid: 3477 components: - type: Transform - pos: -13.5,42.5 + pos: 60.5,4.5 parent: 2 - uid: 3478 components: - type: Transform - pos: -7.5,-8.5 + pos: 61.5,4.5 parent: 2 - uid: 3479 components: - type: Transform - pos: 34.5,18.5 + pos: 62.5,4.5 parent: 2 - uid: 3480 components: - type: Transform - pos: 35.5,18.5 + pos: 62.5,5.5 parent: 2 - uid: 3481 components: - type: Transform - pos: 46.5,5.5 + pos: 60.5,-5.5 parent: 2 - uid: 3482 components: - type: Transform - pos: 44.5,5.5 + pos: 45.5,20.5 parent: 2 - uid: 3483 components: - type: Transform - pos: 45.5,5.5 + pos: 44.5,20.5 parent: 2 - uid: 3484 components: - type: Transform - pos: 59.5,-5.5 + pos: 43.5,20.5 parent: 2 - uid: 3485 components: - type: Transform - pos: 61.5,-5.5 + pos: 42.5,20.5 parent: 2 - uid: 3486 components: - type: Transform - pos: 58.5,11.5 + pos: 41.5,20.5 parent: 2 - uid: 3487 components: - type: Transform - pos: 58.5,12.5 + pos: 40.5,20.5 parent: 2 - uid: 3488 components: - type: Transform - pos: 58.5,13.5 + pos: 39.5,20.5 parent: 2 - uid: 3489 components: - type: Transform - pos: 58.5,14.5 + pos: 38.5,20.5 parent: 2 - uid: 3490 components: - type: Transform - pos: 58.5,15.5 + pos: 37.5,20.5 parent: 2 - uid: 3491 components: - type: Transform - pos: 58.5,16.5 + pos: 36.5,20.5 parent: 2 - uid: 3492 components: - type: Transform - pos: 57.5,16.5 + pos: 35.5,20.5 parent: 2 - uid: 3493 components: - type: Transform - pos: 57.5,17.5 + pos: 35.5,19.5 parent: 2 - uid: 3494 components: - type: Transform - pos: 57.5,18.5 + pos: 46.5,11.5 parent: 2 - uid: 3495 components: - type: Transform - pos: 56.5,18.5 + pos: 45.5,11.5 parent: 2 - uid: 3496 components: - type: Transform - pos: 56.5,19.5 + pos: 43.5,11.5 parent: 2 - uid: 3497 components: - type: Transform - pos: 56.5,20.5 + pos: 42.5,11.5 parent: 2 - uid: 3498 components: - type: Transform - pos: 55.5,20.5 + pos: 41.5,11.5 parent: 2 - uid: 3499 components: - type: Transform - pos: 54.5,20.5 + pos: 40.5,11.5 parent: 2 - uid: 3500 components: - type: Transform - pos: 56.5,21.5 + pos: 41.5,10.5 parent: 2 - uid: 3501 components: - type: Transform - pos: 58.5,21.5 + pos: 41.5,9.5 parent: 2 - uid: 3502 components: - type: Transform - pos: 57.5,21.5 + pos: 41.5,8.5 parent: 2 - uid: 3503 components: - type: Transform - pos: 58.5,21.5 + pos: 41.5,7.5 parent: 2 - uid: 3504 components: - type: Transform - pos: 53.5,20.5 + pos: 41.5,6.5 parent: 2 - uid: 3505 components: - type: Transform - pos: 52.5,20.5 + pos: 41.5,5.5 parent: 2 - uid: 3506 components: - type: Transform - pos: 51.5,20.5 + pos: 41.5,4.5 parent: 2 - uid: 3507 components: - type: Transform - pos: 50.5,20.5 + pos: 40.5,12.5 parent: 2 - uid: 3508 components: - type: Transform - pos: 49.5,20.5 + pos: 40.5,13.5 parent: 2 - uid: 3509 components: - type: Transform - pos: 48.5,20.5 + pos: 40.5,14.5 parent: 2 - uid: 3510 components: - type: Transform - pos: 47.5,20.5 + pos: 39.5,14.5 parent: 2 - uid: 3511 components: - type: Transform - pos: 46.5,20.5 + pos: 38.5,14.5 parent: 2 - uid: 3512 components: - type: Transform - pos: 46.5,21.5 + pos: 37.5,14.5 parent: 2 - uid: 3513 components: - type: Transform - pos: 49.5,21.5 + pos: 36.5,14.5 parent: 2 - uid: 3514 components: - type: Transform - pos: 52.5,21.5 + pos: 35.5,14.5 parent: 2 - uid: 3515 components: - type: Transform - pos: 54.5,21.5 + pos: 34.5,14.5 parent: 2 - uid: 3516 components: - type: Transform - pos: 59.5,18.5 + pos: 33.5,14.5 parent: 2 - uid: 3517 components: - type: Transform - pos: 58.5,18.5 + pos: 32.5,14.5 parent: 2 - uid: 3518 components: - type: Transform - pos: 59.5,15.5 + pos: 31.5,14.5 parent: 2 - uid: 3519 components: - type: Transform - pos: 60.5,13.5 + pos: 35.5,15.5 parent: 2 - uid: 3520 components: - type: Transform - pos: 59.5,13.5 + pos: 35.5,16.5 parent: 2 - uid: 3521 components: - type: Transform - pos: 61.5,13.5 + pos: 32.5,13.5 parent: 2 - uid: 3522 components: - type: Transform - pos: 57.5,11.5 + pos: 32.5,12.5 parent: 2 - uid: 3523 components: - type: Transform - pos: 56.5,11.5 + pos: 32.5,11.5 parent: 2 - uid: 3524 components: - type: Transform - pos: 56.5,10.5 + pos: 30.5,14.5 parent: 2 - uid: 3525 components: - type: Transform - pos: 56.5,9.5 + pos: 29.5,14.5 parent: 2 - uid: 3526 components: - type: Transform - pos: 56.5,8.5 + pos: 29.5,13.5 parent: 2 - uid: 3527 components: - type: Transform - pos: 56.5,7.5 + pos: 29.5,12.5 parent: 2 - uid: 3528 components: - type: Transform - pos: 56.5,6.5 + pos: 29.5,11.5 parent: 2 - uid: 3529 components: - type: Transform - pos: 55.5,6.5 + pos: 35.5,13.5 parent: 2 - uid: 3530 components: - type: Transform - pos: 54.5,6.5 + pos: 35.5,12.5 parent: 2 - uid: 3531 components: - type: Transform - pos: 53.5,6.5 + pos: 35.5,11.5 parent: 2 - uid: 3532 components: - type: Transform - pos: 52.5,6.5 + pos: 38.5,7.5 parent: 2 - uid: 3533 components: - type: Transform - pos: 51.5,6.5 + pos: 37.5,7.5 parent: 2 - uid: 3534 components: - type: Transform - pos: 50.5,6.5 + pos: 40.5,4.5 parent: 2 - uid: 3535 components: - type: Transform - pos: 49.5,6.5 + pos: 39.5,4.5 parent: 2 - uid: 3536 components: - type: Transform - pos: 48.5,6.5 + pos: 37.5,4.5 parent: 2 - uid: 3537 components: - type: Transform - pos: 47.5,6.5 + pos: 38.5,4.5 parent: 2 - uid: 3538 components: - type: Transform - pos: 47.5,7.5 + pos: -12.5,42.5 parent: 2 - uid: 3539 components: - type: Transform - pos: 47.5,8.5 + pos: 51.5,11.5 parent: 2 - uid: 3540 components: - type: Transform - pos: 48.5,10.5 + pos: 55.5,13.5 parent: 2 - uid: 3541 components: - type: Transform - pos: 47.5,10.5 + pos: 55.5,14.5 parent: 2 - uid: 3542 components: - type: Transform - pos: 47.5,11.5 + pos: 54.5,14.5 parent: 2 - uid: 3543 components: - type: Transform - pos: 47.5,12.5 + pos: 53.5,14.5 parent: 2 - uid: 3544 components: - type: Transform - pos: 47.5,13.5 + pos: 52.5,14.5 parent: 2 - uid: 3545 components: - type: Transform - pos: 47.5,14.5 + pos: 51.5,14.5 parent: 2 - uid: 3546 components: - type: Transform - pos: 47.5,15.5 + pos: 51.5,13.5 parent: 2 - uid: 3547 components: - type: Transform - pos: 48.5,13.5 + pos: 51.5,12.5 parent: 2 - uid: 3548 components: - type: Transform - pos: 49.5,13.5 + pos: 49.5,10.5 parent: 2 - uid: 3549 components: - type: Transform - pos: 49.5,14.5 + pos: 45.5,7.5 parent: 2 - uid: 3550 components: - type: Transform - pos: 49.5,15.5 + pos: 42.5,21.5 parent: 2 - uid: 3551 components: - type: Transform - pos: 49.5,16.5 + pos: 42.5,22.5 parent: 2 - uid: 3552 components: - type: Transform - pos: 50.5,16.5 + pos: 49.5,3.5 parent: 2 - uid: 3553 components: - type: Transform - pos: 51.5,16.5 + pos: 49.5,2.5 parent: 2 - uid: 3554 components: - type: Transform - pos: 52.5,16.5 + pos: 48.5,2.5 parent: 2 - uid: 3555 components: - type: Transform - pos: 53.5,16.5 + pos: 48.5,1.5 parent: 2 - uid: 3556 components: - type: Transform - pos: 54.5,16.5 + pos: 47.5,1.5 parent: 2 - uid: 3557 components: - type: Transform - pos: 55.5,16.5 + pos: 46.5,1.5 parent: 2 - uid: 3558 components: - type: Transform - pos: 50.5,17.5 + pos: 45.5,1.5 parent: 2 - uid: 3559 components: - type: Transform - pos: 50.5,18.5 + pos: 44.5,1.5 parent: 2 - uid: 3560 components: - type: Transform - pos: 49.5,12.5 + pos: 43.5,1.5 parent: 2 - uid: 3561 components: - type: Transform - pos: 50.5,12.5 + pos: 42.5,1.5 parent: 2 - uid: 3562 components: - type: Transform - pos: 50.5,11.5 + pos: 42.5,0.5 parent: 2 - uid: 3563 components: - type: Transform - pos: 50.5,10.5 + pos: 42.5,-0.5 parent: 2 - uid: 3564 components: - type: Transform - pos: 50.5,9.5 + pos: 42.5,-1.5 parent: 2 - uid: 3565 components: - type: Transform - pos: 51.5,9.5 + pos: 42.5,-2.5 parent: 2 - uid: 3566 components: - type: Transform - pos: 52.5,9.5 + pos: 42.5,-3.5 parent: 2 - uid: 3567 components: - type: Transform - pos: 53.5,9.5 + pos: 41.5,-1.5 parent: 2 - uid: 3568 components: - type: Transform - pos: 53.5,10.5 + pos: 40.5,-1.5 parent: 2 - uid: 3569 components: - type: Transform - pos: 53.5,11.5 + pos: 39.5,-1.5 parent: 2 - uid: 3570 components: - type: Transform - pos: 53.5,12.5 + pos: 38.5,-1.5 parent: 2 - uid: 3571 components: - type: Transform - pos: 59.5,11.5 + pos: 37.5,-1.5 parent: 2 - uid: 3572 components: - type: Transform - pos: 59.5,10.5 + pos: 37.5,-2.5 parent: 2 - uid: 3573 components: - type: Transform - pos: 59.5,9.5 + pos: 37.5,-3.5 parent: 2 - uid: 3574 components: - type: Transform - pos: 60.5,9.5 + pos: 43.5,-1.5 parent: 2 - uid: 3575 components: - type: Transform - pos: 60.5,8.5 + pos: 44.5,-1.5 parent: 2 - uid: 3576 components: - type: Transform - pos: 60.5,7.5 + pos: 44.5,-2.5 parent: 2 - uid: 3577 components: - type: Transform - pos: 60.5,6.5 + pos: 38.5,-3.5 parent: 2 - uid: 3578 components: - type: Transform - pos: 60.5,5.5 + pos: 38.5,-4.5 parent: 2 - uid: 3579 components: - type: Transform - pos: 60.5,4.5 + pos: 38.5,-5.5 parent: 2 - uid: 3580 components: - type: Transform - pos: 61.5,4.5 + pos: 38.5,-6.5 parent: 2 - uid: 3581 components: - type: Transform - pos: 62.5,4.5 + pos: 38.5,-8.5 parent: 2 - uid: 3582 components: - type: Transform - pos: 62.5,5.5 + pos: 38.5,-7.5 parent: 2 - uid: 3583 components: - type: Transform - pos: 60.5,-5.5 + pos: 39.5,-8.5 parent: 2 - uid: 3584 components: - type: Transform - pos: 45.5,20.5 + pos: 46.5,0.5 parent: 2 - uid: 3585 components: - type: Transform - pos: 44.5,20.5 + pos: 46.5,-0.5 parent: 2 - uid: 3586 components: - type: Transform - pos: 43.5,20.5 + pos: 46.5,-1.5 parent: 2 - uid: 3587 components: - type: Transform - pos: 42.5,20.5 + pos: 47.5,-1.5 parent: 2 - uid: 3588 components: - type: Transform - pos: 41.5,20.5 + pos: 47.5,-2.5 parent: 2 - uid: 3589 components: - type: Transform - pos: 40.5,20.5 + pos: 41.5,1.5 parent: 2 - uid: 3590 components: - type: Transform - pos: 39.5,20.5 + pos: 40.5,1.5 parent: 2 - uid: 3591 components: - type: Transform - pos: 38.5,20.5 + pos: 39.5,1.5 parent: 2 - uid: 3592 components: - type: Transform - pos: 37.5,20.5 + pos: 38.5,1.5 parent: 2 - uid: 3593 components: - type: Transform - pos: 36.5,20.5 + pos: 37.5,1.5 parent: 2 - uid: 3594 components: - type: Transform - pos: 35.5,20.5 + pos: 41.5,2.5 parent: 2 - uid: 3595 components: - type: Transform - pos: 35.5,19.5 + pos: 48.5,0.5 parent: 2 - uid: 3596 components: - type: Transform - pos: 46.5,11.5 + pos: 49.5,0.5 parent: 2 - uid: 3597 components: - type: Transform - pos: 45.5,11.5 + pos: 50.5,0.5 parent: 2 - uid: 3598 components: - type: Transform - pos: 43.5,11.5 + pos: 51.5,0.5 parent: 2 - uid: 3599 components: - type: Transform - pos: 42.5,11.5 + pos: 52.5,0.5 parent: 2 - uid: 3600 components: - type: Transform - pos: 41.5,11.5 + pos: 52.5,1.5 parent: 2 - uid: 3601 components: - type: Transform - pos: 40.5,11.5 + pos: 52.5,2.5 parent: 2 - uid: 3602 components: - type: Transform - pos: 41.5,10.5 + pos: 53.5,0.5 parent: 2 - uid: 3603 components: - type: Transform - pos: 41.5,9.5 + pos: 53.5,-0.5 parent: 2 - uid: 3604 components: - type: Transform - pos: 41.5,8.5 + pos: 54.5,-0.5 parent: 2 - uid: 3605 components: - type: Transform - pos: 41.5,7.5 + pos: 55.5,-0.5 parent: 2 - uid: 3606 components: - type: Transform - pos: 41.5,6.5 + pos: 56.5,-0.5 parent: 2 - uid: 3607 components: - type: Transform - pos: 41.5,5.5 + pos: 57.5,-0.5 parent: 2 - uid: 3608 components: - type: Transform - pos: 41.5,4.5 + pos: 57.5,0.5 parent: 2 - uid: 3609 components: - type: Transform - pos: 40.5,12.5 + pos: 57.5,1.5 parent: 2 - uid: 3610 components: - type: Transform - pos: 40.5,13.5 + pos: 58.5,1.5 parent: 2 - uid: 3611 components: - type: Transform - pos: 40.5,14.5 + pos: 59.5,1.5 parent: 2 - uid: 3612 components: - type: Transform - pos: 39.5,14.5 + pos: 60.5,1.5 parent: 2 - uid: 3613 components: - type: Transform - pos: 38.5,14.5 + pos: 61.5,1.5 parent: 2 - uid: 3614 components: - type: Transform - pos: 37.5,14.5 + pos: 62.5,1.5 parent: 2 - uid: 3615 components: - type: Transform - pos: 36.5,14.5 + pos: 56.5,-1.5 parent: 2 - uid: 3616 components: - type: Transform - pos: 35.5,14.5 + pos: 56.5,-2.5 parent: 2 - uid: 3617 components: - type: Transform - pos: 34.5,14.5 + pos: 56.5,-3.5 parent: 2 - uid: 3618 components: - type: Transform - pos: 33.5,14.5 + pos: 51.5,-0.5 parent: 2 - uid: 3619 components: - type: Transform - pos: 32.5,14.5 + pos: 51.5,-1.5 parent: 2 - uid: 3620 components: - type: Transform - pos: 31.5,14.5 + pos: 51.5,-2.5 parent: 2 - uid: 3621 components: - type: Transform - pos: 35.5,15.5 + pos: 52.5,-2.5 parent: 2 - uid: 3622 components: - type: Transform - pos: 35.5,16.5 + pos: 52.5,-3.5 parent: 2 - uid: 3623 components: - type: Transform - pos: 32.5,13.5 + pos: 52.5,-5.5 parent: 2 - uid: 3624 components: - type: Transform - pos: 32.5,12.5 + pos: 59.5,21.5 parent: 2 - uid: 3625 components: - type: Transform - pos: 32.5,11.5 + pos: 60.5,21.5 parent: 2 - uid: 3626 components: - type: Transform - pos: 30.5,14.5 + pos: 61.5,21.5 parent: 2 - uid: 3627 components: - type: Transform - pos: 29.5,14.5 + pos: 67.5,-11.5 parent: 2 - uid: 3628 components: - type: Transform - pos: 29.5,13.5 + pos: 68.5,-11.5 parent: 2 - uid: 3629 components: - type: Transform - pos: 29.5,12.5 + pos: 66.5,-13.5 parent: 2 - uid: 3630 components: - type: Transform - pos: 29.5,11.5 + pos: 68.5,-13.5 parent: 2 - uid: 3631 components: - type: Transform - pos: 35.5,13.5 + pos: 66.5,-11.5 parent: 2 - uid: 3632 components: - type: Transform - pos: 35.5,12.5 + pos: 58.5,-34.5 parent: 2 - uid: 3633 components: - type: Transform - pos: 35.5,11.5 + pos: 63.5,-43.5 parent: 2 - uid: 3634 components: - type: Transform - pos: 38.5,7.5 + pos: 45.5,-39.5 parent: 2 - uid: 3635 components: - type: Transform - pos: 37.5,7.5 + pos: 44.5,-39.5 parent: 2 - uid: 3636 components: - type: Transform - pos: 40.5,4.5 + pos: 54.5,-33.5 parent: 2 - uid: 3637 components: - type: Transform - pos: 39.5,4.5 + pos: 65.5,-45.5 parent: 2 - uid: 3638 components: - type: Transform - pos: 37.5,4.5 + pos: 65.5,-44.5 parent: 2 - uid: 3639 components: - type: Transform - pos: 38.5,4.5 + pos: 60.5,-11.5 parent: 2 - uid: 3640 components: - type: Transform - pos: -12.5,42.5 + pos: 59.5,-11.5 parent: 2 - uid: 3641 components: - type: Transform - pos: 51.5,11.5 + pos: 58.5,-11.5 parent: 2 - uid: 3642 components: - type: Transform - pos: 55.5,13.5 + pos: 57.5,-11.5 parent: 2 - uid: 3643 components: - type: Transform - pos: 55.5,14.5 + pos: 56.5,-11.5 parent: 2 - uid: 3644 components: - type: Transform - pos: 54.5,14.5 + pos: 55.5,-11.5 parent: 2 - uid: 3645 components: - type: Transform - pos: 53.5,14.5 + pos: 54.5,-11.5 parent: 2 - uid: 3646 components: - type: Transform - pos: 52.5,14.5 + pos: 53.5,-11.5 parent: 2 - uid: 3647 components: - type: Transform - pos: 51.5,14.5 + pos: 52.5,-11.5 parent: 2 - uid: 3648 components: - type: Transform - pos: 51.5,13.5 + pos: 53.5,-12.5 parent: 2 - uid: 3649 components: - type: Transform - pos: 51.5,12.5 + pos: 53.5,-13.5 parent: 2 - uid: 3650 components: - type: Transform - pos: 49.5,10.5 + pos: 51.5,-11.5 parent: 2 - uid: 3651 components: - type: Transform - pos: 45.5,7.5 + pos: 51.5,-10.5 parent: 2 - uid: 3652 components: - type: Transform - pos: 42.5,21.5 + pos: 51.5,-9.5 parent: 2 - uid: 3653 components: - type: Transform - pos: 42.5,22.5 + pos: 51.5,-8.5 parent: 2 - uid: 3654 components: - type: Transform - pos: 49.5,3.5 + pos: 50.5,-8.5 parent: 2 - uid: 3655 components: - type: Transform - pos: 49.5,2.5 + pos: 49.5,-8.5 parent: 2 - uid: 3656 components: - type: Transform - pos: 48.5,2.5 + pos: 48.5,-8.5 parent: 2 - uid: 3657 components: - type: Transform - pos: 48.5,1.5 + pos: 47.5,-8.5 parent: 2 - uid: 3658 components: - type: Transform - pos: 47.5,1.5 + pos: 46.5,-8.5 parent: 2 - uid: 3659 components: - type: Transform - pos: 46.5,1.5 + pos: 47.5,-7.5 parent: 2 - uid: 3660 components: - type: Transform - pos: 45.5,1.5 + pos: 46.5,-9.5 parent: 2 - uid: 3661 components: - type: Transform - pos: 44.5,1.5 + pos: 46.5,-10.5 parent: 2 - uid: 3662 components: - type: Transform - pos: 43.5,1.5 + pos: 46.5,-11.5 parent: 2 - uid: 3663 components: - type: Transform - pos: 42.5,1.5 + pos: 45.5,-11.5 parent: 2 - uid: 3664 components: - type: Transform - pos: 42.5,0.5 + pos: 44.5,-11.5 parent: 2 - uid: 3665 components: - type: Transform - pos: 42.5,-0.5 + pos: 43.5,-11.5 parent: 2 - uid: 3666 components: - type: Transform - pos: 42.5,-1.5 + pos: 42.5,-11.5 parent: 2 - uid: 3667 components: - type: Transform - pos: 42.5,-2.5 + pos: 41.5,-11.5 parent: 2 - uid: 3668 components: - type: Transform - pos: 42.5,-3.5 + pos: 40.5,-11.5 parent: 2 - uid: 3669 components: - type: Transform - pos: 41.5,-1.5 + pos: 40.5,-12.5 parent: 2 - uid: 3670 components: - type: Transform - pos: 40.5,-1.5 + pos: 39.5,-12.5 parent: 2 - uid: 3671 components: - type: Transform - pos: 39.5,-1.5 + pos: 38.5,-12.5 parent: 2 - uid: 3672 components: - type: Transform - pos: 38.5,-1.5 + pos: 38.5,-13.5 parent: 2 - uid: 3673 components: - type: Transform - pos: 37.5,-1.5 + pos: 38.5,-14.5 parent: 2 - uid: 3674 components: - type: Transform - pos: 37.5,-2.5 + pos: 38.5,-15.5 parent: 2 - uid: 3675 components: - type: Transform - pos: 37.5,-3.5 + pos: 39.5,-14.5 parent: 2 - uid: 3676 components: - type: Transform - pos: 43.5,-1.5 + pos: 40.5,-14.5 parent: 2 - uid: 3677 components: - type: Transform - pos: 44.5,-1.5 + pos: 41.5,-14.5 parent: 2 - uid: 3678 components: - type: Transform - pos: 44.5,-2.5 + pos: 42.5,-14.5 parent: 2 - uid: 3679 components: - type: Transform - pos: 38.5,-3.5 + pos: 43.5,-13.5 parent: 2 - uid: 3680 components: - type: Transform - pos: 38.5,-4.5 + pos: 42.5,-13.5 parent: 2 - uid: 3681 components: - type: Transform - pos: 38.5,-5.5 + pos: 38.5,-11.5 parent: 2 - uid: 3682 components: - type: Transform - pos: 38.5,-6.5 + pos: 38.5,-10.5 parent: 2 - uid: 3683 components: - type: Transform - pos: 38.5,-8.5 + pos: 37.5,-8.5 parent: 2 - uid: 3684 components: - type: Transform - pos: 38.5,-7.5 + pos: 36.5,-8.5 parent: 2 - uid: 3685 components: - type: Transform - pos: 39.5,-8.5 + pos: 35.5,-8.5 parent: 2 - uid: 3686 components: - type: Transform - pos: 46.5,0.5 + pos: 33.5,-8.5 parent: 2 - uid: 3687 components: - type: Transform - pos: 46.5,-0.5 + pos: 34.5,-8.5 parent: 2 - uid: 3688 components: - type: Transform - pos: 46.5,-1.5 + pos: 35.5,-9.5 parent: 2 - uid: 3689 components: - type: Transform - pos: 47.5,-1.5 + pos: 44.5,-10.5 parent: 2 - uid: 3690 components: - type: Transform - pos: 47.5,-2.5 + pos: 58.5,-5.5 parent: 2 - uid: 3691 components: - type: Transform - pos: 41.5,1.5 + pos: 57.5,-5.5 parent: 2 - uid: 3692 components: - type: Transform - pos: 40.5,1.5 + pos: 56.5,-5.5 parent: 2 - uid: 3693 components: - type: Transform - pos: 39.5,1.5 + pos: 55.5,-5.5 parent: 2 - uid: 3694 components: - type: Transform - pos: 38.5,1.5 + pos: 54.5,-6.5 parent: 2 - uid: 3695 components: - type: Transform - pos: 37.5,1.5 + pos: 54.5,-5.5 parent: 2 - uid: 3696 components: - type: Transform - pos: 41.5,2.5 + pos: 59.5,-3.5 parent: 2 - uid: 3697 components: - type: Transform - pos: 48.5,0.5 + pos: 59.5,-2.5 parent: 2 - uid: 3698 components: - type: Transform - pos: 49.5,0.5 + pos: 60.5,-2.5 parent: 2 - uid: 3699 components: - type: Transform - pos: 50.5,0.5 + pos: 61.5,-2.5 parent: 2 - uid: 3700 components: - type: Transform - pos: 51.5,0.5 + pos: 62.5,-2.5 parent: 2 - uid: 3701 components: - type: Transform - pos: 52.5,0.5 + pos: 63.5,-2.5 parent: 2 - uid: 3702 components: - type: Transform - pos: 52.5,1.5 + pos: 62.5,-1.5 parent: 2 - uid: 3703 components: - type: Transform - pos: 52.5,2.5 + pos: 60.5,-1.5 parent: 2 - uid: 3704 components: - type: Transform - pos: 53.5,0.5 + pos: 63.5,-11.5 parent: 2 - uid: 3705 components: - type: Transform - pos: 53.5,-0.5 + pos: 64.5,-11.5 parent: 2 - uid: 3706 components: - type: Transform - pos: 54.5,-0.5 + pos: 62.5,-13.5 parent: 2 - uid: 3707 components: - type: Transform - pos: 55.5,-0.5 + pos: 63.5,-13.5 parent: 2 - uid: 3708 components: - type: Transform - pos: 56.5,-0.5 + pos: 64.5,-13.5 parent: 2 - uid: 3709 components: - type: Transform - pos: 57.5,-0.5 + pos: 62.5,-14.5 parent: 2 - uid: 3710 components: - type: Transform - pos: 57.5,0.5 + pos: 62.5,-15.5 parent: 2 - uid: 3711 components: - type: Transform - pos: 57.5,1.5 + pos: 62.5,-16.5 parent: 2 - uid: 3712 components: - type: Transform - pos: 58.5,1.5 + pos: 62.5,-17.5 parent: 2 - uid: 3713 components: - type: Transform - pos: 59.5,1.5 + pos: 62.5,-18.5 parent: 2 - uid: 3714 components: - type: Transform - pos: 60.5,1.5 + pos: 62.5,-19.5 parent: 2 - uid: 3715 components: - type: Transform - pos: 61.5,1.5 + pos: 62.5,-20.5 parent: 2 - uid: 3716 components: - type: Transform - pos: 62.5,1.5 + pos: 62.5,-21.5 parent: 2 - uid: 3717 components: - type: Transform - pos: 56.5,-1.5 + pos: 62.5,-22.5 parent: 2 - uid: 3718 components: - type: Transform - pos: 56.5,-2.5 + pos: 62.5,-23.5 parent: 2 - uid: 3719 components: - type: Transform - pos: 56.5,-3.5 + pos: 62.5,-24.5 parent: 2 - uid: 3720 components: - type: Transform - pos: 51.5,-0.5 + pos: 62.5,-25.5 parent: 2 - uid: 3721 components: - type: Transform - pos: 51.5,-1.5 + pos: 62.5,-26.5 parent: 2 - uid: 3722 components: - type: Transform - pos: 51.5,-2.5 + pos: 62.5,-27.5 parent: 2 - uid: 3723 components: - type: Transform - pos: 52.5,-2.5 + pos: 62.5,-28.5 parent: 2 - uid: 3724 components: - type: Transform - pos: 52.5,-3.5 + pos: 64.5,-5.5 parent: 2 - uid: 3725 components: - type: Transform - pos: 52.5,-5.5 + pos: 63.5,-3.5 parent: 2 - uid: 3726 components: - type: Transform - pos: 59.5,21.5 + pos: 64.5,-3.5 parent: 2 - uid: 3727 components: - type: Transform - pos: 60.5,21.5 + pos: 57.5,-12.5 parent: 2 - uid: 3728 components: - type: Transform - pos: 61.5,21.5 + pos: 57.5,-13.5 parent: 2 - uid: 3729 components: - type: Transform - pos: 67.5,-11.5 + pos: 45.5,19.5 parent: 2 - uid: 3730 components: - type: Transform - pos: 68.5,-11.5 + pos: 55.5,-43.5 parent: 2 - uid: 3731 components: - type: Transform - pos: 66.5,-13.5 + pos: 55.5,-42.5 parent: 2 - uid: 3732 components: - type: Transform - pos: 68.5,-13.5 + pos: 55.5,-41.5 parent: 2 - uid: 3733 components: - type: Transform - pos: 66.5,-11.5 + pos: 54.5,-41.5 parent: 2 - uid: 3734 components: - type: Transform - pos: 58.5,-34.5 + pos: 53.5,-41.5 parent: 2 - uid: 3735 components: - type: Transform - pos: 63.5,-43.5 + pos: 53.5,-42.5 parent: 2 - uid: 3736 components: - type: Transform - pos: 45.5,-39.5 + pos: 52.5,-42.5 parent: 2 - uid: 3737 components: - type: Transform - pos: 44.5,-39.5 + pos: 51.5,-42.5 parent: 2 - uid: 3738 components: - type: Transform - pos: 54.5,-33.5 + pos: 50.5,-42.5 parent: 2 - uid: 3739 components: - type: Transform - pos: 65.5,-45.5 + pos: 49.5,-42.5 parent: 2 - uid: 3740 components: - type: Transform - pos: 65.5,-44.5 + pos: 48.5,-42.5 parent: 2 - uid: 3741 components: - type: Transform - pos: 60.5,-11.5 + pos: 47.5,-42.5 parent: 2 - uid: 3742 components: - type: Transform - pos: 59.5,-11.5 + pos: 46.5,-42.5 parent: 2 - uid: 3743 components: - type: Transform - pos: 58.5,-11.5 + pos: 45.5,-42.5 parent: 2 - uid: 3744 components: - type: Transform - pos: 57.5,-11.5 + pos: 44.5,-42.5 parent: 2 - uid: 3745 components: - type: Transform - pos: 56.5,-11.5 + pos: 43.5,-42.5 parent: 2 - uid: 3746 components: - type: Transform - pos: 55.5,-11.5 + pos: 42.5,-42.5 parent: 2 - uid: 3747 components: - type: Transform - pos: 54.5,-11.5 + pos: 46.5,-41.5 parent: 2 - uid: 3748 components: - type: Transform - pos: 53.5,-11.5 + pos: 46.5,-40.5 parent: 2 - uid: 3749 components: - type: Transform - pos: 52.5,-11.5 + pos: 46.5,-39.5 parent: 2 - uid: 3750 components: - type: Transform - pos: 53.5,-12.5 + pos: 46.5,-38.5 parent: 2 - uid: 3751 components: - type: Transform - pos: 53.5,-13.5 + pos: 46.5,-37.5 parent: 2 - uid: 3752 components: - type: Transform - pos: 51.5,-11.5 + pos: 45.5,-37.5 parent: 2 - uid: 3753 components: - type: Transform - pos: 51.5,-10.5 + pos: 44.5,-37.5 parent: 2 - uid: 3754 components: - type: Transform - pos: 51.5,-9.5 + pos: 43.5,-37.5 parent: 2 - uid: 3755 components: - type: Transform - pos: 51.5,-8.5 + pos: 42.5,-37.5 parent: 2 - uid: 3756 components: - type: Transform - pos: 50.5,-8.5 + pos: 41.5,-37.5 parent: 2 - uid: 3757 components: - type: Transform - pos: 49.5,-8.5 + pos: 40.5,-37.5 parent: 2 - uid: 3758 components: - type: Transform - pos: 48.5,-8.5 + pos: 39.5,-37.5 parent: 2 - uid: 3759 components: - type: Transform - pos: 47.5,-8.5 + pos: 40.5,-36.5 parent: 2 - uid: 3760 components: - type: Transform - pos: 46.5,-8.5 + pos: 43.5,-36.5 parent: 2 - uid: 3761 components: - type: Transform - pos: 47.5,-7.5 + pos: 45.5,-36.5 parent: 2 - uid: 3762 components: - type: Transform - pos: 46.5,-9.5 + pos: 43.5,-38.5 parent: 2 - uid: 3763 components: - type: Transform - pos: 46.5,-10.5 + pos: 40.5,-38.5 parent: 2 - uid: 3764 components: - type: Transform - pos: 46.5,-11.5 + pos: 49.5,-41.5 parent: 2 - uid: 3765 components: - type: Transform - pos: 45.5,-11.5 + pos: 49.5,-40.5 parent: 2 - uid: 3766 components: - type: Transform - pos: 44.5,-11.5 + pos: 49.5,-39.5 parent: 2 - uid: 3767 components: - type: Transform - pos: 43.5,-11.5 + pos: 49.5,-38.5 parent: 2 - uid: 3768 components: - type: Transform - pos: 42.5,-11.5 + pos: 50.5,-38.5 parent: 2 - uid: 3769 components: - type: Transform - pos: 41.5,-11.5 + pos: 51.5,-38.5 parent: 2 - uid: 3770 components: - type: Transform - pos: 40.5,-11.5 + pos: 49.5,-37.5 parent: 2 - uid: 3771 components: - type: Transform - pos: 40.5,-12.5 + pos: 55.5,-44.5 parent: 2 - uid: 3772 components: - type: Transform - pos: 39.5,-12.5 + pos: 56.5,-44.5 parent: 2 - uid: 3773 components: - type: Transform - pos: 38.5,-12.5 + pos: 57.5,-44.5 parent: 2 - uid: 3774 components: - type: Transform - pos: 38.5,-13.5 + pos: 58.5,-44.5 parent: 2 - uid: 3775 components: - type: Transform - pos: 38.5,-14.5 + pos: 59.5,-44.5 parent: 2 - uid: 3776 components: - type: Transform - pos: 38.5,-15.5 + pos: 60.5,-44.5 parent: 2 - uid: 3777 components: - type: Transform - pos: 39.5,-14.5 + pos: 61.5,-44.5 parent: 2 - uid: 3778 components: - type: Transform - pos: 40.5,-14.5 + pos: 62.5,-44.5 parent: 2 - uid: 3779 components: - type: Transform - pos: 41.5,-14.5 + pos: 62.5,-43.5 parent: 2 - uid: 3780 components: - type: Transform - pos: 42.5,-14.5 + pos: 62.5,-42.5 parent: 2 - uid: 3781 components: - type: Transform - pos: 43.5,-13.5 + pos: 62.5,-41.5 parent: 2 - uid: 3782 components: - type: Transform - pos: 42.5,-13.5 + pos: 62.5,-40.5 parent: 2 - uid: 3783 components: - type: Transform - pos: 38.5,-11.5 + pos: 62.5,-39.5 parent: 2 - uid: 3784 components: - type: Transform - pos: 38.5,-10.5 + pos: 62.5,-37.5 parent: 2 - uid: 3785 components: - type: Transform - pos: 37.5,-8.5 + pos: 62.5,-36.5 parent: 2 - uid: 3786 components: - type: Transform - pos: 36.5,-8.5 + pos: 62.5,-35.5 parent: 2 - uid: 3787 components: - type: Transform - pos: 35.5,-8.5 + pos: 62.5,-34.5 parent: 2 - uid: 3788 components: - type: Transform - pos: 33.5,-8.5 + pos: 63.5,-34.5 parent: 2 - uid: 3789 components: - type: Transform - pos: 34.5,-8.5 + pos: 64.5,-34.5 parent: 2 - uid: 3790 components: - type: Transform - pos: 35.5,-9.5 + pos: 65.5,-34.5 parent: 2 - uid: 3791 components: - type: Transform - pos: 44.5,-10.5 + pos: 62.5,-33.5 parent: 2 - uid: 3792 components: - type: Transform - pos: 58.5,-5.5 + pos: 62.5,-32.5 parent: 2 - uid: 3793 components: - type: Transform - pos: 57.5,-5.5 + pos: 62.5,-31.5 parent: 2 - uid: 3794 components: - type: Transform - pos: 56.5,-5.5 + pos: 61.5,-34.5 parent: 2 - uid: 3795 components: - type: Transform - pos: 55.5,-5.5 + pos: 60.5,-34.5 parent: 2 - uid: 3796 components: - type: Transform - pos: 54.5,-6.5 + pos: 59.5,-34.5 parent: 2 - uid: 3797 components: - type: Transform - pos: 54.5,-5.5 + pos: 64.5,-35.5 parent: 2 - uid: 3798 components: - type: Transform - pos: 59.5,-3.5 + pos: 60.5,-35.5 parent: 2 - uid: 3799 components: - type: Transform - pos: 59.5,-2.5 + pos: 63.5,-33.5 parent: 2 - uid: 3800 components: - type: Transform - pos: 60.5,-2.5 + pos: 62.5,-45.5 parent: 2 - uid: 3801 components: - type: Transform - pos: 61.5,-2.5 + pos: 62.5,-46.5 parent: 2 - uid: 3802 components: - type: Transform - pos: 62.5,-2.5 + pos: 62.5,-47.5 parent: 2 - uid: 3803 components: - type: Transform - pos: 63.5,-2.5 + pos: 62.5,-48.5 parent: 2 - uid: 3804 components: - type: Transform - pos: 62.5,-1.5 + pos: 62.5,-49.5 parent: 2 - uid: 3805 components: - type: Transform - pos: 60.5,-1.5 + pos: 62.5,-50.5 parent: 2 - uid: 3806 components: - type: Transform - pos: 63.5,-11.5 + pos: 62.5,-51.5 parent: 2 - uid: 3807 components: - type: Transform - pos: 64.5,-11.5 + pos: 62.5,-52.5 parent: 2 - uid: 3808 components: - type: Transform - pos: 62.5,-13.5 + pos: 62.5,-53.5 parent: 2 - uid: 3809 components: - type: Transform - pos: 63.5,-13.5 + pos: 62.5,-54.5 parent: 2 - uid: 3810 components: - type: Transform - pos: 64.5,-13.5 + pos: 63.5,-52.5 parent: 2 - uid: 3811 components: - type: Transform - pos: 62.5,-14.5 + pos: 64.5,-52.5 parent: 2 - uid: 3812 components: - type: Transform - pos: 62.5,-15.5 + pos: 61.5,-52.5 parent: 2 - uid: 3813 components: - type: Transform - pos: 62.5,-16.5 + pos: 60.5,-52.5 parent: 2 - uid: 3814 components: - type: Transform - pos: 62.5,-17.5 + pos: 63.5,-46.5 parent: 2 - uid: 3815 components: - type: Transform - pos: 62.5,-18.5 + pos: 64.5,-46.5 parent: 2 - uid: 3816 components: - type: Transform - pos: 62.5,-19.5 + pos: 65.5,-46.5 parent: 2 - uid: 3817 components: - type: Transform - pos: 62.5,-20.5 + pos: 66.5,-46.5 parent: 2 - uid: 3818 components: - type: Transform - pos: 62.5,-21.5 + pos: 68.5,-46.5 parent: 2 - uid: 3819 components: - type: Transform - pos: 62.5,-22.5 + pos: 69.5,-46.5 parent: 2 - uid: 3820 components: - type: Transform - pos: 62.5,-23.5 + pos: 70.5,-46.5 parent: 2 - uid: 3821 components: - type: Transform - pos: 62.5,-24.5 + pos: 71.5,-46.5 parent: 2 - uid: 3822 components: - type: Transform - pos: 62.5,-25.5 + pos: 72.5,-46.5 parent: 2 - uid: 3823 components: - type: Transform - pos: 62.5,-26.5 + pos: 69.5,-47.5 parent: 2 - uid: 3824 components: - type: Transform - pos: 62.5,-27.5 + pos: 69.5,-48.5 parent: 2 - uid: 3825 components: - type: Transform - pos: 62.5,-28.5 + pos: 69.5,-49.5 parent: 2 - uid: 3826 components: - type: Transform - pos: 64.5,-5.5 + pos: 69.5,-45.5 parent: 2 - uid: 3827 components: - type: Transform - pos: 63.5,-3.5 + pos: 69.5,-44.5 parent: 2 - uid: 3828 components: - type: Transform - pos: 64.5,-3.5 + pos: 71.5,-45.5 parent: 2 - uid: 3829 components: - type: Transform - pos: 57.5,-12.5 + pos: 71.5,-47.5 parent: 2 - uid: 3830 components: - type: Transform - pos: 57.5,-13.5 + pos: 73.5,-46.5 parent: 2 - uid: 3831 components: - type: Transform - pos: 45.5,19.5 + pos: 73.5,-47.5 parent: 2 - uid: 3832 components: - type: Transform - pos: 55.5,-43.5 + pos: 73.5,-45.5 parent: 2 - uid: 3833 components: - type: Transform - pos: 55.5,-42.5 + pos: 49.5,-43.5 parent: 2 - uid: 3834 components: - type: Transform - pos: 55.5,-41.5 + pos: 49.5,-44.5 parent: 2 - uid: 3835 components: - type: Transform - pos: 54.5,-41.5 + pos: 49.5,-46.5 parent: 2 - uid: 3836 components: - type: Transform - pos: 53.5,-41.5 + pos: 49.5,-47.5 parent: 2 - uid: 3837 components: - type: Transform - pos: 53.5,-42.5 + pos: 49.5,-49.5 parent: 2 - uid: 3838 components: - type: Transform - pos: 52.5,-42.5 + pos: 49.5,-50.5 parent: 2 - uid: 3839 components: - type: Transform - pos: 51.5,-42.5 + pos: 49.5,-51.5 parent: 2 - uid: 3840 components: - type: Transform - pos: 50.5,-42.5 + pos: 49.5,-52.5 parent: 2 - uid: 3841 components: - type: Transform - pos: 49.5,-42.5 + pos: 49.5,-53.5 parent: 2 - uid: 3842 components: - type: Transform - pos: 48.5,-42.5 + pos: 49.5,-54.5 parent: 2 - uid: 3843 components: - type: Transform - pos: 47.5,-42.5 + pos: 48.5,-45.5 parent: 2 - uid: 3844 components: - type: Transform - pos: 46.5,-42.5 + pos: 47.5,-45.5 parent: 2 - uid: 3845 components: - type: Transform - pos: 45.5,-42.5 + pos: 46.5,-45.5 parent: 2 - uid: 3846 components: - type: Transform - pos: 44.5,-42.5 + pos: 45.5,-45.5 parent: 2 - uid: 3847 components: - type: Transform - pos: 43.5,-42.5 + pos: 45.5,-46.5 parent: 2 - uid: 3848 components: - type: Transform - pos: 42.5,-42.5 + pos: 45.5,-47.5 parent: 2 - uid: 3849 components: - type: Transform - pos: 46.5,-41.5 + pos: 45.5,-48.5 parent: 2 - uid: 3850 components: - type: Transform - pos: 46.5,-40.5 + pos: 44.5,-48.5 parent: 2 - uid: 3851 components: - type: Transform - pos: 46.5,-39.5 + pos: 43.5,-48.5 parent: 2 - uid: 3852 components: - type: Transform - pos: 46.5,-38.5 + pos: 43.5,-47.5 parent: 2 - uid: 3853 components: - type: Transform - pos: 46.5,-37.5 + pos: 43.5,-46.5 parent: 2 - uid: 3854 components: - type: Transform - pos: 45.5,-37.5 + pos: 42.5,-46.5 parent: 2 - uid: 3855 components: - type: Transform - pos: 44.5,-37.5 + pos: 41.5,-46.5 parent: 2 - uid: 3856 components: - type: Transform - pos: 43.5,-37.5 + pos: 40.5,-46.5 parent: 2 - uid: 3857 components: - type: Transform - pos: 42.5,-37.5 + pos: 39.5,-46.5 parent: 2 - uid: 3858 components: - type: Transform - pos: 41.5,-37.5 + pos: 41.5,-42.5 parent: 2 - uid: 3859 components: - type: Transform - pos: 40.5,-37.5 + pos: 40.5,-42.5 parent: 2 - uid: 3860 components: - type: Transform - pos: 39.5,-37.5 + pos: 39.5,-42.5 parent: 2 - uid: 3861 components: - type: Transform - pos: 40.5,-36.5 + pos: 38.5,-42.5 parent: 2 - uid: 3862 components: - type: Transform - pos: 43.5,-36.5 + pos: 37.5,-42.5 parent: 2 - uid: 3863 components: - type: Transform - pos: 45.5,-36.5 + pos: 59.5,-33.5 parent: 2 - uid: 3864 components: - type: Transform - pos: 43.5,-38.5 + pos: 55.5,-63.5 parent: 2 - uid: 3865 components: - type: Transform - pos: 40.5,-38.5 + pos: 64.5,-43.5 parent: 2 - uid: 3866 components: - type: Transform - pos: 49.5,-41.5 + pos: -15.5,-18.5 parent: 2 - uid: 3867 components: - type: Transform - pos: 49.5,-40.5 + pos: -21.5,-59.5 parent: 2 - uid: 3868 components: - type: Transform - pos: 49.5,-39.5 + pos: 30.5,-47.5 parent: 2 - uid: 3869 components: - type: Transform - pos: 49.5,-38.5 + pos: 31.5,-47.5 parent: 2 - uid: 3870 components: - type: Transform - pos: 50.5,-38.5 + pos: 32.5,-47.5 parent: 2 - uid: 3871 components: - type: Transform - pos: 51.5,-38.5 + pos: 33.5,-47.5 parent: 2 - uid: 3872 components: - type: Transform - pos: 49.5,-37.5 + pos: 31.5,-46.5 parent: 2 - uid: 3873 components: - type: Transform - pos: 55.5,-44.5 + pos: 31.5,-46.5 parent: 2 - uid: 3874 components: - type: Transform - pos: 56.5,-44.5 + pos: 31.5,-45.5 parent: 2 - uid: 3875 components: - type: Transform - pos: 57.5,-44.5 + pos: 29.5,-48.5 parent: 2 - uid: 3876 components: - type: Transform - pos: 58.5,-44.5 + pos: 29.5,-49.5 parent: 2 - uid: 3877 components: - type: Transform - pos: 59.5,-44.5 + pos: 30.5,-49.5 parent: 2 - uid: 3878 components: - type: Transform - pos: 60.5,-44.5 + pos: 31.5,-49.5 parent: 2 - uid: 3879 components: - type: Transform - pos: 61.5,-44.5 + pos: 31.5,-50.5 parent: 2 - uid: 3880 components: - type: Transform - pos: 62.5,-44.5 + pos: 31.5,-51.5 parent: 2 - uid: 3881 components: - type: Transform - pos: 62.5,-43.5 + pos: 31.5,-52.5 parent: 2 - uid: 3882 components: - type: Transform - pos: 62.5,-42.5 + pos: 30.5,-51.5 parent: 2 - uid: 3883 components: - type: Transform - pos: 62.5,-41.5 + pos: 32.5,-51.5 parent: 2 - uid: 3884 components: - type: Transform - pos: 62.5,-40.5 + pos: 31.5,-53.5 parent: 2 - uid: 3885 components: - type: Transform - pos: 62.5,-39.5 + pos: 31.5,-54.5 parent: 2 - uid: 3886 components: - type: Transform - pos: 62.5,-37.5 + pos: 31.5,-56.5 parent: 2 - uid: 3887 components: - type: Transform - pos: 62.5,-36.5 + pos: 31.5,-55.5 parent: 2 - uid: 3888 components: - type: Transform - pos: 62.5,-35.5 + pos: 30.5,-54.5 parent: 2 - uid: 3889 components: - type: Transform - pos: 62.5,-34.5 + pos: 29.5,-54.5 parent: 2 - uid: 3890 components: - type: Transform - pos: 63.5,-34.5 + pos: 32.5,-54.5 parent: 2 - uid: 3891 components: - type: Transform - pos: 64.5,-34.5 + pos: 33.5,-54.5 parent: 2 - uid: 3892 components: - type: Transform - pos: 65.5,-34.5 + pos: 30.5,-45.5 parent: 2 - uid: 3893 components: - type: Transform - pos: 62.5,-33.5 + pos: 32.5,-45.5 parent: 2 - uid: 3894 components: - type: Transform - pos: 62.5,-32.5 + pos: 29.5,-45.5 parent: 2 - uid: 3895 components: - type: Transform - pos: 62.5,-31.5 + pos: 33.5,-45.5 parent: 2 - uid: 3896 components: - type: Transform - pos: 61.5,-34.5 + pos: 48.5,-54.5 parent: 2 - uid: 3897 components: - type: Transform - pos: 60.5,-34.5 + pos: 47.5,-54.5 parent: 2 - uid: 3898 components: - type: Transform - pos: 59.5,-34.5 + pos: 46.5,-54.5 parent: 2 - uid: 3899 components: - type: Transform - pos: 64.5,-35.5 + pos: 49.5,-55.5 parent: 2 - uid: 3900 components: - type: Transform - pos: 60.5,-35.5 + pos: 49.5,-56.5 parent: 2 - uid: 3901 components: - type: Transform - pos: 63.5,-33.5 + pos: 49.5,-57.5 parent: 2 - uid: 3902 components: - type: Transform - pos: 62.5,-45.5 + pos: 49.5,-58.5 parent: 2 - uid: 3903 components: - type: Transform - pos: 62.5,-46.5 + pos: 49.5,-59.5 parent: 2 - uid: 3904 components: - type: Transform - pos: 62.5,-47.5 + pos: 49.5,-60.5 parent: 2 - uid: 3905 components: - type: Transform - pos: 62.5,-48.5 + pos: 50.5,-60.5 parent: 2 - uid: 3906 components: - type: Transform - pos: 62.5,-49.5 + pos: 50.5,-53.5 parent: 2 - uid: 3907 components: - type: Transform - pos: 62.5,-50.5 + pos: 51.5,-53.5 parent: 2 - uid: 3908 components: - type: Transform - pos: 62.5,-51.5 + pos: 52.5,-53.5 parent: 2 - uid: 3909 components: - type: Transform - pos: 62.5,-52.5 + pos: 52.5,-52.5 parent: 2 - uid: 3910 components: - type: Transform - pos: 62.5,-53.5 + pos: 52.5,-51.5 parent: 2 - uid: 3911 components: - type: Transform - pos: 62.5,-54.5 + pos: 50.5,-50.5 parent: 2 - uid: 3912 components: - type: Transform - pos: 63.5,-52.5 + pos: 48.5,-57.5 parent: 2 - uid: 3913 components: - type: Transform - pos: 64.5,-52.5 + pos: 47.5,-57.5 parent: 2 - uid: 3914 components: - type: Transform - pos: 61.5,-52.5 + pos: 46.5,-57.5 parent: 2 - uid: 3915 components: - type: Transform - pos: 60.5,-52.5 + pos: 45.5,-57.5 parent: 2 - uid: 3916 components: - type: Transform - pos: 63.5,-46.5 + pos: 51.5,-54.5 parent: 2 - uid: 3917 components: - type: Transform - pos: 64.5,-46.5 + pos: 51.5,-55.5 parent: 2 - uid: 3918 components: - type: Transform - pos: 65.5,-46.5 + pos: 51.5,-56.5 parent: 2 - uid: 3919 components: - type: Transform - pos: 66.5,-46.5 + pos: 49.5,-48.5 parent: 2 - uid: 3920 components: - type: Transform - pos: 68.5,-46.5 + pos: 32.5,15.5 parent: 2 - uid: 3921 components: - type: Transform - pos: 69.5,-46.5 + pos: -20.5,0.5 parent: 2 - uid: 3922 components: - type: Transform - pos: 70.5,-46.5 + pos: -21.5,0.5 parent: 2 - uid: 3923 components: - type: Transform - pos: 71.5,-46.5 + pos: -21.5,1.5 parent: 2 - uid: 3924 components: - type: Transform - pos: 72.5,-46.5 + pos: -20.5,1.5 parent: 2 - uid: 3925 components: - type: Transform - pos: 69.5,-47.5 + pos: -19.5,1.5 parent: 2 - uid: 3926 components: - type: Transform - pos: 69.5,-48.5 + pos: -19.5,2.5 parent: 2 - uid: 3927 components: - type: Transform - pos: 69.5,-49.5 + pos: -18.5,2.5 parent: 2 - uid: 3928 components: - type: Transform - pos: 69.5,-45.5 + pos: -17.5,2.5 parent: 2 - uid: 3929 components: - type: Transform - pos: 69.5,-44.5 + pos: -17.5,3.5 parent: 2 - uid: 3930 components: - type: Transform - pos: 71.5,-45.5 + pos: -19.5,-1.5 parent: 2 - uid: 3931 components: - type: Transform - pos: 71.5,-47.5 + pos: -19.5,-2.5 parent: 2 - uid: 3932 components: - type: Transform - pos: 73.5,-46.5 + pos: -19.5,-0.5 parent: 2 - uid: 3933 components: - type: Transform - pos: 73.5,-47.5 + pos: -20.5,-0.5 parent: 2 - uid: 3934 components: - type: Transform - pos: 73.5,-45.5 + pos: -21.5,2.5 parent: 2 - uid: 3935 components: - type: Transform - pos: 49.5,-43.5 + pos: -21.5,3.5 parent: 2 - uid: 3936 components: - type: Transform - pos: 49.5,-44.5 + pos: -18.5,-0.5 parent: 2 - uid: 3937 components: - type: Transform - pos: 49.5,-46.5 + pos: 57.5,6.5 parent: 2 - uid: 3938 components: - type: Transform - pos: 49.5,-47.5 + pos: 18.5,-81.5 parent: 2 - uid: 3939 components: - type: Transform - pos: 49.5,-49.5 + pos: -29.5,-9.5 parent: 2 - uid: 3940 components: - type: Transform - pos: 49.5,-50.5 + pos: -29.5,-10.5 parent: 2 - uid: 3941 components: - type: Transform - pos: 49.5,-51.5 + pos: -29.5,-11.5 parent: 2 - uid: 3942 components: - type: Transform - pos: 49.5,-52.5 + pos: -29.5,-12.5 parent: 2 - uid: 3943 components: - type: Transform - pos: 49.5,-53.5 + pos: -28.5,-12.5 parent: 2 - uid: 3944 components: - type: Transform - pos: 49.5,-54.5 + pos: -27.5,-12.5 parent: 2 - uid: 3945 components: - type: Transform - pos: 48.5,-45.5 + pos: -26.5,-12.5 parent: 2 - uid: 3946 components: - type: Transform - pos: 47.5,-45.5 + pos: -25.5,-12.5 parent: 2 - uid: 3947 components: - type: Transform - pos: 46.5,-45.5 + pos: -24.5,-12.5 parent: 2 - uid: 3948 components: - type: Transform - pos: 45.5,-45.5 + pos: -23.5,-12.5 parent: 2 - uid: 3949 components: - type: Transform - pos: 45.5,-46.5 + pos: -22.5,-12.5 parent: 2 - uid: 3950 components: - type: Transform - pos: 45.5,-47.5 + pos: -21.5,-12.5 parent: 2 - uid: 3951 components: - type: Transform - pos: 45.5,-48.5 + pos: -20.5,-12.5 parent: 2 - uid: 3952 components: - type: Transform - pos: 44.5,-48.5 + pos: -19.5,-12.5 parent: 2 - uid: 3953 components: - type: Transform - pos: 43.5,-48.5 + pos: -24.5,-11.5 parent: 2 - uid: 3954 components: - type: Transform - pos: 43.5,-47.5 + pos: -24.5,-10.5 parent: 2 - uid: 3955 components: - type: Transform - pos: 43.5,-46.5 + pos: -24.5,-9.5 parent: 2 - uid: 3956 components: - type: Transform - pos: 42.5,-46.5 + pos: -19.5,-13.5 parent: 2 - uid: 3957 components: - type: Transform - pos: 41.5,-46.5 + pos: -19.5,-14.5 parent: 2 - uid: 3958 components: - type: Transform - pos: 40.5,-46.5 + pos: -19.5,-15.5 parent: 2 - uid: 3959 components: - type: Transform - pos: 39.5,-46.5 + pos: -19.5,-16.5 parent: 2 - uid: 3960 components: - type: Transform - pos: 41.5,-42.5 + pos: -19.5,-17.5 parent: 2 - uid: 3961 components: - type: Transform - pos: 40.5,-42.5 + pos: -19.5,-18.5 parent: 2 - uid: 3962 components: - type: Transform - pos: 39.5,-42.5 + pos: -19.5,-19.5 parent: 2 - uid: 3963 components: - type: Transform - pos: 38.5,-42.5 + pos: -19.5,-20.5 parent: 2 - uid: 3964 components: - type: Transform - pos: 37.5,-42.5 + pos: -19.5,-21.5 parent: 2 - uid: 3965 components: - type: Transform - pos: 59.5,-33.5 + pos: -19.5,-22.5 parent: 2 - uid: 3966 components: - type: Transform - pos: 55.5,-63.5 + pos: -20.5,-17.5 parent: 2 - uid: 3967 components: - type: Transform - pos: 64.5,-43.5 + pos: -21.5,-17.5 parent: 2 - uid: 3968 components: - type: Transform - pos: -15.5,-18.5 + pos: -23.5,-17.5 parent: 2 - uid: 3969 components: - type: Transform - pos: -21.5,-59.5 + pos: -24.5,-17.5 parent: 2 - uid: 3970 components: - type: Transform - pos: 30.5,-47.5 + pos: -25.5,-17.5 parent: 2 - uid: 3971 components: - type: Transform - pos: 31.5,-47.5 + pos: -26.5,-17.5 parent: 2 - uid: 3972 components: - type: Transform - pos: 32.5,-47.5 + pos: -27.5,-17.5 parent: 2 - uid: 3973 components: - type: Transform - pos: 33.5,-47.5 + pos: -28.5,-17.5 parent: 2 - uid: 3974 components: - type: Transform - pos: 31.5,-46.5 + pos: -29.5,-17.5 parent: 2 - uid: 3975 components: - type: Transform - pos: 31.5,-46.5 + pos: -20.5,-22.5 parent: 2 - uid: 3976 components: - type: Transform - pos: 31.5,-45.5 + pos: -21.5,-22.5 parent: 2 - uid: 3977 components: - type: Transform - pos: 29.5,-48.5 + pos: -22.5,-22.5 parent: 2 - uid: 3978 components: - type: Transform - pos: 29.5,-49.5 + pos: -23.5,-22.5 parent: 2 - uid: 3979 components: - type: Transform - pos: 30.5,-49.5 + pos: -24.5,-22.5 parent: 2 - uid: 3980 components: - type: Transform - pos: 31.5,-49.5 + pos: -25.5,-22.5 parent: 2 - uid: 3981 components: - type: Transform - pos: 31.5,-50.5 + pos: -26.5,-22.5 parent: 2 - uid: 3982 components: - type: Transform - pos: 31.5,-51.5 + pos: -27.5,-22.5 parent: 2 - uid: 3983 components: - type: Transform - pos: 31.5,-52.5 + pos: -28.5,-22.5 parent: 2 - uid: 3984 components: - type: Transform - pos: 30.5,-51.5 + pos: -29.5,-22.5 parent: 2 - uid: 3985 components: - type: Transform - pos: 32.5,-51.5 + pos: -19.5,-23.5 parent: 2 - uid: 3986 components: - type: Transform - pos: 31.5,-53.5 + pos: -19.5,-11.5 parent: 2 - uid: 3987 components: - type: Transform - pos: 31.5,-54.5 + pos: -19.5,-10.5 parent: 2 - uid: 3988 components: - type: Transform - pos: 31.5,-56.5 + pos: -19.5,-9.5 parent: 2 - uid: 3989 components: - type: Transform - pos: 31.5,-55.5 + pos: -19.5,-8.5 parent: 2 - uid: 3990 components: - type: Transform - pos: 30.5,-54.5 + pos: -19.5,-6.5 parent: 2 - uid: 3991 components: - type: Transform - pos: 29.5,-54.5 + pos: -19.5,-5.5 parent: 2 - uid: 3992 components: - type: Transform - pos: 32.5,-54.5 + pos: -18.5,-5.5 parent: 2 - uid: 3993 components: - type: Transform - pos: 33.5,-54.5 + pos: -17.5,-5.5 parent: 2 - uid: 3994 components: - type: Transform - pos: 30.5,-45.5 + pos: -16.5,-5.5 parent: 2 - uid: 3995 components: - type: Transform - pos: 32.5,-45.5 + pos: -15.5,-5.5 parent: 2 - uid: 3996 components: - type: Transform - pos: 29.5,-45.5 + pos: -14.5,-5.5 parent: 2 - uid: 3997 components: - type: Transform - pos: 33.5,-45.5 + pos: -13.5,-5.5 parent: 2 - uid: 3998 components: - type: Transform - pos: 48.5,-54.5 + pos: -13.5,-4.5 parent: 2 - uid: 3999 components: - type: Transform - pos: 47.5,-54.5 + pos: -13.5,3.5 parent: 2 - uid: 4000 components: - type: Transform - pos: 46.5,-54.5 + pos: -19.5,7.5 parent: 2 - uid: 4001 components: - type: Transform - pos: 49.5,-55.5 + pos: -20.5,7.5 parent: 2 - uid: 4002 components: - type: Transform - pos: 49.5,-56.5 + pos: -21.5,7.5 parent: 2 - uid: 4003 components: - type: Transform - pos: 49.5,-57.5 + pos: -22.5,7.5 parent: 2 - uid: 4004 components: - type: Transform - pos: 49.5,-58.5 + pos: -20.5,-5.5 parent: 2 - uid: 4005 components: - type: Transform - pos: 49.5,-59.5 + pos: -21.5,-5.5 parent: 2 - uid: 4006 components: - type: Transform - pos: 49.5,-60.5 + pos: -22.5,-5.5 parent: 2 - uid: 4007 components: - type: Transform - pos: 50.5,-60.5 + pos: -23.5,-5.5 parent: 2 - uid: 4008 components: - type: Transform - pos: 50.5,-53.5 + pos: -24.5,-5.5 parent: 2 - uid: 4009 components: - type: Transform - pos: 51.5,-53.5 + pos: -25.5,-5.5 parent: 2 - uid: 4010 components: - type: Transform - pos: 52.5,-53.5 + pos: -25.5,-4.5 parent: 2 - uid: 4011 components: - type: Transform - pos: 52.5,-52.5 + pos: -25.5,-3.5 parent: 2 - uid: 4012 components: - type: Transform - pos: 52.5,-51.5 + pos: -25.5,-2.5 parent: 2 - uid: 4013 components: - type: Transform - pos: 50.5,-50.5 + pos: -25.5,-1.5 parent: 2 - uid: 4014 components: - type: Transform - pos: 48.5,-57.5 + pos: -25.5,-0.5 parent: 2 - uid: 4015 components: - type: Transform - pos: 47.5,-57.5 + pos: -25.5,0.5 parent: 2 - uid: 4016 components: - type: Transform - pos: 46.5,-57.5 + pos: -24.5,-9.5 parent: 2 - uid: 4017 components: - type: Transform - pos: 45.5,-57.5 + pos: -23.5,-9.5 parent: 2 - uid: 4018 components: - type: Transform - pos: 51.5,-54.5 + pos: -29.5,-13.5 parent: 2 - uid: 4019 components: - type: Transform - pos: 51.5,-55.5 + pos: -29.5,-14.5 parent: 2 - uid: 4020 components: - type: Transform - pos: 51.5,-56.5 + pos: -29.5,-8.5 parent: 2 - uid: 4021 components: - type: Transform - pos: 49.5,-48.5 + pos: 45.5,18.5 parent: 2 - uid: 4022 components: - type: Transform - pos: 32.5,15.5 + pos: 30.5,-59.5 parent: 2 - uid: 4023 components: - type: Transform - pos: -20.5,0.5 + pos: 31.5,-59.5 parent: 2 - uid: 4024 components: - type: Transform - pos: -21.5,0.5 + pos: 32.5,-59.5 parent: 2 - uid: 4025 components: - type: Transform - pos: -21.5,1.5 + pos: 33.5,-59.5 parent: 2 - uid: 4026 components: - type: Transform - pos: -20.5,1.5 + pos: 34.5,-59.5 parent: 2 - uid: 4027 components: - type: Transform - pos: -19.5,1.5 + pos: 38.5,-36.5 parent: 2 - uid: 4028 components: - type: Transform - pos: -19.5,2.5 + pos: 38.5,-37.5 parent: 2 - uid: 4029 components: - type: Transform - pos: -18.5,2.5 + pos: 51.5,-57.5 parent: 2 - uid: 4030 components: - type: Transform - pos: -17.5,2.5 + pos: 51.5,-58.5 parent: 2 - uid: 4031 components: - type: Transform - pos: -17.5,3.5 + pos: 52.5,-58.5 parent: 2 - uid: 4032 components: - type: Transform - pos: -19.5,-1.5 + pos: 53.5,-58.5 parent: 2 - uid: 4033 components: - type: Transform - pos: -19.5,-2.5 + pos: 54.5,-58.5 parent: 2 - uid: 4034 components: - type: Transform - pos: -19.5,-0.5 + pos: 55.5,-58.5 parent: 2 - uid: 4035 components: - type: Transform - pos: -20.5,-0.5 + pos: 55.5,-59.5 parent: 2 - uid: 4036 components: - type: Transform - pos: -21.5,2.5 + pos: 55.5,-60.5 parent: 2 - uid: 4037 components: - type: Transform - pos: -21.5,3.5 + pos: 56.5,-60.5 parent: 2 - uid: 4038 components: - type: Transform - pos: -18.5,-0.5 + pos: -35.5,-39.5 parent: 2 - uid: 4039 components: - type: Transform - pos: 57.5,6.5 + pos: 29.5,-72.5 parent: 2 - uid: 4040 components: - type: Transform - pos: 18.5,-81.5 + pos: 47.5,-82.5 parent: 2 - uid: 4041 components: - type: Transform - pos: -29.5,-9.5 + pos: 37.5,-57.5 parent: 2 - uid: 4042 components: - type: Transform - pos: -29.5,-10.5 + pos: 37.5,-58.5 parent: 2 - uid: 4043 components: - type: Transform - pos: -29.5,-11.5 + pos: 37.5,-59.5 parent: 2 - uid: 4044 components: - type: Transform - pos: -29.5,-12.5 + pos: 38.5,-59.5 parent: 2 - uid: 4045 components: - type: Transform - pos: -28.5,-12.5 + pos: 39.5,-59.5 parent: 2 - uid: 4046 components: - type: Transform - pos: -27.5,-12.5 + pos: 40.5,-59.5 parent: 2 - uid: 4047 components: - type: Transform - pos: -26.5,-12.5 + pos: 40.5,-59.5 parent: 2 - uid: 4048 components: - type: Transform - pos: -25.5,-12.5 + pos: 40.5,-60.5 parent: 2 - uid: 4049 components: - type: Transform - pos: -24.5,-12.5 + pos: 40.5,-61.5 parent: 2 - uid: 4050 components: - type: Transform - pos: -23.5,-12.5 + pos: 40.5,-62.5 parent: 2 - uid: 4051 components: - type: Transform - pos: -22.5,-12.5 + pos: 40.5,-63.5 parent: 2 - uid: 4052 components: - type: Transform - pos: -21.5,-12.5 + pos: 40.5,-64.5 parent: 2 - uid: 4053 components: - type: Transform - pos: -20.5,-12.5 + pos: 40.5,-65.5 parent: 2 - uid: 4054 components: - type: Transform - pos: -19.5,-12.5 + pos: 40.5,-66.5 parent: 2 - uid: 4055 components: - type: Transform - pos: -24.5,-11.5 + pos: 40.5,-67.5 parent: 2 - uid: 4056 components: - type: Transform - pos: -24.5,-10.5 + pos: 40.5,-68.5 parent: 2 - uid: 4057 components: - type: Transform - pos: -24.5,-9.5 + pos: 40.5,-69.5 parent: 2 - uid: 4058 components: - type: Transform - pos: -19.5,-13.5 + pos: 40.5,-70.5 parent: 2 - uid: 4059 components: - type: Transform - pos: -19.5,-14.5 + pos: 40.5,-71.5 parent: 2 - uid: 4060 components: - type: Transform - pos: -19.5,-15.5 + pos: 40.5,-72.5 parent: 2 - uid: 4061 components: - type: Transform - pos: -19.5,-16.5 + pos: 41.5,-72.5 parent: 2 - uid: 4062 components: - type: Transform - pos: -19.5,-17.5 + pos: 42.5,-72.5 parent: 2 - uid: 4063 components: - type: Transform - pos: -19.5,-18.5 + pos: 43.5,-72.5 parent: 2 - uid: 4064 components: - type: Transform - pos: -19.5,-19.5 + pos: 44.5,-72.5 parent: 2 - uid: 4065 components: - type: Transform - pos: -19.5,-20.5 + pos: 44.5,-73.5 parent: 2 - uid: 4066 components: - type: Transform - pos: -19.5,-21.5 + pos: 42.5,-73.5 parent: 2 - uid: 4067 components: - type: Transform - pos: -19.5,-22.5 + pos: 39.5,-72.5 parent: 2 - uid: 4068 components: - type: Transform - pos: -20.5,-17.5 + pos: 38.5,-72.5 parent: 2 - uid: 4069 components: - type: Transform - pos: -21.5,-17.5 + pos: 37.5,-72.5 parent: 2 - uid: 4070 components: - type: Transform - pos: -23.5,-17.5 + pos: 36.5,-72.5 parent: 2 - uid: 4071 components: - type: Transform - pos: -24.5,-17.5 + pos: 35.5,-72.5 parent: 2 - uid: 4072 components: - type: Transform - pos: -25.5,-17.5 + pos: 34.5,-72.5 parent: 2 - uid: 4073 components: - type: Transform - pos: -26.5,-17.5 + pos: 34.5,-73.5 parent: 2 - uid: 4074 components: - type: Transform - pos: -27.5,-17.5 + pos: 36.5,-73.5 parent: 2 - uid: 4075 components: - type: Transform - pos: -28.5,-17.5 + pos: 44.5,-71.5 parent: 2 - uid: 4076 components: - type: Transform - pos: -29.5,-17.5 + pos: 44.5,-70.5 parent: 2 - uid: 4077 components: - type: Transform - pos: -20.5,-22.5 + pos: 34.5,-71.5 parent: 2 - uid: 4078 components: - type: Transform - pos: -21.5,-22.5 + pos: 34.5,-70.5 parent: 2 - uid: 4079 components: - type: Transform - pos: -22.5,-22.5 + pos: 41.5,-59.5 parent: 2 - uid: 4080 components: - type: Transform - pos: -23.5,-22.5 + pos: 42.5,-59.5 parent: 2 - uid: 4081 components: - type: Transform - pos: -24.5,-22.5 + pos: 43.5,-59.5 parent: 2 - uid: 4082 components: - type: Transform - pos: -25.5,-22.5 + pos: 39.5,-58.5 parent: 2 - uid: 4083 components: - type: Transform - pos: -26.5,-22.5 + pos: 39.5,-57.5 parent: 2 - uid: 4084 components: - type: Transform - pos: -27.5,-22.5 + pos: 39.5,-56.5 parent: 2 - uid: 4085 components: - type: Transform - pos: -28.5,-22.5 + pos: 39.5,-55.5 parent: 2 - uid: 4086 components: - type: Transform - pos: -29.5,-22.5 + pos: 39.5,-54.5 parent: 2 - uid: 4087 components: - type: Transform - pos: -19.5,-23.5 + pos: 40.5,-55.5 parent: 2 - uid: 4088 components: - type: Transform - pos: -19.5,-11.5 + pos: 36.5,-58.5 parent: 2 - uid: 4089 components: - type: Transform - pos: -19.5,-10.5 + pos: 36.5,-56.5 parent: 2 - uid: 4090 components: - type: Transform - pos: -19.5,-9.5 + pos: 36.5,-54.5 parent: 2 - uid: 4091 components: - type: Transform - pos: -19.5,-8.5 + pos: 36.5,-57.5 parent: 2 - uid: 4092 components: - type: Transform - pos: -19.5,-6.5 + pos: 36.5,-55.5 parent: 2 - uid: 4093 components: - type: Transform - pos: -19.5,-5.5 + pos: 36.5,-53.5 parent: 2 - uid: 4094 components: - type: Transform - pos: -18.5,-5.5 + pos: 36.5,-52.5 parent: 2 - uid: 4095 components: - type: Transform - pos: -17.5,-5.5 + pos: 36.5,-51.5 parent: 2 - uid: 4096 components: - type: Transform - pos: -16.5,-5.5 + pos: 37.5,-51.5 parent: 2 - uid: 4097 components: - type: Transform - pos: -15.5,-5.5 + pos: 38.5,-51.5 parent: 2 - uid: 4098 components: - type: Transform - pos: -14.5,-5.5 + pos: 39.5,-51.5 parent: 2 - uid: 4099 components: - type: Transform - pos: -13.5,-5.5 + pos: 40.5,-51.5 parent: 2 - uid: 4100 components: - type: Transform - pos: -13.5,-4.5 + pos: 40.5,-50.5 parent: 2 - uid: 4101 components: - type: Transform - pos: -13.5,3.5 + pos: 40.5,-49.5 parent: 2 - uid: 4102 components: - type: Transform - pos: -19.5,7.5 + pos: 39.5,-49.5 parent: 2 - uid: 4103 components: - type: Transform - pos: -20.5,7.5 + pos: 39.5,-48.5 parent: 2 - uid: 4104 components: - type: Transform - pos: -21.5,7.5 + pos: 38.5,-48.5 parent: 2 - uid: 4105 components: - type: Transform - pos: -22.5,7.5 + pos: 41.5,-51.5 parent: 2 - uid: 4106 components: - type: Transform - pos: -20.5,-5.5 + pos: 42.5,-51.5 parent: 2 - uid: 4107 components: - type: Transform - pos: -21.5,-5.5 + pos: 43.5,-51.5 parent: 2 - uid: 4108 components: - type: Transform - pos: -22.5,-5.5 + pos: 43.5,-52.5 parent: 2 - uid: 4109 components: - type: Transform - pos: -23.5,-5.5 + pos: 43.5,-53.5 parent: 2 - uid: 4110 components: - type: Transform - pos: -24.5,-5.5 + pos: 43.5,-54.5 parent: 2 - uid: 4111 components: - type: Transform - pos: -25.5,-5.5 + pos: 31.5,-72.5 parent: 2 - uid: 4112 components: - type: Transform - pos: -25.5,-4.5 + pos: 27.5,-72.5 parent: 2 - uid: 4113 components: - type: Transform - pos: -25.5,-3.5 + pos: 28.5,-72.5 parent: 2 - uid: 4114 components: - type: Transform - pos: -25.5,-2.5 + pos: 22.5,-83.5 parent: 2 - uid: 4115 components: - type: Transform - pos: -25.5,-1.5 + pos: 23.5,-72.5 parent: 2 - uid: 4116 components: - type: Transform - pos: -25.5,-0.5 + pos: 25.5,-70.5 parent: 2 - uid: 4117 components: - type: Transform - pos: -25.5,0.5 + pos: 25.5,-69.5 parent: 2 - uid: 4118 components: - type: Transform - pos: -24.5,-9.5 + pos: 13.5,-83.5 parent: 2 - uid: 4119 components: - type: Transform - pos: -23.5,-9.5 + pos: 26.5,-72.5 parent: 2 - uid: 4120 components: - type: Transform - pos: -29.5,-13.5 + pos: 25.5,-72.5 parent: 2 - uid: 4121 components: - type: Transform - pos: -29.5,-14.5 + pos: 25.5,-71.5 parent: 2 - uid: 4122 components: - type: Transform - pos: -29.5,-8.5 + pos: 20.5,-83.5 parent: 2 - uid: 4123 components: - type: Transform - pos: 45.5,18.5 + pos: 18.5,-83.5 parent: 2 - uid: 4124 components: - type: Transform - pos: 30.5,-59.5 + pos: 24.5,-72.5 parent: 2 - uid: 4125 components: - type: Transform - pos: 31.5,-59.5 + pos: 13.5,-86.5 parent: 2 - uid: 4126 components: - type: Transform - pos: 32.5,-59.5 + pos: 21.5,-83.5 parent: 2 - uid: 4127 components: - type: Transform - pos: 33.5,-59.5 + pos: 14.5,-81.5 parent: 2 - uid: 4128 components: - type: Transform - pos: 34.5,-59.5 + pos: 12.5,-81.5 parent: 2 - uid: 4129 components: - type: Transform - pos: 38.5,-36.5 + pos: 17.5,-81.5 parent: 2 - uid: 4130 components: - type: Transform - pos: 38.5,-37.5 + pos: 14.5,-86.5 parent: 2 - uid: 4131 components: - type: Transform - pos: 51.5,-57.5 + pos: 10.5,-70.5 parent: 2 - uid: 4132 components: - type: Transform - pos: 51.5,-58.5 + pos: 32.5,-72.5 parent: 2 - uid: 4133 components: - type: Transform - pos: 52.5,-58.5 + pos: 30.5,-75.5 parent: 2 - uid: 4134 components: - type: Transform - pos: 53.5,-58.5 + pos: 30.5,-73.5 parent: 2 - uid: 4135 components: - type: Transform - pos: 54.5,-58.5 + pos: 30.5,-76.5 parent: 2 - uid: 4136 components: - type: Transform - pos: 55.5,-58.5 + pos: 30.5,-74.5 parent: 2 - uid: 4137 components: - type: Transform - pos: 55.5,-59.5 + pos: 33.5,-72.5 parent: 2 - uid: 4138 components: - type: Transform - pos: 55.5,-60.5 + pos: 48.5,-73.5 parent: 2 - uid: 4139 components: - type: Transform - pos: 56.5,-60.5 + pos: 30.5,-78.5 parent: 2 - uid: 4140 components: - type: Transform - pos: -35.5,-39.5 + pos: 46.5,-82.5 parent: 2 - uid: 4141 components: - type: Transform - pos: 29.5,-72.5 + pos: 48.5,-91.5 parent: 2 - uid: 4142 components: - type: Transform - pos: 47.5,-82.5 + pos: 21.5,-73.5 parent: 2 - uid: 4143 components: - type: Transform - pos: 37.5,-57.5 + pos: 20.5,-73.5 parent: 2 - uid: 4144 components: - type: Transform - pos: 37.5,-58.5 + pos: 19.5,-73.5 parent: 2 - uid: 4145 components: - type: Transform - pos: 37.5,-59.5 + pos: 18.5,-73.5 parent: 2 - uid: 4146 components: - type: Transform - pos: 38.5,-59.5 + pos: 17.5,-73.5 parent: 2 - uid: 4147 components: - type: Transform - pos: 39.5,-59.5 + pos: 16.5,-73.5 parent: 2 - uid: 4148 components: - type: Transform - pos: 40.5,-59.5 + pos: 15.5,-73.5 parent: 2 - uid: 4149 components: - type: Transform - pos: 40.5,-59.5 + pos: 14.5,-73.5 parent: 2 - uid: 4150 components: - type: Transform - pos: 40.5,-60.5 + pos: 13.5,-73.5 parent: 2 - uid: 4151 components: - type: Transform - pos: 40.5,-61.5 + pos: 12.5,-73.5 parent: 2 - uid: 4152 components: - type: Transform - pos: 40.5,-62.5 + pos: 11.5,-73.5 parent: 2 - uid: 4153 components: - type: Transform - pos: 40.5,-63.5 + pos: 11.5,-72.5 parent: 2 - uid: 4154 components: - type: Transform - pos: 40.5,-64.5 + pos: 11.5,-71.5 parent: 2 - uid: 4155 components: - type: Transform - pos: 40.5,-65.5 + pos: 11.5,-70.5 parent: 2 - uid: 4156 components: - type: Transform - pos: 40.5,-66.5 + pos: 19.5,-83.5 parent: 2 - uid: 4157 components: - type: Transform - pos: 40.5,-67.5 + pos: 48.5,-89.5 parent: 2 - uid: 4158 components: - type: Transform - pos: 40.5,-68.5 + pos: 23.5,-83.5 parent: 2 - uid: 4159 components: - type: Transform - pos: 40.5,-69.5 + pos: 9.5,-70.5 parent: 2 - uid: 4160 components: - type: Transform - pos: 40.5,-70.5 + pos: 16.5,-86.5 parent: 2 - uid: 4161 components: - type: Transform - pos: 40.5,-71.5 + pos: 15.5,-86.5 parent: 2 - uid: 4162 components: - type: Transform - pos: 40.5,-72.5 + pos: 12.5,-86.5 parent: 2 - uid: 4163 components: - type: Transform - pos: 41.5,-72.5 + pos: 17.5,-86.5 parent: 2 - uid: 4164 components: - type: Transform - pos: 42.5,-72.5 + pos: -13.5,-26.5 parent: 2 - uid: 4165 components: - type: Transform - pos: 43.5,-72.5 + pos: -14.5,-26.5 parent: 2 - uid: 4166 components: - type: Transform - pos: 44.5,-72.5 + pos: -15.5,-26.5 parent: 2 - uid: 4167 components: - type: Transform - pos: 44.5,-73.5 + pos: -16.5,-26.5 parent: 2 - uid: 4168 components: - type: Transform - pos: 42.5,-73.5 + pos: -17.5,-26.5 parent: 2 - uid: 4169 components: - type: Transform - pos: 39.5,-72.5 + pos: -18.5,-26.5 parent: 2 - uid: 4170 components: - type: Transform - pos: 38.5,-72.5 + pos: -19.5,-26.5 parent: 2 - uid: 4171 components: - type: Transform - pos: 37.5,-72.5 + pos: -19.5,-27.5 parent: 2 - uid: 4172 components: - type: Transform - pos: 36.5,-72.5 + pos: -19.5,-28.5 parent: 2 - uid: 4173 components: - type: Transform - pos: 35.5,-72.5 + pos: -19.5,-29.5 parent: 2 - uid: 4174 components: - type: Transform - pos: 34.5,-72.5 + pos: -19.5,-30.5 parent: 2 - uid: 4175 components: - type: Transform - pos: 34.5,-73.5 + pos: -19.5,-31.5 parent: 2 - uid: 4176 components: - type: Transform - pos: 36.5,-73.5 + pos: -19.5,-32.5 parent: 2 - uid: 4177 components: - type: Transform - pos: 44.5,-71.5 + pos: -19.5,-33.5 parent: 2 - uid: 4178 components: - type: Transform - pos: 44.5,-70.5 + pos: -19.5,-34.5 parent: 2 - uid: 4179 components: - type: Transform - pos: 34.5,-71.5 + pos: -19.5,-35.5 parent: 2 - uid: 4180 components: - type: Transform - pos: 34.5,-70.5 + pos: -19.5,-36.5 parent: 2 - uid: 4181 components: - type: Transform - pos: 41.5,-59.5 + pos: -19.5,-37.5 parent: 2 - uid: 4182 components: - type: Transform - pos: 42.5,-59.5 + pos: -20.5,-26.5 parent: 2 - uid: 4183 components: - type: Transform - pos: 43.5,-59.5 + pos: -18.5,-29.5 parent: 2 - uid: 4184 components: - type: Transform - pos: 39.5,-58.5 + pos: -13.5,-42.5 parent: 2 - uid: 4185 components: - type: Transform - pos: 39.5,-57.5 + pos: -14.5,-42.5 parent: 2 - uid: 4186 components: - type: Transform - pos: 39.5,-56.5 + pos: -15.5,-42.5 parent: 2 - uid: 4187 components: - type: Transform - pos: 39.5,-55.5 + pos: -16.5,-42.5 parent: 2 - uid: 4188 components: - type: Transform - pos: 39.5,-54.5 + pos: -17.5,-42.5 parent: 2 - uid: 4189 components: - type: Transform - pos: 40.5,-55.5 + pos: -18.5,-42.5 parent: 2 - uid: 4190 components: - type: Transform - pos: 36.5,-58.5 + pos: -19.5,-42.5 parent: 2 - uid: 4191 components: - type: Transform - pos: 36.5,-56.5 + pos: -19.5,-43.5 parent: 2 - uid: 4192 components: - type: Transform - pos: 36.5,-54.5 + pos: -19.5,-44.5 parent: 2 - uid: 4193 components: - type: Transform - pos: 36.5,-57.5 + pos: -19.5,-45.5 parent: 2 - uid: 4194 components: - type: Transform - pos: 36.5,-55.5 + pos: -19.5,-46.5 parent: 2 - uid: 4195 components: - type: Transform - pos: 36.5,-53.5 + pos: -19.5,-47.5 parent: 2 - uid: 4196 components: - type: Transform - pos: 36.5,-52.5 + pos: -20.5,-46.5 parent: 2 - uid: 4197 components: - type: Transform - pos: 36.5,-51.5 + pos: -19.5,-48.5 parent: 2 - uid: 4198 components: - type: Transform - pos: 37.5,-51.5 + pos: -30.5,-50.5 parent: 2 - uid: 4199 components: - type: Transform - pos: 38.5,-51.5 + pos: -19.5,-41.5 parent: 2 - uid: 4200 components: - type: Transform - pos: 39.5,-51.5 + pos: 30.5,-89.5 parent: 2 - uid: 4201 components: - type: Transform - pos: 40.5,-51.5 + pos: 48.5,-72.5 parent: 2 - uid: 4202 components: - type: Transform - pos: 40.5,-50.5 + pos: 30.5,-90.5 parent: 2 - uid: 4203 components: - type: Transform - pos: 40.5,-49.5 + pos: -37.5,-14.5 parent: 2 - uid: 4204 components: - type: Transform - pos: 39.5,-49.5 + pos: -29.5,-21.5 parent: 2 - uid: 4205 components: - type: Transform - pos: 39.5,-48.5 + pos: -30.5,-21.5 parent: 2 - uid: 4206 components: - type: Transform - pos: 38.5,-48.5 + pos: -31.5,-21.5 parent: 2 - uid: 4207 components: - type: Transform - pos: 41.5,-51.5 + pos: -32.5,-21.5 parent: 2 - uid: 4208 components: - type: Transform - pos: 42.5,-51.5 + pos: -32.5,-20.5 parent: 2 - uid: 4209 components: - type: Transform - pos: 43.5,-51.5 + pos: -32.5,-19.5 parent: 2 - uid: 4210 components: - type: Transform - pos: 43.5,-52.5 + pos: -32.5,-18.5 parent: 2 - uid: 4211 components: - type: Transform - pos: 43.5,-53.5 + pos: -32.5,-17.5 parent: 2 - uid: 4212 components: - type: Transform - pos: 43.5,-54.5 + pos: -32.5,-16.5 parent: 2 - uid: 4213 components: - type: Transform - pos: 31.5,-72.5 + pos: -32.5,-15.5 parent: 2 - uid: 4214 components: - type: Transform - pos: 27.5,-72.5 + pos: -32.5,-14.5 parent: 2 - uid: 4215 components: - type: Transform - pos: 28.5,-72.5 + pos: -32.5,-13.5 parent: 2 - uid: 4216 components: - type: Transform - pos: 22.5,-83.5 + pos: -32.5,-12.5 parent: 2 - uid: 4217 components: - type: Transform - pos: 23.5,-72.5 + pos: -32.5,-11.5 parent: 2 - uid: 4218 components: - type: Transform - pos: 25.5,-70.5 + pos: -32.5,-10.5 parent: 2 - uid: 4219 components: - type: Transform - pos: 25.5,-69.5 + pos: -38.5,-7.5 parent: 2 - uid: 4220 components: - type: Transform - pos: 13.5,-83.5 + pos: -31.5,-17.5 parent: 2 - uid: 4221 components: - type: Transform - pos: 26.5,-72.5 + pos: -33.5,-10.5 parent: 2 - uid: 4222 components: - type: Transform - pos: 25.5,-72.5 + pos: -34.5,-10.5 parent: 2 - uid: 4223 components: - type: Transform - pos: 25.5,-71.5 + pos: -35.5,-10.5 parent: 2 - uid: 4224 components: - type: Transform - pos: 20.5,-83.5 + pos: -36.5,-10.5 parent: 2 - uid: 4225 components: - type: Transform - pos: 18.5,-83.5 + pos: -37.5,-10.5 parent: 2 - uid: 4226 components: - type: Transform - pos: 24.5,-72.5 + pos: -38.5,-10.5 parent: 2 - uid: 4227 components: - type: Transform - pos: 13.5,-86.5 + pos: -39.5,-10.5 parent: 2 - uid: 4228 components: - type: Transform - pos: 21.5,-83.5 + pos: -37.5,-11.5 parent: 2 - uid: 4229 components: - type: Transform - pos: 14.5,-81.5 + pos: -37.5,-12.5 parent: 2 - uid: 4230 components: - type: Transform - pos: 12.5,-81.5 + pos: -37.5,-13.5 parent: 2 - uid: 4231 components: - type: Transform - pos: 17.5,-81.5 + pos: -38.5,-9.5 parent: 2 - uid: 4232 components: - type: Transform - pos: 14.5,-86.5 + pos: -35.5,-9.5 parent: 2 - uid: 4233 components: - type: Transform - pos: 10.5,-70.5 + pos: -38.5,-84.5 parent: 2 - uid: 4234 components: - type: Transform - pos: 32.5,-72.5 + pos: -33.5,-16.5 parent: 2 - uid: 4235 components: - type: Transform - pos: 30.5,-75.5 + pos: -34.5,-16.5 parent: 2 - uid: 4236 components: - type: Transform - pos: 30.5,-73.5 + pos: -35.5,-16.5 parent: 2 - uid: 4237 components: - type: Transform - pos: 30.5,-76.5 + pos: -36.5,-16.5 parent: 2 - uid: 4238 components: - type: Transform - pos: 30.5,-74.5 + pos: -36.5,-17.5 parent: 2 - uid: 4239 components: - type: Transform - pos: 33.5,-72.5 + pos: -35.5,-11.5 parent: 2 - uid: 4240 components: - type: Transform - pos: 48.5,-73.5 + pos: -35.5,-12.5 parent: 2 - uid: 4241 components: - type: Transform - pos: 30.5,-78.5 + pos: -32.5,-22.5 parent: 2 - uid: 4242 components: - type: Transform - pos: 46.5,-82.5 + pos: -32.5,-23.5 parent: 2 - uid: 4243 components: - type: Transform - pos: 48.5,-91.5 + pos: -32.5,-24.5 parent: 2 - uid: 4244 components: - type: Transform - pos: 21.5,-73.5 + pos: -32.5,-25.5 parent: 2 - uid: 4245 components: - type: Transform - pos: 20.5,-73.5 + pos: -32.5,-26.5 parent: 2 - uid: 4246 components: - type: Transform - pos: 19.5,-73.5 + pos: -32.5,-27.5 parent: 2 - uid: 4247 components: - type: Transform - pos: 18.5,-73.5 + pos: -32.5,-28.5 parent: 2 - uid: 4248 components: - type: Transform - pos: 17.5,-73.5 + pos: -40.5,-10.5 parent: 2 - uid: 4249 components: - type: Transform - pos: 16.5,-73.5 + pos: -41.5,-10.5 parent: 2 - uid: 4250 components: - type: Transform - pos: 15.5,-73.5 + pos: -41.5,-11.5 parent: 2 - uid: 4251 components: - type: Transform - pos: 14.5,-73.5 + pos: -41.5,-12.5 parent: 2 - uid: 4252 components: - type: Transform - pos: 13.5,-73.5 + pos: -41.5,-13.5 parent: 2 - uid: 4253 components: - type: Transform - pos: 12.5,-73.5 + pos: -41.5,-14.5 parent: 2 - uid: 4254 components: - type: Transform - pos: 11.5,-73.5 + pos: -41.5,-15.5 parent: 2 - uid: 4255 components: - type: Transform - pos: 11.5,-72.5 + pos: -41.5,-16.5 parent: 2 - uid: 4256 components: - type: Transform - pos: 11.5,-71.5 + pos: -40.5,-16.5 parent: 2 - uid: 4257 components: - type: Transform - pos: 11.5,-70.5 + pos: -31.5,-26.5 parent: 2 - uid: 4258 components: - type: Transform - pos: 19.5,-83.5 + pos: -30.5,-26.5 parent: 2 - uid: 4259 components: - type: Transform - pos: 48.5,-89.5 + pos: -29.5,-26.5 parent: 2 - uid: 4260 components: - type: Transform - pos: 23.5,-83.5 + pos: -28.5,-26.5 parent: 2 - uid: 4261 components: - type: Transform - pos: 9.5,-70.5 + pos: -27.5,-26.5 parent: 2 - uid: 4262 components: - type: Transform - pos: 16.5,-86.5 + pos: -26.5,-26.5 parent: 2 - uid: 4263 components: - type: Transform - pos: 15.5,-86.5 + pos: -25.5,-26.5 parent: 2 - uid: 4264 components: - type: Transform - pos: 12.5,-86.5 + pos: 3.5,-49.5 parent: 2 - uid: 4265 components: - type: Transform - pos: 17.5,-86.5 + pos: 3.5,-50.5 parent: 2 - uid: 4266 components: - type: Transform - pos: -13.5,-26.5 + pos: -18.5,14.5 parent: 2 - uid: 4267 components: - type: Transform - pos: -14.5,-26.5 + pos: -18.5,13.5 parent: 2 - uid: 4268 components: - type: Transform - pos: -15.5,-26.5 + pos: -18.5,12.5 parent: 2 - uid: 4269 components: - type: Transform - pos: -16.5,-26.5 + pos: -18.5,11.5 parent: 2 - uid: 4270 components: - type: Transform - pos: -17.5,-26.5 + pos: -18.5,10.5 parent: 2 - uid: 4271 components: - type: Transform - pos: -18.5,-26.5 + pos: -18.5,9.5 parent: 2 - uid: 4272 components: - type: Transform - pos: -19.5,-26.5 + pos: -18.5,8.5 parent: 2 - uid: 4273 components: - type: Transform - pos: -19.5,-27.5 + pos: -18.5,7.5 parent: 2 - uid: 4274 components: - type: Transform - pos: -19.5,-28.5 + pos: -17.5,7.5 parent: 2 - uid: 4275 components: - type: Transform - pos: -19.5,-29.5 + pos: -16.5,7.5 parent: 2 - uid: 4276 components: - type: Transform - pos: -19.5,-30.5 + pos: -15.5,7.5 parent: 2 - uid: 4277 components: - type: Transform - pos: -19.5,-31.5 + pos: -14.5,7.5 parent: 2 - uid: 4278 components: - type: Transform - pos: -19.5,-32.5 + pos: -13.5,7.5 parent: 2 - uid: 4279 components: - type: Transform - pos: -19.5,-33.5 + pos: -12.5,7.5 parent: 2 - uid: 4280 components: - type: Transform - pos: -19.5,-34.5 + pos: -12.5,6.5 parent: 2 - uid: 4281 components: - type: Transform - pos: -19.5,-35.5 + pos: -12.5,5.5 parent: 2 - uid: 4282 components: - type: Transform - pos: -19.5,-36.5 + pos: -12.5,4.5 parent: 2 - uid: 4283 components: - type: Transform - pos: -19.5,-37.5 + pos: -12.5,3.5 parent: 2 - uid: 4284 components: - type: Transform - pos: -20.5,-26.5 + pos: -12.5,2.5 parent: 2 - uid: 4285 components: - type: Transform - pos: -18.5,-29.5 + pos: -12.5,1.5 parent: 2 - uid: 4286 components: - type: Transform - pos: -13.5,-42.5 + pos: -12.5,0.5 parent: 2 - uid: 4287 components: - type: Transform - pos: -14.5,-42.5 + pos: -12.5,-0.5 parent: 2 - uid: 4288 components: - type: Transform - pos: -15.5,-42.5 + pos: -12.5,-1.5 parent: 2 - uid: 4289 components: - type: Transform - pos: -16.5,-42.5 + pos: -12.5,-2.5 parent: 2 - uid: 4290 components: - type: Transform - pos: -17.5,-42.5 + pos: -13.5,-2.5 parent: 2 - uid: 4291 components: - type: Transform - pos: -18.5,-42.5 + pos: -12.5,-4.5 parent: 2 - uid: 4292 components: - type: Transform - pos: -19.5,-42.5 + pos: -23.5,7.5 parent: 2 - uid: 4293 components: - type: Transform - pos: -19.5,-43.5 + pos: -24.5,7.5 parent: 2 - uid: 4294 components: - type: Transform - pos: -19.5,-44.5 + pos: -25.5,7.5 parent: 2 - uid: 4295 components: - type: Transform - pos: -19.5,-45.5 + pos: -25.5,6.5 parent: 2 - uid: 4296 components: - type: Transform - pos: -19.5,-46.5 + pos: -25.5,5.5 parent: 2 - uid: 4297 components: - type: Transform - pos: -19.5,-47.5 + pos: -25.5,4.5 parent: 2 - uid: 4298 components: - type: Transform - pos: -20.5,-46.5 + pos: -25.5,3.5 parent: 2 - uid: 4299 components: - type: Transform - pos: -19.5,-48.5 + pos: -25.5,2.5 parent: 2 - uid: 4300 components: - type: Transform - pos: -20.5,-42.5 + pos: -16.5,10.5 parent: 2 - uid: 4301 components: - type: Transform - pos: -19.5,-41.5 + pos: -15.5,10.5 parent: 2 - uid: 4302 components: - type: Transform - pos: 30.5,-89.5 + pos: -14.5,10.5 parent: 2 - uid: 4303 components: - type: Transform - pos: 48.5,-72.5 + pos: -14.5,11.5 parent: 2 - uid: 4304 components: - type: Transform - pos: 30.5,-90.5 + pos: -14.5,12.5 parent: 2 - uid: 4305 components: - type: Transform - pos: -37.5,-14.5 + pos: -14.5,13.5 parent: 2 - uid: 4306 components: - type: Transform - pos: -29.5,-21.5 + pos: -14.5,14.5 parent: 2 - uid: 4307 components: - type: Transform - pos: -30.5,-21.5 + pos: -14.5,15.5 parent: 2 - uid: 4308 components: - type: Transform - pos: -31.5,-21.5 + pos: -13.5,15.5 parent: 2 - uid: 4309 components: - type: Transform - pos: -32.5,-21.5 + pos: -12.5,15.5 parent: 2 - uid: 4310 components: - type: Transform - pos: -32.5,-20.5 + pos: -11.5,15.5 parent: 2 - uid: 4311 components: - type: Transform - pos: -32.5,-19.5 + pos: -10.5,15.5 parent: 2 - uid: 4312 components: - type: Transform - pos: -32.5,-18.5 + pos: -8.5,16.5 parent: 2 - uid: 4313 components: - type: Transform - pos: -32.5,-17.5 + pos: -7.5,16.5 parent: 2 - uid: 4314 components: - type: Transform - pos: -32.5,-16.5 + pos: -6.5,16.5 parent: 2 - uid: 4315 components: - type: Transform - pos: -32.5,-15.5 + pos: -5.5,16.5 parent: 2 - uid: 4316 components: - type: Transform - pos: -32.5,-14.5 + pos: -4.5,16.5 parent: 2 - uid: 4317 components: - type: Transform - pos: -32.5,-13.5 + pos: -42.5,-10.5 parent: 2 - uid: 4318 components: - type: Transform - pos: -32.5,-12.5 + pos: -43.5,-10.5 parent: 2 - uid: 4319 components: - type: Transform - pos: -32.5,-11.5 + pos: -44.5,-10.5 parent: 2 - uid: 4320 components: - type: Transform - pos: -32.5,-10.5 + pos: -45.5,-10.5 parent: 2 - uid: 4321 components: - type: Transform - pos: -38.5,-7.5 + pos: -46.5,-10.5 parent: 2 - uid: 4322 components: - type: Transform - pos: -31.5,-17.5 + pos: -46.5,-9.5 parent: 2 - uid: 4323 components: - type: Transform - pos: -33.5,-10.5 + pos: -46.5,-11.5 parent: 2 - uid: 4324 components: - type: Transform - pos: -34.5,-10.5 + pos: -46.5,-12.5 parent: 2 - uid: 4325 components: - type: Transform - pos: -35.5,-10.5 + pos: -46.5,-13.5 parent: 2 - uid: 4326 components: - type: Transform - pos: -36.5,-10.5 + pos: -46.5,-14.5 parent: 2 - uid: 4327 components: - type: Transform - pos: -37.5,-10.5 + pos: -46.5,-15.5 parent: 2 - uid: 4328 components: - type: Transform - pos: -38.5,-10.5 + pos: -46.5,-16.5 parent: 2 - uid: 4329 components: - type: Transform - pos: -39.5,-10.5 + pos: -47.5,-13.5 parent: 2 - uid: 4330 components: - type: Transform - pos: -37.5,-11.5 + pos: -48.5,-13.5 parent: 2 - uid: 4331 components: - type: Transform - pos: -37.5,-12.5 + pos: -49.5,-13.5 parent: 2 - uid: 4332 components: - type: Transform - pos: -37.5,-13.5 + pos: -45.5,-16.5 parent: 2 - uid: 4333 components: - type: Transform - pos: -38.5,-9.5 + pos: -45.5,-17.5 parent: 2 - uid: 4334 components: - type: Transform - pos: -35.5,-9.5 + pos: -45.5,-18.5 parent: 2 - uid: 4335 components: - type: Transform - pos: -38.5,-84.5 + pos: -45.5,-19.5 parent: 2 - uid: 4336 components: - type: Transform - pos: -33.5,-16.5 + pos: -45.5,-20.5 parent: 2 - uid: 4337 components: - type: Transform - pos: -34.5,-16.5 + pos: -45.5,-21.5 parent: 2 - uid: 4338 components: - type: Transform - pos: -35.5,-16.5 + pos: -46.5,-20.5 parent: 2 - uid: 4339 components: - type: Transform - pos: -36.5,-16.5 + pos: -47.5,-20.5 parent: 2 - uid: 4340 components: - type: Transform - pos: -36.5,-17.5 + pos: -47.5,-21.5 parent: 2 - uid: 4341 components: - type: Transform - pos: -35.5,-11.5 + pos: -45.5,-22.5 parent: 2 - uid: 4342 components: - type: Transform - pos: -35.5,-12.5 + pos: -48.5,-22.5 parent: 2 - uid: 4343 components: - type: Transform - pos: -32.5,-22.5 + pos: -47.5,-22.5 parent: 2 - uid: 4344 components: - type: Transform - pos: -32.5,-23.5 + pos: -38.5,-8.5 parent: 2 - uid: 4345 components: - type: Transform - pos: -32.5,-24.5 + pos: -35.5,-7.5 parent: 2 - uid: 4346 components: - type: Transform - pos: -32.5,-25.5 + pos: -35.5,-8.5 parent: 2 - uid: 4347 components: - type: Transform - pos: -32.5,-26.5 + pos: -34.5,-6.5 parent: 2 - uid: 4348 components: - type: Transform - pos: -32.5,-27.5 + pos: -35.5,-6.5 parent: 2 - uid: 4349 components: - type: Transform - pos: -32.5,-28.5 + pos: -36.5,-6.5 parent: 2 - uid: 4350 components: - type: Transform - pos: -40.5,-10.5 + pos: -37.5,-6.5 parent: 2 - uid: 4351 components: - type: Transform - pos: -41.5,-10.5 + pos: -38.5,-6.5 parent: 2 - uid: 4352 components: - type: Transform - pos: -41.5,-11.5 + pos: -39.5,-6.5 parent: 2 - uid: 4353 components: - type: Transform - pos: -41.5,-12.5 + pos: -40.5,-6.5 parent: 2 - uid: 4354 components: - type: Transform - pos: -41.5,-13.5 + pos: -41.5,-6.5 parent: 2 - uid: 4355 components: - type: Transform - pos: -41.5,-14.5 + pos: -38.5,-5.5 parent: 2 - uid: 4356 components: - type: Transform - pos: -41.5,-15.5 + pos: -55.5,-28.5 parent: 2 - uid: 4357 components: - type: Transform - pos: -41.5,-16.5 + pos: -55.5,-30.5 parent: 2 - uid: 4358 components: - type: Transform - pos: -40.5,-16.5 + pos: -57.5,-28.5 parent: 2 - uid: 4359 components: - type: Transform - pos: -31.5,-26.5 + pos: -39.5,-69.5 parent: 2 - uid: 4360 components: - type: Transform - pos: -30.5,-26.5 + pos: -39.5,-71.5 parent: 2 - uid: 4361 components: - type: Transform - pos: -29.5,-26.5 + pos: -50.5,-15.5 parent: 2 - uid: 4362 components: - type: Transform - pos: -28.5,-26.5 + pos: -50.5,-16.5 parent: 2 - uid: 4363 components: - type: Transform - pos: -27.5,-26.5 + pos: -51.5,-16.5 parent: 2 - uid: 4364 components: - type: Transform - pos: -26.5,-26.5 + pos: -51.5,-17.5 parent: 2 - uid: 4365 components: - type: Transform - pos: -25.5,-26.5 + pos: -51.5,-18.5 parent: 2 - uid: 4366 components: - type: Transform - pos: 3.5,-49.5 + pos: -51.5,-19.5 parent: 2 - uid: 4367 components: - type: Transform - pos: 3.5,-50.5 + pos: -51.5,-20.5 parent: 2 - uid: 4368 components: - type: Transform - pos: -18.5,14.5 + pos: -52.5,-23.5 parent: 2 - uid: 4369 components: - type: Transform - pos: -18.5,13.5 + pos: -51.5,-22.5 parent: 2 - uid: 4370 components: - type: Transform - pos: -18.5,12.5 + pos: -51.5,-23.5 parent: 2 - uid: 4371 components: - type: Transform - pos: -18.5,11.5 + pos: -51.5,-24.5 parent: 2 - uid: 4372 components: - type: Transform - pos: -18.5,10.5 + pos: -51.5,-25.5 parent: 2 - uid: 4373 components: - type: Transform - pos: -18.5,9.5 + pos: -50.5,-25.5 parent: 2 - uid: 4374 components: - type: Transform - pos: -18.5,8.5 + pos: -52.5,-19.5 parent: 2 - uid: 4375 components: - type: Transform - pos: -18.5,7.5 + pos: -53.5,-19.5 parent: 2 - uid: 4376 components: - type: Transform - pos: -17.5,7.5 + pos: -54.5,-19.5 parent: 2 - uid: 4377 components: - type: Transform - pos: -16.5,7.5 + pos: -54.5,-20.5 parent: 2 - uid: 4378 components: - type: Transform - pos: -15.5,7.5 + pos: -54.5,-21.5 parent: 2 - uid: 4379 components: - type: Transform - pos: -14.5,7.5 + pos: -54.5,-22.5 parent: 2 - uid: 4380 components: - type: Transform - pos: -13.5,7.5 + pos: -54.5,-23.5 parent: 2 - uid: 4381 components: - type: Transform - pos: -12.5,7.5 + pos: -54.5,-24.5 parent: 2 - uid: 4382 components: - type: Transform - pos: -12.5,6.5 + pos: -55.5,-24.5 parent: 2 - uid: 4383 components: - type: Transform - pos: -12.5,5.5 + pos: -56.5,-24.5 parent: 2 - uid: 4384 components: - type: Transform - pos: -12.5,4.5 + pos: -57.5,-24.5 parent: 2 - uid: 4385 components: - type: Transform - pos: -12.5,3.5 + pos: -58.5,-24.5 parent: 2 - uid: 4386 components: - type: Transform - pos: -12.5,2.5 + pos: -59.5,-24.5 parent: 2 - uid: 4387 components: - type: Transform - pos: -12.5,1.5 + pos: -60.5,-24.5 parent: 2 - uid: 4388 components: - type: Transform - pos: -12.5,0.5 + pos: -61.5,-24.5 parent: 2 - uid: 4389 components: - type: Transform - pos: -12.5,-0.5 + pos: -62.5,-24.5 parent: 2 - uid: 4390 components: - type: Transform - pos: -12.5,-1.5 + pos: -63.5,-24.5 parent: 2 - uid: 4391 components: - type: Transform - pos: -12.5,-2.5 + pos: -64.5,-24.5 parent: 2 - uid: 4392 components: - type: Transform - pos: -13.5,-2.5 + pos: -64.5,-25.5 parent: 2 - uid: 4393 components: - type: Transform - pos: -12.5,-4.5 + pos: -64.5,-26.5 parent: 2 - uid: 4394 components: - type: Transform - pos: -23.5,7.5 + pos: -64.5,-27.5 parent: 2 - uid: 4395 components: - type: Transform - pos: -24.5,7.5 + pos: -64.5,-28.5 parent: 2 - uid: 4396 components: - type: Transform - pos: -25.5,7.5 + pos: -64.5,-29.5 parent: 2 - uid: 4397 components: - type: Transform - pos: -25.5,6.5 + pos: -64.5,-30.5 parent: 2 - uid: 4398 components: - type: Transform - pos: -25.5,5.5 + pos: -65.5,-30.5 parent: 2 - uid: 4399 components: - type: Transform - pos: -25.5,4.5 + pos: -66.5,-30.5 parent: 2 - uid: 4400 components: - type: Transform - pos: -25.5,3.5 + pos: -67.5,-30.5 parent: 2 - uid: 4401 components: - type: Transform - pos: -25.5,2.5 + pos: -68.5,-30.5 parent: 2 - uid: 4402 components: - type: Transform - pos: -16.5,10.5 + pos: -65.5,-30.5 parent: 2 - uid: 4403 components: - type: Transform - pos: -15.5,10.5 + pos: -65.5,-31.5 parent: 2 - uid: 4404 components: - type: Transform - pos: -14.5,10.5 + pos: -65.5,-32.5 parent: 2 - uid: 4405 components: - type: Transform - pos: -14.5,11.5 + pos: -68.5,-31.5 parent: 2 - uid: 4406 components: - type: Transform - pos: -14.5,12.5 + pos: -68.5,-28.5 parent: 2 - uid: 4407 components: - type: Transform - pos: -14.5,13.5 + pos: -68.5,-27.5 parent: 2 - uid: 4408 components: - type: Transform - pos: -14.5,14.5 + pos: -68.5,-26.5 parent: 2 - uid: 4409 components: - type: Transform - pos: -14.5,15.5 + pos: -68.5,-29.5 parent: 2 - uid: 4410 components: - type: Transform - pos: -13.5,15.5 + pos: -54.5,-18.5 parent: 2 - uid: 4411 components: - type: Transform - pos: -12.5,15.5 + pos: -54.5,-17.5 parent: 2 - uid: 4412 components: - type: Transform - pos: -11.5,15.5 + pos: -54.5,-16.5 parent: 2 - uid: 4413 components: - type: Transform - pos: -10.5,15.5 + pos: -54.5,-15.5 parent: 2 - uid: 4414 components: - type: Transform - pos: -8.5,16.5 + pos: -54.5,-14.5 parent: 2 - uid: 4415 components: - type: Transform - pos: -7.5,16.5 + pos: -54.5,-13.5 parent: 2 - uid: 4416 components: - type: Transform - pos: -6.5,16.5 + pos: -54.5,-12.5 parent: 2 - uid: 4417 components: - type: Transform - pos: -5.5,16.5 + pos: -54.5,-11.5 parent: 2 - uid: 4418 components: - type: Transform - pos: -4.5,16.5 + pos: -54.5,-10.5 parent: 2 - uid: 4419 components: - type: Transform - pos: -42.5,-10.5 + pos: -54.5,-9.5 parent: 2 - uid: 4420 components: - type: Transform - pos: -43.5,-10.5 + pos: -54.5,-8.5 parent: 2 - uid: 4421 components: - type: Transform - pos: -44.5,-10.5 + pos: -54.5,-7.5 parent: 2 - uid: 4422 components: - type: Transform - pos: -45.5,-10.5 + pos: -54.5,-6.5 parent: 2 - uid: 4423 components: - type: Transform - pos: -46.5,-10.5 + pos: -53.5,-7.5 parent: 2 - uid: 4424 components: - type: Transform - pos: -46.5,-9.5 + pos: -52.5,-7.5 parent: 2 - uid: 4425 components: - type: Transform - pos: -46.5,-11.5 + pos: -51.5,-7.5 parent: 2 - uid: 4426 components: - type: Transform - pos: -46.5,-12.5 + pos: -52.5,-6.5 parent: 2 - uid: 4427 components: - type: Transform - pos: -46.5,-13.5 + pos: -56.5,-28.5 parent: 2 - uid: 4428 components: - type: Transform - pos: -46.5,-14.5 + pos: -55.5,-29.5 parent: 2 - uid: 4429 components: - type: Transform - pos: -46.5,-15.5 + pos: -39.5,-70.5 parent: 2 - uid: 4430 components: - type: Transform - pos: -46.5,-16.5 + pos: 55.5,10.5 parent: 2 - uid: 4431 components: - type: Transform - pos: -47.5,-13.5 + pos: -35.5,-31.5 parent: 2 - uid: 4432 components: - type: Transform - pos: -48.5,-13.5 + pos: -35.5,-32.5 parent: 2 - uid: 4433 components: - type: Transform - pos: -49.5,-13.5 + pos: -35.5,-33.5 parent: 2 - uid: 4434 components: - type: Transform - pos: -45.5,-16.5 + pos: -35.5,-34.5 parent: 2 - uid: 4435 components: - type: Transform - pos: -45.5,-17.5 + pos: -36.5,-34.5 parent: 2 - uid: 4436 components: - type: Transform - pos: -45.5,-18.5 + pos: -37.5,-34.5 parent: 2 - uid: 4437 components: - type: Transform - pos: -45.5,-19.5 + pos: -38.5,-34.5 parent: 2 - uid: 4438 components: - type: Transform - pos: -45.5,-20.5 + pos: -39.5,-34.5 parent: 2 - uid: 4439 components: - type: Transform - pos: -45.5,-21.5 + pos: -40.5,-34.5 parent: 2 - uid: 4440 components: - type: Transform - pos: -46.5,-20.5 + pos: -41.5,-34.5 parent: 2 - uid: 4441 components: - type: Transform - pos: -47.5,-20.5 + pos: -42.5,-34.5 parent: 2 - uid: 4442 components: - type: Transform - pos: -47.5,-21.5 + pos: -43.5,-34.5 parent: 2 - uid: 4443 components: - type: Transform - pos: -45.5,-22.5 + pos: -39.5,-33.5 parent: 2 - uid: 4444 components: - type: Transform - pos: -48.5,-22.5 + pos: -41.5,-35.5 parent: 2 - uid: 4445 components: - type: Transform - pos: -47.5,-22.5 + pos: -41.5,-36.5 parent: 2 - uid: 4446 components: - type: Transform - pos: -38.5,-8.5 + pos: -41.5,-37.5 parent: 2 - uid: 4447 components: - type: Transform - pos: -35.5,-7.5 + pos: -41.5,-38.5 parent: 2 - uid: 4448 components: - type: Transform - pos: -35.5,-8.5 + pos: -41.5,-39.5 parent: 2 - uid: 4449 components: - type: Transform - pos: -34.5,-6.5 + pos: -42.5,-39.5 parent: 2 - uid: 4450 components: - type: Transform - pos: -35.5,-6.5 + pos: -43.5,-39.5 parent: 2 - uid: 4451 components: - type: Transform - pos: -36.5,-6.5 + pos: -44.5,-39.5 parent: 2 - uid: 4452 components: - type: Transform - pos: -37.5,-6.5 + pos: -45.5,-39.5 parent: 2 - uid: 4453 components: - type: Transform - pos: -38.5,-6.5 + pos: -46.5,-39.5 parent: 2 - uid: 4454 components: - type: Transform - pos: -39.5,-6.5 + pos: -47.5,-39.5 parent: 2 - uid: 4455 components: - type: Transform - pos: -40.5,-6.5 + pos: -47.5,-40.5 parent: 2 - uid: 4456 components: - type: Transform - pos: -41.5,-6.5 + pos: -47.5,-41.5 parent: 2 - uid: 4457 components: - type: Transform - pos: -38.5,-5.5 + pos: -48.5,-41.5 parent: 2 - uid: 4458 components: - type: Transform - pos: -55.5,-28.5 + pos: -49.5,-41.5 parent: 2 - uid: 4459 components: - type: Transform - pos: -55.5,-30.5 + pos: -50.5,-41.5 parent: 2 - uid: 4460 components: - type: Transform - pos: -57.5,-28.5 + pos: -51.5,-41.5 parent: 2 - uid: 4461 components: - type: Transform - pos: -39.5,-69.5 + pos: -51.5,-42.5 parent: 2 - uid: 4462 components: - type: Transform - pos: -39.5,-71.5 + pos: -51.5,-43.5 parent: 2 - uid: 4463 components: - type: Transform - pos: -50.5,-15.5 + pos: -51.5,-44.5 parent: 2 - uid: 4464 components: - type: Transform - pos: -50.5,-16.5 + pos: -51.5,-45.5 parent: 2 - uid: 4465 components: - type: Transform - pos: -51.5,-16.5 + pos: -51.5,-46.5 parent: 2 - uid: 4466 components: - type: Transform - pos: -51.5,-17.5 + pos: -51.5,-47.5 parent: 2 - uid: 4467 components: - type: Transform - pos: -51.5,-18.5 + pos: -51.5,-48.5 parent: 2 - uid: 4468 components: - type: Transform - pos: -51.5,-19.5 + pos: -51.5,-49.5 parent: 2 - uid: 4469 components: - type: Transform - pos: -51.5,-20.5 + pos: -51.5,-50.5 parent: 2 - uid: 4470 components: - type: Transform - pos: -52.5,-23.5 + pos: -51.5,-51.5 parent: 2 - uid: 4471 components: - type: Transform - pos: -51.5,-22.5 + pos: -51.5,-52.5 parent: 2 - uid: 4472 components: - type: Transform - pos: -51.5,-23.5 + pos: -51.5,-53.5 parent: 2 - uid: 4473 components: - type: Transform - pos: -51.5,-24.5 + pos: -51.5,-54.5 parent: 2 - uid: 4474 components: - type: Transform - pos: -51.5,-25.5 + pos: -51.5,-55.5 parent: 2 - uid: 4475 components: - type: Transform - pos: -50.5,-25.5 + pos: -50.5,-55.5 parent: 2 - uid: 4476 components: - type: Transform - pos: -52.5,-19.5 + pos: -49.5,-55.5 parent: 2 - uid: 4477 components: - type: Transform - pos: -53.5,-19.5 + pos: -48.5,-55.5 parent: 2 - uid: 4478 components: - type: Transform - pos: -54.5,-19.5 + pos: -47.5,-55.5 parent: 2 - uid: 4479 components: - type: Transform - pos: -54.5,-20.5 + pos: -50.5,-53.5 parent: 2 - uid: 4480 components: - type: Transform - pos: -54.5,-21.5 + pos: -49.5,-53.5 parent: 2 - uid: 4481 components: - type: Transform - pos: -54.5,-22.5 + pos: -48.5,-53.5 parent: 2 - uid: 4482 components: - type: Transform - pos: -54.5,-23.5 + pos: -47.5,-53.5 parent: 2 - uid: 4483 components: - type: Transform - pos: -54.5,-24.5 + pos: -50.5,-51.5 parent: 2 - uid: 4484 components: - type: Transform - pos: -55.5,-24.5 + pos: -49.5,-51.5 parent: 2 - uid: 4485 components: - type: Transform - pos: -56.5,-24.5 + pos: -48.5,-51.5 parent: 2 - uid: 4486 components: - type: Transform - pos: -57.5,-24.5 + pos: -47.5,-51.5 parent: 2 - uid: 4487 components: - type: Transform - pos: -58.5,-24.5 + pos: -50.5,-49.5 parent: 2 - uid: 4488 components: - type: Transform - pos: -59.5,-24.5 + pos: -49.5,-49.5 parent: 2 - uid: 4489 components: - type: Transform - pos: -60.5,-24.5 + pos: -48.5,-49.5 parent: 2 - uid: 4490 components: - type: Transform - pos: -61.5,-24.5 + pos: -47.5,-49.5 parent: 2 - uid: 4491 components: - type: Transform - pos: -62.5,-24.5 + pos: -50.5,-47.5 parent: 2 - uid: 4492 components: - type: Transform - pos: -63.5,-24.5 + pos: -49.5,-47.5 parent: 2 - uid: 4493 components: - type: Transform - pos: -64.5,-24.5 + pos: -48.5,-47.5 parent: 2 - uid: 4494 components: - type: Transform - pos: -64.5,-25.5 + pos: -47.5,-47.5 parent: 2 - uid: 4495 components: - type: Transform - pos: -64.5,-26.5 + pos: -50.5,-45.5 parent: 2 - uid: 4496 components: - type: Transform - pos: -64.5,-27.5 + pos: -49.5,-45.5 parent: 2 - uid: 4497 components: - type: Transform - pos: -64.5,-28.5 + pos: -48.5,-45.5 parent: 2 - uid: 4498 components: - type: Transform - pos: -64.5,-29.5 + pos: -47.5,-45.5 parent: 2 - uid: 4499 components: - type: Transform - pos: -64.5,-30.5 + pos: -50.5,-43.5 parent: 2 - uid: 4500 components: - type: Transform - pos: -65.5,-30.5 + pos: -49.5,-43.5 parent: 2 - uid: 4501 components: - type: Transform - pos: -66.5,-30.5 + pos: -48.5,-43.5 parent: 2 - uid: 4502 components: - type: Transform - pos: -67.5,-30.5 + pos: -47.5,-43.5 parent: 2 - uid: 4503 components: - type: Transform - pos: -68.5,-30.5 + pos: -38.5,-35.5 parent: 2 - uid: 4504 components: - type: Transform - pos: -65.5,-30.5 + pos: -38.5,-36.5 parent: 2 - uid: 4505 components: - type: Transform - pos: -65.5,-31.5 + pos: -38.5,-37.5 parent: 2 - uid: 4506 components: - type: Transform - pos: -65.5,-32.5 + pos: -38.5,-38.5 parent: 2 - uid: 4507 components: - type: Transform - pos: -68.5,-31.5 + pos: -38.5,-39.5 parent: 2 - uid: 4508 components: - type: Transform - pos: -68.5,-28.5 + pos: -34.5,-34.5 parent: 2 - uid: 4509 components: - type: Transform - pos: -68.5,-27.5 + pos: -33.5,-34.5 parent: 2 - uid: 4510 components: - type: Transform - pos: -68.5,-26.5 + pos: -32.5,-34.5 parent: 2 - uid: 4511 components: - type: Transform - pos: -68.5,-29.5 + pos: -31.5,-34.5 parent: 2 - uid: 4512 components: - type: Transform - pos: -54.5,-18.5 + pos: -30.5,-34.5 parent: 2 - uid: 4513 components: - type: Transform - pos: -54.5,-17.5 + pos: -29.5,-34.5 parent: 2 - uid: 4514 components: - type: Transform - pos: -54.5,-16.5 + pos: -28.5,-34.5 parent: 2 - uid: 4515 components: - type: Transform - pos: -54.5,-15.5 + pos: -27.5,-34.5 parent: 2 - uid: 4516 components: - type: Transform - pos: -54.5,-14.5 + pos: -26.5,-34.5 parent: 2 - uid: 4517 components: - type: Transform - pos: -54.5,-13.5 + pos: -25.5,-34.5 parent: 2 - uid: 4518 components: - type: Transform - pos: -54.5,-12.5 + pos: -24.5,-34.5 parent: 2 - uid: 4519 components: - type: Transform - pos: -54.5,-11.5 + pos: -23.5,-34.5 parent: 2 - uid: 4520 components: - type: Transform - pos: -54.5,-10.5 + pos: -23.5,-33.5 parent: 2 - uid: 4521 components: - type: Transform - pos: -54.5,-9.5 + pos: -32.5,-33.5 parent: 2 - uid: 4522 components: - type: Transform - pos: -54.5,-8.5 + pos: -32.5,-32.5 parent: 2 - uid: 4523 components: - type: Transform - pos: -54.5,-7.5 + pos: -31.5,-35.5 parent: 2 - uid: 4524 components: - type: Transform - pos: -54.5,-6.5 + pos: -31.5,-36.5 parent: 2 - uid: 4525 components: - type: Transform - pos: -53.5,-7.5 + pos: -31.5,-37.5 parent: 2 - uid: 4526 components: - type: Transform - pos: -52.5,-7.5 + pos: -31.5,-38.5 parent: 2 - uid: 4527 components: - type: Transform - pos: -51.5,-7.5 + pos: -31.5,-39.5 parent: 2 - uid: 4528 components: - type: Transform - pos: -52.5,-6.5 + pos: -31.5,-40.5 parent: 2 - uid: 4529 components: - type: Transform - pos: -56.5,-28.5 + pos: -32.5,-40.5 parent: 2 - uid: 4530 components: - type: Transform - pos: -55.5,-29.5 + pos: -33.5,-40.5 parent: 2 - uid: 4531 components: - type: Transform - pos: -39.5,-70.5 + pos: -34.5,-40.5 parent: 2 - uid: 4532 components: - type: Transform - pos: 55.5,10.5 + pos: -35.5,-40.5 parent: 2 - uid: 4533 components: - type: Transform - pos: -35.5,-31.5 + pos: -35.5,-41.5 parent: 2 - uid: 4534 components: - type: Transform - pos: -35.5,-32.5 + pos: -35.5,-42.5 parent: 2 - uid: 4535 components: - type: Transform - pos: -35.5,-33.5 + pos: -35.5,-43.5 parent: 2 - uid: 4536 components: - type: Transform - pos: -35.5,-34.5 + pos: -35.5,-44.5 parent: 2 - uid: 4537 components: - type: Transform - pos: -36.5,-34.5 + pos: -35.5,-45.5 parent: 2 - uid: 4538 components: - type: Transform - pos: -37.5,-34.5 + pos: -35.5,-46.5 parent: 2 - uid: 4539 components: - type: Transform - pos: -38.5,-34.5 + pos: -35.5,-47.5 parent: 2 - uid: 4540 components: - type: Transform - pos: -39.5,-34.5 + pos: -35.5,-48.5 parent: 2 - uid: 4541 components: - type: Transform - pos: -40.5,-34.5 + pos: -35.5,-49.5 parent: 2 - uid: 4542 components: - type: Transform - pos: -41.5,-34.5 + pos: -35.5,-50.5 parent: 2 - uid: 4543 components: - type: Transform - pos: -42.5,-34.5 + pos: -35.5,-51.5 parent: 2 - uid: 4544 components: - type: Transform - pos: -43.5,-34.5 + pos: -35.5,-52.5 parent: 2 - uid: 4545 components: - type: Transform - pos: -39.5,-33.5 + pos: -35.5,-53.5 parent: 2 - uid: 4546 components: - type: Transform - pos: -41.5,-35.5 + pos: -35.5,-54.5 parent: 2 - uid: 4547 components: - type: Transform - pos: -41.5,-36.5 + pos: -35.5,-55.5 parent: 2 - uid: 4548 components: - type: Transform - pos: -41.5,-37.5 + pos: -36.5,-43.5 parent: 2 - uid: 4549 components: - type: Transform - pos: -41.5,-38.5 + pos: -37.5,-43.5 parent: 2 - uid: 4550 components: - type: Transform - pos: -41.5,-39.5 + pos: -36.5,-46.5 parent: 2 - uid: 4551 components: - type: Transform - pos: -42.5,-39.5 + pos: -37.5,-46.5 parent: 2 - uid: 4552 components: - type: Transform - pos: -43.5,-39.5 + pos: 55.5,11.5 parent: 2 - uid: 4553 components: - type: Transform - pos: -44.5,-39.5 + pos: -63.5,-30.5 parent: 2 - uid: 4554 components: - type: Transform - pos: -45.5,-39.5 + pos: -52.5,-29.5 parent: 2 - uid: 4555 components: - type: Transform - pos: -46.5,-39.5 + pos: -52.5,-28.5 parent: 2 - uid: 4556 components: - type: Transform - pos: -47.5,-39.5 + pos: -57.5,-18.5 parent: 2 - uid: 4557 components: - type: Transform - pos: -47.5,-40.5 + pos: -55.5,-18.5 parent: 2 - uid: 4558 components: - type: Transform - pos: -47.5,-41.5 + pos: -41.5,-40.5 parent: 2 - uid: 4559 components: - type: Transform - pos: -48.5,-41.5 + pos: -41.5,-41.5 parent: 2 - uid: 4560 components: - type: Transform - pos: -49.5,-41.5 + pos: -46.5,-40.5 parent: 2 - uid: 4561 components: - type: Transform - pos: -50.5,-41.5 + pos: -46.5,-41.5 parent: 2 - uid: 4562 components: - type: Transform - pos: -51.5,-41.5 + pos: -46.5,-42.5 parent: 2 - uid: 4563 components: - type: Transform - pos: -51.5,-42.5 + pos: -46.5,-43.5 parent: 2 - uid: 4564 components: - type: Transform - pos: -51.5,-43.5 + pos: -46.5,-44.5 parent: 2 - uid: 4565 components: - type: Transform - pos: -51.5,-44.5 + pos: -46.5,-45.5 parent: 2 - uid: 4566 components: - type: Transform - pos: -51.5,-45.5 + pos: -25.5,-73.5 parent: 2 - uid: 4567 components: - type: Transform - pos: -51.5,-46.5 + pos: -21.5,-42.5 parent: 2 - uid: 4568 components: - type: Transform - pos: -51.5,-47.5 + pos: -22.5,-42.5 parent: 2 - uid: 4569 components: - type: Transform - pos: -51.5,-48.5 + pos: -29.5,-73.5 parent: 2 - uid: 4570 components: - type: Transform - pos: -51.5,-49.5 + pos: -39.5,-66.5 parent: 2 - uid: 4571 components: - type: Transform - pos: -51.5,-50.5 + pos: -27.5,-65.5 parent: 2 - uid: 4572 components: - type: Transform - pos: -51.5,-51.5 + pos: -29.5,-65.5 parent: 2 - uid: 4573 components: - type: Transform - pos: -51.5,-52.5 + pos: -29.5,-66.5 parent: 2 - uid: 4574 components: - type: Transform - pos: -51.5,-53.5 + pos: -30.5,-66.5 parent: 2 - uid: 4575 components: - type: Transform - pos: -51.5,-54.5 + pos: -31.5,-66.5 parent: 2 - uid: 4576 components: - type: Transform - pos: -51.5,-55.5 + pos: -32.5,-66.5 parent: 2 - uid: 4577 components: - type: Transform - pos: -50.5,-55.5 + pos: -33.5,-66.5 parent: 2 - uid: 4578 components: - type: Transform - pos: -49.5,-55.5 + pos: -34.5,-66.5 parent: 2 - uid: 4579 components: - type: Transform - pos: -48.5,-55.5 + pos: -35.5,-66.5 parent: 2 - uid: 4580 components: - type: Transform - pos: -47.5,-55.5 + pos: -35.5,-65.5 parent: 2 - uid: 4581 components: - type: Transform - pos: -50.5,-53.5 + pos: -36.5,-65.5 parent: 2 - uid: 4582 components: - type: Transform - pos: -49.5,-53.5 + pos: -37.5,-65.5 parent: 2 - uid: 4583 components: - type: Transform - pos: -48.5,-53.5 + pos: -38.5,-65.5 parent: 2 - uid: 4584 components: - type: Transform - pos: -47.5,-53.5 + pos: -39.5,-65.5 parent: 2 - uid: 4585 components: - type: Transform - pos: -50.5,-51.5 + pos: -39.5,-64.5 parent: 2 - uid: 4586 components: - type: Transform - pos: -49.5,-51.5 + pos: -40.5,-64.5 parent: 2 - uid: 4587 components: - type: Transform - pos: -48.5,-51.5 + pos: -41.5,-64.5 parent: 2 - uid: 4588 components: - type: Transform - pos: -47.5,-51.5 + pos: -42.5,-64.5 parent: 2 - uid: 4589 components: - type: Transform - pos: -50.5,-49.5 + pos: -43.5,-64.5 parent: 2 - uid: 4590 components: - type: Transform - pos: -49.5,-49.5 + pos: -44.5,-64.5 parent: 2 - uid: 4591 components: - type: Transform - pos: -48.5,-49.5 + pos: -45.5,-64.5 parent: 2 - uid: 4592 components: - type: Transform - pos: -47.5,-49.5 + pos: -45.5,-63.5 parent: 2 - uid: 4593 components: - type: Transform - pos: -50.5,-47.5 + pos: -46.5,-63.5 parent: 2 - uid: 4594 components: - type: Transform - pos: -49.5,-47.5 + pos: -47.5,-63.5 parent: 2 - uid: 4595 components: - type: Transform - pos: -48.5,-47.5 + pos: -47.5,-64.5 parent: 2 - uid: 4596 components: - type: Transform - pos: -47.5,-47.5 + pos: -48.5,-64.5 parent: 2 - uid: 4597 components: - type: Transform - pos: -50.5,-45.5 + pos: -49.5,-64.5 parent: 2 - uid: 4598 components: - type: Transform - pos: -49.5,-45.5 + pos: -49.5,-65.5 parent: 2 - uid: 4599 components: - type: Transform - pos: -48.5,-45.5 + pos: -49.5,-66.5 parent: 2 - uid: 4600 components: - type: Transform - pos: -47.5,-45.5 + pos: -48.5,-66.5 parent: 2 - uid: 4601 components: - type: Transform - pos: -50.5,-43.5 + pos: -47.5,-66.5 parent: 2 - uid: 4602 components: - type: Transform - pos: -49.5,-43.5 + pos: -46.5,-66.5 parent: 2 - uid: 4603 components: - type: Transform - pos: -48.5,-43.5 + pos: -45.5,-66.5 parent: 2 - uid: 4604 components: - type: Transform - pos: -47.5,-43.5 + pos: -44.5,-66.5 parent: 2 - uid: 4605 components: - type: Transform - pos: -38.5,-35.5 + pos: -43.5,-66.5 parent: 2 - uid: 4606 components: - type: Transform - pos: -38.5,-36.5 + pos: -42.5,-66.5 parent: 2 - uid: 4607 components: - type: Transform - pos: -38.5,-37.5 + pos: -42.5,-68.5 parent: 2 - uid: 4608 components: - type: Transform - pos: -38.5,-38.5 + pos: -42.5,-69.5 parent: 2 - uid: 4609 components: - type: Transform - pos: -38.5,-39.5 + pos: -42.5,-70.5 parent: 2 - uid: 4610 components: - type: Transform - pos: -34.5,-34.5 + pos: -42.5,-71.5 parent: 2 - uid: 4611 components: - type: Transform - pos: -33.5,-34.5 + pos: -43.5,-71.5 parent: 2 - uid: 4612 components: - type: Transform - pos: -32.5,-34.5 + pos: -44.5,-71.5 parent: 2 - uid: 4613 components: - type: Transform - pos: -31.5,-34.5 + pos: -45.5,-71.5 parent: 2 - uid: 4614 components: - type: Transform - pos: -30.5,-34.5 + pos: -45.5,-72.5 parent: 2 - uid: 4615 components: - type: Transform - pos: -29.5,-34.5 + pos: -45.5,-73.5 parent: 2 - uid: 4616 components: - type: Transform - pos: -28.5,-34.5 + pos: -45.5,-74.5 parent: 2 - uid: 4617 components: - type: Transform - pos: -27.5,-34.5 + pos: -45.5,-75.5 parent: 2 - uid: 4618 components: - type: Transform - pos: -26.5,-34.5 + pos: -44.5,-75.5 parent: 2 - uid: 4619 components: - type: Transform - pos: -25.5,-34.5 + pos: -43.5,-75.5 parent: 2 - uid: 4620 components: - type: Transform - pos: -24.5,-34.5 + pos: -42.5,-76.5 parent: 2 - uid: 4621 components: - type: Transform - pos: -23.5,-34.5 + pos: -42.5,-75.5 parent: 2 - uid: 4622 components: - type: Transform - pos: -23.5,-33.5 + pos: -41.5,-76.5 parent: 2 - uid: 4623 components: - type: Transform - pos: -32.5,-33.5 + pos: -40.5,-76.5 parent: 2 - uid: 4624 components: - type: Transform - pos: -32.5,-32.5 + pos: -40.5,-75.5 parent: 2 - uid: 4625 components: - type: Transform - pos: -31.5,-35.5 + pos: -39.5,-75.5 parent: 2 - uid: 4626 components: - type: Transform - pos: -31.5,-36.5 + pos: -38.5,-75.5 parent: 2 - uid: 4627 components: - type: Transform - pos: -31.5,-37.5 + pos: -37.5,-75.5 parent: 2 - uid: 4628 components: - type: Transform - pos: -31.5,-38.5 + pos: -37.5,-76.5 parent: 2 - uid: 4629 components: - type: Transform - pos: -31.5,-39.5 + pos: -37.5,-77.5 parent: 2 - uid: 4630 components: - type: Transform - pos: -31.5,-40.5 + pos: -37.5,-78.5 parent: 2 - uid: 4631 components: - type: Transform - pos: -32.5,-40.5 + pos: -37.5,-79.5 parent: 2 - uid: 4632 components: - type: Transform - pos: -33.5,-40.5 + pos: -37.5,-80.5 parent: 2 - uid: 4633 components: - type: Transform - pos: -34.5,-40.5 + pos: -37.5,-81.5 parent: 2 - uid: 4634 components: - type: Transform - pos: -35.5,-40.5 + pos: -37.5,-82.5 parent: 2 - uid: 4635 components: - type: Transform - pos: -35.5,-41.5 + pos: -44.5,-85.5 parent: 2 - uid: 4636 components: - type: Transform - pos: -35.5,-42.5 + pos: -45.5,-85.5 parent: 2 - uid: 4637 components: - type: Transform - pos: -35.5,-43.5 + pos: -45.5,-84.5 parent: 2 - uid: 4638 components: - type: Transform - pos: -35.5,-44.5 + pos: -41.5,-85.5 parent: 2 - uid: 4639 components: - type: Transform - pos: -35.5,-45.5 + pos: -45.5,-83.5 parent: 2 - uid: 4640 components: - type: Transform - pos: -35.5,-46.5 + pos: -45.5,-82.5 parent: 2 - uid: 4641 components: - type: Transform - pos: -35.5,-47.5 + pos: -46.5,-82.5 parent: 2 - uid: 4642 components: - type: Transform - pos: -35.5,-48.5 + pos: -46.5,-83.5 parent: 2 - uid: 4643 components: - type: Transform - pos: -35.5,-49.5 + pos: -42.5,-85.5 parent: 2 - uid: 4644 components: - type: Transform - pos: -35.5,-50.5 + pos: -37.5,-83.5 parent: 2 - uid: 4645 components: - type: Transform - pos: -35.5,-51.5 + pos: -37.5,-84.5 parent: 2 - uid: 4646 components: - type: Transform - pos: -35.5,-52.5 + pos: -46.5,-81.5 parent: 2 - uid: 4647 components: - type: Transform - pos: -35.5,-53.5 + pos: -46.5,-80.5 parent: 2 - uid: 4648 components: - type: Transform - pos: -35.5,-54.5 + pos: -46.5,-79.5 parent: 2 - uid: 4649 components: - type: Transform - pos: -35.5,-55.5 + pos: -46.5,-78.5 parent: 2 - uid: 4650 components: - type: Transform - pos: -36.5,-43.5 + pos: -46.5,-77.5 parent: 2 - uid: 4651 components: - type: Transform - pos: -37.5,-43.5 + pos: -46.5,-76.5 parent: 2 - uid: 4652 components: - type: Transform - pos: -36.5,-46.5 + pos: -47.5,-76.5 parent: 2 - uid: 4653 components: - type: Transform - pos: -37.5,-46.5 + pos: -48.5,-76.5 parent: 2 - uid: 4654 components: - type: Transform - pos: 55.5,11.5 + pos: -49.5,-76.5 parent: 2 - uid: 4655 components: - type: Transform - pos: -63.5,-30.5 + pos: -50.5,-76.5 parent: 2 - uid: 4656 components: - type: Transform - pos: -52.5,-29.5 + pos: -51.5,-76.5 parent: 2 - uid: 4657 components: - type: Transform - pos: -52.5,-28.5 + pos: -52.5,-76.5 parent: 2 - uid: 4658 components: - type: Transform - pos: -57.5,-18.5 + pos: -53.5,-76.5 parent: 2 - uid: 4659 components: - type: Transform - pos: -55.5,-18.5 + pos: -54.5,-76.5 parent: 2 - uid: 4660 components: - type: Transform - pos: -41.5,-40.5 + pos: -55.5,-76.5 parent: 2 - uid: 4661 components: - type: Transform - pos: -41.5,-41.5 + pos: -55.5,-77.5 parent: 2 - uid: 4662 components: - type: Transform - pos: -46.5,-40.5 + pos: -55.5,-78.5 parent: 2 - uid: 4663 components: - type: Transform - pos: -46.5,-41.5 + pos: -55.5,-79.5 parent: 2 - uid: 4664 components: - type: Transform - pos: -46.5,-42.5 + pos: -55.5,-80.5 parent: 2 - uid: 4665 components: - type: Transform - pos: -46.5,-43.5 + pos: -55.5,-81.5 parent: 2 - uid: 4666 components: - type: Transform - pos: -46.5,-44.5 + pos: -55.5,-75.5 parent: 2 - uid: 4667 components: - type: Transform - pos: -46.5,-45.5 + pos: -55.5,-74.5 parent: 2 - uid: 4668 components: - type: Transform - pos: -25.5,-73.5 + pos: -55.5,-73.5 parent: 2 - uid: 4669 components: - type: Transform - pos: -21.5,-42.5 + pos: -55.5,-72.5 parent: 2 - uid: 4670 components: - type: Transform - pos: -22.5,-42.5 + pos: -55.5,-71.5 parent: 2 - uid: 4671 components: - type: Transform - pos: -29.5,-73.5 + pos: -54.5,-73.5 parent: 2 - uid: 4672 components: - type: Transform - pos: -39.5,-66.5 + pos: -53.5,-73.5 parent: 2 - uid: 4673 components: - type: Transform - pos: -29.5,-64.5 + pos: -54.5,-79.5 parent: 2 - uid: 4674 components: - type: Transform - pos: -29.5,-65.5 + pos: -53.5,-79.5 parent: 2 - uid: 4675 components: - type: Transform - pos: -29.5,-66.5 + pos: -56.5,-71.5 parent: 2 - uid: 4676 components: - type: Transform - pos: -30.5,-66.5 + pos: -57.5,-71.5 parent: 2 - uid: 4677 components: - type: Transform - pos: -31.5,-66.5 + pos: -56.5,-73.5 parent: 2 - uid: 4678 components: - type: Transform - pos: -32.5,-66.5 + pos: -57.5,-73.5 parent: 2 - uid: 4679 components: - type: Transform - pos: -33.5,-66.5 + pos: -56.5,-79.5 parent: 2 - uid: 4680 components: - type: Transform - pos: -34.5,-66.5 + pos: -57.5,-79.5 parent: 2 - uid: 4681 components: - type: Transform - pos: -35.5,-66.5 + pos: -56.5,-81.5 parent: 2 - uid: 4682 components: - type: Transform - pos: -35.5,-65.5 + pos: -57.5,-81.5 parent: 2 - uid: 4683 components: - type: Transform - pos: -36.5,-65.5 + pos: -55.5,-82.5 parent: 2 - uid: 4684 components: - type: Transform - pos: -37.5,-65.5 + pos: -29.5,-63.5 parent: 2 - uid: 4685 components: - type: Transform - pos: -38.5,-65.5 + pos: -28.5,-63.5 parent: 2 - uid: 4686 components: - type: Transform - pos: -39.5,-65.5 + pos: -28.5,-62.5 parent: 2 - uid: 4687 components: - type: Transform - pos: -39.5,-64.5 + pos: -28.5,-61.5 parent: 2 - uid: 4688 components: - type: Transform - pos: -40.5,-64.5 + pos: -28.5,-60.5 parent: 2 - uid: 4689 components: - type: Transform - pos: -41.5,-64.5 + pos: -28.5,-59.5 parent: 2 - uid: 4690 components: - type: Transform - pos: -42.5,-64.5 + pos: -28.5,-58.5 parent: 2 - uid: 4691 components: - type: Transform - pos: -43.5,-64.5 + pos: -28.5,-57.5 parent: 2 - uid: 4692 components: - type: Transform - pos: -44.5,-64.5 + pos: -28.5,-56.5 parent: 2 - uid: 4693 components: - type: Transform - pos: -45.5,-64.5 + pos: -28.5,-55.5 parent: 2 - uid: 4694 components: - type: Transform - pos: -45.5,-63.5 + pos: -28.5,-54.5 parent: 2 - uid: 4695 components: - type: Transform - pos: -46.5,-63.5 + pos: -27.5,-54.5 parent: 2 - uid: 4696 components: - type: Transform - pos: -47.5,-63.5 + pos: -26.5,-54.5 parent: 2 - uid: 4697 components: - type: Transform - pos: -47.5,-64.5 + pos: -25.5,-54.5 parent: 2 - uid: 4698 components: - type: Transform - pos: -48.5,-64.5 + pos: -25.5,-53.5 parent: 2 - uid: 4699 components: - type: Transform - pos: -49.5,-64.5 + pos: -25.5,-52.5 parent: 2 - uid: 4700 components: - type: Transform - pos: -49.5,-65.5 + pos: -25.5,-51.5 parent: 2 - uid: 4701 components: - type: Transform - pos: -49.5,-66.5 + pos: -24.5,-51.5 parent: 2 - uid: 4702 components: - type: Transform - pos: -48.5,-66.5 + pos: -27.5,-63.5 parent: 2 - uid: 4703 components: - type: Transform - pos: -47.5,-66.5 + pos: -27.5,-64.5 parent: 2 - uid: 4704 components: - type: Transform - pos: -46.5,-66.5 + pos: -23.5,-64.5 parent: 2 - uid: 4705 components: - type: Transform - pos: -45.5,-66.5 + pos: -24.5,-64.5 parent: 2 - uid: 4706 components: - type: Transform - pos: -44.5,-66.5 + pos: -25.5,-64.5 parent: 2 - uid: 4707 components: - type: Transform - pos: -43.5,-66.5 + pos: -26.5,-64.5 parent: 2 - uid: 4708 components: - type: Transform - pos: -42.5,-66.5 + pos: -23.5,-66.5 parent: 2 - uid: 4709 components: - type: Transform - pos: -42.5,-68.5 + pos: -23.5,-65.5 parent: 2 - uid: 4710 components: - type: Transform - pos: -42.5,-69.5 + pos: -42.5,-72.5 parent: 2 - uid: 4711 components: - type: Transform - pos: -42.5,-70.5 + pos: -41.5,-72.5 parent: 2 - uid: 4712 components: - type: Transform - pos: -42.5,-71.5 + pos: -40.5,-72.5 parent: 2 - uid: 4713 components: - type: Transform - pos: -43.5,-71.5 + pos: -39.5,-72.5 parent: 2 - uid: 4714 components: - type: Transform - pos: -44.5,-71.5 + pos: -38.5,-72.5 parent: 2 - uid: 4715 components: - type: Transform - pos: -45.5,-71.5 + pos: -23.5,-42.5 parent: 2 - uid: 4716 components: - type: Transform - pos: -45.5,-72.5 + pos: -23.5,-43.5 parent: 2 - uid: 4717 components: - type: Transform - pos: -45.5,-73.5 + pos: -23.5,-44.5 parent: 2 - uid: 4718 components: - type: Transform - pos: -45.5,-74.5 + pos: -23.5,-45.5 parent: 2 - uid: 4719 components: - type: Transform - pos: -45.5,-75.5 + pos: -23.5,-46.5 parent: 2 - uid: 4720 components: - type: Transform - pos: -44.5,-75.5 + pos: -23.5,-47.5 parent: 2 - uid: 4721 components: - type: Transform - pos: -43.5,-75.5 + pos: -23.5,-48.5 parent: 2 - uid: 4722 components: - type: Transform - pos: -42.5,-76.5 + pos: -23.5,-49.5 parent: 2 - uid: 4723 components: - type: Transform - pos: -42.5,-75.5 + pos: -24.5,-49.5 parent: 2 - uid: 4724 components: - type: Transform - pos: -41.5,-76.5 + pos: -25.5,-49.5 parent: 2 - uid: 4725 components: - type: Transform - pos: -40.5,-76.5 + pos: -26.5,-49.5 parent: 2 - uid: 4726 components: - type: Transform - pos: -40.5,-75.5 + pos: -27.5,-49.5 parent: 2 - uid: 4727 components: - type: Transform - pos: -39.5,-75.5 + pos: -27.5,-48.5 parent: 2 - uid: 4728 components: - type: Transform - pos: -38.5,-75.5 + pos: -27.5,-47.5 parent: 2 - uid: 4729 components: - type: Transform - pos: -37.5,-75.5 + pos: -27.5,-46.5 parent: 2 - uid: 4730 components: - type: Transform - pos: -37.5,-76.5 + pos: -26.5,-46.5 parent: 2 - uid: 4731 components: - type: Transform - pos: -37.5,-77.5 + pos: -25.5,-46.5 parent: 2 - uid: 4732 components: - type: Transform - pos: -37.5,-78.5 + pos: -25.5,-45.5 parent: 2 - uid: 4733 components: - type: Transform - pos: -37.5,-79.5 + pos: -25.5,-44.5 parent: 2 - uid: 4734 components: - type: Transform - pos: -37.5,-80.5 + pos: -25.5,-43.5 parent: 2 - uid: 4735 components: - type: Transform - pos: -37.5,-81.5 + pos: -25.5,-42.5 parent: 2 - uid: 4736 components: - type: Transform - pos: -37.5,-82.5 + pos: -25.5,-41.5 parent: 2 - uid: 4737 components: - type: Transform - pos: -44.5,-85.5 + pos: -25.5,-40.5 parent: 2 - uid: 4738 components: - type: Transform - pos: -45.5,-85.5 + pos: -25.5,-39.5 parent: 2 - uid: 4739 components: - type: Transform - pos: -45.5,-84.5 + pos: -26.5,-41.5 parent: 2 - uid: 4740 components: - type: Transform - pos: -41.5,-85.5 + pos: -27.5,-41.5 parent: 2 - uid: 4741 components: - type: Transform - pos: -45.5,-83.5 + pos: -28.5,-41.5 parent: 2 - uid: 4742 components: - type: Transform - pos: -45.5,-82.5 + pos: -27.5,-45.5 parent: 2 - uid: 4743 components: - type: Transform - pos: -46.5,-82.5 + pos: -27.5,-44.5 parent: 2 - uid: 4744 components: - type: Transform - pos: -46.5,-83.5 + pos: -28.5,-44.5 parent: 2 - uid: 4745 components: - type: Transform - pos: -42.5,-85.5 + pos: -29.5,-44.5 parent: 2 - uid: 4746 components: - type: Transform - pos: -37.5,-83.5 + pos: -30.5,-44.5 parent: 2 - uid: 4747 components: - type: Transform - pos: -37.5,-84.5 + pos: -31.5,-44.5 parent: 2 - uid: 4748 components: - type: Transform - pos: -46.5,-81.5 + pos: -31.5,-45.5 parent: 2 - uid: 4749 components: - type: Transform - pos: -46.5,-80.5 + pos: -31.5,-46.5 parent: 2 - uid: 4750 components: - type: Transform - pos: -46.5,-79.5 + pos: -31.5,-47.5 parent: 2 - uid: 4751 components: - type: Transform - pos: -46.5,-78.5 + pos: -23.5,-51.5 parent: 2 - uid: 4752 components: - type: Transform - pos: -46.5,-77.5 + pos: -30.5,-47.5 parent: 2 - uid: 4753 components: - type: Transform - pos: -46.5,-76.5 + pos: -30.5,-48.5 parent: 2 - uid: 4754 components: - type: Transform - pos: -47.5,-76.5 + pos: -30.5,-49.5 parent: 2 - uid: 4755 components: - type: Transform - pos: -48.5,-76.5 + pos: -22.5,-51.5 parent: 2 - uid: 4756 components: - type: Transform - pos: -49.5,-76.5 + pos: -19.5,-49.5 parent: 2 - uid: 4757 components: - type: Transform - pos: -50.5,-76.5 + pos: -20.5,-49.5 parent: 2 - uid: 4758 components: - type: Transform - pos: -51.5,-76.5 + pos: -22.5,-54.5 parent: 2 - uid: 4759 components: - type: Transform - pos: -52.5,-76.5 + pos: -22.5,-55.5 parent: 2 - uid: 4760 components: - type: Transform - pos: -53.5,-76.5 + pos: -55.5,-60.5 parent: 2 - uid: 4761 components: - type: Transform - pos: -54.5,-76.5 + pos: 30.5,-14.5 parent: 2 - uid: 4762 components: - type: Transform - pos: -55.5,-76.5 + pos: 29.5,-14.5 parent: 2 - uid: 4763 components: - type: Transform - pos: -55.5,-77.5 + pos: 30.5,-11.5 parent: 2 - uid: 4764 components: - type: Transform - pos: -55.5,-78.5 + pos: 30.5,-12.5 parent: 2 - uid: 4765 components: - type: Transform - pos: -55.5,-79.5 + pos: -1.5,-79.5 parent: 2 - uid: 4766 components: - type: Transform - pos: -55.5,-80.5 + pos: 28.5,-25.5 parent: 2 - uid: 4767 components: - type: Transform - pos: -55.5,-81.5 + pos: -34.5,-55.5 parent: 2 - uid: 4768 components: - type: Transform - pos: -55.5,-75.5 + pos: -33.5,-26.5 parent: 2 - uid: 4769 components: - type: Transform - pos: -55.5,-74.5 + pos: -34.5,-26.5 parent: 2 - uid: 4770 components: - type: Transform - pos: -55.5,-73.5 + pos: -35.5,-26.5 parent: 2 - uid: 4771 components: - type: Transform - pos: -55.5,-72.5 + pos: -35.5,-25.5 parent: 2 - uid: 4772 components: - type: Transform - pos: -55.5,-71.5 + pos: -35.5,-24.5 parent: 2 - uid: 4773 components: - type: Transform - pos: -54.5,-73.5 + pos: -36.5,-24.5 parent: 2 - uid: 4774 components: - type: Transform - pos: -53.5,-73.5 + pos: -37.5,-24.5 parent: 2 - uid: 4775 components: - type: Transform - pos: -54.5,-79.5 + pos: -37.5,-23.5 parent: 2 - uid: 4776 components: - type: Transform - pos: -53.5,-79.5 + pos: -37.5,-22.5 parent: 2 - uid: 4777 components: - type: Transform - pos: -56.5,-71.5 + pos: -37.5,-21.5 parent: 2 - uid: 4778 components: - type: Transform - pos: -57.5,-71.5 + pos: -38.5,-22.5 parent: 2 - uid: 4779 components: - type: Transform - pos: -56.5,-73.5 + pos: -39.5,-22.5 parent: 2 - uid: 4780 components: - type: Transform - pos: -57.5,-73.5 + pos: -39.5,-23.5 parent: 2 - uid: 4781 components: - type: Transform - pos: -56.5,-79.5 + pos: -39.5,-24.5 parent: 2 - uid: 4782 components: - type: Transform - pos: -57.5,-79.5 + pos: -40.5,-24.5 parent: 2 - uid: 4783 components: - type: Transform - pos: -56.5,-81.5 + pos: -41.5,-24.5 parent: 2 - uid: 4784 components: - type: Transform - pos: -57.5,-81.5 + pos: -41.5,-25.5 parent: 2 - uid: 4785 components: - type: Transform - pos: -55.5,-82.5 + pos: -41.5,-26.5 parent: 2 - uid: 4786 components: - type: Transform - pos: -29.5,-63.5 + pos: -43.5,-26.5 parent: 2 - uid: 4787 components: - type: Transform - pos: -28.5,-63.5 + pos: -42.5,-26.5 parent: 2 - uid: 4788 components: - type: Transform - pos: -28.5,-62.5 + pos: -40.5,-26.5 parent: 2 - uid: 4789 components: - type: Transform - pos: -28.5,-61.5 + pos: -39.5,-26.5 parent: 2 - uid: 4790 components: - type: Transform - pos: -28.5,-60.5 + pos: -38.5,-26.5 parent: 2 - uid: 4791 components: - type: Transform - pos: -28.5,-59.5 + pos: -37.5,-26.5 parent: 2 - uid: 4792 components: - type: Transform - pos: -28.5,-58.5 + pos: -37.5,-27.5 parent: 2 - uid: 4793 components: - type: Transform - pos: -28.5,-57.5 + pos: -37.5,-28.5 parent: 2 - uid: 4794 components: - type: Transform - pos: -28.5,-56.5 + pos: -36.5,-28.5 parent: 2 - uid: 4795 components: - type: Transform - pos: -28.5,-55.5 + pos: -35.5,-28.5 parent: 2 - uid: 4796 components: - type: Transform - pos: -28.5,-54.5 + pos: -35.5,-29.5 parent: 2 - uid: 4797 components: - type: Transform - pos: -27.5,-54.5 + pos: -35.5,-30.5 parent: 2 - uid: 4798 components: - type: Transform - pos: -26.5,-54.5 + pos: -44.5,-26.5 parent: 2 - uid: 4799 components: - type: Transform - pos: -25.5,-54.5 + pos: -44.5,-27.5 parent: 2 - uid: 4800 components: - type: Transform - pos: -25.5,-53.5 + pos: -45.5,-27.5 parent: 2 - uid: 4801 components: - type: Transform - pos: -25.5,-52.5 + pos: -46.5,-27.5 parent: 2 - uid: 4802 components: - type: Transform - pos: -25.5,-51.5 + pos: -47.5,-27.5 parent: 2 - uid: 4803 components: - type: Transform - pos: -24.5,-51.5 + pos: -48.5,-27.5 parent: 2 - uid: 4804 components: - type: Transform - pos: -27.5,-63.5 + pos: -48.5,-28.5 parent: 2 - uid: 4805 components: - type: Transform - pos: -27.5,-64.5 + pos: -48.5,-29.5 parent: 2 - uid: 4806 components: - type: Transform - pos: -23.5,-64.5 + pos: -48.5,-30.5 parent: 2 - uid: 4807 components: - type: Transform - pos: -24.5,-64.5 + pos: -48.5,-31.5 parent: 2 - uid: 4808 components: - type: Transform - pos: -25.5,-64.5 + pos: -48.5,-32.5 parent: 2 - uid: 4809 components: - type: Transform - pos: -26.5,-64.5 + pos: -50.5,-32.5 parent: 2 - uid: 4810 components: - type: Transform - pos: -23.5,-66.5 + pos: -49.5,-32.5 parent: 2 - uid: 4811 components: - type: Transform - pos: -23.5,-65.5 + pos: -51.5,-32.5 parent: 2 - uid: 4812 components: - type: Transform - pos: -42.5,-72.5 + pos: -52.5,-32.5 parent: 2 - uid: 4813 components: - type: Transform - pos: -41.5,-72.5 + pos: -53.5,-32.5 parent: 2 - uid: 4814 components: - type: Transform - pos: -40.5,-72.5 + pos: -54.5,-32.5 parent: 2 - uid: 4815 components: - type: Transform - pos: -39.5,-72.5 + pos: -55.5,-32.5 parent: 2 - uid: 4816 components: - type: Transform - pos: -38.5,-72.5 + pos: -55.5,-33.5 parent: 2 - uid: 4817 components: - type: Transform - pos: -23.5,-42.5 + pos: -55.5,-34.5 parent: 2 - uid: 4818 components: - type: Transform - pos: -23.5,-43.5 + pos: -55.5,-35.5 parent: 2 - uid: 4819 components: - type: Transform - pos: -23.5,-44.5 + pos: -55.5,-36.5 parent: 2 - uid: 4820 components: - type: Transform - pos: -23.5,-45.5 + pos: -55.5,-37.5 parent: 2 - uid: 4821 components: - type: Transform - pos: -23.5,-46.5 + pos: -55.5,-38.5 parent: 2 - uid: 4822 components: - type: Transform - pos: -23.5,-47.5 + pos: -55.5,-39.5 parent: 2 - uid: 4823 components: - type: Transform - pos: -23.5,-48.5 + pos: -56.5,-39.5 parent: 2 - uid: 4824 components: - type: Transform - pos: -23.5,-49.5 + pos: -56.5,-40.5 parent: 2 - uid: 4825 components: - type: Transform - pos: -24.5,-49.5 + pos: -56.5,-41.5 parent: 2 - uid: 4826 components: - type: Transform - pos: -25.5,-49.5 + pos: -56.5,-42.5 parent: 2 - uid: 4827 components: - type: Transform - pos: -26.5,-49.5 + pos: -56.5,-43.5 parent: 2 - uid: 4828 components: - type: Transform - pos: -27.5,-49.5 + pos: -56.5,-44.5 parent: 2 - uid: 4829 components: - type: Transform - pos: -27.5,-48.5 + pos: -56.5,-45.5 parent: 2 - uid: 4830 components: - type: Transform - pos: -27.5,-47.5 + pos: -56.5,-46.5 parent: 2 - uid: 4831 components: - type: Transform - pos: -27.5,-46.5 + pos: -56.5,-47.5 parent: 2 - uid: 4832 components: - type: Transform - pos: -26.5,-46.5 + pos: -56.5,-48.5 parent: 2 - uid: 4833 components: - type: Transform - pos: -25.5,-46.5 + pos: -56.5,-49.5 parent: 2 - uid: 4834 components: - type: Transform - pos: -25.5,-45.5 + pos: -56.5,-50.5 parent: 2 - uid: 4835 components: - type: Transform - pos: -25.5,-44.5 + pos: -56.5,-51.5 parent: 2 - uid: 4836 components: - type: Transform - pos: -25.5,-43.5 + pos: -56.5,-52.5 parent: 2 - uid: 4837 components: - type: Transform - pos: -25.5,-42.5 + pos: -56.5,-53.5 parent: 2 - uid: 4838 components: - type: Transform - pos: -25.5,-41.5 + pos: -56.5,-54.5 parent: 2 - uid: 4839 components: - type: Transform - pos: -25.5,-40.5 + pos: -56.5,-55.5 parent: 2 - uid: 4840 components: - type: Transform - pos: -25.5,-39.5 + pos: -56.5,-56.5 parent: 2 - uid: 4841 components: - type: Transform - pos: -26.5,-41.5 + pos: -56.5,-57.5 parent: 2 - uid: 4842 components: - type: Transform - pos: -27.5,-41.5 + pos: -56.5,-58.5 parent: 2 - uid: 4843 components: - type: Transform - pos: -28.5,-41.5 + pos: -57.5,-58.5 parent: 2 - uid: 4844 components: - type: Transform - pos: -27.5,-45.5 + pos: -57.5,-59.5 parent: 2 - uid: 4845 components: - type: Transform - pos: -27.5,-44.5 + pos: -50.5,-64.5 parent: 2 - uid: 4846 components: - type: Transform - pos: -28.5,-44.5 + pos: -50.5,-63.5 parent: 2 - uid: 4847 components: - type: Transform - pos: -29.5,-44.5 + pos: -51.5,-63.5 parent: 2 - uid: 4848 components: - type: Transform - pos: -30.5,-44.5 + pos: -55.5,-58.5 parent: 2 - uid: 4849 components: - type: Transform - pos: -31.5,-44.5 + pos: -55.5,-59.5 parent: 2 - uid: 4850 components: - type: Transform - pos: -31.5,-45.5 + pos: -55.5,-61.5 parent: 2 - uid: 4851 components: - type: Transform - pos: -31.5,-46.5 + pos: -36.5,-30.5 parent: 2 - uid: 4852 components: - type: Transform - pos: -31.5,-47.5 + pos: -38.5,-28.5 parent: 2 - uid: 4853 components: - type: Transform - pos: -23.5,-51.5 + pos: -38.5,-30.5 parent: 2 - uid: 4854 components: - type: Transform - pos: -30.5,-47.5 + pos: -39.5,-30.5 parent: 2 - uid: 4855 components: - type: Transform - pos: -30.5,-48.5 + pos: -40.5,-30.5 parent: 2 - uid: 4856 components: - type: Transform - pos: -30.5,-49.5 + pos: -41.5,-30.5 parent: 2 - uid: 4857 components: - type: Transform - pos: -22.5,-51.5 + pos: -41.5,-29.5 parent: 2 - uid: 4858 components: - type: Transform - pos: -19.5,-49.5 + pos: -56.5,-85.5 parent: 2 - uid: 4859 components: - type: Transform - pos: -20.5,-49.5 + pos: -56.5,-86.5 parent: 2 - uid: 4860 components: - type: Transform - pos: -22.5,-52.5 + pos: -56.5,-87.5 parent: 2 - uid: 4861 components: - type: Transform - pos: -22.5,-53.5 + pos: -55.5,-87.5 parent: 2 - uid: 4862 components: - type: Transform - pos: -22.5,-54.5 + pos: -54.5,-87.5 parent: 2 - uid: 4863 components: - type: Transform - pos: -22.5,-55.5 + pos: -53.5,-87.5 parent: 2 - uid: 4864 components: - type: Transform - pos: -21.5,-52.5 + pos: -52.5,-87.5 parent: 2 - uid: 4865 components: - type: Transform - pos: -55.5,-60.5 + pos: -54.5,-86.5 parent: 2 - uid: 4866 components: - type: Transform - pos: 30.5,-14.5 + pos: -54.5,-85.5 parent: 2 - uid: 4867 components: - type: Transform - pos: 29.5,-14.5 + pos: -54.5,-88.5 parent: 2 - uid: 4868 components: - type: Transform - pos: 30.5,-11.5 + pos: -54.5,-89.5 parent: 2 - uid: 4869 components: - type: Transform - pos: 30.5,-12.5 + pos: -55.5,-85.5 parent: 2 - uid: 4870 components: - type: Transform - pos: -1.5,-79.5 + pos: 33.5,22.5 parent: 2 - uid: 4871 components: - type: Transform - pos: 28.5,-25.5 + pos: 34.5,22.5 parent: 2 - uid: 4872 components: - type: Transform - pos: -34.5,-55.5 + pos: 35.5,22.5 parent: 2 - uid: 4873 components: - type: Transform - pos: -33.5,-26.5 + pos: 36.5,22.5 parent: 2 - uid: 4874 components: - type: Transform - pos: -34.5,-26.5 + pos: 36.5,23.5 parent: 2 - uid: 4875 components: - type: Transform - pos: -35.5,-26.5 + pos: 37.5,23.5 parent: 2 - uid: 4876 components: - type: Transform - pos: -35.5,-25.5 + pos: 38.5,23.5 parent: 2 - uid: 4877 components: - type: Transform - pos: -35.5,-24.5 + pos: 39.5,23.5 parent: 2 - uid: 4878 components: - type: Transform - pos: -36.5,-24.5 + pos: 40.5,23.5 parent: 2 - uid: 4879 components: - type: Transform - pos: -37.5,-24.5 + pos: 42.5,23.5 parent: 2 - uid: 4880 components: - type: Transform - pos: -37.5,-23.5 + pos: 44.5,23.5 parent: 2 - uid: 4881 components: - type: Transform - pos: -37.5,-22.5 + pos: 43.5,23.5 parent: 2 - uid: 4882 components: - type: Transform - pos: -37.5,-21.5 + pos: 44.5,24.5 parent: 2 - uid: 4883 components: - type: Transform - pos: -38.5,-22.5 + pos: 44.5,25.5 parent: 2 - uid: 4884 components: - type: Transform - pos: -39.5,-22.5 + pos: 44.5,26.5 parent: 2 - uid: 4885 components: - type: Transform - pos: -39.5,-23.5 + pos: 47.5,26.5 parent: 2 - uid: 4886 components: - type: Transform - pos: -39.5,-24.5 + pos: 48.5,26.5 parent: 2 - uid: 4887 components: - type: Transform - pos: -40.5,-24.5 + pos: 49.5,26.5 parent: 2 - uid: 4888 components: - type: Transform - pos: -41.5,-24.5 + pos: 50.5,26.5 parent: 2 - uid: 4889 components: - type: Transform - pos: -41.5,-25.5 + pos: 51.5,26.5 parent: 2 - uid: 4890 components: - type: Transform - pos: -41.5,-26.5 + pos: 52.5,26.5 parent: 2 - uid: 4891 components: - type: Transform - pos: -43.5,-26.5 + pos: 53.5,26.5 parent: 2 - uid: 4892 components: - type: Transform - pos: -42.5,-26.5 + pos: 54.5,26.5 parent: 2 - uid: 4893 components: - type: Transform - pos: -40.5,-26.5 + pos: 55.5,26.5 parent: 2 - uid: 4894 components: - type: Transform - pos: -39.5,-26.5 + pos: 56.5,26.5 parent: 2 - uid: 4895 components: - type: Transform - pos: -38.5,-26.5 + pos: 57.5,26.5 parent: 2 - uid: 4896 components: - type: Transform - pos: -37.5,-26.5 + pos: 58.5,26.5 parent: 2 - uid: 4897 components: - type: Transform - pos: -37.5,-27.5 + pos: 59.5,26.5 parent: 2 - uid: 4898 components: - type: Transform - pos: -37.5,-28.5 + pos: 60.5,26.5 parent: 2 - uid: 4899 components: - type: Transform - pos: -36.5,-28.5 + pos: 63.5,5.5 parent: 2 - uid: 4900 components: - type: Transform - pos: -35.5,-28.5 + pos: 64.5,5.5 parent: 2 - uid: 4901 components: - type: Transform - pos: -35.5,-29.5 + pos: 65.5,5.5 parent: 2 - uid: 4902 components: - type: Transform - pos: -35.5,-30.5 + pos: 65.5,4.5 parent: 2 - uid: 4903 components: - type: Transform - pos: -44.5,-26.5 + pos: 65.5,6.5 parent: 2 - uid: 4904 components: - type: Transform - pos: -44.5,-27.5 + pos: 65.5,7.5 parent: 2 - uid: 4905 components: - type: Transform - pos: -45.5,-27.5 + pos: 65.5,8.5 parent: 2 - uid: 4906 components: - type: Transform - pos: -46.5,-27.5 + pos: 65.5,9.5 parent: 2 - uid: 4907 components: - type: Transform - pos: -47.5,-27.5 + pos: 65.5,10.5 parent: 2 - uid: 4908 components: - type: Transform - pos: -48.5,-27.5 + pos: 65.5,11.5 parent: 2 - uid: 4909 components: - type: Transform - pos: -48.5,-28.5 + pos: 65.5,12.5 parent: 2 - uid: 4910 components: - type: Transform - pos: -48.5,-29.5 + pos: 65.5,13.5 parent: 2 - uid: 4911 components: - type: Transform - pos: -48.5,-30.5 + pos: 65.5,14.5 parent: 2 - uid: 4912 components: - type: Transform - pos: -48.5,-31.5 + pos: 65.5,15.5 parent: 2 - uid: 4913 components: - type: Transform - pos: -48.5,-32.5 + pos: 53.5,27.5 parent: 2 - uid: 4914 components: - type: Transform - pos: -50.5,-32.5 + pos: -25.5,-27.5 parent: 2 - uid: 4915 components: - type: Transform - pos: -49.5,-32.5 + pos: -25.5,-28.5 parent: 2 - uid: 4916 components: - type: Transform - pos: -51.5,-32.5 + pos: -25.5,-29.5 parent: 2 - uid: 4917 components: - type: Transform - pos: -52.5,-32.5 + pos: -26.5,-29.5 parent: 2 - uid: 4918 components: - type: Transform - pos: -53.5,-32.5 + pos: -28.5,-29.5 parent: 2 - uid: 4919 components: - type: Transform - pos: -54.5,-32.5 + pos: -27.5,-29.5 parent: 2 - uid: 4920 components: - type: Transform - pos: -55.5,-32.5 + pos: -24.5,-29.5 parent: 2 - uid: 4921 components: - type: Transform - pos: -55.5,-33.5 + pos: 8.5,-14.5 parent: 2 - uid: 4922 components: - type: Transform - pos: -55.5,-34.5 + pos: 7.5,-14.5 parent: 2 - uid: 4923 components: - type: Transform - pos: -55.5,-35.5 + pos: 6.5,-14.5 parent: 2 - uid: 4924 components: - type: Transform - pos: -55.5,-36.5 + pos: 5.5,-14.5 parent: 2 - uid: 4925 components: - type: Transform - pos: -55.5,-37.5 + pos: 4.5,-14.5 parent: 2 - uid: 4926 components: - type: Transform - pos: -55.5,-38.5 + pos: 4.5,-15.5 parent: 2 - uid: 4927 components: - type: Transform - pos: -55.5,-39.5 + pos: 4.5,-16.5 parent: 2 - uid: 4928 components: - type: Transform - pos: -56.5,-39.5 + pos: 3.5,-16.5 parent: 2 - uid: 4929 components: - type: Transform - pos: -56.5,-40.5 + pos: 2.5,-16.5 parent: 2 - uid: 4930 components: - type: Transform - pos: -56.5,-41.5 + pos: 1.5,-16.5 parent: 2 - uid: 4931 components: - type: Transform - pos: -56.5,-42.5 + pos: 0.5,-16.5 parent: 2 - uid: 4932 components: - type: Transform - pos: -56.5,-43.5 + pos: 2.5,-14.5 parent: 2 - uid: 4933 components: - type: Transform - pos: -56.5,-44.5 + pos: 3.5,-14.5 parent: 2 - uid: 4934 components: - type: Transform - pos: -56.5,-45.5 + pos: 1.5,-14.5 parent: 2 - uid: 4935 components: - type: Transform - pos: -56.5,-46.5 + pos: 1.5,-13.5 parent: 2 - uid: 4936 components: - type: Transform - pos: -56.5,-47.5 + pos: -2.5,-14.5 parent: 2 - uid: 4937 components: - type: Transform - pos: -56.5,-48.5 + pos: -0.5,-12.5 parent: 2 - uid: 4938 components: - type: Transform - pos: -56.5,-49.5 + pos: -0.5,-11.5 parent: 2 - uid: 4939 components: - type: Transform - pos: -56.5,-50.5 + pos: -0.5,-9.5 parent: 2 - uid: 4940 components: - type: Transform - pos: -56.5,-51.5 + pos: -0.5,-10.5 parent: 2 - uid: 4941 components: - type: Transform - pos: -56.5,-52.5 + pos: 0.5,35.5 parent: 2 - uid: 4942 components: - type: Transform - pos: -56.5,-53.5 + pos: 0.5,34.5 parent: 2 - uid: 4943 components: - type: Transform - pos: -56.5,-54.5 + pos: 0.5,33.5 parent: 2 - uid: 4944 components: - type: Transform - pos: -56.5,-55.5 + pos: 0.5,32.5 parent: 2 - uid: 4945 components: - type: Transform - pos: -56.5,-56.5 + pos: 1.5,32.5 parent: 2 - uid: 4946 components: - type: Transform - pos: -56.5,-57.5 + pos: 2.5,32.5 parent: 2 - uid: 4947 components: - type: Transform - pos: -56.5,-58.5 + pos: 13.5,32.5 parent: 2 - uid: 4948 components: - type: Transform - pos: -57.5,-58.5 + pos: 14.5,32.5 parent: 2 - uid: 4949 components: - type: Transform - pos: -57.5,-59.5 + pos: 15.5,32.5 parent: 2 - uid: 4950 components: - type: Transform - pos: -50.5,-64.5 + pos: 16.5,32.5 parent: 2 - uid: 4951 components: - type: Transform - pos: -50.5,-63.5 + pos: 16.5,33.5 parent: 2 - uid: 4952 components: - type: Transform - pos: -51.5,-63.5 + pos: 16.5,34.5 parent: 2 - uid: 4953 components: - type: Transform - pos: -55.5,-58.5 + pos: 16.5,31.5 parent: 2 - uid: 4954 components: - type: Transform - pos: -55.5,-59.5 + pos: 16.5,30.5 parent: 2 - uid: 4955 components: - type: Transform - pos: -55.5,-61.5 + pos: 16.5,29.5 parent: 2 - uid: 4956 components: - type: Transform - pos: -36.5,-30.5 + pos: 16.5,28.5 parent: 2 - uid: 4957 components: - type: Transform - pos: -38.5,-28.5 + pos: 16.5,27.5 parent: 2 - uid: 4958 components: - type: Transform - pos: -38.5,-30.5 + pos: 16.5,26.5 parent: 2 - uid: 4959 components: - type: Transform - pos: -39.5,-30.5 + pos: 16.5,25.5 parent: 2 - uid: 4960 components: - type: Transform - pos: -40.5,-30.5 + pos: 15.5,25.5 parent: 2 - uid: 4961 components: - type: Transform - pos: -41.5,-30.5 + pos: 14.5,25.5 parent: 2 - uid: 4962 components: - type: Transform - pos: -41.5,-29.5 + pos: 13.5,25.5 parent: 2 - uid: 4963 components: - type: Transform - pos: -56.5,-85.5 + pos: 12.5,25.5 parent: 2 - uid: 4964 components: - type: Transform - pos: -56.5,-86.5 + pos: 11.5,25.5 parent: 2 - uid: 4965 components: - type: Transform - pos: -56.5,-87.5 + pos: 8.5,25.5 parent: 2 - uid: 4966 components: - type: Transform - pos: -55.5,-87.5 + pos: 9.5,25.5 parent: 2 - uid: 4967 components: - type: Transform - pos: -54.5,-87.5 + pos: 10.5,25.5 parent: 2 - uid: 4968 components: - type: Transform - pos: -53.5,-87.5 + pos: 8.5,24.5 parent: 2 - uid: 4969 components: - type: Transform - pos: -52.5,-87.5 + pos: 7.5,24.5 parent: 2 - uid: 4970 components: - type: Transform - pos: -54.5,-86.5 + pos: 6.5,24.5 parent: 2 - uid: 4971 components: - type: Transform - pos: -54.5,-85.5 + pos: 5.5,24.5 parent: 2 - uid: 4972 components: - type: Transform - pos: -54.5,-88.5 + pos: 4.5,24.5 parent: 2 - uid: 4973 components: - type: Transform - pos: -54.5,-89.5 + pos: 3.5,24.5 parent: 2 - uid: 4974 components: - type: Transform - pos: -55.5,-85.5 + pos: 2.5,24.5 parent: 2 - uid: 4975 components: - type: Transform - pos: 33.5,22.5 + pos: 1.5,24.5 parent: 2 - uid: 4976 components: - type: Transform - pos: 34.5,22.5 + pos: 0.5,24.5 parent: 2 - uid: 4977 components: - type: Transform - pos: 35.5,22.5 + pos: -0.5,24.5 parent: 2 - uid: 4978 components: - type: Transform - pos: 36.5,22.5 + pos: -1.5,24.5 parent: 2 - uid: 4979 components: - type: Transform - pos: 36.5,23.5 + pos: -0.5,32.5 parent: 2 - uid: 4980 components: - type: Transform - pos: 37.5,23.5 + pos: -1.5,32.5 parent: 2 - uid: 4981 components: - type: Transform - pos: 38.5,23.5 + pos: -2.5,32.5 parent: 2 - uid: 4982 components: - type: Transform - pos: 39.5,23.5 + pos: -3.5,32.5 parent: 2 - uid: 4983 components: - type: Transform - pos: 40.5,23.5 + pos: -4.5,32.5 parent: 2 - uid: 4984 components: - type: Transform - pos: 42.5,23.5 + pos: -5.5,32.5 parent: 2 - uid: 4985 components: - type: Transform - pos: 44.5,23.5 + pos: -6.5,32.5 parent: 2 - uid: 4986 components: - type: Transform - pos: 43.5,23.5 + pos: -7.5,32.5 parent: 2 - uid: 4987 components: - type: Transform - pos: 44.5,24.5 + pos: -8.5,32.5 parent: 2 - uid: 4988 components: - type: Transform - pos: 44.5,25.5 + pos: -8.5,31.5 parent: 2 - uid: 4989 components: - type: Transform - pos: 44.5,26.5 + pos: -8.5,30.5 parent: 2 - uid: 4990 components: - type: Transform - pos: 47.5,26.5 + pos: -8.5,29.5 parent: 2 - uid: 4991 components: - type: Transform - pos: 48.5,26.5 + pos: -8.5,28.5 parent: 2 - uid: 4992 components: - type: Transform - pos: 49.5,26.5 + pos: -8.5,27.5 parent: 2 - uid: 4993 components: - type: Transform - pos: 50.5,26.5 + pos: -8.5,26.5 parent: 2 - uid: 4994 components: - type: Transform - pos: 51.5,26.5 + pos: -12.5,26.5 parent: 2 - uid: 4995 components: - type: Transform - pos: 52.5,26.5 + pos: -8.5,23.5 parent: 2 - uid: 4996 components: - type: Transform - pos: 53.5,26.5 + pos: -1.5,33.5 parent: 2 - uid: 4997 components: - type: Transform - pos: 54.5,26.5 + pos: -1.5,34.5 parent: 2 - uid: 4998 components: - type: Transform - pos: 55.5,26.5 + pos: -1.5,31.5 parent: 2 - uid: 4999 components: - type: Transform - pos: 56.5,26.5 + pos: -15.5,26.5 parent: 2 - uid: 5000 components: - type: Transform - pos: 57.5,26.5 + pos: -11.5,28.5 parent: 2 - uid: 5001 components: - type: Transform - pos: 58.5,26.5 + pos: -11.5,29.5 parent: 2 - uid: 5002 components: - type: Transform - pos: 59.5,26.5 + pos: -68.5,-25.5 parent: 2 - uid: 5003 components: - type: Transform - pos: 60.5,26.5 + pos: -68.5,-24.5 parent: 2 - uid: 5004 components: - type: Transform - pos: 63.5,5.5 + pos: -68.5,-23.5 parent: 2 - uid: 5005 components: - type: Transform - pos: 64.5,5.5 + pos: -69.5,-23.5 parent: 2 - uid: 5006 components: - type: Transform - pos: 65.5,5.5 + pos: -70.5,-23.5 parent: 2 - uid: 5007 components: - type: Transform - pos: 65.5,4.5 + pos: -71.5,-23.5 parent: 2 - uid: 5008 components: - type: Transform - pos: 65.5,6.5 + pos: -72.5,-23.5 parent: 2 - uid: 5009 components: - type: Transform - pos: 65.5,7.5 + pos: -73.5,-23.5 parent: 2 - uid: 5010 components: - type: Transform - pos: 65.5,8.5 + pos: -72.5,-24.5 parent: 2 - uid: 5011 components: - type: Transform - pos: 65.5,9.5 + pos: -72.5,-25.5 parent: 2 - uid: 5012 components: - type: Transform - pos: 65.5,10.5 + pos: -74.5,-23.5 parent: 2 - uid: 5013 components: - type: Transform - pos: 65.5,11.5 + pos: -74.5,-24.5 parent: 2 - uid: 5014 components: - type: Transform - pos: 65.5,12.5 + pos: -42.5,-6.5 parent: 2 - uid: 5015 components: - type: Transform - pos: 65.5,13.5 + pos: -43.5,-6.5 parent: 2 - uid: 5016 components: - type: Transform - pos: 65.5,14.5 + pos: -44.5,-6.5 parent: 2 - uid: 5017 components: - type: Transform - pos: 65.5,15.5 + pos: -45.5,-6.5 parent: 2 - uid: 5018 components: - type: Transform - pos: 53.5,27.5 + pos: -46.5,-6.5 parent: 2 - uid: 5019 components: - type: Transform - pos: -25.5,-27.5 + pos: -47.5,-6.5 parent: 2 - uid: 5020 components: - type: Transform - pos: -25.5,-28.5 + pos: -48.5,-6.5 parent: 2 - uid: 5021 components: - type: Transform - pos: -25.5,-29.5 + pos: -42.5,16.5 parent: 2 - uid: 5022 components: - type: Transform - pos: -26.5,-29.5 + pos: -9.5,24.5 parent: 2 - uid: 5023 components: - type: Transform - pos: -28.5,-29.5 + pos: -10.5,26.5 parent: 2 - uid: 5024 components: - type: Transform - pos: -27.5,-29.5 + pos: -9.5,26.5 parent: 2 - uid: 5025 components: - type: Transform - pos: -24.5,-29.5 + pos: -9.5,25.5 parent: 2 - uid: 5026 components: - type: Transform - pos: 8.5,-14.5 + pos: -9.5,23.5 parent: 2 - uid: 5027 components: - type: Transform - pos: 7.5,-14.5 + pos: -14.5,26.5 parent: 2 - uid: 5028 components: - type: Transform - pos: 6.5,-14.5 + pos: -11.5,27.5 parent: 2 - uid: 5029 components: - type: Transform - pos: 5.5,-14.5 + pos: 21.5,22.5 parent: 2 - uid: 5030 components: - type: Transform - pos: 4.5,-14.5 + pos: 21.5,23.5 parent: 2 - uid: 5031 components: - type: Transform - pos: 4.5,-15.5 + pos: -18.5,15.5 parent: 2 - uid: 5032 components: - type: Transform - pos: 4.5,-16.5 + pos: -18.5,16.5 parent: 2 - uid: 5033 components: - type: Transform - pos: 3.5,-16.5 + pos: -18.5,17.5 parent: 2 - uid: 5034 components: - type: Transform - pos: 2.5,-16.5 + pos: -18.5,18.5 parent: 2 - uid: 5035 components: - type: Transform - pos: 1.5,-16.5 + pos: -18.5,19.5 parent: 2 - uid: 5036 components: - type: Transform - pos: 0.5,-16.5 + pos: -18.5,20.5 parent: 2 - uid: 5037 components: - type: Transform - pos: 2.5,-14.5 + pos: -18.5,21.5 parent: 2 - uid: 5038 components: - type: Transform - pos: 3.5,-14.5 + pos: -19.5,21.5 parent: 2 - uid: 5039 components: - type: Transform - pos: 1.5,-14.5 + pos: -20.5,21.5 parent: 2 - uid: 5040 components: - type: Transform - pos: 1.5,-13.5 + pos: -21.5,21.5 parent: 2 - uid: 5041 components: - type: Transform - pos: -2.5,-14.5 + pos: -22.5,21.5 parent: 2 - uid: 5042 components: - type: Transform - pos: -0.5,-12.5 + pos: -23.5,21.5 parent: 2 - uid: 5043 components: - type: Transform - pos: -0.5,-11.5 + pos: -23.5,22.5 parent: 2 - uid: 5044 components: - type: Transform - pos: -0.5,-9.5 + pos: -23.5,23.5 parent: 2 - uid: 5045 components: - type: Transform - pos: -0.5,-10.5 + pos: -23.5,24.5 parent: 2 - uid: 5046 components: - type: Transform - pos: 0.5,35.5 + pos: -23.5,25.5 parent: 2 - uid: 5047 components: - type: Transform - pos: 0.5,34.5 + pos: -23.5,26.5 parent: 2 - uid: 5048 components: - type: Transform - pos: 0.5,33.5 + pos: -24.5,21.5 parent: 2 - uid: 5049 components: - type: Transform - pos: 0.5,32.5 + pos: -25.5,21.5 parent: 2 - uid: 5050 components: - type: Transform - pos: 1.5,32.5 + pos: -26.5,21.5 parent: 2 - uid: 5051 components: - type: Transform - pos: 2.5,32.5 + pos: -27.5,21.5 parent: 2 - uid: 5052 components: - type: Transform - pos: 13.5,32.5 + pos: -28.5,21.5 parent: 2 - uid: 5053 components: - type: Transform - pos: 14.5,32.5 + pos: -28.5,22.5 parent: 2 - uid: 5054 components: - type: Transform - pos: 15.5,32.5 + pos: -29.5,22.5 parent: 2 - uid: 5055 components: - type: Transform - pos: 16.5,32.5 + pos: -30.5,22.5 parent: 2 - uid: 5056 components: - type: Transform - pos: 16.5,33.5 + pos: -31.5,22.5 parent: 2 - uid: 5057 components: - type: Transform - pos: 16.5,34.5 + pos: -32.5,22.5 parent: 2 - uid: 5058 components: - type: Transform - pos: 16.5,31.5 + pos: -32.5,23.5 parent: 2 - uid: 5059 components: - type: Transform - pos: 16.5,30.5 + pos: -32.5,24.5 parent: 2 - uid: 5060 components: - type: Transform - pos: 16.5,29.5 + pos: -32.5,25.5 parent: 2 - uid: 5061 components: - type: Transform - pos: 16.5,28.5 + pos: -32.5,26.5 parent: 2 - uid: 5062 components: - type: Transform - pos: 16.5,27.5 + pos: -32.5,27.5 parent: 2 - uid: 5063 components: - type: Transform - pos: 16.5,26.5 + pos: -31.5,27.5 parent: 2 - uid: 5064 components: - type: Transform - pos: 16.5,25.5 + pos: -30.5,27.5 parent: 2 - uid: 5065 components: - type: Transform - pos: 15.5,25.5 + pos: -33.5,27.5 parent: 2 - uid: 5066 components: - type: Transform - pos: 14.5,25.5 + pos: -32.5,28.5 parent: 2 - uid: 5067 components: - type: Transform - pos: 13.5,25.5 + pos: -32.5,29.5 parent: 2 - uid: 5068 components: - type: Transform - pos: 12.5,25.5 + pos: -32.5,30.5 parent: 2 - uid: 5069 components: - type: Transform - pos: 11.5,25.5 + pos: -33.5,30.5 parent: 2 - uid: 5070 components: - type: Transform - pos: 8.5,25.5 + pos: -33.5,25.5 parent: 2 - uid: 5071 components: - type: Transform - pos: 9.5,25.5 + pos: -34.5,25.5 parent: 2 - uid: 5072 components: - type: Transform - pos: 10.5,25.5 + pos: -35.5,25.5 parent: 2 - uid: 5073 components: - type: Transform - pos: 8.5,24.5 + pos: -36.5,25.5 parent: 2 - uid: 5074 components: - type: Transform - pos: 7.5,24.5 + pos: -37.5,25.5 parent: 2 - uid: 5075 components: - type: Transform - pos: 6.5,24.5 + pos: -38.5,25.5 parent: 2 - uid: 5076 components: - type: Transform - pos: 5.5,24.5 + pos: -38.5,24.5 parent: 2 - uid: 5077 components: - type: Transform - pos: 4.5,24.5 + pos: -38.5,23.5 parent: 2 - uid: 5078 components: - type: Transform - pos: 3.5,24.5 + pos: -38.5,22.5 parent: 2 - uid: 5079 components: - type: Transform - pos: 2.5,24.5 + pos: -39.5,22.5 parent: 2 - uid: 5080 components: - type: Transform - pos: 1.5,24.5 + pos: -40.5,22.5 parent: 2 - uid: 5081 components: - type: Transform - pos: 0.5,24.5 + pos: -41.5,22.5 parent: 2 - uid: 5082 components: - type: Transform - pos: -0.5,24.5 + pos: -42.5,22.5 parent: 2 - uid: 5083 components: - type: Transform - pos: -1.5,24.5 + pos: -43.5,22.5 parent: 2 - uid: 5084 components: - type: Transform - pos: -0.5,32.5 + pos: -44.5,22.5 parent: 2 - uid: 5085 components: - type: Transform - pos: -1.5,32.5 + pos: -45.5,22.5 parent: 2 - uid: 5086 components: - type: Transform - pos: -2.5,32.5 + pos: -46.5,22.5 parent: 2 - uid: 5087 components: - type: Transform - pos: -3.5,32.5 + pos: -47.5,22.5 parent: 2 - uid: 5088 components: - type: Transform - pos: -4.5,32.5 + pos: -48.5,22.5 parent: 2 - uid: 5089 components: - type: Transform - pos: -5.5,32.5 + pos: -49.5,22.5 parent: 2 - uid: 5090 components: - type: Transform - pos: -6.5,32.5 + pos: -50.5,22.5 parent: 2 - uid: 5091 components: - type: Transform - pos: -7.5,32.5 + pos: -32.5,21.5 parent: 2 - uid: 5092 components: - type: Transform - pos: -8.5,32.5 + pos: -32.5,20.5 parent: 2 - uid: 5093 components: - type: Transform - pos: -8.5,31.5 + pos: -32.5,19.5 parent: 2 - uid: 5094 components: - type: Transform - pos: -8.5,30.5 + pos: -32.5,18.5 parent: 2 - uid: 5095 components: - type: Transform - pos: -8.5,29.5 + pos: -33.5,18.5 parent: 2 - uid: 5096 components: - type: Transform - pos: -8.5,28.5 + pos: -30.5,18.5 parent: 2 - uid: 5097 components: - type: Transform - pos: -8.5,27.5 + pos: -31.5,18.5 parent: 2 - uid: 5098 components: - type: Transform - pos: -8.5,26.5 + pos: -36.5,18.5 parent: 2 - uid: 5099 components: - type: Transform - pos: -12.5,26.5 + pos: -37.5,18.5 parent: 2 - uid: 5100 components: - type: Transform - pos: -8.5,23.5 + pos: -38.5,18.5 parent: 2 - uid: 5101 components: - type: Transform - pos: -1.5,33.5 + pos: -39.5,18.5 parent: 2 - uid: 5102 components: - type: Transform - pos: -1.5,34.5 + pos: -40.5,18.5 parent: 2 - uid: 5103 components: - type: Transform - pos: -1.5,31.5 + pos: -41.5,18.5 parent: 2 - uid: 5104 components: - type: Transform - pos: -15.5,26.5 + pos: -42.5,18.5 parent: 2 - uid: 5105 components: - type: Transform - pos: -11.5,28.5 + pos: -43.5,18.5 parent: 2 - uid: 5106 components: - type: Transform - pos: -11.5,29.5 + pos: -44.5,18.5 parent: 2 - uid: 5107 components: - type: Transform - pos: -68.5,-25.5 + pos: -45.5,18.5 parent: 2 - uid: 5108 components: - type: Transform - pos: -68.5,-24.5 + pos: -46.5,18.5 parent: 2 - uid: 5109 components: - type: Transform - pos: -68.5,-23.5 + pos: -47.5,18.5 parent: 2 - uid: 5110 components: - type: Transform - pos: -69.5,-23.5 + pos: -37.5,19.5 parent: 2 - uid: 5111 components: - type: Transform - pos: -70.5,-23.5 + pos: -37.5,20.5 parent: 2 - uid: 5112 components: - type: Transform - pos: -71.5,-23.5 + pos: -37.5,21.5 parent: 2 - uid: 5113 components: - type: Transform - pos: -72.5,-23.5 + pos: -36.5,22.5 parent: 2 - uid: 5114 components: - type: Transform - pos: -73.5,-23.5 + pos: -47.5,19.5 parent: 2 - uid: 5115 components: - type: Transform - pos: -72.5,-24.5 + pos: -48.5,19.5 parent: 2 - uid: 5116 components: - type: Transform - pos: -72.5,-25.5 + pos: -49.5,19.5 parent: 2 - uid: 5117 components: - type: Transform - pos: -74.5,-23.5 + pos: -50.5,19.5 parent: 2 - uid: 5118 components: - type: Transform - pos: -74.5,-24.5 + pos: -46.5,23.5 parent: 2 - uid: 5119 components: - type: Transform - pos: -42.5,-6.5 + pos: -46.5,24.5 parent: 2 - uid: 5120 components: - type: Transform - pos: -43.5,-6.5 + pos: -46.5,25.5 parent: 2 - uid: 5121 components: - type: Transform - pos: -44.5,-6.5 + pos: -43.5,19.5 parent: 2 - uid: 5122 components: - type: Transform - pos: -45.5,-6.5 + pos: -41.5,19.5 parent: 2 - uid: 5123 components: - type: Transform - pos: -46.5,-6.5 + pos: -31.5,25.5 parent: 2 - uid: 5124 components: - type: Transform - pos: -47.5,-6.5 + pos: -30.5,25.5 parent: 2 - uid: 5125 components: - type: Transform - pos: -48.5,-6.5 + pos: -29.5,25.5 parent: 2 - uid: 5126 components: - type: Transform - pos: -42.5,16.5 + pos: -28.5,25.5 parent: 2 - uid: 5127 components: - type: Transform - pos: -9.5,24.5 + pos: -27.5,25.5 parent: 2 - uid: 5128 components: - type: Transform - pos: -10.5,26.5 + pos: -25.5,20.5 parent: 2 - uid: 5129 components: - type: Transform - pos: -9.5,26.5 + pos: -25.5,19.5 parent: 2 - uid: 5130 components: - type: Transform - pos: -9.5,25.5 + pos: -25.5,18.5 parent: 2 - uid: 5131 components: - type: Transform - pos: -9.5,23.5 + pos: -26.5,18.5 parent: 2 - uid: 5132 components: - type: Transform - pos: -14.5,26.5 + pos: -27.5,18.5 parent: 2 - uid: 5133 components: - type: Transform - pos: -11.5,27.5 + pos: -29.5,18.5 parent: 2 - uid: 5134 components: - type: Transform - pos: 21.5,22.5 + pos: -28.5,18.5 parent: 2 - uid: 5135 components: - type: Transform - pos: 21.5,23.5 + pos: -18.5,22.5 parent: 2 - uid: 5136 components: - type: Transform - pos: -18.5,15.5 + pos: -18.5,23.5 parent: 2 - uid: 5137 components: - type: Transform - pos: -18.5,16.5 + pos: -24.5,18.5 parent: 2 - uid: 5138 components: - type: Transform - pos: -18.5,17.5 + pos: -51.5,22.5 parent: 2 - uid: 5139 components: - type: Transform - pos: -18.5,18.5 + pos: -52.5,22.5 parent: 2 - uid: 5140 components: - type: Transform - pos: -18.5,19.5 + pos: -52.5,21.5 parent: 2 - uid: 5141 components: - type: Transform - pos: -18.5,20.5 + pos: -52.5,-27.5 parent: 2 - uid: 5142 components: - type: Transform - pos: -18.5,21.5 + pos: -46.5,27.5 parent: 2 - uid: 5143 components: - type: Transform - pos: -19.5,21.5 + pos: -46.5,28.5 parent: 2 - uid: 5144 components: - type: Transform - pos: -20.5,21.5 + pos: -46.5,29.5 parent: 2 - uid: 5145 components: - type: Transform - pos: -21.5,21.5 + pos: -46.5,30.5 parent: 2 - uid: 5146 components: - type: Transform - pos: -22.5,21.5 + pos: -46.5,31.5 parent: 2 - uid: 5147 components: - type: Transform - pos: -23.5,21.5 + pos: -46.5,32.5 parent: 2 - uid: 5148 components: - type: Transform - pos: -23.5,22.5 + pos: -46.5,33.5 parent: 2 - uid: 5149 components: - type: Transform - pos: -23.5,23.5 + pos: -47.5,33.5 parent: 2 - uid: 5150 components: - type: Transform - pos: -23.5,24.5 + pos: -48.5,33.5 parent: 2 - uid: 5151 components: - type: Transform - pos: -23.5,25.5 + pos: -49.5,33.5 parent: 2 - uid: 5152 components: - type: Transform - pos: -23.5,26.5 + pos: -50.5,33.5 parent: 2 - uid: 5153 components: - type: Transform - pos: -24.5,21.5 + pos: -51.5,33.5 parent: 2 - uid: 5154 components: - type: Transform - pos: -25.5,21.5 + pos: -47.5,31.5 parent: 2 - uid: 5155 components: - type: Transform - pos: -26.5,21.5 + pos: -48.5,31.5 parent: 2 - uid: 5156 components: - type: Transform - pos: -27.5,21.5 + pos: -49.5,31.5 parent: 2 - uid: 5157 components: - type: Transform - pos: -28.5,21.5 + pos: -50.5,31.5 parent: 2 - uid: 5158 components: - type: Transform - pos: -28.5,22.5 + pos: -51.5,31.5 parent: 2 - uid: 5159 components: - type: Transform - pos: -29.5,22.5 + pos: -45.5,30.5 parent: 2 - uid: 5160 components: - type: Transform - pos: -30.5,22.5 + pos: -44.5,30.5 parent: 2 - uid: 5161 components: - type: Transform - pos: -31.5,22.5 + pos: -43.5,30.5 parent: 2 - uid: 5162 components: - type: Transform - pos: -32.5,22.5 + pos: -42.5,30.5 parent: 2 - uid: 5163 components: - type: Transform - pos: -32.5,23.5 + pos: -41.5,30.5 parent: 2 - uid: 5164 components: - type: Transform - pos: -32.5,24.5 + pos: -40.5,31.5 parent: 2 - uid: 5165 components: - type: Transform - pos: -32.5,25.5 + pos: -39.5,31.5 parent: 2 - uid: 5166 components: - type: Transform - pos: -32.5,26.5 + pos: -38.5,31.5 parent: 2 - uid: 5167 components: - type: Transform - pos: -32.5,27.5 + pos: -37.5,31.5 parent: 2 - uid: 5168 components: - type: Transform - pos: -31.5,27.5 + pos: -36.5,31.5 parent: 2 - uid: 5169 components: - type: Transform - pos: -30.5,27.5 + pos: -37.5,30.5 parent: 2 - uid: 5170 components: - type: Transform - pos: -33.5,27.5 + pos: -37.5,29.5 parent: 2 - uid: 5171 components: - type: Transform - pos: -32.5,28.5 + pos: -44.5,31.5 parent: 2 - uid: 5172 components: - type: Transform - pos: -32.5,29.5 + pos: -44.5,32.5 parent: 2 - uid: 5173 components: - type: Transform - pos: -32.5,30.5 + pos: -44.5,33.5 parent: 2 - uid: 5174 components: - type: Transform - pos: -33.5,30.5 + pos: -44.5,34.5 parent: 2 - uid: 5175 components: - type: Transform - pos: -33.5,25.5 + pos: -42.5,29.5 parent: 2 - uid: 5176 components: - type: Transform - pos: -34.5,25.5 + pos: -42.5,28.5 parent: 2 - uid: 5177 components: - type: Transform - pos: -35.5,25.5 + pos: -43.5,33.5 parent: 2 - uid: 5178 components: - type: Transform - pos: -36.5,25.5 + pos: -44.5,35.5 parent: 2 - uid: 5179 components: - type: Transform - pos: -37.5,25.5 + pos: -45.5,35.5 parent: 2 - uid: 5180 components: - type: Transform - pos: -38.5,25.5 + pos: -46.5,35.5 parent: 2 - uid: 5181 components: - type: Transform - pos: -38.5,24.5 + pos: -47.5,35.5 parent: 2 - uid: 5182 components: - type: Transform - pos: -38.5,23.5 + pos: -23.5,17.5 parent: 2 - uid: 5183 components: - type: Transform - pos: -38.5,22.5 + pos: -24.5,8.5 parent: 2 - uid: 5184 components: - type: Transform - pos: -39.5,22.5 + pos: -24.5,9.5 parent: 2 - uid: 5185 components: - type: Transform - pos: -40.5,22.5 + pos: -24.5,10.5 parent: 2 - uid: 5186 components: - type: Transform - pos: -41.5,22.5 + pos: -25.5,10.5 parent: 2 - uid: 5187 components: - type: Transform - pos: -42.5,22.5 + pos: -25.5,11.5 parent: 2 - uid: 5188 components: - type: Transform - pos: -43.5,22.5 + pos: -25.5,12.5 parent: 2 - uid: 5189 components: - type: Transform - pos: -44.5,22.5 + pos: -25.5,13.5 parent: 2 - uid: 5190 components: - type: Transform - pos: -45.5,22.5 + pos: -25.5,14.5 parent: 2 - uid: 5191 components: - type: Transform - pos: -46.5,22.5 + pos: -24.5,13.5 parent: 2 - uid: 5192 components: - type: Transform - pos: -47.5,22.5 + pos: -23.5,13.5 parent: 2 - uid: 5193 components: - type: Transform - pos: -48.5,22.5 + pos: -26.5,12.5 parent: 2 - uid: 5194 components: - type: Transform - pos: -49.5,22.5 + pos: -27.5,12.5 parent: 2 - uid: 5195 components: - type: Transform - pos: -50.5,22.5 + pos: -42.5,15.5 parent: 2 - uid: 5196 components: - type: Transform - pos: -32.5,21.5 + pos: -42.5,2.5 parent: 2 - uid: 5197 components: - type: Transform - pos: -32.5,20.5 + pos: -42.5,1.5 parent: 2 - uid: 5198 components: - type: Transform - pos: -32.5,19.5 + pos: -41.5,1.5 parent: 2 - uid: 5199 components: - type: Transform - pos: -32.5,18.5 + pos: -40.5,1.5 parent: 2 - uid: 5200 components: - type: Transform - pos: -33.5,18.5 + pos: -39.5,1.5 parent: 2 - uid: 5201 components: - type: Transform - pos: -30.5,18.5 + pos: -38.5,1.5 parent: 2 - uid: 5202 components: - type: Transform - pos: -31.5,18.5 + pos: -37.5,1.5 parent: 2 - uid: 5203 components: - type: Transform - pos: -36.5,18.5 + pos: -37.5,2.5 parent: 2 - uid: 5204 components: - type: Transform - pos: -37.5,18.5 + pos: -37.5,3.5 parent: 2 - uid: 5205 components: - type: Transform - pos: -38.5,18.5 + pos: -37.5,4.5 parent: 2 - uid: 5206 components: - type: Transform - pos: -39.5,18.5 + pos: -37.5,5.5 parent: 2 - uid: 5207 components: - type: Transform - pos: -40.5,18.5 + pos: -37.5,6.5 parent: 2 - uid: 5208 components: - type: Transform - pos: -41.5,18.5 + pos: -37.5,7.5 parent: 2 - uid: 5209 components: - type: Transform - pos: -42.5,18.5 + pos: -37.5,8.5 parent: 2 - uid: 5210 components: - type: Transform - pos: -43.5,18.5 + pos: -37.5,9.5 parent: 2 - uid: 5211 components: - type: Transform - pos: -44.5,18.5 + pos: -37.5,10.5 parent: 2 - uid: 5212 components: - type: Transform - pos: -45.5,18.5 + pos: -37.5,11.5 parent: 2 - uid: 5213 components: - type: Transform - pos: -46.5,18.5 + pos: -37.5,12.5 parent: 2 - uid: 5214 components: - type: Transform - pos: -47.5,18.5 + pos: -37.5,13.5 parent: 2 - uid: 5215 components: - type: Transform - pos: -37.5,19.5 + pos: -38.5,13.5 parent: 2 - uid: 5216 components: - type: Transform - pos: -37.5,20.5 + pos: -39.5,13.5 parent: 2 - uid: 5217 components: - type: Transform - pos: -37.5,21.5 + pos: -42.5,13.5 parent: 2 - uid: 5218 components: - type: Transform - pos: -36.5,22.5 + pos: -42.5,14.5 parent: 2 - uid: 5219 components: - type: Transform - pos: -47.5,19.5 + pos: -39.5,14.5 parent: 2 - uid: 5220 components: - type: Transform - pos: -48.5,19.5 + pos: -39.5,15.5 parent: 2 - uid: 5221 components: - type: Transform - pos: -49.5,19.5 + pos: -36.5,13.5 parent: 2 - uid: 5222 components: - type: Transform - pos: -50.5,19.5 + pos: -35.5,13.5 parent: 2 - uid: 5223 components: - type: Transform - pos: -46.5,23.5 + pos: -34.5,13.5 parent: 2 - uid: 5224 components: - type: Transform - pos: -46.5,24.5 + pos: -33.5,13.5 parent: 2 - uid: 5225 components: - type: Transform - pos: -46.5,25.5 + pos: -35.5,14.5 parent: 2 - uid: 5226 components: - type: Transform - pos: -43.5,19.5 + pos: -35.5,15.5 parent: 2 - uid: 5227 components: - type: Transform - pos: -41.5,19.5 + pos: -33.5,14.5 parent: 2 - uid: 5228 components: - type: Transform - pos: -31.5,25.5 + pos: -32.5,14.5 parent: 2 - uid: 5229 components: - type: Transform - pos: -30.5,25.5 + pos: -31.5,14.5 parent: 2 - uid: 5230 components: - type: Transform - pos: -29.5,25.5 + pos: -30.5,14.5 parent: 2 - uid: 5231 components: - type: Transform - pos: -28.5,25.5 + pos: -30.5,13.5 parent: 2 - uid: 5232 components: - type: Transform - pos: -27.5,25.5 + pos: -30.5,12.5 parent: 2 - uid: 5233 components: - type: Transform - pos: -25.5,20.5 + pos: -30.5,11.5 parent: 2 - uid: 5234 components: - type: Transform - pos: -25.5,19.5 + pos: -30.5,10.5 parent: 2 - uid: 5235 components: - type: Transform - pos: -25.5,18.5 + pos: -30.5,9.5 parent: 2 - uid: 5236 components: - type: Transform - pos: -26.5,18.5 + pos: -30.5,8.5 parent: 2 - uid: 5237 components: - type: Transform - pos: -27.5,18.5 + pos: -31.5,10.5 parent: 2 - uid: 5238 components: - type: Transform - pos: -29.5,18.5 + pos: -32.5,10.5 parent: 2 - uid: 5239 components: - type: Transform - pos: -28.5,18.5 + pos: -33.5,10.5 parent: 2 - uid: 5240 components: - type: Transform - pos: -18.5,22.5 + pos: -29.5,9.5 parent: 2 - uid: 5241 components: - type: Transform - pos: -18.5,23.5 + pos: -28.5,9.5 parent: 2 - uid: 5242 components: - type: Transform - pos: -24.5,18.5 + pos: -30.5,7.5 parent: 2 - uid: 5243 components: - type: Transform - pos: -51.5,22.5 + pos: -37.5,0.5 parent: 2 - uid: 5244 components: - type: Transform - pos: -52.5,22.5 + pos: -37.5,-0.5 parent: 2 - uid: 5245 components: - type: Transform - pos: -52.5,21.5 + pos: -37.5,-1.5 parent: 2 - uid: 5246 components: - type: Transform - pos: -52.5,-27.5 + pos: -37.5,-2.5 parent: 2 - uid: 5247 components: - type: Transform - pos: -46.5,27.5 + pos: -38.5,-2.5 parent: 2 - uid: 5248 components: - type: Transform - pos: -46.5,28.5 + pos: -39.5,-2.5 parent: 2 - uid: 5249 components: - type: Transform - pos: -46.5,29.5 + pos: -40.5,-2.5 parent: 2 - uid: 5250 components: - type: Transform - pos: -46.5,30.5 + pos: -41.5,-2.5 parent: 2 - uid: 5251 components: - type: Transform - pos: -46.5,31.5 + pos: -42.5,-2.5 parent: 2 - uid: 5252 components: - type: Transform - pos: -46.5,32.5 + pos: -42.5,-3.5 parent: 2 - uid: 5253 components: - type: Transform - pos: -46.5,33.5 + pos: -43.5,-3.5 parent: 2 - uid: 5254 components: - type: Transform - pos: -47.5,33.5 + pos: -44.5,-3.5 parent: 2 - uid: 5255 components: - type: Transform - pos: -48.5,33.5 + pos: -45.5,-3.5 parent: 2 - uid: 5256 components: - type: Transform - pos: -49.5,33.5 + pos: 55.5,12.5 parent: 2 - uid: 5257 components: - type: Transform - pos: -50.5,33.5 + pos: -36.5,-0.5 parent: 2 - uid: 5258 components: - type: Transform - pos: -51.5,33.5 + pos: -35.5,-0.5 parent: 2 - uid: 5259 components: - type: Transform - pos: -47.5,31.5 + pos: -34.5,-0.5 parent: 2 - uid: 5260 components: - type: Transform - pos: -48.5,31.5 + pos: -33.5,-0.5 parent: 2 - uid: 5261 components: - type: Transform - pos: -49.5,31.5 + pos: -32.5,-0.5 parent: 2 - uid: 5262 components: - type: Transform - pos: -50.5,31.5 + pos: -31.5,-0.5 parent: 2 - uid: 5263 components: - type: Transform - pos: -51.5,31.5 + pos: -30.5,-0.5 parent: 2 - uid: 5264 components: - type: Transform - pos: -45.5,30.5 + pos: -29.5,-0.5 parent: 2 - uid: 5265 components: - type: Transform - pos: -44.5,30.5 + pos: -29.5,-1.5 parent: 2 - uid: 5266 components: - type: Transform - pos: -43.5,30.5 + pos: -29.5,-2.5 parent: 2 - uid: 5267 components: - type: Transform - pos: -42.5,30.5 + pos: -29.5,-3.5 parent: 2 - uid: 5268 components: - type: Transform - pos: -41.5,30.5 + pos: -28.5,-3.5 parent: 2 - uid: 5269 components: - type: Transform - pos: -40.5,30.5 + pos: -28.5,-4.5 parent: 2 - uid: 5270 components: - type: Transform - pos: -40.5,31.5 + pos: -28.5,-4.5 parent: 2 - uid: 5271 components: - type: Transform - pos: -39.5,31.5 + pos: -28.5,-5.5 parent: 2 - uid: 5272 components: - type: Transform - pos: -38.5,31.5 + pos: -30.5,0.5 parent: 2 - uid: 5273 components: - type: Transform - pos: -37.5,31.5 + pos: -30.5,1.5 parent: 2 - uid: 5274 components: - type: Transform - pos: -36.5,31.5 + pos: -23.5,18.5 parent: 2 - uid: 5275 components: - type: Transform - pos: -37.5,30.5 + pos: -41.5,26.5 parent: 2 - uid: 5276 components: - type: Transform - pos: -37.5,29.5 + pos: -2.5,24.5 parent: 2 - uid: 5277 components: - type: Transform - pos: -44.5,31.5 + pos: -2.5,23.5 parent: 2 - uid: 5278 components: - type: Transform - pos: -44.5,32.5 + pos: -3.5,23.5 parent: 2 - uid: 5279 components: - type: Transform - pos: -44.5,33.5 + pos: -3.5,22.5 parent: 2 - uid: 5280 components: - type: Transform - pos: -44.5,34.5 + pos: -4.5,22.5 parent: 2 - uid: 5281 components: - type: Transform - pos: -42.5,29.5 + pos: -5.5,22.5 parent: 2 - uid: 5282 components: - type: Transform - pos: -42.5,28.5 + pos: 65.5,-8.5 parent: 2 - uid: 5283 components: - type: Transform - pos: -43.5,33.5 + pos: 65.5,-0.5 parent: 2 - uid: 5284 components: - type: Transform - pos: -44.5,35.5 + pos: 65.5,-1.5 parent: 2 - uid: 5285 components: - type: Transform - pos: -45.5,35.5 + pos: 68.5,-3.5 parent: 2 - uid: 5286 components: - type: Transform - pos: -46.5,35.5 + pos: 65.5,-12.5 parent: 2 - uid: 5287 components: - type: Transform - pos: -47.5,35.5 + pos: 65.5,-10.5 parent: 2 - uid: 5288 components: - type: Transform - pos: -23.5,17.5 + pos: -42.5,0.5 parent: 2 - uid: 5289 components: - type: Transform - pos: -24.5,8.5 + pos: -43.5,0.5 parent: 2 - uid: 5290 components: - type: Transform - pos: -24.5,9.5 + pos: -44.5,0.5 parent: 2 - uid: 5291 components: - type: Transform - pos: -24.5,10.5 + pos: -45.5,0.5 parent: 2 - uid: 5292 components: - type: Transform - pos: -25.5,10.5 + pos: -46.5,0.5 parent: 2 - uid: 5293 components: - type: Transform - pos: -25.5,11.5 + pos: -46.5,1.5 parent: 2 - uid: 5294 components: - type: Transform - pos: -25.5,12.5 + pos: -46.5,2.5 parent: 2 - uid: 5295 components: - type: Transform - pos: -25.5,13.5 + pos: -46.5,3.5 parent: 2 - uid: 5296 components: - type: Transform - pos: -25.5,14.5 + pos: -46.5,4.5 parent: 2 - uid: 5297 components: - type: Transform - pos: -24.5,13.5 + pos: -46.5,5.5 parent: 2 - uid: 5298 components: - type: Transform - pos: -23.5,13.5 + pos: -46.5,6.5 parent: 2 - uid: 5299 components: - type: Transform - pos: -26.5,12.5 + pos: -46.5,7.5 parent: 2 - uid: 5300 components: - type: Transform - pos: -27.5,12.5 + pos: -46.5,8.5 parent: 2 - uid: 5301 components: - type: Transform - pos: -42.5,15.5 + pos: -45.5,5.5 parent: 2 - uid: 5302 components: - type: Transform - pos: -42.5,2.5 + pos: -44.5,5.5 parent: 2 - uid: 5303 components: - type: Transform - pos: -42.5,1.5 + pos: -45.5,3.5 parent: 2 - uid: 5304 components: - type: Transform - pos: -41.5,1.5 + pos: -44.5,3.5 parent: 2 - uid: 5305 components: - type: Transform - pos: -40.5,1.5 + pos: -47.5,7.5 parent: 2 - uid: 5306 components: - type: Transform - pos: -39.5,1.5 + pos: -48.5,7.5 parent: 2 - uid: 5307 components: - type: Transform - pos: -38.5,1.5 + pos: -46.5,9.5 parent: 2 - uid: 5308 components: - type: Transform - pos: -37.5,1.5 + pos: -46.5,10.5 parent: 2 - uid: 5309 components: - type: Transform - pos: -37.5,2.5 + pos: -46.5,11.5 parent: 2 - uid: 5310 components: - type: Transform - pos: -37.5,3.5 + pos: -47.5,11.5 parent: 2 - uid: 5311 components: - type: Transform - pos: -37.5,4.5 + pos: -48.5,11.5 parent: 2 - uid: 5312 components: - type: Transform - pos: -37.5,5.5 + pos: -51.5,11.5 parent: 2 - uid: 5313 components: - type: Transform - pos: -37.5,6.5 + pos: -51.5,10.5 parent: 2 - uid: 5314 components: - type: Transform - pos: -37.5,7.5 + pos: -52.5,10.5 parent: 2 - uid: 5315 components: - type: Transform - pos: -37.5,8.5 + pos: -52.5,9.5 parent: 2 - uid: 5316 components: - type: Transform - pos: -37.5,9.5 + pos: -52.5,8.5 parent: 2 - uid: 5317 components: - type: Transform - pos: -37.5,10.5 + pos: -52.5,7.5 parent: 2 - uid: 5318 components: - type: Transform - pos: -37.5,11.5 + pos: -51.5,12.5 parent: 2 - uid: 5319 components: - type: Transform - pos: -37.5,12.5 + pos: -51.5,13.5 parent: 2 - uid: 5320 components: - type: Transform - pos: -37.5,13.5 + pos: -51.5,14.5 parent: 2 - uid: 5321 components: - type: Transform - pos: -38.5,13.5 + pos: -48.5,12.5 parent: 2 - uid: 5322 components: - type: Transform - pos: -39.5,13.5 + pos: -48.5,13.5 parent: 2 - uid: 5323 components: - type: Transform - pos: -42.5,13.5 + pos: -46.5,12.5 parent: 2 - uid: 5324 components: - type: Transform - pos: -42.5,14.5 + pos: -46.5,13.5 parent: 2 - uid: 5325 components: - type: Transform - pos: -39.5,14.5 + pos: -45.5,11.5 parent: 2 - uid: 5326 components: - type: Transform - pos: -39.5,15.5 + pos: -44.5,11.5 parent: 2 - uid: 5327 components: - type: Transform - pos: -36.5,13.5 + pos: -43.5,11.5 parent: 2 - uid: 5328 components: - type: Transform - pos: -35.5,13.5 + pos: -42.5,11.5 parent: 2 - uid: 5329 components: - type: Transform - pos: -34.5,13.5 + pos: -42.5,10.5 parent: 2 - uid: 5330 components: - type: Transform - pos: -33.5,13.5 + pos: -47.5,7.5 parent: 2 - uid: 5331 components: - type: Transform - pos: -35.5,14.5 + pos: -48.5,-2.5 parent: 2 - uid: 5332 components: - type: Transform - pos: -35.5,15.5 + pos: -48.5,0.5 parent: 2 - uid: 5333 components: - type: Transform - pos: -33.5,14.5 + pos: -49.5,0.5 parent: 2 - uid: 5334 components: - type: Transform - pos: -32.5,14.5 + pos: -49.5,-0.5 parent: 2 - uid: 5335 components: - type: Transform - pos: -31.5,14.5 + pos: -49.5,-1.5 parent: 2 - uid: 5336 components: - type: Transform - pos: -30.5,14.5 + pos: -49.5,-2.5 parent: 2 - uid: 5337 components: - type: Transform - pos: -30.5,13.5 + pos: -49.5,-3.5 parent: 2 - uid: 5338 components: - type: Transform - pos: -30.5,12.5 + pos: -50.5,-3.5 parent: 2 - uid: 5339 components: - type: Transform - pos: -30.5,11.5 + pos: -51.5,-3.5 parent: 2 - uid: 5340 components: - type: Transform - pos: -30.5,10.5 + pos: -52.5,-3.5 parent: 2 - uid: 5341 components: - type: Transform - pos: -30.5,9.5 + pos: -53.5,-3.5 parent: 2 - uid: 5342 components: - type: Transform - pos: -30.5,8.5 + pos: -54.5,-3.5 parent: 2 - uid: 5343 components: - type: Transform - pos: -31.5,10.5 + pos: -53.5,-2.5 parent: 2 - uid: 5344 components: - type: Transform - pos: -32.5,10.5 + pos: -53.5,-1.5 parent: 2 - uid: 5345 components: - type: Transform - pos: -33.5,10.5 + pos: -54.5,-1.5 parent: 2 - uid: 5346 components: - type: Transform - pos: -29.5,9.5 + pos: -55.5,-1.5 parent: 2 - uid: 5347 components: - type: Transform - pos: -28.5,9.5 + pos: -56.5,-1.5 parent: 2 - uid: 5348 components: - type: Transform - pos: -30.5,7.5 + pos: -51.5,-2.5 parent: 2 - uid: 5349 components: - type: Transform - pos: -37.5,0.5 + pos: -51.5,-1.5 parent: 2 - uid: 5350 components: - type: Transform - pos: -37.5,-0.5 + pos: -51.5,-0.5 parent: 2 - uid: 5351 components: - type: Transform - pos: -37.5,-1.5 + pos: -51.5,0.5 parent: 2 - uid: 5352 components: - type: Transform - pos: -37.5,-2.5 + pos: -51.5,1.5 parent: 2 - uid: 5353 components: - type: Transform - pos: -38.5,-2.5 + pos: -51.5,2.5 parent: 2 - uid: 5354 components: - type: Transform - pos: -39.5,-2.5 + pos: -51.5,3.5 parent: 2 - uid: 5355 components: - type: Transform - pos: -40.5,-2.5 + pos: -45.5,-2.5 parent: 2 - uid: 5356 components: - type: Transform - pos: -41.5,-2.5 + pos: -46.5,-2.5 parent: 2 - uid: 5357 components: - type: Transform - pos: -42.5,-2.5 + pos: -47.5,-2.5 parent: 2 - uid: 5358 components: - type: Transform - pos: -42.5,-3.5 + pos: 68.5,-5.5 parent: 2 - uid: 5359 components: - type: Transform - pos: -43.5,-3.5 + pos: 67.5,-5.5 parent: 2 - uid: 5360 components: - type: Transform - pos: -44.5,-3.5 + pos: 66.5,-5.5 parent: 2 - uid: 5361 components: - type: Transform - pos: -45.5,-3.5 + pos: 65.5,-6.5 parent: 2 - uid: 5362 components: - type: Transform - pos: 55.5,12.5 + pos: 65.5,-7.5 parent: 2 - uid: 5363 components: - type: Transform - pos: -36.5,-0.5 + pos: 65.5,-9.5 parent: 2 - uid: 5364 components: - type: Transform - pos: -35.5,-0.5 + pos: 66.5,-3.5 parent: 2 - uid: 5365 components: - type: Transform - pos: -34.5,-0.5 + pos: 65.5,-2.5 parent: 2 - uid: 5366 components: - type: Transform - pos: -33.5,-0.5 + pos: 67.5,-3.5 parent: 2 - uid: 5367 components: - type: Transform - pos: -32.5,-0.5 + pos: -28.5,1.5 parent: 2 - uid: 5368 components: - type: Transform - pos: -31.5,-0.5 + pos: -27.5,1.5 parent: 2 - uid: 5369 components: - type: Transform - pos: -30.5,-0.5 + pos: -27.5,0.5 parent: 2 - uid: 5370 components: - type: Transform - pos: -29.5,-0.5 + pos: 22.5,-46.5 parent: 2 - uid: 5371 components: - type: Transform - pos: -29.5,-1.5 + pos: -11.5,26.5 parent: 2 - uid: 5372 components: - type: Transform - pos: -29.5,-2.5 + pos: -13.5,26.5 parent: 2 - uid: 5373 components: - type: Transform - pos: -29.5,-3.5 + pos: -26.5,0.5 parent: 2 - uid: 5374 components: - type: Transform - pos: -28.5,-3.5 + pos: -8.5,14.5 parent: 2 - uid: 5375 components: - type: Transform - pos: -28.5,-4.5 + pos: -8.5,15.5 parent: 2 - uid: 5376 components: - type: Transform - pos: -28.5,-4.5 + pos: -1.5,-80.5 parent: 2 - uid: 5377 components: - type: Transform - pos: -28.5,-5.5 + pos: -1.5,-81.5 parent: 2 - uid: 5378 components: - type: Transform - pos: -30.5,0.5 + pos: -1.5,-82.5 parent: 2 - uid: 5379 components: - type: Transform - pos: -30.5,1.5 + pos: -74.5,-25.5 parent: 2 - uid: 5380 components: - type: Transform - pos: -23.5,18.5 + pos: -56.5,-18.5 parent: 2 - uid: 5381 components: - type: Transform - pos: -41.5,26.5 + pos: -23.5,10.5 parent: 2 - uid: 5382 components: - type: Transform - pos: -2.5,24.5 + pos: -22.5,10.5 parent: 2 - uid: 5383 components: - type: Transform - pos: -2.5,23.5 + pos: -22.5,11.5 parent: 2 - uid: 5384 components: - type: Transform - pos: -3.5,23.5 + pos: 41.5,14.5 parent: 2 - uid: 5385 components: - type: Transform - pos: -3.5,22.5 + pos: 42.5,14.5 parent: 2 - uid: 5386 components: - type: Transform - pos: -4.5,22.5 + pos: -75.5,-11.5 parent: 2 - uid: 5387 components: - type: Transform - pos: -5.5,22.5 + pos: -75.5,-10.5 parent: 2 - uid: 5388 components: - type: Transform - pos: 65.5,-8.5 + pos: -75.5,-9.5 parent: 2 - uid: 5389 components: - type: Transform - pos: 65.5,-0.5 + pos: -75.5,-8.5 parent: 2 - uid: 5390 components: - type: Transform - pos: 65.5,-1.5 + pos: -75.5,-7.5 parent: 2 - uid: 5391 components: - type: Transform - pos: 68.5,-3.5 + pos: -75.5,-6.5 parent: 2 - uid: 5392 components: - type: Transform - pos: 65.5,-12.5 + pos: -75.5,-5.5 parent: 2 - uid: 5393 components: - type: Transform - pos: 65.5,-10.5 + pos: -75.5,-4.5 parent: 2 - uid: 5394 components: - type: Transform - pos: -42.5,0.5 + pos: -74.5,-4.5 parent: 2 - uid: 5395 components: - type: Transform - pos: -43.5,0.5 + pos: -73.5,-4.5 parent: 2 - uid: 5396 components: - type: Transform - pos: -44.5,0.5 + pos: -72.5,-4.5 parent: 2 - uid: 5397 components: - type: Transform - pos: -45.5,0.5 + pos: -71.5,-4.5 parent: 2 - uid: 5398 components: - type: Transform - pos: -46.5,0.5 + pos: -70.5,-4.5 parent: 2 - uid: 5399 components: - type: Transform - pos: -46.5,1.5 + pos: -69.5,-4.5 parent: 2 - uid: 5400 components: - type: Transform - pos: -46.5,2.5 + pos: -68.5,-4.5 parent: 2 - uid: 5401 components: - type: Transform - pos: -46.5,3.5 + pos: -67.5,-4.5 parent: 2 - uid: 5402 components: - type: Transform - pos: -46.5,4.5 + pos: -66.5,-4.5 parent: 2 - uid: 5403 components: - type: Transform - pos: -46.5,5.5 + pos: -65.5,-4.5 parent: 2 - uid: 5404 components: - type: Transform - pos: -46.5,6.5 + pos: -64.5,-4.5 parent: 2 - uid: 5405 components: - type: Transform - pos: -46.5,7.5 + pos: -46.5,37.5 parent: 2 - uid: 5406 components: - type: Transform - pos: -46.5,8.5 + pos: -46.5,40.5 parent: 2 - uid: 5407 components: - type: Transform - pos: -45.5,5.5 + pos: -47.5,41.5 parent: 2 - uid: 5408 components: - type: Transform - pos: -44.5,5.5 + pos: -46.5,41.5 parent: 2 - uid: 5409 components: - type: Transform - pos: -45.5,3.5 + pos: -45.5,41.5 parent: 2 - uid: 5410 components: - type: Transform - pos: -44.5,3.5 + pos: -45.5,42.5 parent: 2 - uid: 5411 components: - type: Transform - pos: -47.5,7.5 + pos: -45.5,46.5 parent: 2 - uid: 5412 components: - type: Transform - pos: -48.5,7.5 + pos: -45.5,47.5 parent: 2 - uid: 5413 components: - type: Transform - pos: -46.5,9.5 + pos: -45.5,48.5 parent: 2 - uid: 5414 components: - type: Transform - pos: -46.5,10.5 + pos: -45.5,49.5 parent: 2 - uid: 5415 components: - type: Transform - pos: -46.5,11.5 + pos: -46.5,49.5 parent: 2 - uid: 5416 components: - type: Transform - pos: -47.5,11.5 + pos: -46.5,50.5 parent: 2 - uid: 5417 components: - type: Transform - pos: -48.5,11.5 + pos: -46.5,51.5 parent: 2 - uid: 5418 components: - type: Transform - pos: -49.5,11.5 + pos: -46.5,52.5 parent: 2 - uid: 5419 components: - type: Transform - pos: -50.5,11.5 + pos: -46.5,53.5 parent: 2 - uid: 5420 components: - type: Transform - pos: -51.5,11.5 + pos: -45.5,53.5 parent: 2 - uid: 5421 components: - type: Transform - pos: -51.5,10.5 + pos: -44.5,53.5 parent: 2 - uid: 5422 components: - type: Transform - pos: -52.5,10.5 + pos: -43.5,53.5 parent: 2 - uid: 5423 components: - type: Transform - pos: -52.5,9.5 + pos: -42.5,53.5 parent: 2 - uid: 5424 components: - type: Transform - pos: -52.5,8.5 + pos: -41.5,53.5 parent: 2 - uid: 5425 components: - type: Transform - pos: -52.5,7.5 + pos: -40.5,53.5 parent: 2 - uid: 5426 components: - type: Transform - pos: -51.5,12.5 + pos: -39.5,53.5 parent: 2 - uid: 5427 components: - type: Transform - pos: -51.5,13.5 + pos: -38.5,53.5 parent: 2 - uid: 5428 components: - type: Transform - pos: -51.5,14.5 + pos: -37.5,53.5 parent: 2 - uid: 5429 components: - type: Transform - pos: -48.5,12.5 + pos: -47.5,53.5 parent: 2 - uid: 5430 components: - type: Transform - pos: -48.5,13.5 + pos: -48.5,53.5 parent: 2 - uid: 5431 components: - type: Transform - pos: -48.5,14.5 + pos: -49.5,53.5 parent: 2 - uid: 5432 components: - type: Transform - pos: -46.5,12.5 + pos: -50.5,53.5 parent: 2 - uid: 5433 components: - type: Transform - pos: -46.5,13.5 + pos: -51.5,53.5 parent: 2 - uid: 5434 components: - type: Transform - pos: -46.5,14.5 + pos: -52.5,53.5 parent: 2 - uid: 5435 components: - type: Transform - pos: -45.5,11.5 + pos: 9.5,-64.5 parent: 2 - uid: 5436 components: - type: Transform - pos: -44.5,11.5 + pos: 14.5,-65.5 parent: 2 - uid: 5437 components: - type: Transform - pos: -43.5,11.5 + pos: 26.5,31.5 parent: 2 - uid: 5438 components: - type: Transform - pos: -42.5,11.5 + pos: 25.5,31.5 parent: 2 - uid: 5439 components: - type: Transform - pos: -42.5,10.5 + pos: 24.5,31.5 parent: 2 - uid: 5440 components: - type: Transform - pos: -47.5,7.5 + pos: 24.5,32.5 parent: 2 - uid: 5441 components: - type: Transform - pos: -47.5,0.5 + pos: 24.5,33.5 parent: 2 - uid: 5442 components: - type: Transform - pos: -48.5,0.5 + pos: 24.5,34.5 parent: 2 - uid: 5443 components: - type: Transform - pos: -49.5,0.5 + pos: 54.5,28.5 parent: 2 - uid: 5444 components: - type: Transform - pos: -49.5,-0.5 + pos: 53.5,28.5 parent: 2 - uid: 5445 components: - type: Transform - pos: -49.5,-1.5 + pos: -62.5,-30.5 parent: 2 - uid: 5446 components: - type: Transform - pos: -49.5,-2.5 + pos: -61.5,-30.5 parent: 2 - uid: 5447 components: - type: Transform - pos: -49.5,-3.5 + pos: -60.5,-30.5 parent: 2 - uid: 5448 components: - type: Transform - pos: -50.5,-3.5 + pos: -40.5,-41.5 parent: 2 - uid: 5449 components: - type: Transform - pos: -51.5,-3.5 + pos: 48.5,-46.5 parent: 2 - uid: 5450 components: - type: Transform - pos: -52.5,-3.5 + pos: 48.5,-48.5 parent: 2 - uid: 5451 components: - type: Transform - pos: -53.5,-3.5 + pos: 28.5,-5.5 parent: 2 - uid: 5452 components: - type: Transform - pos: -54.5,-3.5 + pos: -24.5,-13.5 parent: 2 - uid: 5453 components: - type: Transform - pos: -53.5,-2.5 + pos: 65.5,-43.5 parent: 2 - uid: 5454 components: - type: Transform - pos: -53.5,-1.5 + pos: -52.5,-73.5 parent: 2 - uid: 5455 components: - type: Transform - pos: -54.5,-1.5 + pos: -51.5,-73.5 parent: 2 - uid: 5456 components: - type: Transform - pos: -55.5,-1.5 + pos: -51.5,-74.5 parent: 2 - uid: 5457 components: - type: Transform - pos: -56.5,-1.5 + pos: -46.5,-75.5 parent: 2 - uid: 5458 components: - type: Transform - pos: -51.5,-2.5 + pos: 59.5,-32.5 parent: 2 - uid: 5459 components: - type: Transform - pos: -51.5,-1.5 + pos: 52.5,-13.5 parent: 2 - uid: 5460 components: - type: Transform - pos: -51.5,-0.5 + pos: 52.5,-14.5 parent: 2 - uid: 5461 components: - type: Transform - pos: -51.5,0.5 + pos: 52.5,-15.5 parent: 2 - uid: 5462 components: - type: Transform - pos: -51.5,1.5 + pos: 65.5,-11.5 parent: 2 - uid: 5463 components: - type: Transform - pos: -51.5,2.5 + pos: 65.5,-13.5 parent: 2 - uid: 5464 components: - type: Transform - pos: -51.5,3.5 + pos: 65.5,-5.5 parent: 2 - uid: 5465 components: - type: Transform - pos: -45.5,-2.5 + pos: 65.5,-3.5 parent: 2 - uid: 5466 components: - type: Transform - pos: -46.5,-2.5 + pos: 11.5,-5.5 parent: 2 - uid: 5467 components: - type: Transform - pos: -47.5,-2.5 + pos: 10.5,-0.5 parent: 2 - uid: 5468 components: - type: Transform - pos: 3.5,-64.5 + pos: 9.5,-0.5 parent: 2 - uid: 5469 components: - type: Transform - pos: 68.5,-5.5 + pos: 9.5,-1.5 parent: 2 - uid: 5470 components: - type: Transform - pos: -19.5,-52.5 + pos: 10.5,-5.5 parent: 2 - uid: 5471 components: - type: Transform - pos: -20.5,-52.5 + pos: 9.5,-5.5 parent: 2 - uid: 5472 components: - type: Transform - pos: 67.5,-5.5 + pos: 17.5,-43.5 parent: 2 - uid: 5473 components: - type: Transform - pos: 66.5,-5.5 + pos: 18.5,-43.5 parent: 2 - uid: 5474 components: - type: Transform - pos: 65.5,-6.5 + pos: 16.5,-43.5 parent: 2 - uid: 5475 components: - type: Transform - pos: 65.5,-7.5 + pos: 11.5,-41.5 parent: 2 - uid: 5476 components: - type: Transform - pos: 65.5,-9.5 + pos: 33.5,-42.5 parent: 2 - uid: 5477 components: - type: Transform - pos: 66.5,-3.5 + pos: 34.5,-21.5 parent: 2 - uid: 5478 components: - type: Transform - pos: 65.5,-2.5 + pos: 32.5,-42.5 parent: 2 - uid: 5479 components: - type: Transform - pos: 67.5,-3.5 + pos: 34.5,-24.5 parent: 2 - uid: 5480 components: - type: Transform - pos: -28.5,1.5 + pos: 34.5,-23.5 parent: 2 - uid: 5481 components: - type: Transform - pos: -27.5,1.5 + pos: 34.5,-22.5 parent: 2 - uid: 5482 components: - type: Transform - pos: -27.5,0.5 + pos: -7.5,5.5 parent: 2 - uid: 5483 components: - type: Transform - pos: 22.5,-46.5 + pos: 1.5,5.5 parent: 2 - uid: 5484 components: - type: Transform - pos: -11.5,26.5 + pos: 11.5,-25.5 parent: 2 - uid: 5485 components: - type: Transform - pos: -13.5,26.5 + pos: 2.5,5.5 parent: 2 - uid: 5486 components: - type: Transform - pos: -26.5,0.5 + pos: -6.5,5.5 parent: 2 - uid: 5487 components: - type: Transform - pos: -8.5,14.5 + pos: 3.5,5.5 parent: 2 - uid: 5488 components: - type: Transform - pos: -8.5,15.5 + pos: -4.5,5.5 parent: 2 - uid: 5489 components: - type: Transform - pos: -1.5,-80.5 + pos: -3.5,3.5 parent: 2 - uid: 5490 components: - type: Transform - pos: -1.5,-81.5 + pos: -5.5,5.5 parent: 2 - uid: 5491 components: - type: Transform - pos: -1.5,-82.5 + pos: -4.5,3.5 parent: 2 - uid: 5492 components: - type: Transform - pos: -74.5,-25.5 + pos: -18.5,4.5 parent: 2 - uid: 5493 components: - type: Transform - pos: -56.5,-18.5 + pos: -5.5,3.5 parent: 2 - uid: 5494 components: - type: Transform - pos: -23.5,10.5 + pos: -20.5,4.5 parent: 2 - uid: 5495 components: - type: Transform - pos: -22.5,10.5 + pos: -17.5,4.5 parent: 2 - uid: 5496 components: - type: Transform - pos: -22.5,11.5 + pos: -19.5,4.5 parent: 2 - uid: 5497 components: - type: Transform - pos: 41.5,14.5 + pos: -21.5,4.5 parent: 2 - uid: 5498 components: - type: Transform - pos: 42.5,14.5 + pos: -44.5,8.5 parent: 2 - uid: 5499 components: - type: Transform - pos: -75.5,-11.5 + pos: -44.5,4.5 parent: 2 - uid: 5500 components: - type: Transform - pos: -75.5,-10.5 + pos: -45.5,8.5 parent: 2 - uid: 5501 components: - type: Transform - pos: -75.5,-9.5 + pos: -44.5,6.5 parent: 2 - uid: 5502 components: - type: Transform - pos: -75.5,-8.5 + pos: -44.5,7.5 parent: 2 - uid: 5503 components: - type: Transform - pos: -75.5,-7.5 + pos: -22.5,-9.5 parent: 2 - uid: 5504 components: - type: Transform - pos: -75.5,-6.5 + pos: -48.5,10.5 parent: 2 - uid: 5505 components: - type: Transform - pos: -75.5,-5.5 + pos: -22.5,-10.5 parent: 2 - uid: 5506 components: - type: Transform - pos: -75.5,-4.5 + pos: -50.5,10.5 parent: 2 - uid: 5507 components: - type: Transform - pos: -74.5,-4.5 + pos: -49.5,10.5 parent: 2 - uid: 5508 components: - type: Transform - pos: -73.5,-4.5 + pos: -22.5,-11.5 parent: 2 - uid: 5509 components: - type: Transform - pos: -72.5,-4.5 + pos: -2.5,-47.5 parent: 2 - uid: 5510 components: - type: Transform - pos: -71.5,-4.5 + pos: -37.5,-41.5 parent: 2 - uid: 5511 components: - type: Transform - pos: -70.5,-4.5 + pos: -3.5,-47.5 parent: 2 - uid: 5512 components: - type: Transform - pos: -69.5,-4.5 + pos: -37.5,-42.5 parent: 2 - uid: 5513 components: - type: Transform - pos: -68.5,-4.5 + pos: -38.5,-41.5 parent: 2 - uid: 5514 components: - type: Transform - pos: -67.5,-4.5 + pos: -39.5,-41.5 parent: 2 - uid: 5515 components: - type: Transform - pos: -66.5,-4.5 + pos: 52.5,-40.5 parent: 2 - uid: 5516 components: - type: Transform - pos: -65.5,-4.5 + pos: 63.5,-48.5 parent: 2 - uid: 5517 components: - type: Transform - pos: -64.5,-4.5 + pos: 52.5,-39.5 parent: 2 - uid: 5518 components: - type: Transform - pos: -47.5,39.5 + pos: 51.5,-39.5 parent: 2 - uid: 5519 components: - type: Transform - pos: -47.5,40.5 + pos: 68.5,-48.5 parent: 2 - uid: 5520 components: - type: Transform - pos: -47.5,41.5 + pos: 66.5,-48.5 parent: 2 - uid: 5521 components: - type: Transform - pos: -46.5,41.5 + pos: 52.5,-41.5 parent: 2 - uid: 5522 components: - type: Transform - pos: -45.5,41.5 + pos: 65.5,-48.5 parent: 2 - uid: 5523 components: - type: Transform - pos: -45.5,42.5 + pos: 64.5,-48.5 parent: 2 - uid: 5524 components: - type: Transform - pos: -45.5,46.5 + pos: -14.5,-73.5 parent: 2 - uid: 5525 components: - type: Transform - pos: -45.5,47.5 + pos: -14.5,-71.5 parent: 2 - uid: 5526 components: - type: Transform - pos: -45.5,48.5 + pos: -15.5,-73.5 parent: 2 - uid: 5527 components: - type: Transform - pos: -45.5,49.5 + pos: -15.5,-72.5 parent: 2 - uid: 5528 components: - type: Transform - pos: -46.5,49.5 + pos: -37.5,22.5 parent: 2 - uid: 5529 components: - type: Transform - pos: -46.5,50.5 + pos: -15.5,-71.5 parent: 2 - uid: 5530 components: - type: Transform - pos: -46.5,51.5 + pos: -11.5,-71.5 parent: 2 - uid: 5531 components: - type: Transform - pos: -46.5,52.5 + pos: -12.5,-71.5 parent: 2 - uid: 5532 components: - type: Transform - pos: -46.5,53.5 + pos: -13.5,-71.5 parent: 2 - uid: 5533 components: - type: Transform - pos: -45.5,53.5 + pos: -45.5,33.5 parent: 2 - uid: 5534 components: - type: Transform - pos: -44.5,53.5 + pos: -44.5,28.5 parent: 2 - uid: 5535 components: - type: Transform - pos: -43.5,53.5 + pos: -10.5,-71.5 parent: 2 - uid: 5536 components: - type: Transform - pos: -42.5,53.5 + pos: -45.5,28.5 parent: 2 - uid: 5537 components: - type: Transform - pos: -41.5,53.5 + pos: -43.5,28.5 parent: 2 - uid: 5538 components: - type: Transform - pos: -40.5,53.5 + pos: -41.5,31.5 parent: 2 - uid: 5539 components: - type: Transform - pos: -39.5,53.5 + pos: -42.5,33.5 parent: 2 - uid: 5540 components: - type: Transform - pos: -38.5,53.5 + pos: -41.5,32.5 parent: 2 - uid: 5541 components: - type: Transform - pos: -37.5,53.5 + pos: -41.5,33.5 parent: 2 - uid: 5542 components: - type: Transform - pos: -47.5,53.5 + pos: -20.5,18.5 parent: 2 - uid: 5543 components: - type: Transform - pos: -48.5,53.5 + pos: -20.5,20.5 parent: 2 - uid: 5544 components: - type: Transform - pos: -49.5,53.5 + pos: -20.5,16.5 parent: 2 - uid: 5545 components: - type: Transform - pos: -50.5,53.5 + pos: -20.5,19.5 parent: 2 - uid: 5546 components: - type: Transform - pos: -51.5,53.5 + pos: -20.5,17.5 parent: 2 - uid: 5547 components: - type: Transform - pos: -52.5,53.5 + pos: -19.5,16.5 parent: 2 - uid: 5548 components: - type: Transform - pos: 10.5,-65.5 + pos: 53.5,-6.5 parent: 2 - uid: 5549 components: - type: Transform - pos: 11.5,-65.5 + pos: 52.5,-6.5 parent: 2 - uid: 5550 components: - type: Transform - pos: 12.5,-65.5 + pos: 51.5,-6.5 parent: 2 - uid: 5551 components: - type: Transform - pos: 13.5,-65.5 + pos: 51.5,-7.5 parent: 2 - uid: 5552 components: - type: Transform - pos: 14.5,-65.5 + pos: 5.5,21.5 parent: 2 - uid: 5553 components: - type: Transform - pos: 26.5,31.5 + pos: 6.5,21.5 parent: 2 - uid: 5554 components: - type: Transform - pos: 25.5,31.5 + pos: 7.5,15.5 parent: 2 - uid: 5555 components: - type: Transform - pos: 24.5,31.5 + pos: 8.5,15.5 parent: 2 - uid: 5556 components: - type: Transform - pos: 24.5,32.5 + pos: 2.5,20.5 parent: 2 - uid: 5557 components: - type: Transform - pos: 24.5,33.5 + pos: 2.5,19.5 parent: 2 - uid: 5558 components: - type: Transform - pos: 24.5,34.5 + pos: 2.5,18.5 parent: 2 - uid: 5559 components: - type: Transform - pos: 54.5,28.5 + pos: 42.5,15.5 parent: 2 - uid: 5560 components: - type: Transform - pos: 53.5,28.5 + pos: 42.5,16.5 parent: 2 - uid: 5561 components: - type: Transform - pos: -62.5,-30.5 + pos: 41.5,16.5 parent: 2 - uid: 5562 components: - type: Transform - pos: -61.5,-30.5 + pos: 40.5,16.5 parent: 2 - uid: 5563 components: - type: Transform - pos: -60.5,-30.5 + pos: 39.5,16.5 parent: 2 - uid: 5564 components: - type: Transform - pos: -40.5,-41.5 + pos: 38.5,16.5 parent: 2 - uid: 5565 components: - type: Transform - pos: 48.5,-46.5 + pos: 37.5,16.5 parent: 2 - uid: 5566 components: - type: Transform - pos: 48.5,-48.5 + pos: 36.5,16.5 parent: 2 - uid: 5567 components: - type: Transform - pos: 28.5,-5.5 + pos: 34.5,16.5 parent: 2 - uid: 5568 components: - type: Transform - pos: -24.5,-13.5 + pos: 33.5,16.5 parent: 2 - uid: 5569 components: - type: Transform - pos: 65.5,-43.5 + pos: 42.5,13.5 parent: 2 - uid: 5570 components: - type: Transform - pos: -52.5,-73.5 + pos: 42.5,12.5 parent: 2 - uid: 5571 components: - type: Transform - pos: -51.5,-73.5 + pos: 28.5,28.5 parent: 2 - uid: 5572 components: - type: Transform - pos: -51.5,-74.5 + pos: 31.5,28.5 parent: 2 - uid: 5573 components: - type: Transform - pos: -46.5,-75.5 + pos: 30.5,28.5 parent: 2 - uid: 5574 components: - type: Transform - pos: 59.5,-32.5 + pos: -51.5,-75.5 parent: 2 - uid: 5575 components: - type: Transform - pos: 52.5,-13.5 + pos: -51.5,-77.5 parent: 2 - uid: 5576 components: - type: Transform - pos: 52.5,-14.5 + pos: -51.5,-78.5 parent: 2 - uid: 5577 components: - type: Transform - pos: 52.5,-15.5 + pos: -51.5,-79.5 parent: 2 - uid: 5578 components: - type: Transform - pos: 65.5,-11.5 + pos: -52.5,-79.5 parent: 2 - uid: 5579 components: - type: Transform - pos: 65.5,-13.5 + pos: 38.5,17.5 parent: 2 - uid: 5580 components: - type: Transform - pos: 65.5,-5.5 + pos: 18.5,-31.5 parent: 2 - uid: 5581 components: - type: Transform - pos: 65.5,-3.5 + pos: 52.5,10.5 parent: 2 - uid: 5582 components: - type: Transform - pos: 11.5,-5.5 + pos: 45.5,-72.5 parent: 2 - uid: 5583 components: - type: Transform - pos: 10.5,-0.5 + pos: 29.5,-27.5 parent: 2 - uid: 5584 components: - type: Transform - pos: 9.5,-0.5 + pos: 29.5,-26.5 parent: 2 - uid: 5585 components: - type: Transform - pos: 9.5,-1.5 + pos: 29.5,-25.5 parent: 2 - uid: 5586 components: - type: Transform - pos: 10.5,-5.5 + pos: 31.5,-42.5 parent: 2 - uid: 5587 components: - type: Transform - pos: 9.5,-5.5 + pos: 30.5,-42.5 parent: 2 - uid: 5588 components: - type: Transform - pos: 17.5,-43.5 + pos: 28.5,-41.5 parent: 2 - uid: 5589 components: - type: Transform - pos: 18.5,-43.5 + pos: 38.5,-60.5 parent: 2 - uid: 5590 components: - type: Transform - pos: 16.5,-43.5 + pos: 38.5,-61.5 parent: 2 - uid: 5591 components: - type: Transform - pos: 11.5,-41.5 + pos: 38.5,-62.5 parent: 2 - uid: 5592 components: - type: Transform - pos: 33.5,-42.5 + pos: 38.5,-63.5 parent: 2 - uid: 5593 components: - type: Transform - pos: 34.5,-21.5 + pos: 38.5,-64.5 parent: 2 - uid: 5594 components: - type: Transform - pos: 32.5,-42.5 + pos: 38.5,-65.5 parent: 2 - uid: 5595 components: - type: Transform - pos: 34.5,-24.5 + pos: 38.5,-66.5 parent: 2 - uid: 5596 components: - type: Transform - pos: 34.5,-23.5 + pos: 38.5,-67.5 parent: 2 - uid: 5597 components: - type: Transform - pos: 34.5,-22.5 + pos: 38.5,-68.5 parent: 2 - uid: 5598 components: - type: Transform - pos: -7.5,5.5 + pos: 38.5,-69.5 parent: 2 - uid: 5599 components: - type: Transform - pos: 1.5,5.5 + pos: 38.5,-70.5 parent: 2 - uid: 5600 components: - type: Transform - pos: 11.5,-25.5 + pos: 38.5,-71.5 parent: 2 - uid: 5601 components: - type: Transform - pos: 2.5,5.5 + pos: 14.5,-64.5 parent: 2 - uid: 5602 components: - type: Transform - pos: -6.5,5.5 + pos: 14.5,-63.5 parent: 2 - uid: 5603 components: - type: Transform - pos: 3.5,5.5 + pos: 14.5,-62.5 parent: 2 - uid: 5604 components: - type: Transform - pos: -4.5,5.5 + pos: 14.5,-61.5 parent: 2 - uid: 5605 components: - type: Transform - pos: -3.5,3.5 + pos: 14.5,-60.5 parent: 2 - uid: 5606 components: - type: Transform - pos: -5.5,5.5 + pos: 14.5,-59.5 parent: 2 - uid: 5607 components: - type: Transform - pos: -4.5,3.5 + pos: 14.5,-58.5 parent: 2 - uid: 5608 components: - type: Transform - pos: -18.5,4.5 + pos: 10.5,-64.5 parent: 2 - uid: 5609 components: - type: Transform - pos: -5.5,3.5 + pos: 11.5,-64.5 parent: 2 - uid: 5610 components: - type: Transform - pos: -20.5,4.5 + pos: 12.5,-64.5 parent: 2 - uid: 5611 components: - type: Transform - pos: -17.5,4.5 + pos: 12.5,-63.5 parent: 2 - uid: 5612 components: - type: Transform - pos: -19.5,4.5 + pos: 12.5,-62.5 parent: 2 - uid: 5613 components: - type: Transform - pos: -21.5,4.5 + pos: 12.5,-61.5 parent: 2 - uid: 5614 components: - type: Transform - pos: -44.5,8.5 + pos: 12.5,-60.5 parent: 2 - uid: 5615 components: - type: Transform - pos: -44.5,4.5 + pos: 12.5,-59.5 parent: 2 - uid: 5616 components: - type: Transform - pos: -45.5,8.5 + pos: 12.5,-58.5 parent: 2 - uid: 5617 components: - type: Transform - pos: -44.5,6.5 + pos: 12.5,-57.5 parent: 2 - uid: 5618 components: - type: Transform - pos: -44.5,7.5 + pos: 12.5,-56.5 parent: 2 - uid: 5619 components: - type: Transform - pos: -22.5,-9.5 + pos: 14.5,-57.5 parent: 2 - uid: 5620 components: - type: Transform - pos: -48.5,10.5 + pos: 13.5,-57.5 parent: 2 - uid: 5621 components: - type: Transform - pos: -22.5,-10.5 + pos: -33.5,-71.5 parent: 2 - uid: 5622 components: - type: Transform - pos: -50.5,10.5 + pos: -33.5,-72.5 parent: 2 - uid: 5623 components: - type: Transform - pos: -49.5,10.5 + pos: -26.5,-73.5 parent: 2 - uid: 5624 components: - type: Transform - pos: -22.5,-11.5 + pos: -28.5,-73.5 parent: 2 - uid: 5625 components: - type: Transform - pos: -2.5,-47.5 + pos: -29.5,-72.5 parent: 2 - uid: 5626 components: - type: Transform - pos: -37.5,-41.5 + pos: -29.5,-75.5 parent: 2 - uid: 5627 components: - type: Transform - pos: -3.5,-47.5 + pos: -30.5,-71.5 parent: 2 - uid: 5628 components: - type: Transform - pos: -37.5,-42.5 + pos: -30.5,-70.5 parent: 2 - uid: 5629 components: - type: Transform - pos: -38.5,-41.5 + pos: -30.5,-69.5 parent: 2 - uid: 5630 components: - type: Transform - pos: -39.5,-41.5 + pos: -29.5,-69.5 parent: 2 - uid: 5631 components: - type: Transform - pos: 52.5,-40.5 + pos: -28.5,-69.5 parent: 2 - uid: 5632 components: - type: Transform - pos: 63.5,-48.5 + pos: -27.5,-69.5 parent: 2 - uid: 5633 components: - type: Transform - pos: 52.5,-39.5 + pos: -27.5,-70.5 parent: 2 - uid: 5634 components: - type: Transform - pos: 51.5,-39.5 + pos: -27.5,-71.5 parent: 2 - uid: 5635 components: - type: Transform - pos: 68.5,-48.5 + pos: -27.5,-73.5 parent: 2 - uid: 5636 components: - type: Transform - pos: 66.5,-48.5 + pos: -27.5,-74.5 parent: 2 - uid: 5637 components: - type: Transform - pos: 52.5,-41.5 + pos: -27.5,-75.5 parent: 2 - uid: 5638 components: - type: Transform - pos: 65.5,-48.5 + pos: -28.5,-75.5 parent: 2 - uid: 5639 components: - type: Transform - pos: 64.5,-48.5 + pos: -30.5,-75.5 parent: 2 - uid: 5640 components: - type: Transform - pos: -14.5,-73.5 + pos: -30.5,-74.5 parent: 2 - uid: 5641 components: - type: Transform - pos: -14.5,-71.5 + pos: -30.5,-73.5 parent: 2 - uid: 5642 components: - type: Transform - pos: -15.5,-73.5 + pos: -28.5,-71.5 parent: 2 - uid: 5643 components: - type: Transform - pos: -15.5,-72.5 + pos: -29.5,-72.5 parent: 2 - uid: 5644 components: - type: Transform - pos: -37.5,22.5 + pos: -29.5,-71.5 parent: 2 - uid: 5645 components: - type: Transform - pos: -15.5,-71.5 + pos: 52.5,38.5 parent: 2 - uid: 5646 components: - type: Transform - pos: -11.5,-71.5 + pos: 52.5,37.5 parent: 2 - uid: 5647 components: - type: Transform - pos: -12.5,-71.5 + pos: 52.5,36.5 parent: 2 - uid: 5648 components: - type: Transform - pos: -13.5,-71.5 + pos: 52.5,35.5 parent: 2 - uid: 5649 components: - type: Transform - pos: -45.5,33.5 + pos: 52.5,34.5 parent: 2 - uid: 5650 components: - type: Transform - pos: -44.5,28.5 + pos: 52.5,33.5 parent: 2 - uid: 5651 components: - type: Transform - pos: -10.5,-71.5 + pos: 52.5,32.5 parent: 2 - uid: 5652 components: - type: Transform - pos: -45.5,28.5 + pos: 52.5,31.5 parent: 2 - uid: 5653 components: - type: Transform - pos: -43.5,28.5 + pos: 51.5,31.5 parent: 2 - uid: 5654 components: - type: Transform - pos: -41.5,31.5 + pos: 50.5,31.5 parent: 2 - uid: 5655 components: - type: Transform - pos: -42.5,33.5 + pos: 49.5,31.5 parent: 2 - uid: 5656 components: - type: Transform - pos: -41.5,32.5 + pos: 48.5,31.5 parent: 2 - uid: 5657 components: - type: Transform - pos: -41.5,33.5 + pos: 48.5,30.5 parent: 2 - uid: 5658 components: - type: Transform - pos: -20.5,18.5 + pos: 48.5,29.5 parent: 2 - uid: 5659 components: - type: Transform - pos: -20.5,20.5 + pos: 48.5,28.5 parent: 2 - uid: 5660 components: - type: Transform - pos: -20.5,16.5 + pos: 53.5,37.5 parent: 2 - uid: 5661 components: - type: Transform - pos: -20.5,19.5 + pos: 54.5,37.5 parent: 2 - uid: 5662 components: - type: Transform - pos: -20.5,17.5 + pos: 55.5,37.5 parent: 2 - uid: 5663 components: - type: Transform - pos: -19.5,16.5 + pos: 56.5,37.5 parent: 2 - uid: 5664 components: - type: Transform - pos: 53.5,-6.5 + pos: 56.5,35.5 parent: 2 - uid: 5665 components: - type: Transform - pos: 52.5,-6.5 + pos: 56.5,33.5 parent: 2 - uid: 5666 components: - type: Transform - pos: 51.5,-6.5 + pos: 56.5,32.5 parent: 2 - uid: 5667 components: - type: Transform - pos: 51.5,-7.5 + pos: 56.5,31.5 parent: 2 - uid: 5668 components: - type: Transform - pos: 5.5,21.5 + pos: 57.5,31.5 parent: 2 - uid: 5669 components: - type: Transform - pos: 6.5,21.5 + pos: 57.5,30.5 parent: 2 - uid: 5670 components: - type: Transform - pos: 7.5,15.5 + pos: 57.5,29.5 parent: 2 - uid: 5671 components: - type: Transform - pos: 8.5,15.5 + pos: 57.5,28.5 parent: 2 - uid: 5672 components: - type: Transform - pos: 2.5,20.5 + pos: 54.5,38.5 parent: 2 - uid: 5673 components: - type: Transform - pos: 2.5,19.5 + pos: 54.5,39.5 parent: 2 - uid: 5674 components: - type: Transform - pos: 2.5,18.5 + pos: 54.5,40.5 parent: 2 - uid: 5675 components: - type: Transform - pos: 42.5,15.5 + pos: 54.5,41.5 parent: 2 - uid: 5676 components: - type: Transform - pos: 42.5,16.5 + pos: 54.5,42.5 parent: 2 - uid: 5677 components: - type: Transform - pos: 41.5,16.5 + pos: 54.5,43.5 parent: 2 - uid: 5678 components: - type: Transform - pos: 40.5,16.5 + pos: 54.5,44.5 parent: 2 - uid: 5679 components: - type: Transform - pos: 39.5,16.5 + pos: 54.5,45.5 parent: 2 - uid: 5680 components: - type: Transform - pos: 38.5,16.5 + pos: 54.5,46.5 parent: 2 - uid: 5681 components: - type: Transform - pos: 37.5,16.5 + pos: 54.5,47.5 parent: 2 - uid: 5682 components: - type: Transform - pos: 36.5,16.5 + pos: 54.5,48.5 parent: 2 - uid: 5683 components: - type: Transform - pos: 34.5,16.5 + pos: 54.5,49.5 parent: 2 - uid: 5684 components: - type: Transform - pos: 33.5,16.5 + pos: 54.5,50.5 parent: 2 - uid: 5685 components: - type: Transform - pos: 42.5,13.5 + pos: 53.5,42.5 parent: 2 - uid: 5686 components: - type: Transform - pos: 42.5,12.5 + pos: 52.5,42.5 parent: 2 - uid: 5687 components: - type: Transform - pos: 28.5,28.5 + pos: 51.5,42.5 parent: 2 - uid: 5688 components: - type: Transform - pos: 31.5,28.5 + pos: 51.5,43.5 parent: 2 - uid: 5689 components: - type: Transform - pos: 30.5,28.5 + pos: 51.5,44.5 parent: 2 - uid: 5690 components: - type: Transform - pos: -12.5,-59.5 + pos: 51.5,45.5 parent: 2 - uid: 5691 components: - type: Transform - pos: -11.5,-59.5 + pos: 51.5,46.5 parent: 2 - uid: 5692 components: - type: Transform - pos: -10.5,-59.5 + pos: 51.5,47.5 parent: 2 - uid: 5693 components: - type: Transform - pos: -10.5,-58.5 + pos: 51.5,48.5 parent: 2 - uid: 5694 components: - type: Transform - pos: -9.5,-59.5 + pos: 51.5,49.5 parent: 2 - uid: 5695 components: - type: Transform - pos: -8.5,-59.5 + pos: 51.5,50.5 parent: 2 - uid: 5696 components: - type: Transform - pos: -7.5,-59.5 + pos: 55.5,42.5 parent: 2 - uid: 5697 components: - type: Transform - pos: -6.5,-59.5 + pos: 56.5,42.5 parent: 2 - uid: 5698 components: - type: Transform - pos: -51.5,-75.5 + pos: 57.5,42.5 parent: 2 - uid: 5699 components: - type: Transform - pos: -51.5,-77.5 + pos: 57.5,43.5 parent: 2 - uid: 5700 components: - type: Transform - pos: -51.5,-78.5 + pos: 57.5,44.5 parent: 2 - uid: 5701 components: - type: Transform - pos: -51.5,-79.5 + pos: 57.5,45.5 parent: 2 - uid: 5702 components: - type: Transform - pos: -52.5,-79.5 + pos: 57.5,46.5 parent: 2 - uid: 5703 components: - type: Transform - pos: 38.5,17.5 + pos: 57.5,47.5 parent: 2 - uid: 5704 components: - type: Transform - pos: 18.5,-31.5 + pos: 57.5,48.5 parent: 2 - uid: 5705 components: - type: Transform - pos: 52.5,10.5 + pos: 57.5,49.5 parent: 2 - uid: 5706 components: - type: Transform - pos: 45.5,-72.5 + pos: 57.5,50.5 parent: 2 - uid: 5707 components: - type: Transform - pos: 29.5,-27.5 + pos: 56.5,50.5 parent: 2 - uid: 5708 components: - type: Transform - pos: 29.5,-26.5 + pos: 55.5,50.5 parent: 2 - uid: 5709 components: - type: Transform - pos: 29.5,-25.5 + pos: 53.5,50.5 parent: 2 - uid: 5710 components: - type: Transform - pos: 31.5,-42.5 + pos: 52.5,50.5 parent: 2 - uid: 5711 components: - type: Transform - pos: 30.5,-42.5 + pos: 56.5,51.5 parent: 2 - uid: 5712 components: - type: Transform - pos: 28.5,-41.5 + pos: 56.5,52.5 parent: 2 - uid: 5713 components: - type: Transform - pos: 38.5,-60.5 + pos: 52.5,51.5 parent: 2 - uid: 5714 components: - type: Transform - pos: 38.5,-61.5 + pos: 52.5,52.5 parent: 2 - uid: 5715 components: - type: Transform - pos: 38.5,-62.5 + pos: 56.5,53.5 parent: 2 - uid: 5716 components: - type: Transform - pos: 38.5,-63.5 + pos: 55.5,53.5 parent: 2 - uid: 5717 components: - type: Transform - pos: 38.5,-64.5 + pos: 54.5,53.5 parent: 2 - uid: 5718 components: - type: Transform - pos: 38.5,-65.5 + pos: 52.5,53.5 parent: 2 - uid: 5719 components: - type: Transform - pos: 38.5,-66.5 + pos: 53.5,53.5 parent: 2 - uid: 5720 components: - type: Transform - pos: 38.5,-67.5 + pos: 54.5,54.5 parent: 2 - uid: 5721 components: - type: Transform - pos: 38.5,-68.5 + pos: 54.5,55.5 parent: 2 - uid: 5722 components: - type: Transform - pos: 38.5,-69.5 + pos: 54.5,57.5 parent: 2 - uid: 5723 components: - type: Transform - pos: 38.5,-70.5 + pos: 54.5,56.5 parent: 2 - uid: 5724 components: - type: Transform - pos: 38.5,-71.5 + pos: 54.5,58.5 parent: 2 - uid: 5725 components: - type: Transform - pos: 14.5,-64.5 + pos: 54.5,59.5 parent: 2 - uid: 5726 components: - type: Transform - pos: 14.5,-63.5 + pos: 53.5,57.5 parent: 2 - uid: 5727 components: - type: Transform - pos: 14.5,-62.5 + pos: 52.5,57.5 parent: 2 - uid: 5728 components: - type: Transform - pos: 14.5,-61.5 + pos: 51.5,57.5 parent: 2 - uid: 5729 components: - type: Transform - pos: 14.5,-60.5 + pos: 55.5,57.5 parent: 2 - uid: 5730 components: - type: Transform - pos: 14.5,-59.5 + pos: 56.5,57.5 parent: 2 - uid: 5731 components: - type: Transform - pos: 14.5,-58.5 + pos: 57.5,57.5 parent: 2 - uid: 5732 components: - type: Transform - pos: 10.5,-64.5 + pos: 58.5,57.5 parent: 2 - uid: 5733 components: - type: Transform - pos: 11.5,-64.5 + pos: 50.5,57.5 parent: 2 - uid: 5734 components: - type: Transform - pos: 12.5,-64.5 + pos: 54.5,60.5 parent: 2 - uid: 5735 components: - type: Transform - pos: 12.5,-63.5 + pos: 54.5,61.5 parent: 2 - uid: 5736 components: - type: Transform - pos: 12.5,-62.5 + pos: 50.5,45.5 parent: 2 - uid: 5737 components: - type: Transform - pos: 12.5,-61.5 + pos: 49.5,45.5 parent: 2 - uid: 5738 components: - type: Transform - pos: 12.5,-60.5 + pos: 48.5,45.5 parent: 2 - uid: 5739 components: - type: Transform - pos: 12.5,-59.5 + pos: 47.5,45.5 parent: 2 - uid: 5740 components: - type: Transform - pos: 12.5,-58.5 + pos: 46.5,45.5 parent: 2 - uid: 5741 components: - type: Transform - pos: 12.5,-57.5 + pos: 45.5,45.5 parent: 2 - uid: 5742 components: - type: Transform - pos: 12.5,-56.5 + pos: 44.5,45.5 parent: 2 - uid: 5743 components: - type: Transform - pos: 14.5,-57.5 + pos: 58.5,45.5 parent: 2 - uid: 5744 components: - type: Transform - pos: 13.5,-57.5 + pos: 59.5,45.5 parent: 2 - uid: 5745 components: - type: Transform - pos: -33.5,-71.5 + pos: 60.5,45.5 parent: 2 - uid: 5746 components: - type: Transform - pos: -33.5,-72.5 + pos: 60.5,46.5 parent: 2 - uid: 5747 components: - type: Transform - pos: -26.5,-73.5 + pos: 60.5,47.5 parent: 2 - uid: 5748 components: - type: Transform - pos: -28.5,-73.5 + pos: -18.5,24.5 parent: 2 - uid: 5749 components: - type: Transform - pos: -29.5,-72.5 + pos: -18.5,25.5 parent: 2 - uid: 5750 components: - type: Transform - pos: -29.5,-75.5 + pos: -18.5,26.5 parent: 2 - uid: 5751 components: - type: Transform - pos: -30.5,-71.5 + pos: -18.5,27.5 parent: 2 - uid: 5752 components: - type: Transform - pos: -30.5,-70.5 + pos: -18.5,28.5 parent: 2 - uid: 5753 components: - type: Transform - pos: -30.5,-69.5 + pos: -18.5,29.5 parent: 2 - uid: 5754 components: - type: Transform - pos: -29.5,-69.5 + pos: -18.5,30.5 parent: 2 - uid: 5755 components: - type: Transform - pos: -28.5,-69.5 + pos: -19.5,30.5 parent: 2 - uid: 5756 components: - type: Transform - pos: -27.5,-69.5 + pos: -20.5,30.5 parent: 2 - uid: 5757 components: - type: Transform - pos: -27.5,-70.5 + pos: -21.5,30.5 parent: 2 - uid: 5758 components: - type: Transform - pos: -27.5,-71.5 + pos: -22.5,30.5 parent: 2 - uid: 5759 components: - type: Transform - pos: -27.5,-73.5 + pos: -23.5,30.5 parent: 2 - uid: 5760 components: - type: Transform - pos: -27.5,-74.5 + pos: -20.5,22.5 parent: 2 - uid: 5761 components: - type: Transform - pos: -27.5,-75.5 + pos: -20.5,23.5 parent: 2 - uid: 5762 components: - type: Transform - pos: -28.5,-75.5 + pos: -20.5,24.5 parent: 2 - uid: 5763 components: - type: Transform - pos: -30.5,-75.5 + pos: -20.5,25.5 parent: 2 - uid: 5764 components: - type: Transform - pos: -30.5,-74.5 + pos: -20.5,26.5 parent: 2 - uid: 5765 components: - type: Transform - pos: -30.5,-73.5 + pos: -20.5,27.5 parent: 2 - uid: 5766 components: - type: Transform - pos: -28.5,-71.5 + pos: -20.5,28.5 parent: 2 - uid: 5767 components: - type: Transform - pos: -29.5,-72.5 + pos: -20.5,29.5 parent: 2 - uid: 5768 components: - type: Transform - pos: -29.5,-71.5 + pos: 44.5,-13.5 parent: 2 - uid: 5769 components: - type: Transform - pos: 52.5,38.5 + pos: 45.5,-13.5 parent: 2 - uid: 5770 components: - type: Transform - pos: 52.5,37.5 + pos: 46.5,-13.5 parent: 2 - uid: 5771 components: - type: Transform - pos: 52.5,36.5 + pos: 47.5,-13.5 parent: 2 - uid: 5772 components: - type: Transform - pos: 52.5,35.5 + pos: 46.5,-14.5 parent: 2 - uid: 5773 components: - type: Transform - pos: 52.5,34.5 + pos: 46.5,-15.5 parent: 2 - uid: 5774 components: - type: Transform - pos: 52.5,33.5 + pos: 46.5,-16.5 parent: 2 - uid: 5775 components: - type: Transform - pos: 52.5,32.5 + pos: 37.5,-13.5 parent: 2 - uid: 5776 components: - type: Transform - pos: 52.5,31.5 + pos: 36.5,-13.5 parent: 2 - uid: 5777 components: - type: Transform - pos: 51.5,31.5 + pos: 61.5,26.5 parent: 2 - uid: 5778 components: - type: Transform - pos: 50.5,31.5 + pos: 62.5,26.5 parent: 2 - uid: 5779 components: - type: Transform - pos: 49.5,31.5 + pos: 63.5,26.5 parent: 2 - uid: 5780 components: - type: Transform - pos: 48.5,31.5 + pos: 64.5,26.5 parent: 2 - uid: 5781 components: - type: Transform - pos: 48.5,30.5 + pos: 65.5,26.5 parent: 2 - uid: 5782 components: - type: Transform - pos: 48.5,29.5 + pos: 65.5,25.5 parent: 2 - uid: 5783 components: - type: Transform - pos: 48.5,28.5 + pos: 64.5,15.5 parent: 2 - uid: 5784 components: - type: Transform - pos: 53.5,37.5 + pos: 64.5,16.5 parent: 2 - uid: 5785 components: - type: Transform - pos: 54.5,37.5 + pos: 64.5,17.5 parent: 2 - uid: 5786 components: - type: Transform - pos: 55.5,37.5 + pos: 12.5,32.5 parent: 2 - uid: 5787 components: - type: Transform - pos: 56.5,37.5 + pos: 11.5,32.5 parent: 2 - uid: 5788 components: - type: Transform - pos: 56.5,35.5 + pos: 10.5,32.5 parent: 2 - uid: 5789 components: - type: Transform - pos: 56.5,33.5 + pos: 9.5,32.5 parent: 2 - uid: 5790 components: - type: Transform - pos: 56.5,32.5 + pos: 8.5,32.5 parent: 2 - uid: 5791 components: - type: Transform - pos: 56.5,31.5 + pos: 7.5,32.5 parent: 2 - uid: 5792 components: - type: Transform - pos: 57.5,31.5 + pos: 6.5,32.5 parent: 2 - uid: 5793 components: - type: Transform - pos: 57.5,30.5 + pos: 5.5,32.5 parent: 2 - uid: 5794 components: - type: Transform - pos: 57.5,29.5 + pos: 4.5,32.5 parent: 2 - uid: 5795 components: - type: Transform - pos: 57.5,28.5 + pos: 9.5,31.5 parent: 2 - uid: 5796 components: - type: Transform - pos: 54.5,38.5 + pos: 9.5,30.5 parent: 2 - uid: 5797 components: - type: Transform - pos: 54.5,39.5 + pos: 8.5,30.5 parent: 2 - uid: 5798 components: - type: Transform - pos: 54.5,40.5 + pos: 7.5,30.5 parent: 2 - uid: 5799 components: - type: Transform - pos: 54.5,41.5 + pos: 6.5,30.5 parent: 2 - uid: 5800 components: - type: Transform - pos: 54.5,42.5 + pos: 6.5,31.5 parent: 2 - uid: 5801 components: - type: Transform - pos: 54.5,43.5 + pos: 6.5,33.5 parent: 2 - uid: 5802 components: - type: Transform - pos: 54.5,44.5 + pos: 6.5,34.5 parent: 2 - uid: 5803 components: - type: Transform - pos: 54.5,45.5 + pos: 7.5,34.5 parent: 2 - uid: 5804 components: - type: Transform - pos: 54.5,46.5 + pos: 8.5,34.5 parent: 2 - uid: 5805 components: - type: Transform - pos: 54.5,47.5 + pos: 9.5,34.5 parent: 2 - uid: 5806 components: - type: Transform - pos: 54.5,48.5 + pos: 9.5,33.5 parent: 2 - uid: 5807 components: - type: Transform - pos: 54.5,49.5 + pos: 57.5,33.5 parent: 2 - uid: 5808 components: - type: Transform - pos: 54.5,50.5 + pos: 58.5,33.5 parent: 2 - uid: 5809 components: - type: Transform - pos: 53.5,42.5 + pos: 55.5,31.5 parent: 2 - uid: 5810 components: - type: Transform - pos: 52.5,42.5 + pos: 54.5,31.5 parent: 2 - uid: 5811 components: - type: Transform - pos: 51.5,42.5 + pos: -15.5,42.5 parent: 2 - uid: 5812 components: - type: Transform - pos: 51.5,43.5 + pos: -16.5,42.5 parent: 2 - uid: 5813 components: - type: Transform - pos: 51.5,44.5 + pos: -16.5,41.5 parent: 2 - uid: 5814 components: - type: Transform - pos: 51.5,45.5 + pos: -16.5,40.5 parent: 2 - uid: 5815 components: - type: Transform - pos: 51.5,46.5 + pos: -16.5,39.5 parent: 2 - uid: 5816 components: - type: Transform - pos: 51.5,47.5 + pos: -16.5,38.5 parent: 2 - uid: 5817 components: - type: Transform - pos: 51.5,48.5 + pos: -16.5,37.5 parent: 2 - uid: 5818 components: - type: Transform - pos: 51.5,49.5 + pos: -16.5,36.5 parent: 2 - uid: 5819 components: - type: Transform - pos: 51.5,50.5 + pos: -16.5,35.5 parent: 2 - uid: 5820 components: - type: Transform - pos: 55.5,42.5 + pos: -16.5,34.5 parent: 2 - uid: 5821 components: - type: Transform - pos: 56.5,42.5 + pos: -16.5,33.5 parent: 2 - uid: 5822 components: - type: Transform - pos: 57.5,42.5 + pos: -16.5,32.5 parent: 2 - uid: 5823 components: - type: Transform - pos: 57.5,43.5 + pos: -16.5,31.5 parent: 2 - uid: 5824 components: - type: Transform - pos: 57.5,44.5 + pos: -16.5,30.5 parent: 2 - uid: 5825 components: - type: Transform - pos: 57.5,45.5 + pos: -16.5,29.5 parent: 2 - uid: 5826 components: - type: Transform - pos: 57.5,46.5 + pos: -15.5,29.5 parent: 2 - uid: 5827 components: - type: Transform - pos: 57.5,47.5 + pos: -14.5,29.5 parent: 2 - uid: 5828 components: - type: Transform - pos: 57.5,48.5 + pos: -14.5,30.5 parent: 2 - uid: 5829 components: - type: Transform - pos: 57.5,49.5 + pos: -14.5,31.5 parent: 2 - uid: 5830 components: - type: Transform - pos: 57.5,50.5 + pos: -14.5,32.5 parent: 2 - uid: 5831 components: - type: Transform - pos: 56.5,50.5 + pos: -14.5,33.5 parent: 2 - uid: 5832 components: - type: Transform - pos: 55.5,50.5 + pos: -14.5,34.5 parent: 2 - uid: 5833 components: - type: Transform - pos: 53.5,50.5 + pos: -14.5,35.5 parent: 2 - uid: 5834 components: - type: Transform - pos: 52.5,50.5 + pos: -14.5,36.5 parent: 2 - uid: 5835 components: - type: Transform - pos: 56.5,51.5 + pos: -14.5,37.5 parent: 2 - uid: 5836 components: - type: Transform - pos: 56.5,52.5 + pos: -14.5,38.5 parent: 2 - uid: 5837 components: - type: Transform - pos: 52.5,51.5 + pos: -14.5,39.5 parent: 2 - uid: 5838 components: - type: Transform - pos: 52.5,52.5 + pos: -14.5,40.5 parent: 2 - uid: 5839 components: - type: Transform - pos: 56.5,53.5 + pos: -14.5,41.5 parent: 2 - uid: 5840 components: - type: Transform - pos: 55.5,53.5 + pos: -14.5,42.5 parent: 2 - uid: 5841 components: - type: Transform - pos: 54.5,53.5 + pos: -17.5,41.5 parent: 2 - uid: 5842 components: - type: Transform - pos: 52.5,53.5 + pos: -18.5,41.5 parent: 2 - uid: 5843 components: - type: Transform - pos: 53.5,53.5 + pos: -18.5,42.5 parent: 2 - uid: 5844 components: - type: Transform - pos: 54.5,54.5 + pos: -18.5,43.5 parent: 2 - uid: 5845 components: - type: Transform - pos: 54.5,55.5 + pos: -18.5,44.5 parent: 2 - uid: 5846 components: - type: Transform - pos: 54.5,57.5 + pos: -18.5,45.5 parent: 2 - uid: 5847 components: - type: Transform - pos: 54.5,56.5 + pos: -19.5,45.5 parent: 2 - uid: 5848 components: - type: Transform - pos: 54.5,58.5 + pos: -20.5,45.5 parent: 2 - uid: 5849 components: - type: Transform - pos: 54.5,59.5 + pos: -21.5,45.5 parent: 2 - uid: 5850 components: - type: Transform - pos: 53.5,57.5 + pos: -22.5,45.5 parent: 2 - uid: 5851 components: - type: Transform - pos: 52.5,57.5 + pos: -21.5,44.5 parent: 2 - uid: 5852 components: - type: Transform - pos: 51.5,57.5 + pos: -21.5,43.5 parent: 2 - uid: 5853 components: - type: Transform - pos: 55.5,57.5 + pos: -21.5,42.5 parent: 2 - uid: 5854 components: - type: Transform - pos: 56.5,57.5 + pos: -21.5,41.5 parent: 2 - uid: 5855 components: - type: Transform - pos: 57.5,57.5 + pos: -21.5,40.5 parent: 2 - uid: 5856 components: - type: Transform - pos: 58.5,57.5 + pos: -17.5,44.5 parent: 2 - uid: 5857 components: - type: Transform - pos: 50.5,57.5 + pos: -16.5,44.5 parent: 2 - uid: 5858 components: - type: Transform - pos: 54.5,60.5 + pos: -16.5,45.5 parent: 2 - uid: 5859 components: - type: Transform - pos: 54.5,61.5 + pos: -16.5,46.5 parent: 2 - uid: 5860 components: - type: Transform - pos: 50.5,45.5 + pos: -16.5,47.5 parent: 2 - uid: 5861 components: - type: Transform - pos: 49.5,45.5 + pos: -16.5,48.5 parent: 2 - uid: 5862 components: - type: Transform - pos: 48.5,45.5 + pos: -16.5,49.5 parent: 2 - uid: 5863 components: - type: Transform - pos: 47.5,45.5 + pos: -16.5,50.5 parent: 2 - uid: 5864 components: - type: Transform - pos: 46.5,45.5 + pos: -16.5,51.5 parent: 2 - uid: 5865 components: - type: Transform - pos: 45.5,45.5 + pos: -17.5,51.5 parent: 2 - uid: 5866 components: - type: Transform - pos: 44.5,45.5 + pos: -18.5,51.5 parent: 2 - uid: 5867 components: - type: Transform - pos: 58.5,45.5 + pos: -18.5,50.5 parent: 2 - uid: 5868 components: - type: Transform - pos: 59.5,45.5 + pos: -18.5,49.5 parent: 2 - uid: 5869 components: - type: Transform - pos: 60.5,45.5 + pos: -18.5,48.5 parent: 2 - uid: 5870 components: - type: Transform - pos: 60.5,46.5 + pos: -18.5,47.5 parent: 2 - uid: 5871 components: - type: Transform - pos: 60.5,47.5 + pos: -18.5,46.5 parent: 2 - uid: 5872 components: - type: Transform - pos: -18.5,24.5 + pos: -13.5,39.5 parent: 2 - uid: 5873 components: - type: Transform - pos: -18.5,25.5 + pos: -12.5,39.5 parent: 2 - uid: 5874 components: - type: Transform - pos: -18.5,26.5 + pos: -11.5,39.5 parent: 2 - uid: 5875 components: - type: Transform - pos: -18.5,27.5 + pos: -10.5,39.5 parent: 2 - uid: 5876 components: - type: Transform - pos: -18.5,28.5 + pos: -9.5,39.5 parent: 2 - uid: 5877 components: - type: Transform - pos: -18.5,29.5 + pos: -8.5,39.5 parent: 2 - uid: 5878 components: - type: Transform - pos: -18.5,30.5 + pos: -8.5,38.5 parent: 2 - uid: 5879 components: - type: Transform - pos: -19.5,30.5 + pos: -8.5,37.5 parent: 2 - uid: 5880 components: - type: Transform - pos: -20.5,30.5 + pos: -9.5,37.5 parent: 2 - uid: 5881 components: - type: Transform - pos: -21.5,30.5 + pos: -10.5,37.5 parent: 2 - uid: 5882 components: - type: Transform - pos: -22.5,30.5 + pos: -11.5,37.5 parent: 2 - uid: 5883 components: - type: Transform - pos: -23.5,30.5 + pos: -12.5,37.5 parent: 2 - uid: 5884 components: - type: Transform - pos: -20.5,22.5 + pos: -13.5,37.5 parent: 2 - uid: 5885 components: - type: Transform - pos: -20.5,23.5 + pos: -17.5,34.5 parent: 2 - uid: 5886 components: - type: Transform - pos: -20.5,24.5 + pos: -18.5,34.5 parent: 2 - uid: 5887 components: - type: Transform - pos: -20.5,25.5 + pos: -19.5,34.5 parent: 2 - uid: 5888 components: - type: Transform - pos: -20.5,26.5 + pos: -20.5,34.5 parent: 2 - uid: 5889 components: - type: Transform - pos: -20.5,27.5 + pos: -21.5,34.5 parent: 2 - uid: 5890 components: - type: Transform - pos: -20.5,28.5 + pos: -13.5,34.5 parent: 2 - uid: 5891 components: - type: Transform - pos: -20.5,29.5 + pos: -12.5,34.5 parent: 2 - uid: 5892 components: - type: Transform - pos: 44.5,-13.5 + pos: -11.5,34.5 parent: 2 - uid: 5893 components: - type: Transform - pos: 45.5,-13.5 + pos: -11.5,33.5 parent: 2 - uid: 5894 components: - type: Transform - pos: 46.5,-13.5 + pos: -11.5,32.5 parent: 2 - uid: 5895 components: - type: Transform - pos: 47.5,-13.5 + pos: -11.5,31.5 parent: 2 - uid: 5896 components: - type: Transform - pos: 46.5,-14.5 + pos: -15.5,44.5 parent: 2 - uid: 5897 components: - type: Transform - pos: 46.5,-15.5 + pos: -41.5,23.5 parent: 2 - uid: 5898 components: - type: Transform - pos: 46.5,-16.5 + pos: -41.5,24.5 parent: 2 - uid: 5899 components: - type: Transform - pos: 37.5,-13.5 + pos: -14.5,44.5 parent: 2 - uid: 5900 components: - type: Transform - pos: 36.5,-13.5 + pos: -13.5,44.5 parent: 2 - uid: 5901 components: - type: Transform - pos: 61.5,26.5 + pos: -12.5,44.5 parent: 2 - uid: 5902 components: - type: Transform - pos: 62.5,26.5 + pos: -11.5,44.5 parent: 2 - uid: 5903 components: - type: Transform - pos: 63.5,26.5 + pos: -10.5,44.5 parent: 2 - uid: 5904 components: - type: Transform - pos: 64.5,26.5 + pos: -15.5,46.5 parent: 2 - uid: 5905 components: - type: Transform - pos: 65.5,26.5 + pos: -14.5,46.5 parent: 2 - uid: 5906 components: - type: Transform - pos: 65.5,25.5 + pos: -13.5,46.5 parent: 2 - uid: 5907 components: - type: Transform - pos: 64.5,15.5 + pos: -12.5,46.5 parent: 2 - uid: 5908 components: - type: Transform - pos: 64.5,16.5 + pos: -11.5,46.5 parent: 2 - uid: 5909 components: - type: Transform - pos: 64.5,17.5 + pos: -10.5,46.5 parent: 2 - uid: 5910 components: - type: Transform - pos: 12.5,32.5 + pos: 52.5,39.5 parent: 2 - uid: 5911 components: - type: Transform - pos: 11.5,32.5 + pos: 51.5,39.5 parent: 2 - uid: 5912 components: - type: Transform - pos: 10.5,32.5 + pos: 49.5,39.5 parent: 2 - uid: 5913 components: - type: Transform - pos: 9.5,32.5 + pos: 48.5,39.5 parent: 2 - uid: 5914 components: - type: Transform - pos: 8.5,32.5 + pos: 47.5,38.5 parent: 2 - uid: 5915 components: - type: Transform - pos: 7.5,32.5 + pos: 47.5,39.5 parent: 2 - uid: 5916 components: - type: Transform - pos: 6.5,32.5 + pos: 47.5,37.5 parent: 2 - uid: 5917 components: - type: Transform - pos: 5.5,32.5 + pos: 46.5,37.5 parent: 2 - uid: 5918 components: - type: Transform - pos: 4.5,32.5 + pos: 45.5,37.5 parent: 2 - uid: 5919 components: - type: Transform - pos: 9.5,31.5 + pos: 45.5,36.5 parent: 2 - uid: 5920 components: - type: Transform - pos: 9.5,30.5 + pos: 45.5,35.5 parent: 2 - uid: 5921 components: - type: Transform - pos: 8.5,30.5 + pos: 46.5,35.5 parent: 2 - uid: 5922 components: - type: Transform - pos: 7.5,30.5 + pos: 46.5,33.5 parent: 2 - uid: 5923 components: - type: Transform - pos: 6.5,30.5 + pos: 46.5,32.5 parent: 2 - uid: 5924 components: - type: Transform - pos: 6.5,31.5 + pos: 47.5,32.5 parent: 2 - uid: 5925 components: - type: Transform - pos: 6.5,33.5 + pos: 48.5,32.5 parent: 2 - uid: 5926 components: - type: Transform - pos: 6.5,34.5 + pos: 49.5,32.5 parent: 2 - uid: 5927 components: - type: Transform - pos: 7.5,34.5 + pos: 52.5,40.5 parent: 2 - uid: 5928 components: - type: Transform - pos: 8.5,34.5 + pos: 52.5,41.5 parent: 2 - uid: 5929 components: - type: Transform - pos: 9.5,34.5 + pos: 49.5,38.5 parent: 2 - uid: 5930 components: - type: Transform - pos: 9.5,33.5 + pos: 49.5,37.5 parent: 2 - uid: 5931 components: - type: Transform - pos: 57.5,33.5 + pos: 49.5,36.5 parent: 2 - uid: 5932 components: - type: Transform - pos: 58.5,33.5 + pos: 6.5,48.5 parent: 2 - uid: 5933 components: - type: Transform - pos: 55.5,31.5 + pos: 5.5,48.5 parent: 2 - uid: 5934 components: - type: Transform - pos: 54.5,31.5 + pos: 4.5,48.5 parent: 2 - uid: 5935 components: - type: Transform - pos: -15.5,42.5 + pos: 3.5,48.5 parent: 2 - uid: 5936 components: - type: Transform - pos: -16.5,42.5 + pos: 3.5,49.5 parent: 2 - uid: 5937 components: - type: Transform - pos: -16.5,41.5 + pos: 2.5,49.5 parent: 2 - uid: 5938 components: - type: Transform - pos: -16.5,40.5 + pos: 1.5,49.5 parent: 2 - uid: 5939 components: - type: Transform - pos: -16.5,39.5 + pos: 58.5,27.5 parent: 2 - uid: 5940 components: - type: Transform - pos: -16.5,38.5 + pos: 59.5,28.5 parent: 2 - uid: 5941 components: - type: Transform - pos: -16.5,37.5 + pos: 58.5,28.5 parent: 2 - uid: 5942 components: - type: Transform - pos: -16.5,36.5 + pos: 5.5,49.5 parent: 2 - uid: 5943 components: - type: Transform - pos: -16.5,35.5 + pos: 5.5,50.5 parent: 2 - uid: 5944 components: - type: Transform - pos: -16.5,34.5 + pos: 5.5,51.5 parent: 2 - uid: 5945 components: - type: Transform - pos: -16.5,33.5 + pos: 6.5,51.5 parent: 2 - uid: 5946 components: - type: Transform - pos: -16.5,32.5 + pos: 6.5,52.5 parent: 2 - uid: 5947 components: - type: Transform - pos: -16.5,31.5 + pos: 7.5,52.5 parent: 2 - uid: 5948 components: - type: Transform - pos: -16.5,30.5 + pos: 8.5,52.5 parent: 2 - uid: 5949 components: - type: Transform - pos: -16.5,29.5 + pos: 63.5,27.5 parent: 2 - uid: 5950 components: - type: Transform - pos: -15.5,29.5 + pos: 63.5,28.5 parent: 2 - uid: 5951 components: - type: Transform - pos: -14.5,29.5 + pos: 63.5,29.5 parent: 2 - uid: 5952 components: - type: Transform - pos: -14.5,30.5 + pos: 16.5,35.5 parent: 2 - uid: 5953 components: - type: Transform - pos: -14.5,31.5 + pos: 16.5,36.5 parent: 2 - uid: 5954 components: - type: Transform - pos: -14.5,32.5 + pos: 16.5,37.5 parent: 2 - uid: 5955 components: - type: Transform - pos: -14.5,33.5 + pos: 16.5,38.5 parent: 2 - uid: 5956 components: - type: Transform - pos: -14.5,34.5 + pos: 16.5,39.5 parent: 2 - uid: 5957 components: - type: Transform - pos: -14.5,35.5 + pos: 15.5,39.5 parent: 2 - uid: 5958 components: - type: Transform - pos: -14.5,36.5 + pos: 14.5,39.5 parent: 2 - uid: 5959 components: - type: Transform - pos: -14.5,37.5 + pos: 14.5,38.5 parent: 2 - uid: 5960 components: - type: Transform - pos: -14.5,38.5 + pos: 14.5,37.5 parent: 2 - uid: 5961 components: - type: Transform - pos: -14.5,39.5 + pos: 14.5,36.5 parent: 2 - uid: 5962 components: - type: Transform - pos: -14.5,40.5 + pos: 15.5,36.5 parent: 2 - uid: 5963 components: - type: Transform - pos: -14.5,41.5 + pos: 17.5,39.5 parent: 2 - uid: 5964 components: - type: Transform - pos: -14.5,42.5 + pos: 18.5,39.5 parent: 2 - uid: 5965 components: - type: Transform - pos: -17.5,41.5 + pos: 18.5,38.5 parent: 2 - uid: 5966 components: - type: Transform - pos: -18.5,41.5 + pos: 18.5,37.5 parent: 2 - uid: 5967 components: - type: Transform - pos: -18.5,42.5 + pos: 18.5,36.5 parent: 2 - uid: 5968 components: - type: Transform - pos: -18.5,43.5 + pos: 17.5,36.5 parent: 2 - uid: 5969 components: - type: Transform - pos: -18.5,44.5 + pos: 16.5,40.5 parent: 2 - uid: 5970 components: - type: Transform - pos: -18.5,45.5 + pos: 63.5,30.5 parent: 2 - uid: 5971 components: - type: Transform - pos: -19.5,45.5 + pos: 63.5,31.5 parent: 2 - uid: 5972 components: - type: Transform - pos: -20.5,45.5 + pos: 63.5,32.5 parent: 2 - uid: 5973 components: - type: Transform - pos: -21.5,45.5 + pos: 63.5,33.5 parent: 2 - uid: 5974 components: - type: Transform - pos: -22.5,45.5 + pos: 63.5,34.5 parent: 2 - uid: 5975 components: - type: Transform - pos: -21.5,44.5 + pos: 63.5,35.5 parent: 2 - uid: 5976 components: - type: Transform - pos: -21.5,43.5 + pos: 63.5,36.5 parent: 2 - uid: 5977 components: - type: Transform - pos: -21.5,42.5 + pos: 64.5,36.5 parent: 2 - uid: 5978 components: - type: Transform - pos: -21.5,41.5 + pos: 65.5,36.5 parent: 2 - uid: 5979 components: - type: Transform - pos: -21.5,40.5 + pos: 66.5,36.5 parent: 2 - uid: 5980 components: - type: Transform - pos: -17.5,44.5 + pos: 67.5,36.5 parent: 2 - uid: 5981 components: - type: Transform - pos: -16.5,44.5 + pos: 68.5,36.5 parent: 2 - uid: 5982 components: - type: Transform - pos: -16.5,45.5 + pos: 69.5,36.5 parent: 2 - uid: 5983 components: - type: Transform - pos: -16.5,46.5 + pos: 70.5,36.5 parent: 2 - uid: 5984 components: - type: Transform - pos: -16.5,47.5 + pos: 71.5,36.5 parent: 2 - uid: 5985 components: - type: Transform - pos: -16.5,48.5 + pos: 72.5,36.5 parent: 2 - uid: 5986 components: - type: Transform - pos: -16.5,49.5 + pos: 73.5,36.5 parent: 2 - uid: 5987 components: - type: Transform - pos: -16.5,50.5 + pos: 74.5,36.5 parent: 2 - uid: 5988 components: - type: Transform - pos: -16.5,51.5 + pos: 75.5,36.5 parent: 2 - uid: 5989 components: - type: Transform - pos: -17.5,51.5 + pos: 76.5,36.5 parent: 2 - uid: 5990 components: - type: Transform - pos: -18.5,51.5 + pos: 73.5,35.5 parent: 2 - uid: 5991 components: - type: Transform - pos: -18.5,50.5 + pos: 73.5,34.5 parent: 2 - uid: 5992 components: - type: Transform - pos: -18.5,49.5 + pos: 71.5,35.5 parent: 2 - uid: 5993 components: - type: Transform - pos: -18.5,48.5 + pos: 71.5,34.5 parent: 2 - uid: 5994 components: - type: Transform - pos: -18.5,47.5 + pos: 71.5,37.5 parent: 2 - uid: 5995 components: - type: Transform - pos: -18.5,46.5 + pos: 71.5,38.5 parent: 2 - uid: 5996 components: - type: Transform - pos: -13.5,39.5 + pos: 73.5,38.5 parent: 2 - uid: 5997 components: - type: Transform - pos: -12.5,39.5 + pos: 73.5,37.5 parent: 2 - uid: 5998 components: - type: Transform - pos: -11.5,39.5 + pos: 39.5,47.5 parent: 2 - uid: 5999 components: - type: Transform - pos: -10.5,39.5 + pos: 43.5,45.5 parent: 2 - uid: 6000 components: - type: Transform - pos: -9.5,39.5 + pos: 42.5,45.5 parent: 2 - uid: 6001 components: - type: Transform - pos: -8.5,39.5 + pos: 41.5,45.5 parent: 2 - uid: 6002 components: - type: Transform - pos: -8.5,38.5 + pos: 40.5,45.5 parent: 2 - uid: 6003 components: - type: Transform - pos: -8.5,37.5 + pos: 39.5,45.5 parent: 2 - uid: 6004 components: - type: Transform - pos: -9.5,37.5 + pos: 38.5,45.5 parent: 2 - uid: 6005 components: - type: Transform - pos: -10.5,37.5 + pos: 37.5,45.5 parent: 2 - uid: 6006 components: - type: Transform - pos: -11.5,37.5 + pos: 36.5,45.5 parent: 2 - uid: 6007 components: - type: Transform - pos: -12.5,37.5 + pos: 35.5,45.5 parent: 2 - uid: 6008 components: - type: Transform - pos: -13.5,37.5 + pos: 34.5,45.5 parent: 2 - uid: 6009 components: - type: Transform - pos: -17.5,34.5 + pos: 39.5,46.5 parent: 2 - uid: 6010 components: - type: Transform - pos: -18.5,34.5 + pos: 38.5,44.5 parent: 2 - uid: 6011 components: - type: Transform - pos: -19.5,34.5 + pos: 38.5,43.5 parent: 2 - uid: 6012 components: - type: Transform - pos: -20.5,34.5 + pos: 38.5,48.5 parent: 2 - uid: 6013 components: - type: Transform - pos: -21.5,34.5 + pos: 38.5,49.5 parent: 2 - uid: 6014 components: - type: Transform - pos: -13.5,34.5 + pos: 38.5,50.5 parent: 2 - uid: 6015 components: - type: Transform - pos: -12.5,34.5 + pos: 39.5,50.5 parent: 2 - uid: 6016 components: - type: Transform - pos: -11.5,34.5 + pos: 39.5,51.5 parent: 2 - uid: 6017 components: - type: Transform - pos: -11.5,33.5 + pos: 40.5,51.5 parent: 2 - uid: 6018 components: - type: Transform - pos: -11.5,32.5 + pos: 41.5,51.5 parent: 2 - uid: 6019 components: - type: Transform - pos: -11.5,31.5 + pos: 41.5,44.5 parent: 2 - uid: 6020 components: - type: Transform - pos: -15.5,44.5 + pos: 41.5,46.5 parent: 2 - uid: 6021 components: - type: Transform - pos: -41.5,23.5 + pos: 41.5,47.5 parent: 2 - uid: 6022 components: - type: Transform - pos: -41.5,24.5 + pos: 34.5,46.5 parent: 2 - uid: 6023 components: - type: Transform - pos: -14.5,44.5 + pos: 34.5,47.5 parent: 2 - uid: 6024 components: - type: Transform - pos: -13.5,44.5 + pos: 35.5,44.5 parent: 2 - uid: 6025 components: - type: Transform - pos: -12.5,44.5 + pos: 35.5,43.5 parent: 2 - uid: 6026 components: - type: Transform - pos: -11.5,44.5 + pos: 45.5,32.5 parent: 2 - uid: 6027 components: - type: Transform - pos: -10.5,44.5 + pos: 45.5,31.5 parent: 2 - uid: 6028 components: - type: Transform - pos: -15.5,46.5 + pos: 45.5,30.5 parent: 2 - uid: 6029 components: - type: Transform - pos: -14.5,46.5 + pos: 45.5,29.5 parent: 2 - uid: 6030 components: - type: Transform - pos: -13.5,46.5 + pos: 44.5,29.5 parent: 2 - uid: 6031 components: - type: Transform - pos: -12.5,46.5 + pos: 43.5,29.5 parent: 2 - uid: 6032 components: - type: Transform - pos: -11.5,46.5 + pos: 37.5,50.5 parent: 2 - uid: 6033 components: - type: Transform - pos: -10.5,46.5 + pos: -9.5,46.5 parent: 2 - uid: 6034 components: - type: Transform - pos: 52.5,39.5 + pos: -8.5,46.5 parent: 2 - uid: 6035 components: - type: Transform - pos: 51.5,39.5 + pos: -7.5,46.5 parent: 2 - uid: 6036 components: - type: Transform - pos: 49.5,39.5 + pos: -6.5,46.5 parent: 2 - uid: 6037 components: - type: Transform - pos: 48.5,39.5 + pos: -5.5,46.5 parent: 2 - uid: 6038 components: - type: Transform - pos: 47.5,38.5 + pos: -4.5,46.5 parent: 2 - uid: 6039 components: - type: Transform - pos: 47.5,39.5 + pos: -3.5,46.5 parent: 2 - uid: 6040 components: - type: Transform - pos: 47.5,37.5 + pos: -2.5,46.5 parent: 2 - uid: 6041 components: - type: Transform - pos: 46.5,37.5 + pos: -1.5,46.5 parent: 2 - uid: 6042 components: - type: Transform - pos: 45.5,37.5 + pos: -0.5,46.5 parent: 2 - uid: 6043 components: - type: Transform - pos: 45.5,36.5 + pos: -0.5,45.5 parent: 2 - uid: 6044 components: - type: Transform - pos: 45.5,35.5 + pos: -0.5,44.5 parent: 2 - uid: 6045 components: - type: Transform - pos: 46.5,35.5 + pos: -1.5,44.5 parent: 2 - uid: 6046 components: - type: Transform - pos: 46.5,33.5 + pos: -2.5,44.5 parent: 2 - uid: 6047 components: - type: Transform - pos: 46.5,32.5 + pos: -3.5,44.5 parent: 2 - uid: 6048 components: - type: Transform - pos: 47.5,32.5 + pos: -4.5,44.5 parent: 2 - uid: 6049 components: - type: Transform - pos: 48.5,32.5 + pos: -5.5,44.5 parent: 2 - uid: 6050 components: - type: Transform - pos: 49.5,32.5 + pos: -6.5,44.5 parent: 2 - uid: 6051 components: - type: Transform - pos: 52.5,40.5 + pos: -7.5,44.5 parent: 2 - uid: 6052 components: - type: Transform - pos: 52.5,41.5 + pos: -8.5,44.5 parent: 2 - uid: 6053 components: - type: Transform - pos: 49.5,38.5 + pos: -9.5,44.5 parent: 2 - uid: 6054 components: - type: Transform - pos: 49.5,37.5 + pos: 0.5,46.5 parent: 2 - uid: 6055 components: - type: Transform - pos: 49.5,36.5 + pos: 0.5,47.5 parent: 2 - uid: 6056 components: - type: Transform - pos: 6.5,48.5 + pos: -0.5,48.5 parent: 2 - uid: 6057 components: - type: Transform - pos: 5.5,48.5 + pos: -0.5,49.5 parent: 2 - uid: 6058 components: - type: Transform - pos: 4.5,48.5 + pos: -0.5,50.5 parent: 2 - uid: 6059 components: - type: Transform - pos: 3.5,48.5 + pos: -0.5,51.5 parent: 2 - uid: 6060 components: - type: Transform - pos: 3.5,49.5 + pos: -0.5,52.5 parent: 2 - uid: 6061 components: - type: Transform - pos: 2.5,49.5 + pos: -0.5,53.5 parent: 2 - uid: 6062 components: - type: Transform - pos: 1.5,49.5 + pos: -0.5,54.5 parent: 2 - uid: 6063 components: - type: Transform - pos: 58.5,27.5 + pos: 0.5,48.5 parent: 2 - uid: 6064 components: - type: Transform - pos: 59.5,28.5 + pos: 1.5,48.5 parent: 2 - uid: 6065 components: - type: Transform - pos: 58.5,28.5 + pos: 1.5,50.5 parent: 2 - uid: 6066 components: - type: Transform - pos: 5.5,49.5 + pos: 1.5,51.5 parent: 2 - uid: 6067 components: - type: Transform - pos: 5.5,50.5 + pos: 1.5,52.5 parent: 2 - uid: 6068 components: - type: Transform - pos: 5.5,51.5 + pos: 1.5,53.5 parent: 2 - uid: 6069 components: - type: Transform - pos: 6.5,51.5 + pos: 1.5,54.5 parent: 2 - uid: 6070 components: - type: Transform - pos: 6.5,52.5 + pos: -10.5,23.5 parent: 2 - uid: 6071 components: - type: Transform - pos: 7.5,52.5 + pos: -10.5,22.5 parent: 2 - uid: 6072 components: - type: Transform - pos: 8.5,52.5 + pos: -10.5,21.5 parent: 2 - uid: 6073 components: - type: Transform - pos: 63.5,27.5 + pos: -10.5,20.5 parent: 2 - uid: 6074 components: - type: Transform - pos: 63.5,28.5 + pos: -10.5,19.5 parent: 2 - uid: 6075 components: - type: Transform - pos: 63.5,29.5 + pos: -10.5,18.5 parent: 2 - uid: 6076 components: - type: Transform - pos: 16.5,35.5 + pos: -11.5,18.5 parent: 2 - uid: 6077 components: - type: Transform - pos: 16.5,36.5 + pos: -12.5,18.5 parent: 2 - uid: 6078 components: - type: Transform - pos: 16.5,37.5 + pos: -13.5,18.5 parent: 2 - uid: 6079 components: - type: Transform - pos: 16.5,38.5 + pos: -13.5,19.5 parent: 2 - uid: 6080 components: - type: Transform - pos: 16.5,39.5 + pos: -13.5,20.5 parent: 2 - uid: 6081 components: - type: Transform - pos: 15.5,39.5 + pos: -13.5,21.5 parent: 2 - uid: 6082 components: - type: Transform - pos: 14.5,39.5 + pos: -11.5,42.5 parent: 2 - uid: 6083 components: - type: Transform - pos: 14.5,38.5 + pos: -10.5,42.5 parent: 2 - uid: 6084 components: - type: Transform - pos: 14.5,37.5 + pos: -9.5,42.5 parent: 2 - uid: 6085 components: - type: Transform - pos: 14.5,36.5 + pos: -9.5,43.5 parent: 2 - uid: 6086 components: - type: Transform - pos: 15.5,36.5 + pos: 33.5,45.5 parent: 2 - uid: 6087 components: - type: Transform - pos: 17.5,39.5 + pos: 32.5,45.5 parent: 2 - uid: 6088 components: - type: Transform - pos: 18.5,39.5 + pos: 31.5,45.5 parent: 2 - uid: 6089 components: - type: Transform - pos: 18.5,38.5 + pos: 30.5,45.5 parent: 2 - uid: 6090 components: - type: Transform - pos: 18.5,37.5 + pos: 29.5,45.5 parent: 2 - uid: 6091 components: - type: Transform - pos: 18.5,36.5 + pos: 29.5,44.5 parent: 2 - uid: 6092 components: - type: Transform - pos: 17.5,36.5 + pos: 29.5,43.5 parent: 2 - uid: 6093 components: - type: Transform - pos: 16.5,40.5 + pos: 29.5,42.5 parent: 2 - uid: 6094 components: - type: Transform - pos: 63.5,30.5 + pos: 29.5,46.5 parent: 2 - uid: 6095 components: - type: Transform - pos: 63.5,31.5 + pos: 29.5,47.5 parent: 2 - uid: 6096 components: - type: Transform - pos: 63.5,32.5 + pos: -2.5,31.5 parent: 2 - uid: 6097 components: - type: Transform - pos: 63.5,33.5 + pos: -2.5,30.5 parent: 2 - uid: 6098 components: - type: Transform - pos: 63.5,34.5 + pos: -2.5,29.5 parent: 2 - uid: 6099 components: - type: Transform - pos: 63.5,35.5 + pos: -2.5,28.5 parent: 2 - uid: 6100 components: - type: Transform - pos: 63.5,36.5 + pos: -2.5,27.5 parent: 2 - uid: 6101 components: - type: Transform - pos: 64.5,36.5 + pos: -2.5,26.5 parent: 2 - uid: 6102 components: - type: Transform - pos: 65.5,36.5 + pos: -2.5,25.5 parent: 2 - uid: 6103 components: - type: Transform - pos: 66.5,36.5 + pos: 3.5,32.5 parent: 2 - uid: 6104 components: - type: Transform - pos: 67.5,36.5 + pos: -22.5,34.5 parent: 2 - uid: 6105 components: - type: Transform - pos: 68.5,36.5 + pos: -23.5,34.5 parent: 2 - uid: 6106 components: - type: Transform - pos: 69.5,36.5 + pos: -24.5,34.5 parent: 2 - uid: 6107 components: - type: Transform - pos: 70.5,36.5 + pos: -24.5,35.5 parent: 2 - uid: 6108 components: - type: Transform - pos: 71.5,36.5 + pos: -24.5,36.5 parent: 2 - uid: 6109 components: - type: Transform - pos: 72.5,36.5 + pos: -24.5,37.5 parent: 2 - uid: 6110 components: - type: Transform - pos: 73.5,36.5 + pos: -24.5,38.5 parent: 2 - uid: 6111 components: - type: Transform - pos: 74.5,36.5 + pos: -23.5,38.5 parent: 2 - uid: 6112 components: - type: Transform - pos: 75.5,36.5 + pos: -22.5,38.5 parent: 2 - uid: 6113 components: - type: Transform - pos: 76.5,36.5 + pos: -21.5,38.5 parent: 2 - uid: 6114 components: - type: Transform - pos: 73.5,35.5 + pos: -20.5,38.5 parent: 2 - uid: 6115 components: - type: Transform - pos: 73.5,34.5 + pos: -24.5,39.5 parent: 2 - uid: 6116 components: - type: Transform - pos: 71.5,35.5 + pos: -24.5,40.5 parent: 2 - uid: 6117 components: - type: Transform - pos: 71.5,34.5 + pos: -24.5,41.5 parent: 2 - uid: 6118 components: - type: Transform - pos: 71.5,37.5 + pos: -24.5,42.5 parent: 2 - uid: 6119 components: - type: Transform - pos: 71.5,38.5 + pos: -24.5,43.5 parent: 2 - uid: 6120 components: - type: Transform - pos: 73.5,38.5 + pos: -24.5,44.5 parent: 2 - uid: 6121 components: - type: Transform - pos: 73.5,37.5 + pos: -24.5,45.5 parent: 2 - uid: 6122 components: - type: Transform - pos: 39.5,47.5 + pos: -25.5,45.5 parent: 2 - uid: 6123 components: - type: Transform - pos: 43.5,45.5 + pos: -26.5,45.5 parent: 2 - uid: 6124 components: - type: Transform - pos: 42.5,45.5 + pos: -27.5,45.5 parent: 2 - uid: 6125 components: - type: Transform - pos: 41.5,45.5 + pos: -27.5,44.5 parent: 2 - uid: 6126 components: - type: Transform - pos: 40.5,45.5 + pos: -24.5,46.5 parent: 2 - uid: 6127 components: - type: Transform - pos: 39.5,45.5 + pos: -24.5,47.5 parent: 2 - uid: 6128 components: - type: Transform - pos: 38.5,45.5 + pos: -23.5,47.5 parent: 2 - uid: 6129 components: - type: Transform - pos: 37.5,45.5 + pos: -22.5,47.5 parent: 2 - uid: 6130 components: - type: Transform - pos: 36.5,45.5 + pos: -22.5,48.5 parent: 2 - uid: 6131 components: - type: Transform - pos: 35.5,45.5 + pos: -21.5,48.5 parent: 2 - uid: 6132 components: - type: Transform - pos: 34.5,45.5 + pos: -20.5,48.5 parent: 2 - uid: 6133 components: - type: Transform - pos: 39.5,46.5 + pos: -20.5,50.5 parent: 2 - uid: 6134 components: - type: Transform - pos: 38.5,44.5 + pos: -19.5,50.5 parent: 2 - uid: 6135 components: - type: Transform - pos: 38.5,43.5 + pos: -20.5,49.5 parent: 2 - uid: 6136 components: - type: Transform - pos: 38.5,48.5 + pos: -8.5,60.5 parent: 2 - uid: 6137 components: - type: Transform - pos: 38.5,49.5 + pos: -8.5,59.5 parent: 2 - uid: 6138 components: - type: Transform - pos: 38.5,50.5 + pos: -7.5,58.5 parent: 2 - uid: 6139 components: - type: Transform - pos: 39.5,50.5 + pos: -6.5,58.5 parent: 2 - uid: 6140 components: - type: Transform - pos: 39.5,51.5 + pos: -5.5,58.5 parent: 2 - uid: 6141 components: - type: Transform - pos: 40.5,51.5 + pos: -4.5,58.5 parent: 2 - uid: 6142 components: - type: Transform - pos: 41.5,51.5 + pos: -3.5,58.5 parent: 2 - uid: 6143 components: - type: Transform - pos: 41.5,44.5 + pos: -2.5,58.5 parent: 2 - uid: 6144 components: - type: Transform - pos: 41.5,46.5 + pos: -1.5,58.5 parent: 2 - uid: 6145 components: - type: Transform - pos: 41.5,47.5 + pos: -0.5,58.5 parent: 2 - uid: 6146 components: - type: Transform - pos: 34.5,46.5 + pos: 0.5,58.5 parent: 2 - uid: 6147 components: - type: Transform - pos: 34.5,47.5 + pos: 0.5,57.5 parent: 2 - uid: 6148 components: - type: Transform - pos: 35.5,44.5 + pos: 0.5,56.5 parent: 2 - uid: 6149 components: - type: Transform - pos: 35.5,43.5 + pos: 0.5,55.5 parent: 2 - uid: 6150 components: - type: Transform - pos: 45.5,32.5 + pos: -2.5,59.5 parent: 2 - uid: 6151 components: - type: Transform - pos: 45.5,31.5 + pos: -2.5,60.5 parent: 2 - uid: 6152 components: - type: Transform - pos: 45.5,30.5 + pos: -2.5,61.5 parent: 2 - uid: 6153 components: - type: Transform - pos: 45.5,29.5 + pos: -2.5,62.5 parent: 2 - uid: 6154 components: - type: Transform - pos: 44.5,29.5 + pos: -1.5,62.5 parent: 2 - uid: 6155 components: - type: Transform - pos: 43.5,29.5 + pos: -1.5,63.5 parent: 2 - uid: 6156 components: - type: Transform - pos: 37.5,50.5 + pos: -1.5,65.5 parent: 2 - uid: 6157 components: - type: Transform - pos: -9.5,46.5 + pos: -1.5,64.5 parent: 2 - uid: 6158 components: - type: Transform - pos: -8.5,46.5 + pos: -0.5,59.5 parent: 2 - uid: 6159 components: - type: Transform - pos: -7.5,46.5 + pos: -0.5,60.5 parent: 2 - uid: 6160 components: - type: Transform - pos: -6.5,46.5 + pos: -0.5,61.5 parent: 2 - uid: 6161 components: - type: Transform - pos: -5.5,46.5 + pos: -0.5,62.5 parent: 2 - uid: 6162 components: - type: Transform - pos: -4.5,46.5 + pos: -1.5,66.5 parent: 2 - uid: 6163 components: - type: Transform - pos: -3.5,46.5 + pos: -2.5,66.5 parent: 2 - uid: 6164 components: - type: Transform - pos: -2.5,46.5 + pos: -3.5,66.5 parent: 2 - uid: 6165 components: - type: Transform - pos: -1.5,46.5 + pos: -4.5,66.5 parent: 2 - uid: 6166 components: - type: Transform - pos: -0.5,46.5 + pos: -5.5,66.5 parent: 2 - uid: 6167 components: - type: Transform - pos: -0.5,45.5 + pos: -5.5,67.5 parent: 2 - uid: 6168 components: - type: Transform - pos: -0.5,44.5 + pos: -5.5,68.5 parent: 2 - uid: 6169 components: - type: Transform - pos: -1.5,44.5 + pos: -5.5,69.5 parent: 2 - uid: 6170 components: - type: Transform - pos: -2.5,44.5 + pos: -5.5,70.5 parent: 2 - uid: 6171 components: - type: Transform - pos: -3.5,44.5 + pos: -5.5,71.5 parent: 2 - uid: 6172 components: - type: Transform - pos: -4.5,44.5 + pos: -5.5,72.5 parent: 2 - uid: 6173 components: - type: Transform - pos: -5.5,44.5 + pos: -4.5,72.5 parent: 2 - uid: 6174 components: - type: Transform - pos: -6.5,44.5 + pos: -3.5,72.5 parent: 2 - uid: 6175 components: - type: Transform - pos: -7.5,44.5 + pos: -2.5,72.5 parent: 2 - uid: 6176 components: - type: Transform - pos: -8.5,44.5 + pos: -1.5,72.5 parent: 2 - uid: 6177 components: - type: Transform - pos: -9.5,44.5 + pos: -0.5,72.5 parent: 2 - uid: 6178 components: - type: Transform - pos: 0.5,46.5 + pos: 0.5,72.5 parent: 2 - uid: 6179 components: - type: Transform - pos: 0.5,47.5 + pos: 1.5,72.5 parent: 2 - uid: 6180 components: - type: Transform - pos: -0.5,48.5 + pos: 2.5,72.5 parent: 2 - uid: 6181 components: - type: Transform - pos: -0.5,49.5 + pos: 2.5,71.5 parent: 2 - uid: 6182 components: - type: Transform - pos: -0.5,50.5 + pos: 2.5,70.5 parent: 2 - uid: 6183 components: - type: Transform - pos: -0.5,51.5 + pos: 2.5,69.5 parent: 2 - uid: 6184 components: - type: Transform - pos: -0.5,52.5 + pos: 2.5,68.5 parent: 2 - uid: 6185 components: - type: Transform - pos: -0.5,53.5 + pos: 2.5,67.5 parent: 2 - uid: 6186 components: - type: Transform - pos: -0.5,54.5 + pos: 2.5,66.5 parent: 2 - uid: 6187 components: - type: Transform - pos: 0.5,48.5 + pos: 1.5,66.5 parent: 2 - uid: 6188 components: - type: Transform - pos: 1.5,48.5 + pos: 0.5,66.5 parent: 2 - uid: 6189 components: - type: Transform - pos: 1.5,50.5 + pos: -0.5,66.5 parent: 2 - uid: 6190 components: - type: Transform - pos: 1.5,51.5 + pos: -1.5,67.5 parent: 2 - uid: 6191 components: - type: Transform - pos: 1.5,52.5 + pos: -1.5,68.5 parent: 2 - uid: 6192 components: - type: Transform - pos: 1.5,53.5 + pos: -1.5,69.5 parent: 2 - uid: 6193 components: - type: Transform - pos: 1.5,54.5 + pos: -7.5,59.5 parent: 2 - uid: 6194 components: - type: Transform - pos: -10.5,23.5 + pos: -9.5,59.5 parent: 2 - uid: 6195 components: - type: Transform - pos: -10.5,22.5 + pos: -10.5,59.5 parent: 2 - uid: 6196 components: - type: Transform - pos: -10.5,21.5 + pos: -11.5,59.5 parent: 2 - uid: 6197 components: - type: Transform - pos: -10.5,20.5 + pos: -12.5,59.5 parent: 2 - uid: 6198 components: - type: Transform - pos: -10.5,19.5 + pos: -12.5,58.5 parent: 2 - uid: 6199 components: - type: Transform - pos: -10.5,18.5 + pos: -12.5,57.5 parent: 2 - uid: 6200 components: - type: Transform - pos: -11.5,18.5 + pos: -12.5,56.5 parent: 2 - uid: 6201 components: - type: Transform - pos: -12.5,18.5 + pos: -12.5,55.5 parent: 2 - uid: 6202 components: - type: Transform - pos: -13.5,18.5 + pos: -12.5,54.5 parent: 2 - uid: 6203 components: - type: Transform - pos: -13.5,19.5 + pos: -12.5,53.5 parent: 2 - uid: 6204 components: - type: Transform - pos: -13.5,20.5 + pos: -12.5,52.5 parent: 2 - uid: 6205 components: - type: Transform - pos: -13.5,21.5 + pos: -12.5,51.5 parent: 2 - uid: 6206 components: - type: Transform - pos: -11.5,42.5 + pos: -12.5,50.5 parent: 2 - uid: 6207 components: - type: Transform - pos: -10.5,42.5 + pos: -12.5,49.5 parent: 2 - uid: 6208 components: - type: Transform - pos: -9.5,42.5 + pos: -13.5,49.5 parent: 2 - uid: 6209 components: - type: Transform - pos: -9.5,43.5 + pos: -14.5,49.5 parent: 2 - uid: 6210 components: - type: Transform - pos: 33.5,45.5 + pos: -14.5,50.5 parent: 2 - uid: 6211 components: - type: Transform - pos: 32.5,45.5 + pos: -14.5,51.5 parent: 2 - uid: 6212 components: - type: Transform - pos: 31.5,45.5 + pos: -13.5,51.5 parent: 2 - uid: 6213 components: - type: Transform - pos: 30.5,45.5 + pos: -12.5,60.5 parent: 2 - uid: 6214 components: - type: Transform - pos: 29.5,45.5 + pos: -12.5,61.5 parent: 2 - uid: 6215 components: - type: Transform - pos: 29.5,44.5 + pos: -12.5,62.5 parent: 2 - uid: 6216 components: - type: Transform - pos: 29.5,43.5 + pos: -12.5,63.5 parent: 2 - uid: 6217 components: - type: Transform - pos: 29.5,42.5 + pos: -12.5,64.5 parent: 2 - uid: 6218 components: - type: Transform - pos: 29.5,46.5 + pos: -12.5,65.5 parent: 2 - uid: 6219 components: - type: Transform - pos: 29.5,47.5 + pos: -12.5,66.5 parent: 2 - uid: 6220 components: - type: Transform - pos: -2.5,31.5 + pos: -12.5,67.5 parent: 2 - uid: 6221 components: - type: Transform - pos: -2.5,30.5 + pos: -12.5,68.5 parent: 2 - uid: 6222 components: - type: Transform - pos: -2.5,29.5 + pos: -12.5,69.5 parent: 2 - uid: 6223 components: - type: Transform - pos: -2.5,28.5 + pos: -12.5,70.5 parent: 2 - uid: 6224 components: - type: Transform - pos: -2.5,27.5 + pos: -12.5,71.5 parent: 2 - uid: 6225 components: - type: Transform - pos: -2.5,26.5 + pos: -12.5,72.5 parent: 2 - uid: 6226 components: - type: Transform - pos: -2.5,25.5 + pos: -12.5,73.5 parent: 2 - uid: 6227 components: - type: Transform - pos: 3.5,32.5 + pos: -12.5,74.5 parent: 2 - uid: 6228 components: - type: Transform - pos: -22.5,34.5 + pos: -13.5,67.5 parent: 2 - uid: 6229 components: - type: Transform - pos: -23.5,34.5 + pos: -14.5,67.5 parent: 2 - uid: 6230 components: - type: Transform - pos: -24.5,34.5 + pos: -15.5,67.5 parent: 2 - uid: 6231 components: - type: Transform - pos: -24.5,35.5 + pos: -16.5,67.5 parent: 2 - uid: 6232 components: - type: Transform - pos: -24.5,36.5 + pos: -17.5,67.5 parent: 2 - uid: 6233 components: - type: Transform - pos: -24.5,37.5 + pos: -17.5,66.5 parent: 2 - uid: 6234 components: - type: Transform - pos: -24.5,38.5 + pos: -17.5,65.5 parent: 2 - uid: 6235 components: - type: Transform - pos: -23.5,38.5 + pos: -17.5,64.5 parent: 2 - uid: 6236 components: - type: Transform - pos: -22.5,38.5 + pos: -17.5,63.5 parent: 2 - uid: 6237 components: - type: Transform - pos: -21.5,38.5 + pos: -17.5,62.5 parent: 2 - uid: 6238 components: - type: Transform - pos: -20.5,38.5 + pos: -17.5,61.5 parent: 2 - uid: 6239 components: - type: Transform - pos: -24.5,39.5 + pos: -17.5,60.5 parent: 2 - uid: 6240 components: - type: Transform - pos: -24.5,40.5 + pos: -17.5,59.5 parent: 2 - uid: 6241 components: - type: Transform - pos: -24.5,41.5 + pos: -17.5,58.5 parent: 2 - uid: 6242 components: - type: Transform - pos: -24.5,42.5 + pos: -17.5,57.5 parent: 2 - uid: 6243 components: - type: Transform - pos: -24.5,43.5 + pos: -17.5,56.5 parent: 2 - uid: 6244 components: - type: Transform - pos: -24.5,44.5 + pos: -17.5,55.5 parent: 2 - uid: 6245 components: - type: Transform - pos: -24.5,45.5 + pos: -18.5,55.5 parent: 2 - uid: 6246 components: - type: Transform - pos: -25.5,45.5 + pos: -19.5,55.5 parent: 2 - uid: 6247 components: - type: Transform - pos: -26.5,45.5 + pos: -20.5,55.5 parent: 2 - uid: 6248 components: - type: Transform - pos: -27.5,45.5 + pos: -21.5,55.5 parent: 2 - uid: 6249 components: - type: Transform - pos: -27.5,44.5 + pos: -22.5,55.5 parent: 2 - uid: 6250 components: - type: Transform - pos: -24.5,46.5 + pos: -22.5,54.5 parent: 2 - uid: 6251 components: - type: Transform - pos: -24.5,47.5 + pos: -22.5,53.5 parent: 2 - uid: 6252 components: - type: Transform - pos: -23.5,47.5 + pos: -22.5,52.5 parent: 2 - uid: 6253 components: - type: Transform - pos: -22.5,47.5 + pos: -22.5,51.5 parent: 2 - uid: 6254 components: - type: Transform - pos: -22.5,48.5 + pos: -21.5,53.5 parent: 2 - uid: 6255 components: - type: Transform - pos: -21.5,48.5 + pos: -21.5,56.5 parent: 2 - uid: 6256 components: - type: Transform - pos: -20.5,48.5 + pos: -21.5,57.5 parent: 2 - uid: 6257 components: - type: Transform - pos: -20.5,50.5 + pos: -21.5,58.5 parent: 2 - uid: 6258 components: - type: Transform - pos: -19.5,50.5 + pos: -21.5,59.5 parent: 2 - uid: 6259 components: - type: Transform - pos: -20.5,49.5 + pos: -21.5,60.5 parent: 2 - uid: 6260 components: - type: Transform - pos: -8.5,60.5 + pos: -21.5,61.5 parent: 2 - uid: 6261 components: - type: Transform - pos: -8.5,59.5 + pos: -21.5,62.5 parent: 2 - uid: 6262 components: - type: Transform - pos: -7.5,58.5 + pos: -21.5,63.5 parent: 2 - uid: 6263 components: - type: Transform - pos: -6.5,58.5 + pos: -21.5,64.5 parent: 2 - uid: 6264 components: - type: Transform - pos: -5.5,58.5 + pos: -21.5,65.5 parent: 2 - uid: 6265 components: - type: Transform - pos: -4.5,58.5 + pos: -21.5,66.5 parent: 2 - uid: 6266 components: - type: Transform - pos: -3.5,58.5 + pos: -21.5,67.5 parent: 2 - uid: 6267 components: - type: Transform - pos: -2.5,58.5 + pos: -21.5,68.5 parent: 2 - uid: 6268 components: - type: Transform - pos: -1.5,58.5 + pos: -21.5,69.5 parent: 2 - uid: 6269 components: - type: Transform - pos: -0.5,58.5 + pos: -21.5,70.5 parent: 2 - uid: 6270 components: - type: Transform - pos: 0.5,58.5 + pos: -21.5,71.5 parent: 2 - uid: 6271 components: - type: Transform - pos: 0.5,57.5 + pos: -21.5,72.5 parent: 2 - uid: 6272 components: - type: Transform - pos: 0.5,56.5 + pos: -21.5,73.5 parent: 2 - uid: 6273 components: - type: Transform - pos: 0.5,55.5 + pos: -21.5,74.5 parent: 2 - uid: 6274 components: - type: Transform - pos: -2.5,59.5 + pos: -17.5,68.5 parent: 2 - uid: 6275 components: - type: Transform - pos: -2.5,60.5 + pos: -17.5,69.5 parent: 2 - uid: 6276 components: - type: Transform - pos: -2.5,61.5 + pos: -17.5,70.5 parent: 2 - uid: 6277 components: - type: Transform - pos: -2.5,62.5 + pos: -17.5,54.5 parent: 2 - uid: 6278 components: - type: Transform - pos: -1.5,62.5 + pos: -17.5,53.5 parent: 2 - uid: 6279 components: - type: Transform - pos: -1.5,63.5 + pos: -25.5,41.5 parent: 2 - uid: 6280 components: - type: Transform - pos: -1.5,65.5 + pos: -28.5,39.5 parent: 2 - uid: 6281 components: - type: Transform - pos: -1.5,64.5 + pos: -27.5,41.5 parent: 2 - uid: 6282 components: - type: Transform - pos: -0.5,59.5 + pos: -28.5,40.5 parent: 2 - uid: 6283 components: - type: Transform - pos: -0.5,60.5 + pos: -28.5,41.5 parent: 2 - uid: 6284 components: - type: Transform - pos: -0.5,61.5 + pos: -28.5,38.5 parent: 2 - uid: 6285 components: - type: Transform - pos: -0.5,62.5 + pos: -29.5,38.5 parent: 2 - uid: 6286 components: - type: Transform - pos: -1.5,66.5 + pos: -30.5,38.5 parent: 2 - uid: 6287 components: - type: Transform - pos: -2.5,66.5 + pos: -31.5,38.5 parent: 2 - uid: 6288 components: - type: Transform - pos: -3.5,66.5 + pos: -32.5,38.5 parent: 2 - uid: 6289 components: - type: Transform - pos: -4.5,66.5 + pos: -32.5,39.5 parent: 2 - uid: 6290 components: - type: Transform - pos: -5.5,66.5 + pos: -33.5,39.5 parent: 2 - uid: 6291 components: - type: Transform - pos: -5.5,67.5 + pos: -34.5,39.5 parent: 2 - uid: 6292 components: - type: Transform - pos: -5.5,68.5 + pos: -35.5,39.5 parent: 2 - uid: 6293 components: - type: Transform - pos: -5.5,69.5 + pos: -36.5,39.5 parent: 2 - uid: 6294 components: - type: Transform - pos: -5.5,70.5 + pos: -37.5,39.5 parent: 2 - uid: 6295 components: - type: Transform - pos: -5.5,71.5 + pos: -37.5,40.5 parent: 2 - uid: 6296 components: - type: Transform - pos: -5.5,72.5 + pos: -37.5,41.5 parent: 2 - uid: 6297 components: - type: Transform - pos: -4.5,72.5 + pos: -37.5,42.5 parent: 2 - uid: 6298 components: - type: Transform - pos: -3.5,72.5 + pos: -38.5,39.5 parent: 2 - uid: 6299 components: - type: Transform - pos: -2.5,72.5 + pos: -39.5,39.5 parent: 2 - uid: 6300 components: - type: Transform - pos: -1.5,72.5 + pos: -40.5,39.5 parent: 2 - uid: 6301 components: - type: Transform - pos: -0.5,72.5 + pos: -41.5,39.5 parent: 2 - uid: 6302 components: - type: Transform - pos: 0.5,72.5 + pos: -42.5,39.5 parent: 2 - uid: 6303 components: - type: Transform - pos: 1.5,72.5 + pos: -43.5,39.5 parent: 2 - uid: 6304 components: - type: Transform - pos: 2.5,72.5 + pos: -44.5,39.5 parent: 2 - uid: 6305 components: - type: Transform - pos: 2.5,71.5 + pos: -45.5,39.5 parent: 2 - uid: 6306 components: - type: Transform - pos: 2.5,70.5 + pos: -46.5,39.5 parent: 2 - uid: 6307 components: - type: Transform - pos: 2.5,69.5 + pos: -41.5,38.5 parent: 2 - uid: 6308 components: - type: Transform - pos: 2.5,68.5 + pos: -29.5,37.5 parent: 2 - uid: 6309 components: - type: Transform - pos: 2.5,67.5 + pos: -29.5,36.5 parent: 2 - uid: 6310 components: - type: Transform - pos: 2.5,66.5 + pos: -30.5,36.5 parent: 2 - uid: 6311 components: - type: Transform - pos: 1.5,66.5 + pos: -31.5,36.5 parent: 2 - uid: 6312 components: - type: Transform - pos: 0.5,66.5 + pos: -32.5,36.5 parent: 2 - uid: 6313 components: - type: Transform - pos: -0.5,66.5 + pos: -33.5,36.5 parent: 2 - uid: 6314 components: - type: Transform - pos: -1.5,67.5 + pos: -34.5,36.5 parent: 2 - uid: 6315 components: - type: Transform - pos: -1.5,68.5 + pos: -34.5,37.5 parent: 2 - uid: 6316 components: - type: Transform - pos: -1.5,69.5 + pos: -35.5,37.5 parent: 2 - uid: 6317 components: - type: Transform - pos: -7.5,59.5 + pos: -36.5,37.5 parent: 2 - uid: 6318 components: - type: Transform - pos: -9.5,59.5 + pos: -37.5,37.5 parent: 2 - uid: 6319 components: - type: Transform - pos: -10.5,59.5 + pos: -37.5,36.5 parent: 2 - uid: 6320 components: - type: Transform - pos: -11.5,59.5 + pos: -21.5,27.5 parent: 2 - uid: 6321 components: - type: Transform - pos: -12.5,59.5 + pos: -22.5,27.5 parent: 2 - uid: 6322 components: - type: Transform - pos: -12.5,58.5 + pos: -23.5,27.5 parent: 2 - uid: 6323 components: - type: Transform - pos: -12.5,57.5 + pos: -24.5,27.5 parent: 2 - uid: 6324 components: - type: Transform - pos: -12.5,56.5 + pos: -25.5,27.5 parent: 2 - uid: 6325 components: - type: Transform - pos: -12.5,55.5 + pos: -26.5,27.5 parent: 2 - uid: 6326 components: - type: Transform - pos: -12.5,54.5 + pos: -27.5,27.5 parent: 2 - uid: 6327 components: - type: Transform - pos: -12.5,53.5 + pos: -28.5,27.5 parent: 2 - uid: 6328 components: - type: Transform - pos: -12.5,52.5 + pos: -28.5,28.5 parent: 2 - uid: 6329 components: - type: Transform - pos: -12.5,51.5 + pos: -28.5,29.5 parent: 2 - uid: 6330 components: - type: Transform - pos: -12.5,50.5 + pos: -28.5,30.5 parent: 2 - uid: 6331 components: - type: Transform - pos: -12.5,49.5 + pos: -28.5,31.5 parent: 2 - uid: 6332 components: - type: Transform - pos: -13.5,49.5 + pos: -27.5,31.5 parent: 2 - uid: 6333 components: - type: Transform - pos: -14.5,49.5 + pos: -27.5,33.5 parent: 2 - uid: 6334 components: - type: Transform - pos: -14.5,50.5 + pos: -27.5,34.5 parent: 2 - uid: 6335 components: - type: Transform - pos: -14.5,51.5 + pos: -27.5,35.5 parent: 2 - uid: 6336 components: - type: Transform - pos: -13.5,51.5 + pos: -27.5,32.5 parent: 2 - uid: 6337 components: - type: Transform - pos: -12.5,60.5 + pos: -16.5,62.5 parent: 2 - uid: 6338 components: - type: Transform - pos: -12.5,61.5 + pos: -16.5,61.5 parent: 2 - uid: 6339 components: - type: Transform - pos: -12.5,62.5 + pos: -18.5,62.5 parent: 2 - uid: 6340 components: - type: Transform - pos: -12.5,63.5 + pos: -18.5,61.5 parent: 2 - uid: 6341 components: - type: Transform - pos: -12.5,64.5 + pos: 56.5,36.5 parent: 2 - uid: 6342 components: - type: Transform - pos: -12.5,65.5 + pos: 28.5,45.5 parent: 2 - uid: 6343 components: - type: Transform - pos: -12.5,66.5 + pos: 27.5,45.5 parent: 2 - uid: 6344 components: - type: Transform - pos: -12.5,67.5 + pos: 26.5,45.5 parent: 2 - uid: 6345 components: - type: Transform - pos: -12.5,68.5 + pos: 25.5,45.5 parent: 2 - uid: 6346 components: - type: Transform - pos: -12.5,69.5 + pos: 24.5,45.5 parent: 2 - uid: 6347 components: - type: Transform - pos: -12.5,70.5 + pos: 23.5,45.5 parent: 2 - uid: 6348 components: - type: Transform - pos: -12.5,71.5 + pos: 22.5,45.5 parent: 2 - uid: 6349 components: - type: Transform - pos: -12.5,72.5 + pos: 21.5,45.5 parent: 2 - uid: 6350 components: - type: Transform - pos: -12.5,73.5 + pos: -8.5,-76.5 parent: 2 - uid: 6351 components: - type: Transform - pos: -12.5,74.5 + pos: -8.5,-77.5 parent: 2 - uid: 6352 components: - type: Transform - pos: -13.5,67.5 + pos: -8.5,-78.5 parent: 2 - uid: 6353 components: - type: Transform - pos: -14.5,67.5 + pos: -8.5,-79.5 parent: 2 - uid: 6354 components: - type: Transform - pos: -15.5,67.5 + pos: -8.5,-80.5 parent: 2 - uid: 6355 components: - type: Transform - pos: -16.5,67.5 + pos: -8.5,-81.5 parent: 2 - uid: 6356 components: - type: Transform - pos: -17.5,67.5 + pos: -8.5,-82.5 parent: 2 - uid: 6357 components: - type: Transform - pos: -17.5,66.5 + pos: -8.5,-83.5 parent: 2 - uid: 6358 components: - type: Transform - pos: -17.5,65.5 + pos: -8.5,-84.5 parent: 2 - uid: 6359 components: - type: Transform - pos: -17.5,64.5 + pos: -8.5,-85.5 parent: 2 - uid: 6360 components: - type: Transform - pos: -17.5,63.5 + pos: -8.5,-86.5 parent: 2 - uid: 6361 components: - type: Transform - pos: -17.5,62.5 + pos: -7.5,-86.5 parent: 2 - uid: 6362 components: - type: Transform - pos: -17.5,61.5 + pos: -7.5,-87.5 parent: 2 - uid: 6363 components: - type: Transform - pos: -17.5,60.5 + pos: -7.5,-88.5 parent: 2 - uid: 6364 components: - type: Transform - pos: -17.5,59.5 + pos: -7.5,-89.5 parent: 2 - uid: 6365 components: - type: Transform - pos: -17.5,58.5 + pos: -7.5,-90.5 parent: 2 - uid: 6366 components: - type: Transform - pos: -17.5,57.5 + pos: -7.5,-91.5 parent: 2 - uid: 6367 components: - type: Transform - pos: -17.5,56.5 + pos: -7.5,-92.5 parent: 2 - uid: 6368 components: - type: Transform - pos: -17.5,55.5 + pos: -7.5,-93.5 parent: 2 - uid: 6369 components: - type: Transform - pos: -18.5,55.5 + pos: -7.5,-94.5 parent: 2 - uid: 6370 components: - type: Transform - pos: -19.5,55.5 + pos: -7.5,-95.5 parent: 2 - uid: 6371 components: - type: Transform - pos: -20.5,55.5 + pos: -7.5,-96.5 parent: 2 - uid: 6372 components: - type: Transform - pos: -21.5,55.5 + pos: -7.5,-97.5 parent: 2 - uid: 6373 components: - type: Transform - pos: -22.5,55.5 + pos: -8.5,-97.5 parent: 2 - uid: 6374 components: - type: Transform - pos: -22.5,54.5 + pos: -9.5,-97.5 parent: 2 - uid: 6375 components: - type: Transform - pos: -22.5,53.5 + pos: -10.5,-97.5 parent: 2 - uid: 6376 components: - type: Transform - pos: -22.5,52.5 + pos: -11.5,-97.5 parent: 2 - uid: 6377 components: - type: Transform - pos: -22.5,51.5 + pos: -12.5,-97.5 parent: 2 - uid: 6378 components: - type: Transform - pos: -21.5,53.5 + pos: -13.5,-97.5 parent: 2 - uid: 6379 components: - type: Transform - pos: -21.5,56.5 + pos: -14.5,-97.5 parent: 2 - uid: 6380 components: - type: Transform - pos: -21.5,57.5 + pos: -15.5,-97.5 parent: 2 - uid: 6381 components: - type: Transform - pos: -21.5,58.5 + pos: -16.5,-97.5 parent: 2 - uid: 6382 components: - type: Transform - pos: -21.5,59.5 + pos: -17.5,-97.5 parent: 2 - uid: 6383 components: - type: Transform - pos: -21.5,60.5 + pos: -18.5,-97.5 parent: 2 - uid: 6384 components: - type: Transform - pos: -21.5,61.5 + pos: -19.5,-97.5 parent: 2 - uid: 6385 components: - type: Transform - pos: -21.5,62.5 + pos: -20.5,-97.5 parent: 2 - uid: 6386 components: - type: Transform - pos: -21.5,63.5 + pos: -20.5,-96.5 parent: 2 - uid: 6387 components: - type: Transform - pos: -21.5,64.5 + pos: -20.5,-95.5 parent: 2 - uid: 6388 components: - type: Transform - pos: -21.5,65.5 + pos: -21.5,-95.5 parent: 2 - uid: 6389 components: - type: Transform - pos: -21.5,66.5 + pos: -22.5,-95.5 parent: 2 - uid: 6390 components: - type: Transform - pos: -21.5,67.5 + pos: -23.5,-95.5 parent: 2 - uid: 6391 components: - type: Transform - pos: -21.5,68.5 + pos: -24.5,-95.5 parent: 2 - uid: 6392 components: - type: Transform - pos: -21.5,69.5 + pos: -24.5,-96.5 parent: 2 - uid: 6393 components: - type: Transform - pos: -21.5,70.5 + pos: -24.5,-97.5 parent: 2 - uid: 6394 components: - type: Transform - pos: -21.5,71.5 + pos: -24.5,-98.5 parent: 2 - uid: 6395 components: - type: Transform - pos: -21.5,72.5 + pos: -24.5,-99.5 parent: 2 - uid: 6396 components: - type: Transform - pos: -21.5,73.5 + pos: -23.5,-99.5 parent: 2 - uid: 6397 components: - type: Transform - pos: -21.5,74.5 + pos: -22.5,-99.5 parent: 2 - uid: 6398 components: - type: Transform - pos: -17.5,68.5 + pos: -21.5,-99.5 parent: 2 - uid: 6399 components: - type: Transform - pos: -17.5,69.5 + pos: -20.5,-99.5 parent: 2 - uid: 6400 components: - type: Transform - pos: -17.5,70.5 + pos: -20.5,-98.5 parent: 2 - uid: 6401 components: - type: Transform - pos: -17.5,54.5 + pos: -15.5,-98.5 parent: 2 - uid: 6402 components: - type: Transform - pos: -17.5,53.5 + pos: -6.5,-97.5 parent: 2 - uid: 6403 components: - type: Transform - pos: -25.5,41.5 + pos: -5.5,-97.5 parent: 2 - uid: 6404 components: - type: Transform - pos: -25.5,40.5 + pos: -4.5,-97.5 parent: 2 - uid: 6405 components: - type: Transform - pos: -26.5,41.5 + pos: -7.5,-98.5 parent: 2 - uid: 6406 components: - type: Transform - pos: -28.5,39.5 + pos: -7.5,-99.5 parent: 2 - uid: 6407 components: - type: Transform - pos: -27.5,41.5 + pos: -7.5,-100.5 parent: 2 - uid: 6408 components: - type: Transform - pos: -28.5,40.5 + pos: -8.5,-95.5 parent: 2 - uid: 6409 components: - type: Transform - pos: -28.5,41.5 + pos: -43.5,-85.5 parent: 2 - uid: 6410 components: - type: Transform - pos: -28.5,38.5 + pos: -43.5,-86.5 parent: 2 - uid: 6411 components: - type: Transform - pos: -29.5,38.5 + pos: -43.5,-87.5 parent: 2 - uid: 6412 components: - type: Transform - pos: -30.5,38.5 + pos: -43.5,-88.5 parent: 2 - uid: 6413 components: - type: Transform - pos: -31.5,38.5 + pos: -43.5,-89.5 parent: 2 - uid: 6414 components: - type: Transform - pos: -32.5,38.5 + pos: -38.5,-85.5 parent: 2 - uid: 6415 components: - type: Transform - pos: -32.5,39.5 + pos: -39.5,-85.5 parent: 2 - uid: 6416 components: - type: Transform - pos: -33.5,39.5 + pos: -40.5,-85.5 parent: 2 - uid: 6417 components: - type: Transform - pos: -34.5,39.5 + pos: -40.5,-86.5 parent: 2 - uid: 6418 components: - type: Transform - pos: -35.5,39.5 + pos: -40.5,-87.5 parent: 2 - uid: 6419 components: - type: Transform - pos: -36.5,39.5 + pos: -40.5,-88.5 parent: 2 - uid: 6420 components: - type: Transform - pos: -37.5,39.5 + pos: -40.5,-89.5 parent: 2 - uid: 6421 components: - type: Transform - pos: -37.5,40.5 + pos: -40.5,-90.5 parent: 2 - uid: 6422 components: - type: Transform - pos: -37.5,41.5 + pos: -25.5,-97.5 parent: 2 - uid: 6423 components: - type: Transform - pos: -37.5,42.5 + pos: -26.5,-97.5 parent: 2 - uid: 6424 components: - type: Transform - pos: -38.5,39.5 + pos: -40.5,-91.5 parent: 2 - uid: 6425 components: - type: Transform - pos: -39.5,39.5 + pos: -43.5,-91.5 parent: 2 - uid: 6426 components: - type: Transform - pos: -40.5,39.5 + pos: -43.5,-92.5 parent: 2 - uid: 6427 components: - type: Transform - pos: -41.5,39.5 + pos: -42.5,-92.5 parent: 2 - uid: 6428 components: - type: Transform - pos: -42.5,39.5 + pos: -40.5,-92.5 parent: 2 - uid: 6429 components: - type: Transform - pos: -43.5,39.5 + pos: -41.5,-92.5 parent: 2 - uid: 6430 components: - type: Transform - pos: -44.5,39.5 + pos: -41.5,-93.5 parent: 2 - uid: 6431 components: - type: Transform - pos: -45.5,39.5 + pos: -41.5,-94.5 parent: 2 - uid: 6432 components: - type: Transform - pos: -46.5,39.5 + pos: -41.5,-95.5 parent: 2 - uid: 6433 components: - type: Transform - pos: -41.5,38.5 + pos: -42.5,-95.5 parent: 2 - uid: 6434 components: - type: Transform - pos: -29.5,37.5 + pos: -43.5,-95.5 parent: 2 - uid: 6435 components: - type: Transform - pos: -29.5,36.5 + pos: -43.5,-96.5 parent: 2 - uid: 6436 components: - type: Transform - pos: -30.5,36.5 + pos: -43.5,-97.5 parent: 2 - uid: 6437 components: - type: Transform - pos: -31.5,36.5 + pos: -42.5,-97.5 parent: 2 - uid: 6438 components: - type: Transform - pos: -32.5,36.5 + pos: -41.5,-97.5 parent: 2 - uid: 6439 components: - type: Transform - pos: -33.5,36.5 + pos: -40.5,-97.5 parent: 2 - uid: 6440 components: - type: Transform - pos: -34.5,36.5 + pos: -39.5,-97.5 parent: 2 - uid: 6441 components: - type: Transform - pos: -34.5,37.5 + pos: -38.5,-97.5 parent: 2 - uid: 6442 components: - type: Transform - pos: -35.5,37.5 + pos: -37.5,-97.5 parent: 2 - uid: 6443 components: - type: Transform - pos: -36.5,37.5 + pos: -36.5,-97.5 parent: 2 - uid: 6444 components: - type: Transform - pos: -37.5,37.5 + pos: -35.5,-97.5 parent: 2 - uid: 6445 components: - type: Transform - pos: -37.5,36.5 + pos: -40.5,-95.5 parent: 2 - uid: 6446 components: - type: Transform - pos: -21.5,27.5 + pos: -39.5,-95.5 parent: 2 - uid: 6447 components: - type: Transform - pos: -22.5,27.5 + pos: -38.5,-95.5 parent: 2 - uid: 6448 components: - type: Transform - pos: -23.5,27.5 + pos: -37.5,-95.5 parent: 2 - uid: 6449 components: - type: Transform - pos: -24.5,27.5 + pos: -36.5,-95.5 parent: 2 - uid: 6450 components: - type: Transform - pos: -25.5,27.5 + pos: -35.5,-95.5 parent: 2 - uid: 6451 components: - type: Transform - pos: -26.5,27.5 + pos: -35.5,-96.5 parent: 2 - uid: 6452 components: - type: Transform - pos: -27.5,27.5 + pos: -34.5,-97.5 parent: 2 - uid: 6453 components: - type: Transform - pos: -28.5,27.5 + pos: -33.5,-97.5 parent: 2 - uid: 6454 components: - type: Transform - pos: -28.5,28.5 + pos: -32.5,-97.5 parent: 2 - uid: 6455 components: - type: Transform - pos: -28.5,29.5 + pos: -31.5,-97.5 parent: 2 - uid: 6456 components: - type: Transform - pos: -28.5,30.5 + pos: -30.5,-97.5 parent: 2 - uid: 6457 components: - type: Transform - pos: -28.5,31.5 + pos: -29.5,-97.5 parent: 2 - uid: 6458 components: - type: Transform - pos: -27.5,31.5 + pos: -28.5,-97.5 parent: 2 - uid: 6459 components: - type: Transform - pos: -27.5,33.5 + pos: -43.5,-90.5 parent: 2 - uid: 6460 components: - type: Transform - pos: -27.5,34.5 + pos: -35.5,-98.5 parent: 2 - uid: 6461 components: - type: Transform - pos: -27.5,35.5 + pos: -35.5,-99.5 parent: 2 - uid: 6462 components: - type: Transform - pos: -27.5,32.5 + pos: -35.5,-100.5 parent: 2 - uid: 6463 components: - type: Transform - pos: -16.5,62.5 + pos: -35.5,-100.5 parent: 2 - uid: 6464 components: - type: Transform - pos: -16.5,61.5 + pos: -35.5,-99.5 parent: 2 - uid: 6465 components: - type: Transform - pos: -18.5,62.5 + pos: -35.5,-102.5 parent: 2 - uid: 6466 components: - type: Transform - pos: -18.5,61.5 + pos: -35.5,-103.5 parent: 2 - uid: 6467 components: - type: Transform - pos: 56.5,36.5 + pos: -35.5,-104.5 parent: 2 - uid: 6468 components: - type: Transform - pos: 28.5,45.5 + pos: -35.5,-105.5 parent: 2 - uid: 6469 components: - type: Transform - pos: 27.5,45.5 + pos: -36.5,-104.5 parent: 2 - uid: 6470 components: - type: Transform - pos: 26.5,45.5 + pos: 37.5,-48.5 parent: 2 - uid: 6471 components: - type: Transform - pos: 25.5,45.5 + pos: 36.5,-48.5 parent: 2 - uid: 6472 components: - type: Transform - pos: 24.5,45.5 + pos: 36.5,-47.5 parent: 2 - uid: 6473 components: - type: Transform - pos: 23.5,45.5 + pos: 36.5,-46.5 parent: 2 - uid: 6474 components: - type: Transform - pos: 22.5,45.5 + pos: -71.5,-31.5 parent: 2 - uid: 6475 components: - type: Transform - pos: 21.5,45.5 + pos: -72.5,-26.5 parent: 2 - uid: 6476 components: - type: Transform - pos: -8.5,-76.5 + pos: -72.5,-27.5 parent: 2 - uid: 6477 components: - type: Transform - pos: -8.5,-77.5 + pos: -72.5,-28.5 parent: 2 - uid: 6478 components: - type: Transform - pos: -8.5,-78.5 + pos: -72.5,-29.5 parent: 2 - uid: 6479 components: - type: Transform - pos: -8.5,-79.5 + pos: -73.5,-31.5 parent: 2 - uid: 6480 components: - type: Transform - pos: -8.5,-80.5 + pos: -72.5,-31.5 parent: 2 - uid: 6481 components: - type: Transform - pos: -8.5,-81.5 + pos: -72.5,-32.5 parent: 2 - uid: 6482 components: - type: Transform - pos: -8.5,-82.5 + pos: -72.5,-33.5 parent: 2 - uid: 6483 components: - type: Transform - pos: -8.5,-83.5 + pos: -73.5,-30.5 parent: 2 - uid: 6484 components: - type: Transform - pos: -8.5,-84.5 + pos: -73.5,-29.5 parent: 2 - uid: 6485 components: - type: Transform - pos: -8.5,-85.5 + pos: 27.5,-1.5 parent: 2 - uid: 6486 components: - type: Transform - pos: -8.5,-86.5 + pos: -12.5,-14.5 parent: 2 - uid: 6487 components: - type: Transform - pos: -7.5,-86.5 + pos: 62.5,-29.5 parent: 2 - uid: 6488 components: - type: Transform - pos: -7.5,-87.5 + pos: 74.5,-45.5 parent: 2 - uid: 6489 components: - type: Transform - pos: -7.5,-88.5 + pos: 75.5,-45.5 parent: 2 - uid: 6490 components: - type: Transform - pos: -7.5,-89.5 + pos: 76.5,-45.5 parent: 2 - uid: 6491 components: - type: Transform - pos: -7.5,-90.5 + pos: 74.5,-44.5 parent: 2 - uid: 6492 components: - type: Transform - pos: -7.5,-91.5 + pos: 74.5,-43.5 parent: 2 - uid: 6493 components: - type: Transform - pos: -7.5,-92.5 + pos: 74.5,-42.5 parent: 2 - uid: 6494 components: - type: Transform - pos: -7.5,-93.5 + pos: 74.5,-41.5 parent: 2 - uid: 6495 components: - type: Transform - pos: -7.5,-94.5 + pos: 74.5,-40.5 parent: 2 - uid: 6496 components: - type: Transform - pos: -7.5,-95.5 + pos: 74.5,-39.5 parent: 2 - uid: 6497 components: - type: Transform - pos: -7.5,-96.5 + pos: 74.5,-38.5 parent: 2 - uid: 6498 components: - type: Transform - pos: -7.5,-97.5 + pos: 76.5,-46.5 parent: 2 - uid: 6499 components: - type: Transform - pos: -8.5,-97.5 + pos: 76.5,-47.5 parent: 2 - uid: 6500 components: - type: Transform - pos: -9.5,-97.5 + pos: 76.5,-48.5 parent: 2 - uid: 6501 components: - type: Transform - pos: -10.5,-97.5 + pos: 76.5,-49.5 parent: 2 - uid: 6502 components: - type: Transform - pos: -11.5,-97.5 + pos: 73.5,-48.5 parent: 2 - uid: 6503 components: - type: Transform - pos: -12.5,-97.5 + pos: 74.5,-48.5 parent: 2 - uid: 6504 components: - type: Transform - pos: -13.5,-97.5 + pos: 74.5,-47.5 parent: 2 - uid: 6505 components: - type: Transform - pos: -14.5,-97.5 + pos: 75.5,-47.5 parent: 2 - uid: 6506 components: - type: Transform - pos: -15.5,-97.5 + pos: 74.5,-37.5 parent: 2 - uid: 6507 components: - type: Transform - pos: -16.5,-97.5 + pos: 75.5,-37.5 parent: 2 - uid: 6508 components: - type: Transform - pos: -17.5,-97.5 + pos: 76.5,-37.5 parent: 2 - uid: 6509 components: - type: Transform - pos: -18.5,-97.5 + pos: 77.5,-37.5 parent: 2 - uid: 6510 components: - type: Transform - pos: -19.5,-97.5 + pos: 78.5,-37.5 parent: 2 - uid: 6511 components: - type: Transform - pos: -20.5,-97.5 + pos: 78.5,-36.5 parent: 2 - uid: 6512 components: - type: Transform - pos: -20.5,-96.5 + pos: 78.5,-35.5 parent: 2 - uid: 6513 components: - type: Transform - pos: -20.5,-95.5 + pos: 78.5,-34.5 parent: 2 - uid: 6514 components: - type: Transform - pos: -21.5,-95.5 + pos: 78.5,-33.5 parent: 2 - uid: 6515 components: - type: Transform - pos: -22.5,-95.5 + pos: 77.5,-33.5 parent: 2 - uid: 6516 components: - type: Transform - pos: -23.5,-95.5 + pos: 76.5,-33.5 parent: 2 - uid: 6517 components: - type: Transform - pos: -24.5,-95.5 + pos: 75.5,-33.5 parent: 2 - uid: 6518 components: - type: Transform - pos: -24.5,-96.5 + pos: 74.5,-33.5 parent: 2 - uid: 6519 components: - type: Transform - pos: -24.5,-97.5 + pos: 74.5,-32.5 parent: 2 - uid: 6520 components: - type: Transform - pos: -24.5,-98.5 + pos: 73.5,-32.5 parent: 2 - uid: 6521 components: - type: Transform - pos: -24.5,-99.5 + pos: 72.5,-32.5 parent: 2 - uid: 6522 components: - type: Transform - pos: -23.5,-99.5 + pos: 71.5,-32.5 parent: 2 - uid: 6523 components: - type: Transform - pos: -22.5,-99.5 + pos: 70.5,-32.5 parent: 2 - uid: 6524 components: - type: Transform - pos: -21.5,-99.5 + pos: 70.5,-33.5 parent: 2 - uid: 6525 components: - type: Transform - pos: -20.5,-99.5 + pos: 70.5,-34.5 parent: 2 - uid: 6526 components: - type: Transform - pos: -20.5,-98.5 + pos: 70.5,-35.5 parent: 2 - uid: 6527 components: - type: Transform - pos: -15.5,-98.5 + pos: 70.5,-36.5 parent: 2 - uid: 6528 components: - type: Transform - pos: -6.5,-97.5 + pos: 71.5,-36.5 parent: 2 - uid: 6529 components: - type: Transform - pos: -5.5,-97.5 + pos: 72.5,-37.5 parent: 2 - uid: 6530 components: - type: Transform - pos: -4.5,-97.5 + pos: 73.5,-37.5 parent: 2 - uid: 6531 components: - type: Transform - pos: -7.5,-98.5 + pos: 73.5,-36.5 parent: 2 - uid: 6532 components: - type: Transform - pos: -7.5,-99.5 + pos: 73.5,-35.5 parent: 2 - uid: 6533 components: - type: Transform - pos: -7.5,-100.5 + pos: 69.5,-33.5 parent: 2 - uid: 6534 components: - type: Transform - pos: -8.5,-95.5 + pos: 68.5,-33.5 parent: 2 - uid: 6535 components: - type: Transform - pos: -43.5,-85.5 + pos: 67.5,-33.5 parent: 2 - uid: 6536 components: - type: Transform - pos: -43.5,-86.5 + pos: 66.5,-33.5 parent: 2 - uid: 6537 components: - type: Transform - pos: -43.5,-87.5 + pos: 65.5,-33.5 parent: 2 - uid: 6538 components: - type: Transform - pos: -43.5,-88.5 + pos: 62.5,-30.5 parent: 2 - uid: 6539 components: - type: Transform - pos: -43.5,-89.5 + pos: 65.5,-32.5 parent: 2 - uid: 6540 components: - type: Transform - pos: -38.5,-85.5 + pos: -21.5,-61.5 parent: 2 - uid: 6541 components: - type: Transform - pos: -39.5,-85.5 + pos: -16.5,-15.5 parent: 2 - uid: 6542 components: - type: Transform - pos: -40.5,-85.5 + pos: 70.5,-37.5 parent: 2 - uid: 6543 components: - type: Transform - pos: -40.5,-86.5 + pos: 69.5,-37.5 parent: 2 - uid: 6544 components: - type: Transform - pos: -40.5,-87.5 + pos: 68.5,-37.5 parent: 2 - uid: 6545 components: - type: Transform - pos: -40.5,-88.5 + pos: 67.5,-37.5 parent: 2 - uid: 6546 components: - type: Transform - pos: -40.5,-89.5 + pos: 67.5,-38.5 parent: 2 - uid: 6547 components: - type: Transform - pos: -40.5,-90.5 + pos: 54.5,10.5 parent: 2 - uid: 6548 components: - type: Transform - pos: -25.5,-97.5 + pos: -71.5,-29.5 parent: 2 - uid: 6549 components: - type: Transform - pos: -26.5,-97.5 + pos: -55.5,-62.5 parent: 2 - uid: 6550 components: - type: Transform - pos: -40.5,-91.5 + pos: -54.5,-62.5 parent: 2 - uid: 6551 components: - type: Transform - pos: -43.5,-91.5 + pos: -53.5,-62.5 parent: 2 - uid: 6552 components: - type: Transform - pos: -43.5,-92.5 + pos: -54.5,-58.5 parent: 2 - uid: 6553 components: - type: Transform - pos: -42.5,-92.5 + pos: -53.5,-58.5 parent: 2 - uid: 6554 components: - type: Transform - pos: -40.5,-92.5 + pos: -52.5,-58.5 parent: 2 - uid: 6555 components: - type: Transform - pos: -41.5,-92.5 + pos: -51.5,-58.5 parent: 2 - uid: 6556 components: - type: Transform - pos: -41.5,-93.5 + pos: -56.5,-61.5 parent: 2 - uid: 6557 components: - type: Transform - pos: -41.5,-94.5 + pos: -54.5,-63.5 parent: 2 - uid: 6558 components: - type: Transform - pos: -41.5,-95.5 + pos: 72.5,-31.5 parent: 2 - uid: 6559 components: - type: Transform - pos: -42.5,-95.5 + pos: 72.5,-30.5 parent: 2 - uid: 6560 components: - type: Transform - pos: -43.5,-95.5 + pos: 72.5,-29.5 parent: 2 - uid: 6561 components: - type: Transform - pos: -43.5,-96.5 + pos: 72.5,-28.5 parent: 2 - uid: 6562 components: - type: Transform - pos: -43.5,-97.5 + pos: -53.5,-63.5 parent: 2 - uid: 6563 components: - type: Transform - pos: -42.5,-97.5 + pos: 56.5,34.5 parent: 2 - uid: 6564 components: - type: Transform - pos: -41.5,-97.5 + pos: -71.5,-30.5 parent: 2 - uid: 6565 components: - type: Transform - pos: -40.5,-97.5 + pos: 6.5,-42.5 parent: 2 - uid: 6566 components: - type: Transform - pos: -39.5,-97.5 + pos: 7.5,-42.5 parent: 2 - uid: 6567 components: - type: Transform - pos: -38.5,-97.5 + pos: 8.5,-39.5 parent: 2 - uid: 6568 components: - type: Transform - pos: -37.5,-97.5 + pos: 8.5,-38.5 parent: 2 - uid: 6569 components: - type: Transform - pos: -36.5,-97.5 + pos: 8.5,-37.5 parent: 2 - uid: 6570 components: - type: Transform - pos: -35.5,-97.5 + pos: 8.5,-36.5 parent: 2 - uid: 6571 components: - type: Transform - pos: -40.5,-95.5 + pos: 8.5,-35.5 parent: 2 - uid: 6572 components: - type: Transform - pos: -39.5,-95.5 + pos: 8.5,-34.5 parent: 2 - uid: 6573 components: - type: Transform - pos: -38.5,-95.5 + pos: 8.5,-33.5 parent: 2 - uid: 6574 components: - type: Transform - pos: -37.5,-95.5 + pos: 8.5,-32.5 parent: 2 - uid: 6575 components: - type: Transform - pos: -36.5,-95.5 + pos: 8.5,-31.5 parent: 2 - uid: 6576 components: - type: Transform - pos: -35.5,-95.5 + pos: 8.5,-30.5 parent: 2 - uid: 6577 components: - type: Transform - pos: -35.5,-96.5 + pos: 8.5,-29.5 parent: 2 - uid: 6578 components: - type: Transform - pos: -34.5,-97.5 + pos: 9.5,-29.5 parent: 2 - uid: 6579 components: - type: Transform - pos: -33.5,-97.5 + pos: 10.5,-29.5 parent: 2 - uid: 6580 components: - type: Transform - pos: -32.5,-97.5 + pos: 11.5,-29.5 parent: 2 - uid: 6581 components: - type: Transform - pos: -31.5,-97.5 + pos: 7.5,-36.5 parent: 2 - uid: 6582 components: - type: Transform - pos: -30.5,-97.5 + pos: 6.5,-36.5 parent: 2 - uid: 6583 components: - type: Transform - pos: -29.5,-97.5 + pos: 6.5,-35.5 parent: 2 - uid: 6584 components: - type: Transform - pos: -28.5,-97.5 + pos: 6.5,-34.5 parent: 2 - uid: 6585 components: - type: Transform - pos: -43.5,-90.5 + pos: 6.5,-33.5 parent: 2 - uid: 6586 components: - type: Transform - pos: -35.5,-98.5 + pos: 6.5,-32.5 parent: 2 - uid: 6587 components: - type: Transform - pos: -35.5,-99.5 + pos: 6.5,-31.5 parent: 2 - uid: 6588 components: - type: Transform - pos: -35.5,-100.5 + pos: 5.5,-31.5 parent: 2 - uid: 6589 components: - type: Transform - pos: -35.5,-100.5 + pos: 4.5,-31.5 parent: 2 - uid: 6590 components: - type: Transform - pos: -35.5,-99.5 + pos: 3.5,-31.5 parent: 2 - uid: 6591 components: - type: Transform - pos: -35.5,-102.5 + pos: 2.5,-31.5 parent: 2 - uid: 6592 components: - type: Transform - pos: -35.5,-103.5 + pos: 4.5,-32.5 parent: 2 - uid: 6593 components: - type: Transform - pos: -35.5,-104.5 + pos: 4.5,-33.5 parent: 2 - uid: 6594 components: - type: Transform - pos: -35.5,-105.5 + pos: 55.5,-62.5 parent: 2 - uid: 6595 components: - type: Transform - pos: -36.5,-104.5 + pos: 6.5,-30.5 parent: 2 - uid: 6596 components: - type: Transform - pos: 37.5,-48.5 + pos: 54.5,-32.5 parent: 2 - uid: 6597 components: - type: Transform - pos: 36.5,-48.5 + pos: 53.5,-32.5 parent: 2 - uid: 6598 components: - type: Transform - pos: 36.5,-47.5 + pos: 52.5,-32.5 parent: 2 - uid: 6599 components: - type: Transform - pos: 36.5,-46.5 + pos: 55.5,-31.5 parent: 2 - uid: 6600 components: - type: Transform - pos: -71.5,-31.5 + pos: 55.5,-30.5 parent: 2 - uid: 6601 components: - type: Transform - pos: -72.5,-26.5 + pos: 55.5,-29.5 parent: 2 - uid: 6602 components: - type: Transform - pos: -72.5,-27.5 + pos: 55.5,-28.5 parent: 2 - uid: 6603 components: - type: Transform - pos: -72.5,-28.5 + pos: 55.5,-27.5 parent: 2 - uid: 6604 components: - type: Transform - pos: -72.5,-29.5 + pos: 55.5,-26.5 parent: 2 - uid: 6605 components: - type: Transform - pos: -73.5,-31.5 + pos: 61.5,-26.5 parent: 2 - uid: 6606 components: - type: Transform - pos: -72.5,-31.5 + pos: 60.5,-26.5 parent: 2 - uid: 6607 components: - type: Transform - pos: -72.5,-32.5 + pos: 59.5,-26.5 parent: 2 - uid: 6608 components: - type: Transform - pos: -72.5,-33.5 + pos: 58.5,-26.5 parent: 2 - uid: 6609 components: - type: Transform - pos: -73.5,-30.5 + pos: 57.5,-26.5 parent: 2 - uid: 6610 components: - type: Transform - pos: -73.5,-29.5 + pos: 57.5,-27.5 parent: 2 - uid: 6611 components: - type: Transform - pos: 27.5,-1.5 + pos: 57.5,-28.5 parent: 2 - uid: 6612 components: - type: Transform - pos: -12.5,-14.5 + pos: 58.5,-28.5 parent: 2 - uid: 6613 components: - type: Transform - pos: 62.5,-29.5 + pos: 58.5,-29.5 parent: 2 - uid: 6614 components: - type: Transform - pos: 74.5,-45.5 + pos: 55.5,-35.5 parent: 2 - uid: 6615 components: - type: Transform - pos: 75.5,-45.5 + pos: 54.5,-35.5 parent: 2 - uid: 6616 components: - type: Transform - pos: 76.5,-45.5 + pos: 54.5,-36.5 parent: 2 - uid: 6617 components: - type: Transform - pos: 74.5,-44.5 + pos: 54.5,-37.5 parent: 2 - uid: 6618 components: - type: Transform - pos: 74.5,-43.5 + pos: 55.5,-37.5 parent: 2 - uid: 6619 components: - type: Transform - pos: 74.5,-42.5 + pos: 55.5,-38.5 parent: 2 - uid: 6620 components: - type: Transform - pos: 74.5,-41.5 + pos: 57.5,-38.5 parent: 2 - uid: 6621 components: - type: Transform - pos: 74.5,-40.5 + pos: 58.5,-38.5 parent: 2 - uid: 6622 components: - type: Transform - pos: 74.5,-39.5 + pos: 59.5,-38.5 parent: 2 - uid: 6623 components: - type: Transform - pos: 74.5,-38.5 + pos: 59.5,-39.5 parent: 2 - uid: 6624 components: - type: Transform - pos: 76.5,-46.5 + pos: 59.5,-40.5 parent: 2 - uid: 6625 components: - type: Transform - pos: 76.5,-47.5 + pos: 59.5,-41.5 parent: 2 - uid: 6626 components: - type: Transform - pos: 76.5,-48.5 + pos: 59.5,-42.5 parent: 2 - uid: 6627 components: - type: Transform - pos: 76.5,-49.5 + pos: 59.5,-43.5 parent: 2 - uid: 6628 components: - type: Transform - pos: 73.5,-48.5 + pos: 36.5,-33.5 parent: 2 - uid: 6629 components: - type: Transform - pos: 74.5,-48.5 + pos: 37.5,-33.5 parent: 2 - uid: 6630 components: - type: Transform - pos: 74.5,-47.5 + pos: 38.5,-33.5 parent: 2 - uid: 6631 components: - type: Transform - pos: 75.5,-47.5 + pos: 39.5,-33.5 parent: 2 - uid: 6632 components: - type: Transform - pos: 74.5,-37.5 + pos: 40.5,-33.5 parent: 2 - uid: 6633 components: - type: Transform - pos: 75.5,-37.5 + pos: 41.5,-33.5 parent: 2 - uid: 6634 components: - type: Transform - pos: 76.5,-37.5 + pos: 42.5,-33.5 parent: 2 - uid: 6635 components: - type: Transform - pos: 77.5,-37.5 + pos: 43.5,-33.5 parent: 2 - uid: 6636 components: - type: Transform - pos: 78.5,-37.5 + pos: 44.5,-33.5 parent: 2 - uid: 6637 components: - type: Transform - pos: 78.5,-36.5 + pos: 45.5,-33.5 parent: 2 - uid: 6638 components: - type: Transform - pos: 78.5,-35.5 + pos: 46.5,-33.5 parent: 2 - uid: 6639 components: - type: Transform - pos: 78.5,-34.5 + pos: 47.5,-33.5 parent: 2 - uid: 6640 components: - type: Transform - pos: 78.5,-33.5 + pos: 48.5,-33.5 parent: 2 - uid: 6641 components: - type: Transform - pos: 77.5,-33.5 + pos: 49.5,-33.5 parent: 2 - uid: 6642 components: - type: Transform - pos: 76.5,-33.5 + pos: 49.5,-34.5 parent: 2 - uid: 6643 components: - type: Transform - pos: 75.5,-33.5 + pos: 50.5,-34.5 parent: 2 - uid: 6644 components: - type: Transform - pos: 74.5,-33.5 + pos: 51.5,-34.5 parent: 2 - uid: 6645 components: - type: Transform - pos: 74.5,-32.5 + pos: 55.5,-64.5 parent: 2 - uid: 6646 components: - type: Transform - pos: 73.5,-32.5 + pos: 55.5,-65.5 parent: 2 - uid: 6647 components: - type: Transform - pos: 72.5,-32.5 + pos: 54.5,-65.5 parent: 2 - uid: 6648 components: - type: Transform - pos: 71.5,-32.5 + pos: 53.5,-65.5 parent: 2 - uid: 6649 components: - type: Transform - pos: 70.5,-32.5 + pos: 52.5,-65.5 parent: 2 - uid: 6650 components: - type: Transform - pos: 70.5,-33.5 + pos: 51.5,-65.5 parent: 2 - uid: 6651 components: - type: Transform - pos: 70.5,-34.5 + pos: 50.5,-65.5 parent: 2 - uid: 6652 components: - type: Transform - pos: 70.5,-35.5 + pos: 49.5,-65.5 parent: 2 - uid: 6653 components: - type: Transform - pos: 70.5,-36.5 + pos: 48.5,-65.5 parent: 2 - uid: 6654 components: - type: Transform - pos: 71.5,-36.5 + pos: 47.5,-65.5 parent: 2 - uid: 6655 components: - type: Transform - pos: 72.5,-37.5 + pos: 46.5,-65.5 parent: 2 - uid: 6656 components: - type: Transform - pos: 73.5,-37.5 + pos: 45.5,-65.5 parent: 2 - uid: 6657 components: - type: Transform - pos: 73.5,-36.5 + pos: 45.5,-64.5 parent: 2 - uid: 6658 components: - type: Transform - pos: 73.5,-35.5 + pos: 44.5,-64.5 parent: 2 - uid: 6659 components: - type: Transform - pos: 69.5,-33.5 + pos: 43.5,-64.5 parent: 2 - uid: 6660 components: - type: Transform - pos: 68.5,-33.5 + pos: 45.5,-63.5 parent: 2 - uid: 6661 components: - type: Transform - pos: 67.5,-33.5 + pos: 43.5,-63.5 parent: 2 - uid: 6662 components: - type: Transform - pos: 66.5,-33.5 + pos: 56.5,-65.5 parent: 2 - uid: 6663 components: - type: Transform - pos: 65.5,-33.5 + pos: 57.5,-65.5 parent: 2 - uid: 6664 components: - type: Transform - pos: 62.5,-30.5 + pos: 58.5,-65.5 parent: 2 - uid: 6665 components: - type: Transform - pos: 65.5,-32.5 + pos: 59.5,-65.5 parent: 2 - uid: 6666 components: - type: Transform - pos: -21.5,-61.5 + pos: 60.5,-65.5 parent: 2 - uid: 6667 components: - type: Transform - pos: -16.5,-15.5 + pos: 61.5,-65.5 parent: 2 - uid: 6668 components: - type: Transform - pos: 70.5,-37.5 + pos: 61.5,-66.5 parent: 2 - uid: 6669 components: - type: Transform - pos: 69.5,-37.5 + pos: 61.5,-67.5 parent: 2 - uid: 6670 components: - type: Transform - pos: 68.5,-37.5 + pos: 61.5,-68.5 parent: 2 - uid: 6671 components: - type: Transform - pos: 67.5,-37.5 + pos: 62.5,-65.5 parent: 2 - uid: 6672 components: - type: Transform - pos: 67.5,-38.5 + pos: 63.5,-65.5 parent: 2 - uid: 6673 components: - type: Transform - pos: 54.5,10.5 + pos: 64.5,-65.5 parent: 2 - uid: 6674 components: - type: Transform - pos: -71.5,-29.5 + pos: 65.5,-65.5 parent: 2 - uid: 6675 components: - type: Transform - pos: -55.5,-62.5 + pos: 66.5,-65.5 parent: 2 - uid: 6676 components: - type: Transform - pos: -54.5,-62.5 + pos: 61.5,-64.5 parent: 2 - uid: 6677 components: - type: Transform - pos: -53.5,-62.5 + pos: 61.5,-63.5 parent: 2 - uid: 6678 components: - type: Transform - pos: -54.5,-58.5 + pos: 61.5,-62.5 parent: 2 - uid: 6679 components: - type: Transform - pos: -53.5,-58.5 + pos: 62.5,-62.5 parent: 2 - uid: 6680 components: - type: Transform - pos: -52.5,-58.5 + pos: 60.5,-63.5 parent: 2 - uid: 6681 components: - type: Transform - pos: -51.5,-58.5 + pos: 59.5,-63.5 parent: 2 - uid: 6682 components: - type: Transform - pos: -56.5,-61.5 + pos: 57.5,-34.5 parent: 2 - uid: 6683 components: - type: Transform - pos: -54.5,-63.5 + pos: 67.5,-65.5 parent: 2 - uid: 6684 components: - type: Transform - pos: 72.5,-31.5 + pos: 68.5,-65.5 parent: 2 - uid: 6685 components: - type: Transform - pos: 72.5,-30.5 + pos: 68.5,-66.5 parent: 2 - uid: 6686 components: - type: Transform - pos: 72.5,-29.5 + pos: 68.5,-67.5 parent: 2 - uid: 6687 components: - type: Transform - pos: 72.5,-28.5 + pos: 68.5,-68.5 parent: 2 - uid: 6688 components: - type: Transform - pos: -53.5,-63.5 + pos: 68.5,-69.5 parent: 2 - uid: 6689 components: - type: Transform - pos: 56.5,34.5 + pos: 68.5,-70.5 parent: 2 - uid: 6690 components: - type: Transform - pos: -71.5,-30.5 + pos: 68.5,-71.5 parent: 2 - uid: 6691 components: - type: Transform - pos: 6.5,-42.5 + pos: 69.5,-71.5 parent: 2 - uid: 6692 components: - type: Transform - pos: 7.5,-42.5 + pos: 70.5,-71.5 parent: 2 - uid: 6693 components: - type: Transform - pos: 8.5,-39.5 + pos: 71.5,-71.5 parent: 2 - uid: 6694 components: - type: Transform - pos: 8.5,-38.5 + pos: 72.5,-71.5 parent: 2 - uid: 6695 components: - type: Transform - pos: 8.5,-37.5 + pos: 72.5,-70.5 parent: 2 - uid: 6696 components: - type: Transform - pos: 8.5,-36.5 + pos: 72.5,-69.5 parent: 2 - uid: 6697 components: - type: Transform - pos: 8.5,-35.5 + pos: 73.5,-69.5 parent: 2 - uid: 6698 components: - type: Transform - pos: 8.5,-34.5 + pos: 74.5,-69.5 parent: 2 - uid: 6699 components: - type: Transform - pos: 8.5,-33.5 + pos: 74.5,-68.5 parent: 2 - uid: 6700 components: - type: Transform - pos: 8.5,-32.5 + pos: 74.5,-67.5 parent: 2 - uid: 6701 components: - type: Transform - pos: 8.5,-31.5 + pos: 74.5,-66.5 parent: 2 - uid: 6702 components: - type: Transform - pos: 8.5,-30.5 + pos: 74.5,-65.5 parent: 2 - uid: 6703 components: - type: Transform - pos: 8.5,-29.5 + pos: 74.5,-64.5 parent: 2 - uid: 6704 components: - type: Transform - pos: 9.5,-29.5 + pos: 74.5,-63.5 parent: 2 - uid: 6705 components: - type: Transform - pos: 10.5,-29.5 + pos: 68.5,-64.5 parent: 2 - uid: 6706 components: - type: Transform - pos: 11.5,-29.5 + pos: 68.5,-63.5 parent: 2 - uid: 6707 components: - type: Transform - pos: 7.5,-36.5 + pos: 68.5,-62.5 parent: 2 - uid: 6708 components: - type: Transform - pos: 6.5,-36.5 + pos: 68.5,-61.5 parent: 2 - uid: 6709 components: - type: Transform - pos: 6.5,-35.5 + pos: 69.5,-61.5 parent: 2 - uid: 6710 components: - type: Transform - pos: 6.5,-34.5 + pos: 70.5,-61.5 parent: 2 - uid: 6711 components: - type: Transform - pos: 6.5,-33.5 + pos: 71.5,-61.5 parent: 2 - uid: 6712 components: - type: Transform - pos: 6.5,-32.5 + pos: 71.5,-60.5 parent: 2 - uid: 6713 components: - type: Transform - pos: 6.5,-31.5 + pos: 71.5,-59.5 parent: 2 - uid: 6714 components: - type: Transform - pos: 5.5,-31.5 + pos: 71.5,-58.5 parent: 2 - uid: 6715 components: - type: Transform - pos: 4.5,-31.5 + pos: 71.5,-57.5 parent: 2 - uid: 6716 components: - type: Transform - pos: 3.5,-31.5 + pos: 72.5,-57.5 parent: 2 - uid: 6717 components: - type: Transform - pos: 2.5,-31.5 + pos: 73.5,-57.5 parent: 2 - uid: 6718 components: - type: Transform - pos: 4.5,-32.5 + pos: 74.5,-57.5 parent: 2 - uid: 6719 components: - type: Transform - pos: 4.5,-33.5 + pos: 74.5,-56.5 parent: 2 - uid: 6720 components: - type: Transform - pos: 55.5,-62.5 + pos: 74.5,-55.5 parent: 2 - uid: 6721 components: - type: Transform - pos: 6.5,-30.5 + pos: 75.5,-55.5 parent: 2 - uid: 6722 components: - type: Transform - pos: 54.5,-32.5 + pos: 75.5,-54.5 parent: 2 - uid: 6723 components: - type: Transform - pos: 53.5,-32.5 + pos: 75.5,-53.5 parent: 2 - uid: 6724 components: - type: Transform - pos: 52.5,-32.5 + pos: 75.5,-52.5 parent: 2 - uid: 6725 components: - type: Transform - pos: 55.5,-31.5 + pos: 56.5,-38.5 parent: 2 - uid: 6726 components: - type: Transform - pos: 55.5,-30.5 + pos: 55.5,-66.5 parent: 2 - uid: 6727 components: - type: Transform - pos: 55.5,-29.5 + pos: 71.5,-44.5 parent: 2 - uid: 6728 components: - type: Transform - pos: 55.5,-28.5 + pos: 71.5,-43.5 parent: 2 - uid: 6729 components: - type: Transform - pos: 55.5,-27.5 + pos: 71.5,-42.5 parent: 2 - uid: 6730 components: - type: Transform - pos: 55.5,-26.5 + pos: 61.5,-48.5 parent: 2 - uid: 6731 components: - type: Transform - pos: 61.5,-26.5 + pos: 60.5,-48.5 parent: 2 - uid: 6732 components: - type: Transform - pos: 60.5,-26.5 + pos: 59.5,-48.5 parent: 2 - uid: 6733 components: - type: Transform - pos: 59.5,-26.5 + pos: 58.5,-48.5 parent: 2 - uid: 6734 components: - type: Transform - pos: 58.5,-26.5 + pos: 57.5,-48.5 parent: 2 - uid: 6735 components: - type: Transform - pos: 57.5,-26.5 + pos: 56.5,-48.5 parent: 2 - uid: 6736 components: - type: Transform - pos: 57.5,-27.5 + pos: 55.5,-48.5 parent: 2 - uid: 6737 components: - type: Transform - pos: 57.5,-28.5 + pos: 54.5,-48.5 parent: 2 - uid: 6738 components: - type: Transform - pos: 58.5,-28.5 + pos: 43.5,-39.5 parent: 2 - uid: 6739 components: - type: Transform - pos: 58.5,-29.5 + pos: 43.5,-40.5 parent: 2 - uid: 6740 components: - type: Transform - pos: 55.5,-35.5 + pos: 43.5,-41.5 parent: 2 - uid: 6741 components: - type: Transform - pos: 54.5,-35.5 + pos: 19.5,-51.5 parent: 2 - uid: 6742 components: - type: Transform - pos: 54.5,-36.5 + pos: 16.5,10.5 parent: 2 - uid: 6743 components: - type: Transform - pos: 54.5,-37.5 + pos: 16.5,9.5 parent: 2 - uid: 6744 components: - type: Transform - pos: 55.5,-37.5 + pos: 43.5,10.5 parent: 2 - uid: 6745 components: - type: Transform - pos: 55.5,-38.5 + pos: 47.5,5.5 parent: 2 - uid: 6746 components: - type: Transform - pos: 57.5,-38.5 + pos: 58.5,6.5 parent: 2 - uid: 6747 components: - type: Transform - pos: 58.5,-38.5 + pos: 59.5,6.5 parent: 2 - uid: 6748 components: - type: Transform - pos: 59.5,-38.5 + pos: 12.5,-84.5 parent: 2 - uid: 6749 components: - type: Transform - pos: 59.5,-39.5 + pos: 12.5,-82.5 parent: 2 - uid: 6750 components: - type: Transform - pos: 59.5,-40.5 + pos: -15.5,24.5 parent: 2 - uid: 6751 components: - type: Transform - pos: 59.5,-41.5 + pos: 48.5,-92.5 parent: 2 - uid: 6752 components: - type: Transform - pos: 59.5,-42.5 + pos: 48.5,-93.5 parent: 2 - uid: 6753 components: - type: Transform - pos: 59.5,-43.5 + pos: 48.5,-76.5 parent: 2 - uid: 6754 components: - type: Transform - pos: 36.5,-33.5 + pos: 46.5,-89.5 parent: 2 - uid: 6755 components: - type: Transform - pos: 37.5,-33.5 + pos: 47.5,-89.5 parent: 2 - uid: 6756 components: - type: Transform - pos: 38.5,-33.5 + pos: 43.5,9.5 parent: 2 - uid: 6757 components: - type: Transform - pos: 39.5,-33.5 + pos: 43.5,8.5 parent: 2 - uid: 6758 components: - type: Transform - pos: 40.5,-33.5 + pos: 43.5,7.5 parent: 2 - uid: 6759 components: - type: Transform - pos: 41.5,-33.5 + pos: -11.5,-18.5 parent: 2 - uid: 6760 components: - type: Transform - pos: 42.5,-33.5 + pos: -11.5,-17.5 parent: 2 - uid: 6761 components: - type: Transform - pos: 43.5,-33.5 + pos: -11.5,-16.5 parent: 2 - uid: 6762 components: - type: Transform - pos: 44.5,-33.5 + pos: -11.5,-15.5 parent: 2 - uid: 6763 components: - type: Transform - pos: 45.5,-33.5 + pos: -11.5,-14.5 parent: 2 - uid: 6764 components: - type: Transform - pos: 46.5,-33.5 + pos: -11.5,-13.5 parent: 2 - uid: 6765 components: - type: Transform - pos: 47.5,-33.5 + pos: -11.5,-12.5 parent: 2 - uid: 6766 components: - type: Transform - pos: 48.5,-33.5 + pos: -11.5,-11.5 parent: 2 - uid: 6767 components: - type: Transform - pos: 49.5,-33.5 + pos: -11.5,-10.5 parent: 2 - uid: 6768 components: - type: Transform - pos: 49.5,-34.5 + pos: -12.5,-10.5 parent: 2 - uid: 6769 components: - type: Transform - pos: 50.5,-34.5 + pos: -13.5,-10.5 parent: 2 - uid: 6770 components: - type: Transform - pos: 51.5,-34.5 + pos: -14.5,-10.5 parent: 2 - uid: 6771 components: - type: Transform - pos: 55.5,-64.5 + pos: -13.5,-14.5 parent: 2 - uid: 6772 components: - type: Transform - pos: 55.5,-65.5 + pos: -14.5,-14.5 parent: 2 - uid: 6773 components: - type: Transform - pos: 54.5,-65.5 + pos: -15.5,-14.5 parent: 2 - uid: 6774 components: - type: Transform - pos: 53.5,-65.5 + pos: -16.5,-14.5 parent: 2 - uid: 6775 components: - type: Transform - pos: 52.5,-65.5 + pos: -10.5,-14.5 parent: 2 - uid: 6776 components: - type: Transform - pos: 51.5,-65.5 + pos: -9.5,-14.5 parent: 2 - uid: 6777 components: - type: Transform - pos: 50.5,-65.5 + pos: -8.5,-14.5 parent: 2 - uid: 6778 components: - type: Transform - pos: 49.5,-65.5 + pos: -8.5,-13.5 parent: 2 - uid: 6779 components: - type: Transform - pos: 48.5,-65.5 + pos: -7.5,-13.5 parent: 2 - uid: 6780 components: - type: Transform - pos: 47.5,-65.5 + pos: -7.5,-12.5 parent: 2 - uid: 6781 components: - type: Transform - pos: 46.5,-65.5 + pos: -7.5,-11.5 parent: 2 - uid: 6782 components: - type: Transform - pos: 45.5,-65.5 + pos: -7.5,-10.5 parent: 2 - uid: 6783 components: - type: Transform - pos: 45.5,-64.5 + pos: -8.5,-9.5 parent: 2 - uid: 6784 components: - type: Transform - pos: 44.5,-64.5 + pos: -7.5,-9.5 parent: 2 - uid: 6785 components: - type: Transform - pos: 43.5,-64.5 + pos: -9.5,-9.5 parent: 2 - uid: 6786 components: - type: Transform - pos: 45.5,-63.5 + pos: -10.5,-9.5 parent: 2 - uid: 6787 components: - type: Transform - pos: 43.5,-63.5 + pos: -11.5,-9.5 parent: 2 - uid: 6788 components: - type: Transform - pos: 56.5,-65.5 + pos: -12.5,-9.5 parent: 2 - uid: 6789 components: - type: Transform - pos: 57.5,-65.5 + pos: -13.5,-9.5 parent: 2 - uid: 6790 components: - type: Transform - pos: 58.5,-65.5 + pos: -14.5,-9.5 parent: 2 - uid: 6791 components: - type: Transform - pos: 59.5,-65.5 + pos: -15.5,-9.5 parent: 2 - uid: 6792 components: - type: Transform - pos: 60.5,-65.5 + pos: -42.5,17.5 parent: 2 - uid: 6793 components: - type: Transform - pos: 61.5,-65.5 + pos: -5.5,-19.5 parent: 2 - uid: 6794 components: - type: Transform - pos: 61.5,-66.5 + pos: -9.5,-18.5 parent: 2 - uid: 6795 components: - type: Transform - pos: 61.5,-67.5 + pos: 18.5,-82.5 parent: 2 - uid: 6796 components: - type: Transform - pos: 61.5,-68.5 + pos: 18.5,-84.5 parent: 2 - uid: 6797 components: - type: Transform - pos: 62.5,-65.5 + pos: 18.5,-85.5 parent: 2 - uid: 6798 components: - type: Transform - pos: 63.5,-65.5 + pos: 12.5,-83.5 parent: 2 - uid: 6799 components: - type: Transform - pos: 64.5,-65.5 + pos: 6.5,-50.5 parent: 2 - uid: 6800 components: - type: Transform - pos: 65.5,-65.5 + pos: 6.5,-49.5 parent: 2 - uid: 6801 components: - type: Transform - pos: 66.5,-65.5 + pos: -8.5,-68.5 parent: 2 - uid: 6802 components: - type: Transform - pos: 61.5,-64.5 + pos: -8.5,-69.5 parent: 2 - uid: 6803 components: - type: Transform - pos: 61.5,-63.5 + pos: -19.5,-60.5 parent: 2 - uid: 6804 components: - type: Transform - pos: 61.5,-62.5 + pos: -21.5,-60.5 parent: 2 - uid: 6805 components: - type: Transform - pos: 62.5,-62.5 + pos: -22.5,-60.5 parent: 2 - uid: 6806 components: - type: Transform - pos: 60.5,-63.5 + pos: -23.5,-60.5 parent: 2 - uid: 6807 components: - type: Transform - pos: 59.5,-63.5 + pos: -24.5,-60.5 parent: 2 - uid: 6808 components: - type: Transform - pos: 57.5,-34.5 + pos: -25.5,-60.5 parent: 2 - uid: 6809 components: - type: Transform - pos: 67.5,-65.5 + pos: -24.5,-59.5 parent: 2 - uid: 6810 components: - type: Transform - pos: 68.5,-65.5 + pos: -24.5,-58.5 parent: 2 - uid: 6811 components: - type: Transform - pos: 68.5,-66.5 + pos: -24.5,-57.5 parent: 2 - uid: 6812 components: - type: Transform - pos: 68.5,-67.5 + pos: -24.5,-61.5 parent: 2 - uid: 6813 components: - type: Transform - pos: 68.5,-68.5 + pos: -24.5,-62.5 parent: 2 - uid: 6814 components: - type: Transform - pos: 68.5,-69.5 + pos: 30.5,-22.5 parent: 2 - uid: 6815 components: - type: Transform - pos: 68.5,-70.5 + pos: 31.5,-22.5 parent: 2 - uid: 6816 components: - type: Transform - pos: 68.5,-71.5 + pos: 31.5,-21.5 parent: 2 - uid: 6817 components: - type: Transform - pos: 69.5,-71.5 + pos: 19.5,-22.5 parent: 2 - uid: 6818 components: - type: Transform - pos: 70.5,-71.5 + pos: 19.5,-21.5 parent: 2 - uid: 6819 components: - type: Transform - pos: 71.5,-71.5 + pos: -31.5,-10.5 parent: 2 - uid: 6820 components: - type: Transform - pos: 72.5,-71.5 + pos: -49.5,-33.5 parent: 2 - uid: 6821 components: - type: Transform - pos: 72.5,-70.5 + pos: -47.5,-33.5 parent: 2 - uid: 6822 components: - type: Transform - pos: 72.5,-69.5 + pos: -48.5,-33.5 parent: 2 - uid: 6823 components: - type: Transform - pos: 73.5,-69.5 + pos: -47.5,-34.5 parent: 2 - uid: 6824 components: - type: Transform - pos: 74.5,-69.5 + pos: -47.5,-38.5 parent: 2 - uid: 6825 components: - type: Transform - pos: 74.5,-68.5 + pos: -47.5,-35.5 parent: 2 - uid: 6826 components: - type: Transform - pos: 74.5,-67.5 + pos: -47.5,-36.5 parent: 2 - uid: 6827 components: - type: Transform - pos: 74.5,-66.5 + pos: -47.5,-37.5 parent: 2 - uid: 6828 components: - type: Transform - pos: 74.5,-65.5 + pos: -50.5,-33.5 parent: 2 - uid: 6829 components: - type: Transform - pos: 74.5,-64.5 + pos: -51.5,-33.5 parent: 2 - uid: 6830 components: - type: Transform - pos: 74.5,-63.5 + pos: -51.5,-34.5 parent: 2 - uid: 6831 components: - type: Transform - pos: 68.5,-64.5 + pos: -51.5,-35.5 parent: 2 - uid: 6832 components: - type: Transform - pos: 68.5,-63.5 + pos: -51.5,-36.5 parent: 2 - uid: 6833 components: - type: Transform - pos: 68.5,-62.5 + pos: -51.5,-37.5 parent: 2 - uid: 6834 components: - type: Transform - pos: 68.5,-61.5 + pos: -51.5,-38.5 parent: 2 - uid: 6835 components: - type: Transform - pos: 69.5,-61.5 + pos: -51.5,-39.5 parent: 2 - uid: 6836 components: - type: Transform - pos: 70.5,-61.5 + pos: 54.5,-34.5 parent: 2 - uid: 6837 components: - type: Transform - pos: 71.5,-61.5 + pos: 30.5,-88.5 parent: 2 - uid: 6838 components: - type: Transform - pos: 71.5,-60.5 + pos: 30.5,-77.5 parent: 2 - uid: 6839 components: - type: Transform - pos: 71.5,-59.5 + pos: 30.5,-80.5 parent: 2 - uid: 6840 components: - type: Transform - pos: 71.5,-58.5 + pos: 30.5,-81.5 parent: 2 - uid: 6841 components: - type: Transform - pos: 71.5,-57.5 + pos: 30.5,-84.5 parent: 2 - uid: 6842 components: - type: Transform - pos: 72.5,-57.5 + pos: 30.5,-85.5 parent: 2 - uid: 6843 components: - type: Transform - pos: 73.5,-57.5 + pos: 48.5,-90.5 parent: 2 - uid: 6844 components: - type: Transform - pos: 74.5,-57.5 + pos: 31.5,-82.5 parent: 2 - uid: 6845 components: - type: Transform - pos: 74.5,-56.5 + pos: 48.5,-74.5 parent: 2 - uid: 6846 components: - type: Transform - pos: 74.5,-55.5 + pos: 48.5,-75.5 parent: 2 - uid: 6847 components: - type: Transform - pos: 75.5,-55.5 + pos: 30.5,-91.5 parent: 2 - uid: 6848 components: - type: Transform - pos: 75.5,-54.5 + pos: 27.5,-81.5 parent: 2 - uid: 6849 components: - type: Transform - pos: 75.5,-53.5 + pos: 32.5,-82.5 parent: 2 - uid: 6850 components: - type: Transform - pos: 75.5,-52.5 + pos: 30.5,-79.5 parent: 2 - uid: 6851 components: - type: Transform - pos: 56.5,-38.5 + pos: 30.5,-92.5 parent: 2 - uid: 6852 components: - type: Transform - pos: 55.5,-66.5 + pos: 16.5,-81.5 parent: 2 - uid: 6853 components: - type: Transform - pos: 71.5,-44.5 + pos: 15.5,-81.5 parent: 2 - uid: 6854 components: - type: Transform - pos: 71.5,-43.5 + pos: 18.5,-86.5 parent: 2 - uid: 6855 components: - type: Transform - pos: 71.5,-42.5 + pos: 13.5,-81.5 parent: 2 - uid: 6856 components: - type: Transform - pos: 61.5,-48.5 + pos: 30.5,-86.5 parent: 2 - uid: 6857 components: - type: Transform - pos: 60.5,-48.5 + pos: 30.5,-87.5 parent: 2 - uid: 6858 components: - type: Transform - pos: 59.5,-48.5 + pos: 30.5,-82.5 parent: 2 - uid: 6859 components: - type: Transform - pos: 58.5,-48.5 + pos: 30.5,-83.5 parent: 2 - uid: 6860 components: - type: Transform - pos: 57.5,-48.5 + pos: 27.5,-82.5 parent: 2 - uid: 6861 components: - type: Transform - pos: 56.5,-48.5 + pos: 30.5,-93.5 parent: 2 - uid: 6862 components: - type: Transform - pos: 55.5,-48.5 + pos: 31.5,-89.5 parent: 2 - uid: 6863 components: - type: Transform - pos: 54.5,-48.5 + pos: 32.5,-89.5 parent: 2 - uid: 6864 components: - type: Transform - pos: 43.5,-39.5 + pos: 26.5,-83.5 parent: 2 - uid: 6865 components: - type: Transform - pos: 43.5,-40.5 + pos: 25.5,-83.5 parent: 2 - uid: 6866 components: - type: Transform - pos: 43.5,-41.5 + pos: 24.5,-83.5 parent: 2 - uid: 6867 components: - type: Transform - pos: 19.5,-51.5 + pos: 29.5,-83.5 parent: 2 - uid: 6868 components: - type: Transform - pos: 16.5,10.5 + pos: 12.5,-85.5 parent: 2 - uid: 6869 components: - type: Transform - pos: 16.5,9.5 + pos: 28.5,-83.5 parent: 2 - uid: 6870 components: - type: Transform - pos: 43.5,10.5 + pos: 27.5,-83.5 parent: 2 - uid: 6871 components: - type: Transform - pos: 47.5,5.5 + pos: 49.5,-72.5 parent: 2 - uid: 6872 components: - type: Transform - pos: 58.5,6.5 + pos: 46.5,-72.5 parent: 2 - uid: 6873 components: - type: Transform - pos: 59.5,6.5 + pos: 47.5,-72.5 parent: 2 - uid: 6874 components: - type: Transform - pos: 12.5,-84.5 + pos: 48.5,-88.5 parent: 2 - uid: 6875 components: - type: Transform - pos: 12.5,-82.5 + pos: 48.5,-87.5 parent: 2 - uid: 6876 components: - type: Transform - pos: -15.5,24.5 + pos: 48.5,-86.5 parent: 2 - uid: 6877 components: - type: Transform - pos: 48.5,-92.5 + pos: 48.5,-85.5 parent: 2 - uid: 6878 components: - type: Transform - pos: 48.5,-93.5 + pos: 48.5,-84.5 parent: 2 - uid: 6879 components: - type: Transform - pos: 48.5,-76.5 + pos: 48.5,-83.5 parent: 2 - uid: 6880 components: - type: Transform - pos: 46.5,-89.5 + pos: 48.5,-82.5 parent: 2 - uid: 6881 components: - type: Transform - pos: 47.5,-89.5 + pos: 48.5,-81.5 parent: 2 - uid: 6882 components: - type: Transform - pos: 43.5,9.5 + pos: 48.5,-80.5 parent: 2 - uid: 6883 components: - type: Transform - pos: 43.5,8.5 + pos: 48.5,-79.5 parent: 2 - uid: 6884 components: - type: Transform - pos: 43.5,7.5 + pos: 48.5,-78.5 parent: 2 - uid: 6885 components: - type: Transform - pos: -11.5,-18.5 + pos: 48.5,-77.5 parent: 2 - uid: 6886 components: - type: Transform - pos: -11.5,-17.5 + pos: 26.5,-84.5 parent: 2 - uid: 6887 components: - type: Transform - pos: -11.5,-16.5 + pos: 26.5,-85.5 parent: 2 - uid: 6888 components: - type: Transform - pos: -11.5,-15.5 + pos: 11.5,-18.5 parent: 2 - uid: 6889 components: - type: Transform - pos: -11.5,-14.5 + pos: 11.5,-19.5 parent: 2 - uid: 6890 components: - type: Transform - pos: -11.5,-13.5 + pos: 11.5,-20.5 parent: 2 - uid: 6891 components: - type: Transform - pos: -11.5,-12.5 + pos: 11.5,-21.5 parent: 2 - uid: 6892 components: - type: Transform - pos: -11.5,-11.5 + pos: 10.5,-21.5 parent: 2 - uid: 6893 components: - type: Transform - pos: -11.5,-10.5 + pos: 9.5,-21.5 parent: 2 - uid: 6894 components: - type: Transform - pos: -12.5,-10.5 + pos: 8.5,-21.5 parent: 2 - uid: 6895 components: - type: Transform - pos: -13.5,-10.5 + pos: 7.5,-21.5 parent: 2 - uid: 6896 components: - type: Transform - pos: -14.5,-10.5 + pos: 7.5,-22.5 parent: 2 - uid: 6897 components: - type: Transform - pos: -13.5,-14.5 + pos: 7.5,-23.5 parent: 2 - uid: 6898 components: - type: Transform - pos: -14.5,-14.5 + pos: 8.5,-23.5 parent: 2 - uid: 6899 components: - type: Transform - pos: -15.5,-14.5 + pos: 9.5,-23.5 parent: 2 - uid: 6900 components: - type: Transform - pos: -16.5,-14.5 + pos: 10.5,-23.5 parent: 2 - uid: 6901 components: - type: Transform - pos: -10.5,-14.5 + pos: 11.5,-23.5 parent: 2 - uid: 6902 components: - type: Transform - pos: -9.5,-14.5 + pos: 11.5,-22.5 parent: 2 - uid: 6903 components: - type: Transform - pos: -8.5,-14.5 + pos: 8.5,-20.5 parent: 2 - uid: 6904 components: - type: Transform - pos: -8.5,-13.5 + pos: 9.5,-20.5 parent: 2 - uid: 6905 components: - type: Transform - pos: -7.5,-13.5 + pos: 39.5,11.5 parent: 2 - uid: 6906 components: - type: Transform - pos: -7.5,-12.5 + pos: 38.5,11.5 parent: 2 - uid: 6907 components: - type: Transform - pos: -7.5,-11.5 + pos: 39.5,7.5 parent: 2 - uid: 6908 components: - type: Transform - pos: -7.5,-10.5 + pos: 44.5,6.5 parent: 2 - uid: 6909 components: - type: Transform - pos: -8.5,-9.5 + pos: 46.5,7.5 parent: 2 - uid: 6910 components: - type: Transform - pos: -7.5,-9.5 + pos: 3.5,-51.5 parent: 2 - uid: 6911 components: - type: Transform - pos: -9.5,-9.5 + pos: 6.5,-73.5 parent: 2 - uid: 6912 components: - type: Transform - pos: -10.5,-9.5 + pos: 6.5,-74.5 parent: 2 - uid: 6913 components: - type: Transform - pos: -11.5,-9.5 + pos: 6.5,-75.5 parent: 2 - uid: 6914 components: - type: Transform - pos: -12.5,-9.5 + pos: 6.5,-76.5 parent: 2 - uid: 6915 components: - type: Transform - pos: -13.5,-9.5 + pos: 6.5,-77.5 parent: 2 - uid: 6916 components: - type: Transform - pos: -14.5,-9.5 + pos: 6.5,-78.5 parent: 2 - uid: 6917 components: - type: Transform - pos: -15.5,-9.5 + pos: 6.5,-79.5 parent: 2 - uid: 6918 components: - type: Transform - pos: -42.5,17.5 + pos: 6.5,-80.5 parent: 2 - uid: 6919 components: - type: Transform - pos: -5.5,-19.5 + pos: 6.5,-81.5 parent: 2 - uid: 6920 components: - type: Transform - pos: -9.5,-18.5 + pos: 6.5,-82.5 parent: 2 - uid: 6921 components: - type: Transform - pos: 18.5,-82.5 + pos: 6.5,-83.5 parent: 2 - uid: 6922 components: - type: Transform - pos: 18.5,-84.5 + pos: 6.5,-84.5 parent: 2 - uid: 6923 components: - type: Transform - pos: 18.5,-85.5 + pos: 7.5,-83.5 parent: 2 - uid: 6924 components: - type: Transform - pos: 12.5,-83.5 + pos: 8.5,-83.5 parent: 2 - uid: 6925 components: - type: Transform - pos: 4.5,-49.5 + pos: 5.5,-74.5 parent: 2 - uid: 6926 components: - type: Transform - pos: 6.5,-49.5 + pos: 4.5,-74.5 parent: 2 - uid: 6927 components: - type: Transform - pos: -8.5,-67.5 + pos: 3.5,-74.5 parent: 2 - uid: 6928 components: - type: Transform - pos: -8.5,-68.5 + pos: 9.5,-83.5 parent: 2 - uid: 6929 components: - type: Transform - pos: -8.5,-69.5 + pos: 2.5,-74.5 parent: 2 - uid: 6930 components: - type: Transform - pos: -19.5,-60.5 + pos: 1.5,-74.5 parent: 2 - uid: 6931 components: - type: Transform - pos: -20.5,-60.5 + pos: -46.5,-53.5 parent: 2 - uid: 6932 components: - type: Transform - pos: -21.5,-60.5 + pos: -46.5,-51.5 parent: 2 - uid: 6933 components: - type: Transform - pos: -22.5,-60.5 + pos: -46.5,-46.5 parent: 2 - uid: 6934 components: - type: Transform - pos: -23.5,-60.5 + pos: -46.5,-48.5 parent: 2 - uid: 6935 components: - type: Transform - pos: -24.5,-60.5 + pos: -46.5,-47.5 parent: 2 - uid: 6936 components: - type: Transform - pos: -25.5,-60.5 + pos: -46.5,-49.5 parent: 2 - uid: 6937 components: - type: Transform - pos: -24.5,-59.5 + pos: -46.5,-50.5 parent: 2 - uid: 6938 components: - type: Transform - pos: -24.5,-58.5 + pos: -46.5,-52.5 parent: 2 - uid: 6939 components: - type: Transform - pos: -24.5,-57.5 + pos: -46.5,-54.5 parent: 2 - uid: 6940 components: - type: Transform - pos: -24.5,-61.5 + pos: -46.5,-55.5 parent: 2 - uid: 6941 components: - type: Transform - pos: -24.5,-62.5 + pos: -46.5,-56.5 parent: 2 - uid: 6942 components: - type: Transform - pos: 30.5,-22.5 + pos: -46.5,-57.5 parent: 2 - uid: 6943 components: - type: Transform - pos: 31.5,-22.5 + pos: -46.5,-58.5 parent: 2 - uid: 6944 components: - type: Transform - pos: 31.5,-21.5 + pos: -45.5,-58.5 parent: 2 - uid: 6945 components: - type: Transform - pos: 19.5,-22.5 + pos: -44.5,-58.5 parent: 2 - uid: 6946 components: - type: Transform - pos: 19.5,-21.5 + pos: -43.5,-58.5 parent: 2 - uid: 6947 components: - type: Transform - pos: -31.5,-10.5 + pos: -42.5,-58.5 parent: 2 - uid: 6948 components: - type: Transform - pos: -49.5,-33.5 + pos: -41.5,-58.5 parent: 2 - uid: 6949 components: - type: Transform - pos: -47.5,-33.5 + pos: -40.5,-58.5 parent: 2 - uid: 6950 components: - type: Transform - pos: -48.5,-33.5 + pos: -40.5,-59.5 parent: 2 - uid: 6951 components: - type: Transform - pos: -47.5,-34.5 + pos: -39.5,-59.5 parent: 2 - uid: 6952 components: - type: Transform - pos: -47.5,-38.5 + pos: -38.5,-59.5 parent: 2 - uid: 6953 components: - type: Transform - pos: -47.5,-35.5 + pos: -37.5,-59.5 parent: 2 - uid: 6954 components: - type: Transform - pos: -47.5,-36.5 + pos: -36.5,-59.5 parent: 2 - uid: 6955 components: - type: Transform - pos: -47.5,-37.5 + pos: -36.5,-58.5 parent: 2 - uid: 6956 components: - type: Transform - pos: -50.5,-33.5 + pos: -35.5,-58.5 parent: 2 - uid: 6957 components: - type: Transform - pos: -51.5,-33.5 + pos: -35.5,-56.5 parent: 2 - uid: 6958 components: - type: Transform - pos: -51.5,-34.5 + pos: -35.5,-57.5 parent: 2 - uid: 6959 components: - type: Transform - pos: -51.5,-35.5 + pos: -48.5,42.5 parent: 2 - uid: 6960 components: - type: Transform - pos: -51.5,-36.5 + pos: -49.5,42.5 parent: 2 - uid: 6961 components: - type: Transform - pos: -51.5,-37.5 + pos: -49.5,43.5 parent: 2 - uid: 6962 components: - type: Transform - pos: -51.5,-38.5 + pos: -50.5,43.5 parent: 2 - uid: 6963 components: - type: Transform - pos: -51.5,-39.5 + pos: -52.5,43.5 parent: 2 - uid: 6964 components: - type: Transform - pos: 54.5,-34.5 + pos: -51.5,43.5 parent: 2 - uid: 6965 components: - type: Transform - pos: 30.5,-88.5 + pos: -49.5,44.5 parent: 2 - uid: 6966 components: - type: Transform - pos: 30.5,-77.5 + pos: -49.5,45.5 parent: 2 - uid: 6967 components: - type: Transform - pos: 30.5,-80.5 + pos: -49.5,46.5 parent: 2 - uid: 6968 components: - type: Transform - pos: 30.5,-81.5 + pos: -49.5,47.5 parent: 2 - uid: 6969 components: - type: Transform - pos: 30.5,-84.5 + pos: -49.5,48.5 parent: 2 - uid: 6970 components: - type: Transform - pos: 30.5,-85.5 + pos: -49.5,49.5 parent: 2 - uid: 6971 components: - type: Transform - pos: 48.5,-90.5 + pos: -48.5,49.5 parent: 2 - uid: 6972 components: - type: Transform - pos: 31.5,-82.5 + pos: -47.5,49.5 parent: 2 - uid: 6973 components: - type: Transform - pos: 48.5,-74.5 + pos: -47.5,42.5 parent: 2 - uid: 6974 components: - type: Transform - pos: 48.5,-75.5 + pos: 8.5,-59.5 parent: 2 - uid: 6975 components: - type: Transform - pos: 30.5,-91.5 + pos: 68.5,-32.5 parent: 2 - uid: 6976 components: - type: Transform - pos: 27.5,-81.5 + pos: 68.5,-31.5 parent: 2 - uid: 6977 components: - type: Transform - pos: 32.5,-82.5 + pos: 68.5,-30.5 parent: 2 - uid: 6978 components: - type: Transform - pos: 30.5,-79.5 + pos: 67.5,-30.5 parent: 2 - uid: 6979 components: - type: Transform - pos: 30.5,-92.5 + pos: 66.5,-30.5 parent: 2 - uid: 6980 components: - type: Transform - pos: 16.5,-81.5 + pos: -13.5,-33.5 parent: 2 - uid: 6981 components: - type: Transform - pos: 15.5,-81.5 + pos: -15.5,-33.5 parent: 2 - uid: 6982 components: - type: Transform - pos: 18.5,-86.5 + pos: -16.5,-33.5 parent: 2 - uid: 6983 components: - type: Transform - pos: 13.5,-81.5 + pos: 49.5,-89.5 parent: 2 - uid: 6984 components: - type: Transform - pos: 30.5,-86.5 + pos: 50.5,-89.5 parent: 2 - uid: 6985 components: - type: Transform - pos: 30.5,-87.5 + pos: 51.5,-89.5 parent: 2 - uid: 6986 components: - type: Transform - pos: 30.5,-82.5 + pos: 49.5,-82.5 parent: 2 - uid: 6987 components: - type: Transform - pos: 30.5,-83.5 + pos: 50.5,-82.5 parent: 2 - uid: 6988 components: - type: Transform - pos: 27.5,-82.5 + pos: 51.5,-82.5 parent: 2 - uid: 6989 components: - type: Transform - pos: 30.5,-93.5 + pos: -8.5,18.5 parent: 2 - uid: 6990 components: - type: Transform - pos: 31.5,-89.5 + pos: -4.5,15.5 parent: 2 - uid: 6991 components: - type: Transform - pos: 32.5,-89.5 + pos: -6.5,12.5 parent: 2 - uid: 6992 components: - type: Transform - pos: 26.5,-83.5 + pos: -7.5,11.5 parent: 2 - uid: 6993 components: - type: Transform - pos: 25.5,-83.5 + pos: -6.5,11.5 parent: 2 - uid: 6994 components: - type: Transform - pos: 24.5,-83.5 + pos: -9.5,11.5 parent: 2 - uid: 6995 components: - type: Transform - pos: 29.5,-83.5 + pos: -9.5,8.5 parent: 2 - uid: 6996 components: - type: Transform - pos: 12.5,-85.5 + pos: -8.5,17.5 parent: 2 - uid: 6997 components: - type: Transform - pos: 28.5,-83.5 + pos: -7.5,23.5 parent: 2 - uid: 6998 components: - type: Transform - pos: 27.5,-83.5 + pos: -6.5,23.5 parent: 2 - uid: 6999 components: - type: Transform - pos: 49.5,-72.5 + pos: -5.5,23.5 parent: 2 - uid: 7000 components: - type: Transform - pos: 46.5,-72.5 + pos: -5.5,21.5 parent: 2 - uid: 7001 components: - type: Transform - pos: 47.5,-72.5 + pos: -6.5,21.5 parent: 2 - uid: 7002 components: - type: Transform - pos: 48.5,-88.5 + pos: -7.5,21.5 parent: 2 - uid: 7003 components: - type: Transform - pos: 48.5,-87.5 + pos: -74.5,-51.5 parent: 2 - uid: 7004 components: - type: Transform - pos: 48.5,-86.5 + pos: -74.5,-50.5 parent: 2 - uid: 7005 components: - type: Transform - pos: 48.5,-85.5 + pos: -74.5,-52.5 parent: 2 - uid: 7006 components: - type: Transform - pos: 48.5,-84.5 + pos: -74.5,-53.5 parent: 2 - uid: 7007 components: - type: Transform - pos: 48.5,-83.5 + pos: -75.5,-53.5 parent: 2 - uid: 7008 components: - type: Transform - pos: 48.5,-82.5 + pos: -76.5,-53.5 parent: 2 - uid: 7009 components: - type: Transform - pos: 48.5,-81.5 + pos: -73.5,-53.5 parent: 2 - uid: 7010 components: - type: Transform - pos: 48.5,-80.5 + pos: -72.5,-53.5 parent: 2 - uid: 7011 components: - type: Transform - pos: 48.5,-79.5 + pos: -71.5,-53.5 parent: 2 - uid: 7012 components: - type: Transform - pos: 48.5,-78.5 + pos: -70.5,-53.5 parent: 2 - uid: 7013 components: - type: Transform - pos: 48.5,-77.5 + pos: -69.5,-53.5 parent: 2 - uid: 7014 components: - type: Transform - pos: 26.5,-84.5 + pos: -68.5,-53.5 parent: 2 - uid: 7015 components: - type: Transform - pos: 26.5,-85.5 + pos: -67.5,-53.5 parent: 2 - uid: 7016 components: - type: Transform - pos: 11.5,-18.5 + pos: -66.5,-53.5 parent: 2 - uid: 7017 components: - type: Transform - pos: 11.5,-19.5 + pos: -71.5,-54.5 parent: 2 - uid: 7018 components: - type: Transform - pos: 11.5,-20.5 + pos: -71.5,-55.5 parent: 2 - uid: 7019 components: - type: Transform - pos: 11.5,-21.5 + pos: -73.5,-54.5 parent: 2 - uid: 7020 components: - type: Transform - pos: 10.5,-21.5 + pos: -73.5,-55.5 parent: 2 - uid: 7021 components: - type: Transform - pos: 9.5,-21.5 + pos: -73.5,-51.5 parent: 2 - uid: 7022 components: - type: Transform - pos: 8.5,-21.5 + pos: -71.5,-51.5 parent: 2 - uid: 7023 components: - type: Transform - pos: 7.5,-21.5 + pos: -71.5,-52.5 parent: 2 - uid: 7024 components: - type: Transform - pos: 7.5,-22.5 + pos: -65.5,-56.5 parent: 2 - uid: 7025 components: - type: Transform - pos: 7.5,-23.5 + pos: -66.5,-56.5 parent: 2 - uid: 7026 components: - type: Transform - pos: 8.5,-23.5 + pos: -66.5,-52.5 parent: 2 - uid: 7027 components: - type: Transform - pos: 9.5,-23.5 + pos: -66.5,-54.5 parent: 2 - uid: 7028 components: - type: Transform - pos: 10.5,-23.5 + pos: -66.5,-55.5 parent: 2 - uid: 7029 components: - type: Transform - pos: 11.5,-23.5 + pos: -64.5,-56.5 parent: 2 - uid: 7030 components: - type: Transform - pos: 11.5,-22.5 + pos: -64.5,-55.5 parent: 2 - uid: 7031 components: - type: Transform - pos: 8.5,-20.5 + pos: -64.5,-54.5 parent: 2 - uid: 7032 components: - type: Transform - pos: 9.5,-20.5 + pos: -67.5,-41.5 parent: 2 - uid: 7033 components: - type: Transform - pos: 39.5,11.5 + pos: -69.5,-42.5 parent: 2 - uid: 7034 components: - type: Transform - pos: 38.5,11.5 + pos: -68.5,-41.5 parent: 2 - uid: 7035 components: - type: Transform - pos: 39.5,7.5 + pos: -69.5,-41.5 parent: 2 - uid: 7036 components: - type: Transform - pos: 44.5,6.5 + pos: -69.5,-40.5 parent: 2 - uid: 7037 components: - type: Transform - pos: 46.5,7.5 + pos: -69.5,-43.5 parent: 2 - uid: 7038 components: - type: Transform - pos: 3.5,-51.5 + pos: -70.5,-40.5 parent: 2 - uid: 7039 components: - type: Transform - pos: 3.5,-52.5 + pos: -71.5,-40.5 parent: 2 - uid: 7040 components: - type: Transform - pos: 3.5,-53.5 + pos: -71.5,-39.5 parent: 2 - uid: 7041 components: - type: Transform - pos: 6.5,-73.5 + pos: -65.5,-42.5 parent: 2 - uid: 7042 components: - type: Transform - pos: 6.5,-74.5 + pos: -72.5,-39.5 parent: 2 - uid: 7043 components: - type: Transform - pos: 6.5,-75.5 + pos: -73.5,-44.5 parent: 2 - uid: 7044 components: - type: Transform - pos: 6.5,-76.5 + pos: -73.5,-43.5 parent: 2 - uid: 7045 components: - type: Transform - pos: 6.5,-77.5 + pos: -73.5,-42.5 parent: 2 - uid: 7046 components: - type: Transform - pos: 6.5,-78.5 + pos: -73.5,-41.5 parent: 2 - uid: 7047 components: - type: Transform - pos: 6.5,-79.5 + pos: -73.5,-40.5 parent: 2 - uid: 7048 components: - type: Transform - pos: 6.5,-80.5 + pos: -73.5,-39.5 parent: 2 - uid: 7049 components: - type: Transform - pos: 6.5,-81.5 + pos: -68.5,-37.5 parent: 2 - uid: 7050 components: - type: Transform - pos: 6.5,-82.5 + pos: -70.5,-37.5 parent: 2 - uid: 7051 components: - type: Transform - pos: 6.5,-83.5 + pos: -69.5,-37.5 parent: 2 - uid: 7052 components: - type: Transform - pos: 6.5,-84.5 + pos: -73.5,-37.5 parent: 2 - uid: 7053 components: - type: Transform - pos: 7.5,-83.5 + pos: -72.5,-37.5 parent: 2 - uid: 7054 components: - type: Transform - pos: 8.5,-83.5 + pos: -66.5,-36.5 parent: 2 - uid: 7055 components: - type: Transform - pos: 5.5,-74.5 + pos: -65.5,-41.5 parent: 2 - uid: 7056 components: - type: Transform - pos: 4.5,-74.5 + pos: -65.5,-43.5 parent: 2 - uid: 7057 components: - type: Transform - pos: 3.5,-74.5 + pos: -65.5,-44.5 parent: 2 - uid: 7058 components: - type: Transform - pos: 9.5,-83.5 + pos: -67.5,-37.5 parent: 2 - uid: 7059 components: - type: Transform - pos: 2.5,-74.5 + pos: -73.5,-35.5 parent: 2 - uid: 7060 components: - type: Transform - pos: 1.5,-74.5 + pos: -73.5,-38.5 parent: 2 - uid: 7061 components: - type: Transform - pos: -46.5,-53.5 + pos: -73.5,-36.5 parent: 2 - uid: 7062 components: - type: Transform - pos: -46.5,-51.5 + pos: -66.5,-37.5 parent: 2 - uid: 7063 components: - type: Transform - pos: -46.5,-46.5 + pos: -65.5,-37.5 parent: 2 - uid: 7064 components: - type: Transform - pos: -46.5,-48.5 + pos: -65.5,-39.5 parent: 2 - uid: 7065 components: - type: Transform - pos: -46.5,-47.5 + pos: -65.5,-40.5 parent: 2 - uid: 7066 components: - type: Transform - pos: -46.5,-49.5 + pos: -66.5,-41.5 parent: 2 - uid: 7067 components: - type: Transform - pos: -46.5,-50.5 + pos: -65.5,-45.5 parent: 2 - uid: 7068 components: - type: Transform - pos: -46.5,-52.5 + pos: -66.5,-45.5 parent: 2 - uid: 7069 components: - type: Transform - pos: -46.5,-54.5 + pos: -73.5,-45.5 parent: 2 - uid: 7070 components: - type: Transform - pos: -46.5,-55.5 + pos: -72.5,-45.5 parent: 2 - uid: 7071 components: - type: Transform - pos: -46.5,-56.5 + pos: -74.5,-41.5 parent: 2 - uid: 7072 components: - type: Transform - pos: -46.5,-57.5 + pos: -75.5,-41.5 parent: 2 - uid: 7073 components: - type: Transform - pos: -46.5,-58.5 + pos: -76.5,-41.5 parent: 2 - uid: 7074 components: - type: Transform - pos: -45.5,-58.5 + pos: -41.5,-17.5 parent: 2 - uid: 7075 components: - type: Transform - pos: -44.5,-58.5 + pos: -41.5,-18.5 parent: 2 - uid: 7076 components: - type: Transform - pos: -43.5,-58.5 + pos: -74.5,-45.5 parent: 2 - uid: 7077 components: - type: Transform - pos: -42.5,-58.5 + pos: -75.5,-45.5 parent: 2 - uid: 7078 components: - type: Transform - pos: -41.5,-58.5 + pos: -76.5,-45.5 parent: 2 - uid: 7079 components: - type: Transform - pos: -40.5,-58.5 + pos: -72.5,-38.5 parent: 2 - uid: 7080 components: - type: Transform - pos: -40.5,-59.5 + pos: -71.5,-38.5 parent: 2 - uid: 7081 components: - type: Transform - pos: -39.5,-59.5 + pos: -70.5,-38.5 parent: 2 - uid: 7082 components: - type: Transform - pos: -38.5,-59.5 + pos: -65.5,-33.5 parent: 2 - uid: 7083 components: - type: Transform - pos: -37.5,-59.5 + pos: -56.5,-37.5 parent: 2 - uid: 7084 components: - type: Transform - pos: -36.5,-59.5 + pos: -59.5,-37.5 parent: 2 - uid: 7085 components: - type: Transform - pos: -36.5,-58.5 + pos: -57.5,-37.5 parent: 2 - uid: 7086 components: - type: Transform - pos: -35.5,-58.5 + pos: -62.5,-37.5 parent: 2 - uid: 7087 components: - type: Transform - pos: -35.5,-56.5 + pos: -61.5,-37.5 parent: 2 - uid: 7088 components: - type: Transform - pos: -35.5,-57.5 + pos: -60.5,-37.5 parent: 2 - uid: 7089 components: - type: Transform - pos: -48.5,42.5 + pos: -17.5,11.5 parent: 2 - uid: 7090 components: - type: Transform - pos: -49.5,42.5 + pos: -58.5,-37.5 parent: 2 - uid: 7091 components: - type: Transform - pos: -49.5,43.5 + pos: -54.5,-36.5 parent: 2 - uid: 7092 components: - type: Transform - pos: -50.5,43.5 + pos: -53.5,-36.5 parent: 2 - uid: 7093 components: - type: Transform - pos: -52.5,43.5 + pos: -52.5,-36.5 parent: 2 - uid: 7094 components: - type: Transform - pos: -51.5,43.5 + pos: -42.5,-28.5 parent: 2 - uid: 7095 components: - type: Transform - pos: -49.5,44.5 + pos: -43.5,-28.5 parent: 2 - uid: 7096 components: - type: Transform - pos: -49.5,45.5 + pos: -43.5,-30.5 parent: 2 - uid: 7097 components: - type: Transform - pos: -49.5,46.5 + pos: -43.5,-29.5 parent: 2 - uid: 7098 components: - type: Transform - pos: -49.5,47.5 + pos: -41.5,-28.5 parent: 2 - uid: 7099 components: - type: Transform - pos: -49.5,48.5 + pos: -38.5,-29.5 parent: 2 - uid: 7100 components: - type: Transform - pos: -49.5,49.5 + pos: -55.5,-31.5 parent: 2 - uid: 7101 components: - type: Transform - pos: -48.5,49.5 + pos: 24.5,-38.5 parent: 2 - uid: 7102 components: - type: Transform - pos: -47.5,49.5 + pos: 22.5,-38.5 parent: 2 - uid: 7103 components: - type: Transform - pos: -47.5,42.5 + pos: 24.5,-34.5 parent: 2 - uid: 7104 components: - type: Transform - pos: 8.5,-59.5 + pos: 24.5,-35.5 parent: 2 - uid: 7105 components: - type: Transform - pos: 8.5,-58.5 + pos: 24.5,-37.5 parent: 2 - uid: 7106 components: - type: Transform - pos: 68.5,-32.5 + pos: 24.5,-36.5 parent: 2 - uid: 7107 components: - type: Transform - pos: 68.5,-31.5 + pos: 23.5,-38.5 parent: 2 - uid: 7108 components: - type: Transform - pos: 68.5,-30.5 + pos: 2.5,-5.5 parent: 2 - uid: 7109 components: - type: Transform - pos: 67.5,-30.5 + pos: -0.5,-4.5 parent: 2 - uid: 7110 components: - type: Transform - pos: 66.5,-30.5 + pos: 1.5,-4.5 parent: 2 - uid: 7111 components: - type: Transform - pos: -13.5,-33.5 + pos: -0.5,-6.5 parent: 2 - uid: 7112 components: - type: Transform - pos: -15.5,-33.5 + pos: -0.5,-5.5 parent: 2 - uid: 7113 components: - type: Transform - pos: -16.5,-33.5 + pos: 1.5,-5.5 parent: 2 - uid: 7114 components: - type: Transform - pos: 49.5,-89.5 + pos: 3.5,-5.5 parent: 2 - uid: 7115 components: - type: Transform - pos: 50.5,-89.5 + pos: 3.5,-6.5 parent: 2 - uid: 7116 components: - type: Transform - pos: 51.5,-89.5 + pos: 1.5,-6.5 parent: 2 - uid: 7117 components: - type: Transform - pos: 49.5,-82.5 + pos: 1.5,-3.5 parent: 2 - uid: 7118 components: - type: Transform - pos: 50.5,-82.5 + pos: 2.5,-3.5 parent: 2 - uid: 7119 components: - type: Transform - pos: 51.5,-82.5 + pos: 3.5,-3.5 parent: 2 - uid: 7120 components: - type: Transform - pos: -8.5,18.5 + pos: 18.5,-30.5 parent: 2 - uid: 7121 components: - type: Transform - pos: -4.5,15.5 + pos: 1.5,-7.5 parent: 2 - uid: 7122 components: - type: Transform - pos: -6.5,12.5 + pos: 1.5,-8.5 parent: 2 - uid: 7123 components: - type: Transform - pos: -7.5,11.5 + pos: 0.5,-5.5 parent: 2 - uid: 7124 components: - type: Transform - pos: -6.5,11.5 + pos: 0.5,-6.5 parent: 2 - uid: 7125 components: - type: Transform - pos: -9.5,11.5 + pos: 3.5,-7.5 parent: 2 - uid: 7126 components: - type: Transform - pos: -9.5,8.5 + pos: 2.5,-7.5 parent: 2 - uid: 7127 components: - type: Transform - pos: -8.5,17.5 + pos: 5.5,-7.5 parent: 2 - uid: 7128 components: - type: Transform - pos: -7.5,23.5 + pos: 22.5,-39.5 parent: 2 - uid: 7129 components: - type: Transform - pos: -6.5,23.5 + pos: 0.5,-17.5 parent: 2 - uid: 7130 components: - type: Transform - pos: -5.5,23.5 + pos: 0.5,-18.5 parent: 2 - uid: 7131 components: - type: Transform - pos: -5.5,21.5 + pos: 0.5,-19.5 parent: 2 - uid: 7132 components: - type: Transform - pos: -6.5,21.5 + pos: 0.5,-20.5 parent: 2 - uid: 7133 components: - type: Transform - pos: -7.5,21.5 + pos: 0.5,-21.5 parent: 2 - uid: 7134 components: - type: Transform - pos: -74.5,-51.5 + pos: 0.5,-23.5 parent: 2 - uid: 7135 components: - type: Transform - pos: -74.5,-50.5 + pos: 0.5,-22.5 parent: 2 - uid: 7136 components: - type: Transform - pos: -74.5,-52.5 + pos: 1.5,-22.5 parent: 2 - uid: 7137 components: - type: Transform - pos: -74.5,-53.5 + pos: -0.5,-21.5 parent: 2 - uid: 7138 components: - type: Transform - pos: -75.5,-53.5 + pos: -0.5,-19.5 parent: 2 - uid: 7139 components: - type: Transform - pos: -76.5,-53.5 + pos: -0.5,-23.5 parent: 2 - uid: 7140 components: - type: Transform - pos: -73.5,-53.5 + pos: -1.5,-23.5 parent: 2 - uid: 7141 components: - type: Transform - pos: -72.5,-53.5 + pos: 4.5,-12.5 parent: 2 - uid: 7142 components: - type: Transform - pos: -71.5,-53.5 + pos: 25.5,-38.5 parent: 2 - uid: 7143 components: - type: Transform - pos: -70.5,-53.5 + pos: 26.5,-38.5 parent: 2 - uid: 7144 components: - type: Transform - pos: -69.5,-53.5 + pos: 27.5,-38.5 parent: 2 - uid: 7145 components: - type: Transform - pos: -68.5,-53.5 + pos: 28.5,-38.5 parent: 2 - uid: 7146 components: - type: Transform - pos: -67.5,-53.5 + pos: 28.5,-37.5 parent: 2 - uid: 7147 components: - type: Transform - pos: -66.5,-53.5 + pos: 28.5,-36.5 parent: 2 - uid: 7148 components: - type: Transform - pos: -71.5,-54.5 + pos: 28.5,-33.5 parent: 2 - uid: 7149 components: - type: Transform - pos: -71.5,-55.5 + pos: -53.5,-23.5 parent: 2 - uid: 7150 components: - type: Transform - pos: -73.5,-54.5 + pos: 59.5,56.5 parent: 2 - uid: 7151 components: - type: Transform - pos: -73.5,-55.5 + pos: 59.5,57.5 parent: 2 - uid: 7152 components: - type: Transform - pos: -73.5,-51.5 + pos: 59.5,58.5 parent: 2 - uid: 7153 components: - type: Transform - pos: -71.5,-51.5 + pos: 59.5,59.5 parent: 2 - uid: 7154 components: - type: Transform - pos: -71.5,-52.5 + pos: 59.5,55.5 parent: 2 - uid: 7155 components: - type: Transform - pos: -65.5,-56.5 + pos: 55.5,62.5 parent: 2 - uid: 7156 components: - type: Transform - pos: -66.5,-56.5 + pos: 54.5,62.5 parent: 2 - uid: 7157 components: - type: Transform - pos: -66.5,-52.5 + pos: 53.5,62.5 parent: 2 - uid: 7158 components: - type: Transform - pos: -66.5,-54.5 + pos: 56.5,62.5 parent: 2 - uid: 7159 components: - type: Transform - pos: -66.5,-55.5 + pos: 52.5,62.5 parent: 2 - uid: 7160 components: - type: Transform - pos: -64.5,-56.5 + pos: 49.5,59.5 parent: 2 - uid: 7161 components: - type: Transform - pos: -64.5,-55.5 + pos: 49.5,57.5 parent: 2 - uid: 7162 components: - type: Transform - pos: -64.5,-54.5 + pos: 49.5,56.5 parent: 2 - uid: 7163 components: - type: Transform - pos: -67.5,-41.5 + pos: 49.5,55.5 parent: 2 - uid: 7164 components: - type: Transform - pos: -69.5,-42.5 + pos: 49.5,58.5 parent: 2 - uid: 7165 components: - type: Transform - pos: -68.5,-41.5 + pos: 48.5,55.5 parent: 2 - uid: 7166 components: - type: Transform - pos: -69.5,-41.5 + pos: 47.5,55.5 parent: 2 - uid: 7167 components: - type: Transform - pos: -69.5,-40.5 + pos: 46.5,55.5 parent: 2 - uid: 7168 components: - type: Transform - pos: -69.5,-43.5 + pos: 45.5,55.5 parent: 2 - uid: 7169 components: - type: Transform - pos: -70.5,-40.5 + pos: 44.5,55.5 parent: 2 - uid: 7170 components: - type: Transform - pos: -71.5,-40.5 + pos: 43.5,55.5 parent: 2 - uid: 7171 components: - type: Transform - pos: -71.5,-39.5 + pos: 42.5,55.5 parent: 2 - uid: 7172 components: - type: Transform - pos: -65.5,-42.5 + pos: 41.5,55.5 parent: 2 - uid: 7173 components: - type: Transform - pos: -72.5,-39.5 + pos: 40.5,55.5 parent: 2 - uid: 7174 components: - type: Transform - pos: -73.5,-44.5 + pos: 39.5,55.5 parent: 2 - uid: 7175 components: - type: Transform - pos: -73.5,-43.5 + pos: 39.5,56.5 parent: 2 - uid: 7176 components: - type: Transform - pos: -73.5,-42.5 + pos: 39.5,57.5 parent: 2 - uid: 7177 components: - type: Transform - pos: -73.5,-41.5 + pos: 39.5,58.5 parent: 2 - uid: 7178 components: - type: Transform - pos: -73.5,-40.5 + pos: 39.5,59.5 parent: 2 - uid: 7179 components: - type: Transform - pos: -73.5,-39.5 + pos: 39.5,60.5 parent: 2 - uid: 7180 components: - type: Transform - pos: -68.5,-37.5 + pos: 39.5,61.5 parent: 2 - uid: 7181 components: - type: Transform - pos: -70.5,-37.5 + pos: 39.5,62.5 parent: 2 - uid: 7182 components: - type: Transform - pos: -69.5,-37.5 + pos: 39.5,63.5 parent: 2 - uid: 7183 components: - type: Transform - pos: -73.5,-37.5 + pos: 40.5,62.5 parent: 2 - uid: 7184 components: - type: Transform - pos: -72.5,-37.5 + pos: 41.5,62.5 parent: 2 - uid: 7185 components: - type: Transform - pos: -66.5,-36.5 + pos: 41.5,63.5 parent: 2 - uid: 7186 components: - type: Transform - pos: -65.5,-41.5 + pos: 38.5,62.5 parent: 2 - uid: 7187 components: - type: Transform - pos: -65.5,-43.5 + pos: 37.5,62.5 parent: 2 - uid: 7188 components: - type: Transform - pos: -65.5,-44.5 + pos: 37.5,63.5 parent: 2 - uid: 7189 components: - type: Transform - pos: -67.5,-37.5 + pos: 37.5,64.5 parent: 2 - uid: 7190 components: - type: Transform - pos: -73.5,-35.5 + pos: 38.5,64.5 parent: 2 - uid: 7191 components: - type: Transform - pos: -73.5,-38.5 + pos: 38.5,65.5 parent: 2 - uid: 7192 components: - type: Transform - pos: -73.5,-36.5 + pos: 41.5,64.5 parent: 2 - uid: 7193 components: - type: Transform - pos: -66.5,-37.5 + pos: 40.5,64.5 parent: 2 - uid: 7194 components: - type: Transform - pos: -65.5,-37.5 + pos: 40.5,65.5 parent: 2 - uid: 7195 components: - type: Transform - pos: -65.5,-39.5 + pos: -37.5,17.5 parent: 2 - uid: 7196 components: - type: Transform - pos: -65.5,-40.5 + pos: -38.5,17.5 parent: 2 - uid: 7197 components: - type: Transform - pos: -66.5,-41.5 + pos: 23.5,4.5 parent: 2 - uid: 7198 components: - type: Transform - pos: -65.5,-45.5 + pos: 22.5,4.5 parent: 2 - uid: 7199 components: - type: Transform - pos: -66.5,-45.5 + pos: 21.5,4.5 parent: 2 - uid: 7200 components: - type: Transform - pos: -73.5,-45.5 + pos: 20.5,4.5 parent: 2 - uid: 7201 components: - type: Transform - pos: -72.5,-45.5 + pos: 20.5,3.5 parent: 2 - uid: 7202 components: - type: Transform - pos: -74.5,-41.5 + pos: 20.5,-2.5 parent: 2 - uid: 7203 components: - type: Transform - pos: -75.5,-41.5 + pos: 21.5,-2.5 parent: 2 - uid: 7204 components: - type: Transform - pos: -76.5,-41.5 + pos: 23.5,-2.5 parent: 2 - uid: 7205 components: - type: Transform - pos: -41.5,-17.5 + pos: 22.5,-2.5 parent: 2 - uid: 7206 components: - type: Transform - pos: -41.5,-18.5 + pos: 24.5,-2.5 parent: 2 - uid: 7207 components: - type: Transform - pos: -74.5,-45.5 + pos: 25.5,-2.5 parent: 2 - uid: 7208 components: - type: Transform - pos: -75.5,-45.5 + pos: 26.5,-2.5 parent: 2 - uid: 7209 components: - type: Transform - pos: -76.5,-45.5 + pos: 27.5,-2.5 parent: 2 - uid: 7210 components: - type: Transform - pos: -72.5,-38.5 + pos: 10.5,-47.5 parent: 2 - uid: 7211 components: - type: Transform - pos: -71.5,-38.5 + pos: -30.5,-4.5 parent: 2 - uid: 7212 components: - type: Transform - pos: -70.5,-38.5 + pos: -30.5,-5.5 parent: 2 - uid: 7213 components: - type: Transform - pos: -65.5,-33.5 + pos: -30.5,-3.5 parent: 2 - uid: 7214 components: - type: Transform - pos: -56.5,-37.5 + pos: 14.5,-46.5 parent: 2 - uid: 7215 components: - type: Transform - pos: -59.5,-37.5 + pos: 7.5,-47.5 parent: 2 - uid: 7216 components: - type: Transform - pos: -57.5,-37.5 + pos: 8.5,-47.5 parent: 2 - uid: 7217 components: - type: Transform - pos: -62.5,-37.5 + pos: 9.5,-47.5 parent: 2 - uid: 7218 components: - type: Transform - pos: -61.5,-37.5 + pos: 16.5,-49.5 parent: 2 - uid: 7219 components: - type: Transform - pos: -60.5,-37.5 + pos: -30.5,-6.5 parent: 2 - uid: 7220 components: - type: Transform - pos: -17.5,11.5 + pos: -30.5,-7.5 parent: 2 - uid: 7221 components: - type: Transform - pos: -58.5,-37.5 + pos: 1.5,-12.5 parent: 2 - uid: 7222 components: - type: Transform - pos: -54.5,-36.5 + pos: -3.5,-14.5 parent: 2 - uid: 7223 components: - type: Transform - pos: -53.5,-36.5 + pos: -7.5,-18.5 parent: 2 - uid: 7224 components: - type: Transform - pos: -52.5,-36.5 + pos: -8.5,-18.5 parent: 2 - uid: 7225 components: - type: Transform - pos: -42.5,-28.5 + pos: 0.5,-12.5 parent: 2 - uid: 7226 components: - type: Transform - pos: -43.5,-28.5 + pos: -27.5,-20.5 parent: 2 - uid: 7227 components: - type: Transform - pos: -43.5,-30.5 + pos: -29.5,-20.5 parent: 2 - uid: 7228 components: - type: Transform - pos: -43.5,-29.5 + pos: -28.5,-20.5 parent: 2 - uid: 7229 components: - type: Transform - pos: -41.5,-28.5 + pos: -33.5,22.5 parent: 2 - uid: 7230 components: - type: Transform - pos: -38.5,-29.5 + pos: -35.5,22.5 parent: 2 - uid: 7231 components: - type: Transform - pos: -55.5,-31.5 + pos: -34.5,22.5 parent: 2 - uid: 7232 components: - type: Transform - pos: 29.5,-38.5 + pos: -44.5,36.5 parent: 2 - uid: 7233 components: - type: Transform - pos: 25.5,-36.5 + pos: 11.5,-40.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 12.5,-37.5 parent: 2 - uid: 7238 components: - type: Transform - pos: 25.5,-35.5 + pos: -18.5,-54.5 parent: 2 - uid: 7239 components: - type: Transform - pos: 2.5,-5.5 + pos: -19.5,-52.5 parent: 2 - uid: 7240 components: - type: Transform - pos: -0.5,-4.5 + pos: -18.5,-53.5 parent: 2 - uid: 7241 components: - type: Transform - pos: 1.5,-4.5 + pos: -17.5,-52.5 parent: 2 - uid: 7242 components: - type: Transform - pos: -0.5,-6.5 + pos: -13.5,-61.5 parent: 2 - uid: 7243 components: - type: Transform - pos: -0.5,-5.5 + pos: -18.5,-52.5 parent: 2 - uid: 7244 components: - type: Transform - pos: 1.5,-5.5 + pos: 3.5,-52.5 parent: 2 - uid: 7245 components: - type: Transform - pos: 3.5,-5.5 + pos: 4.5,-52.5 parent: 2 - uid: 7246 components: - type: Transform - pos: 3.5,-6.5 + pos: 5.5,-52.5 parent: 2 - uid: 7247 components: - type: Transform - pos: 1.5,-6.5 + pos: 6.5,-58.5 parent: 2 - uid: 7248 components: - type: Transform - pos: 1.5,-3.5 + pos: -2.5,-52.5 parent: 2 - uid: 7249 components: - type: Transform - pos: 2.5,-3.5 + pos: -2.5,-53.5 parent: 2 - uid: 7250 components: - type: Transform - pos: 3.5,-3.5 + pos: -2.5,-54.5 parent: 2 - uid: 7251 components: - type: Transform - pos: 18.5,-30.5 + pos: -2.5,-55.5 parent: 2 - uid: 7252 components: - type: Transform - pos: 1.5,-7.5 + pos: -2.5,-56.5 parent: 2 - uid: 7253 components: - type: Transform - pos: 1.5,-8.5 + pos: -3.5,-56.5 parent: 2 - uid: 7254 components: - type: Transform - pos: 0.5,-5.5 + pos: -4.5,-56.5 parent: 2 - uid: 7255 components: - type: Transform - pos: 0.5,-6.5 + pos: -4.5,-57.5 parent: 2 - uid: 7256 components: - type: Transform - pos: 3.5,-7.5 + pos: -4.5,-58.5 parent: 2 - uid: 7257 components: - type: Transform - pos: 2.5,-7.5 + pos: -4.5,-59.5 parent: 2 - uid: 7258 components: - type: Transform - pos: 5.5,-7.5 + pos: -4.5,-60.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -4.5,-61.5 parent: 2 - uid: 7260 components: - type: Transform - pos: 0.5,-17.5 + pos: -4.5,-62.5 parent: 2 - uid: 7261 components: - type: Transform - pos: 0.5,-18.5 + pos: -4.5,-63.5 parent: 2 - uid: 7262 components: - type: Transform - pos: 0.5,-19.5 + pos: -4.5,-64.5 parent: 2 - uid: 7263 components: - type: Transform - pos: 0.5,-20.5 + pos: -4.5,-65.5 parent: 2 - uid: 7264 components: - type: Transform - pos: 0.5,-21.5 + pos: -3.5,-59.5 parent: 2 - uid: 7265 components: - type: Transform - pos: 0.5,-23.5 + pos: -2.5,-59.5 parent: 2 - uid: 7266 components: - type: Transform - pos: 0.5,-22.5 + pos: -5.5,-59.5 parent: 2 - uid: 7267 components: - type: Transform - pos: 1.5,-22.5 + pos: -6.5,-59.5 parent: 2 - uid: 7268 components: - type: Transform - pos: -0.5,-21.5 + pos: -7.5,-59.5 parent: 2 - uid: 7269 components: - type: Transform - pos: -0.5,-19.5 + pos: -5.5,-56.5 parent: 2 - uid: 7270 components: - type: Transform - pos: -0.5,-23.5 + pos: -6.5,-56.5 parent: 2 - uid: 7271 components: - type: Transform - pos: -1.5,-23.5 + pos: -7.5,-56.5 parent: 2 - uid: 7272 components: - type: Transform - pos: 4.5,-12.5 + pos: -7.5,-55.5 parent: 2 - uid: 7273 components: - type: Transform - pos: 25.5,-38.5 + pos: -7.5,-54.5 parent: 2 - uid: 7274 components: - type: Transform - pos: 26.5,-38.5 + pos: -7.5,-53.5 parent: 2 - uid: 7275 components: - type: Transform - pos: 27.5,-38.5 + pos: -7.5,-52.5 parent: 2 - uid: 7276 components: - type: Transform - pos: 28.5,-38.5 + pos: -8.5,-52.5 parent: 2 - uid: 7277 components: - type: Transform - pos: 28.5,-37.5 + pos: -1.5,-56.5 parent: 2 - uid: 7278 components: - type: Transform - pos: 28.5,-36.5 + pos: 0.5,-56.5 parent: 2 - uid: 7279 components: - type: Transform - pos: 28.5,-33.5 + pos: 1.5,-56.5 parent: 2 - uid: 7280 components: - type: Transform - pos: -53.5,-23.5 + pos: 2.5,-56.5 parent: 2 - uid: 7281 components: - type: Transform - pos: 59.5,56.5 + pos: 3.5,-56.5 parent: 2 - uid: 7282 components: - type: Transform - pos: 59.5,57.5 + pos: 4.5,-56.5 parent: 2 - uid: 7283 components: - type: Transform - pos: 59.5,58.5 + pos: 5.5,-56.5 parent: 2 - uid: 7284 components: - type: Transform - pos: 59.5,59.5 + pos: 1.5,-57.5 parent: 2 - uid: 7285 components: - type: Transform - pos: 59.5,55.5 + pos: 1.5,-58.5 parent: 2 - uid: 7286 components: - type: Transform - pos: 55.5,62.5 + pos: 1.5,-59.5 parent: 2 - uid: 7287 components: - type: Transform - pos: 54.5,62.5 + pos: 1.5,-60.5 parent: 2 - uid: 7288 components: - type: Transform - pos: 53.5,62.5 + pos: 1.5,-61.5 parent: 2 - uid: 7289 components: - type: Transform - pos: 56.5,62.5 + pos: 1.5,-62.5 parent: 2 - uid: 7290 components: - type: Transform - pos: 52.5,62.5 + pos: 5.5,-57.5 parent: 2 - uid: 7291 components: - type: Transform - pos: 49.5,59.5 + pos: 5.5,-58.5 parent: 2 - uid: 7292 components: - type: Transform - pos: 49.5,57.5 + pos: 5.5,-59.5 parent: 2 - uid: 7293 components: - type: Transform - pos: 49.5,56.5 + pos: 5.5,-60.5 parent: 2 - uid: 7294 components: - type: Transform - pos: 49.5,55.5 + pos: 5.5,-61.5 parent: 2 - uid: 7295 components: - type: Transform - pos: 49.5,58.5 + pos: 5.5,-62.5 parent: 2 - uid: 7296 components: - type: Transform - pos: 48.5,55.5 + pos: -8.5,-54.5 parent: 2 - uid: 7297 components: - type: Transform - pos: 47.5,55.5 + pos: -9.5,-54.5 parent: 2 - uid: 7298 components: - type: Transform - pos: 46.5,55.5 + pos: -13.5,-57.5 parent: 2 - uid: 7299 components: - type: Transform - pos: 45.5,55.5 + pos: -11.5,-54.5 parent: 2 - uid: 7300 components: - type: Transform - pos: 44.5,55.5 + pos: -11.5,-53.5 parent: 2 - uid: 7301 components: - type: Transform - pos: 43.5,55.5 + pos: -12.5,-53.5 parent: 2 - uid: 7302 components: - type: Transform - pos: 42.5,55.5 + pos: -13.5,-53.5 parent: 2 - uid: 7303 components: - type: Transform - pos: 41.5,55.5 + pos: -14.5,-53.5 parent: 2 - uid: 7304 components: - type: Transform - pos: 40.5,55.5 + pos: -15.5,-53.5 parent: 2 - uid: 7305 components: - type: Transform - pos: 39.5,55.5 + pos: -15.5,-55.5 parent: 2 - uid: 7306 components: - type: Transform - pos: 39.5,56.5 + pos: -15.5,-56.5 parent: 2 - uid: 7307 components: - type: Transform - pos: 39.5,57.5 + pos: -14.5,-56.5 parent: 2 - uid: 7308 components: - type: Transform - pos: 39.5,58.5 + pos: -13.5,-56.5 parent: 2 - uid: 7309 components: - type: Transform - pos: 39.5,59.5 + pos: -12.5,-56.5 parent: 2 - uid: 7310 components: - type: Transform - pos: 39.5,60.5 + pos: -11.5,-56.5 parent: 2 - uid: 7311 components: - type: Transform - pos: 39.5,61.5 + pos: -11.5,-55.5 parent: 2 - uid: 7312 components: - type: Transform - pos: 39.5,62.5 + pos: -10.5,-57.5 parent: 2 - uid: 7313 components: - type: Transform - pos: 39.5,63.5 + pos: -10.5,-58.5 parent: 2 - uid: 7314 components: - type: Transform - pos: 40.5,62.5 + pos: -10.5,-59.5 parent: 2 - uid: 7315 components: - type: Transform - pos: 41.5,62.5 + pos: -11.5,-59.5 parent: 2 - uid: 7316 components: - type: Transform - pos: 41.5,63.5 + pos: -12.5,-59.5 parent: 2 - uid: 7317 components: - type: Transform - pos: 38.5,62.5 + pos: -13.5,-59.5 parent: 2 - uid: 7318 components: - type: Transform - pos: 37.5,62.5 + pos: -14.5,-59.5 parent: 2 - uid: 7319 components: - type: Transform - pos: 37.5,63.5 + pos: -15.5,-59.5 parent: 2 - uid: 7320 components: - type: Transform - pos: 37.5,64.5 + pos: -15.5,-60.5 parent: 2 - uid: 7321 components: - type: Transform - pos: 38.5,64.5 + pos: -16.5,-60.5 parent: 2 - uid: 7322 components: - type: Transform - pos: 38.5,65.5 + pos: -13.5,-60.5 parent: 2 - uid: 7323 components: - type: Transform - pos: 41.5,64.5 + pos: -17.5,-60.5 parent: 2 - uid: 7324 components: - type: Transform - pos: 40.5,64.5 + pos: -19.5,-59.5 parent: 2 - uid: 7325 components: - type: Transform - pos: 40.5,65.5 + pos: -19.5,-58.5 parent: 2 - uid: 7326 components: - type: Transform - pos: -37.5,17.5 + pos: -19.5,-57.5 parent: 2 - uid: 7327 components: - type: Transform - pos: -38.5,17.5 + pos: -13.5,-62.5 parent: 2 - uid: 7328 components: - type: Transform - pos: 23.5,4.5 + pos: -13.5,-63.5 parent: 2 - uid: 7329 components: - type: Transform - pos: 22.5,4.5 + pos: -13.5,-64.5 parent: 2 - uid: 7330 components: - type: Transform - pos: 21.5,4.5 + pos: -13.5,-65.5 parent: 2 - uid: 7331 components: - type: Transform - pos: 20.5,4.5 + pos: -13.5,-66.5 parent: 2 - uid: 7332 components: - type: Transform - pos: 20.5,3.5 + pos: -14.5,-64.5 parent: 2 - uid: 7333 components: - type: Transform - pos: 20.5,-2.5 + pos: -12.5,-64.5 parent: 2 - uid: 7334 components: - type: Transform - pos: 21.5,-2.5 + pos: -10.5,-64.5 parent: 2 - uid: 7335 components: - type: Transform - pos: 23.5,-2.5 + pos: -11.5,-64.5 parent: 2 - uid: 7336 components: - type: Transform - pos: 22.5,-2.5 + pos: -12.5,-66.5 parent: 2 - uid: 7337 components: - type: Transform - pos: 24.5,-2.5 + pos: -11.5,-66.5 parent: 2 - uid: 7338 components: - type: Transform - pos: 25.5,-2.5 + pos: -14.5,-66.5 parent: 2 - uid: 7339 components: - type: Transform - pos: 26.5,-2.5 + pos: -15.5,-66.5 parent: 2 - uid: 7340 components: - type: Transform - pos: 27.5,-2.5 + pos: -8.5,-70.5 parent: 2 - uid: 7341 components: - type: Transform - pos: 10.5,-47.5 + pos: -18.5,-69.5 parent: 2 - uid: 7342 components: - type: Transform - pos: -30.5,-4.5 + pos: -17.5,-69.5 parent: 2 - uid: 7343 components: - type: Transform - pos: -30.5,-5.5 + pos: -16.5,-69.5 parent: 2 - uid: 7344 components: - type: Transform - pos: -30.5,-3.5 + pos: -15.5,-69.5 parent: 2 - uid: 7345 components: - type: Transform - pos: 14.5,-46.5 + pos: 4.5,-68.5 parent: 2 - uid: 7346 components: - type: Transform - pos: 7.5,-47.5 + pos: 0.5,-68.5 parent: 2 - uid: 7347 components: - type: Transform - pos: 8.5,-47.5 + pos: 5.5,-68.5 parent: 2 - uid: 7348 components: - type: Transform - pos: 9.5,-47.5 + pos: 0.5,-67.5 parent: 2 - uid: 7349 components: - type: Transform - pos: 16.5,-49.5 + pos: 5.5,-67.5 parent: 2 - uid: 7350 components: - type: Transform - pos: -30.5,-6.5 + pos: 9.5,-62.5 parent: 2 - uid: 7351 components: - type: Transform - pos: -30.5,-7.5 + pos: 9.5,-63.5 parent: 2 - uid: 7352 components: - type: Transform - pos: 1.5,-12.5 + pos: 0.5,-66.5 parent: 2 - uid: 7353 components: - type: Transform - pos: -3.5,-14.5 + pos: -0.5,-66.5 parent: 2 - uid: 7354 components: - type: Transform - pos: -7.5,-18.5 + pos: -0.5,-65.5 parent: 2 - uid: 7355 components: - type: Transform - pos: -8.5,-18.5 + pos: 1.5,-66.5 parent: 2 - uid: 7356 components: - type: Transform - pos: 0.5,-12.5 + pos: 2.5,-66.5 parent: 2 - uid: 7357 components: - type: Transform - pos: -27.5,-20.5 + pos: -4.5,-66.5 parent: 2 - uid: 7358 components: - type: Transform - pos: -29.5,-20.5 + pos: -5.5,-66.5 parent: 2 - uid: 7359 components: - type: Transform - pos: -28.5,-20.5 + pos: -6.5,-66.5 parent: 2 - uid: 7360 components: - type: Transform - pos: -33.5,22.5 + pos: -7.5,-66.5 parent: 2 - uid: 7361 components: - type: Transform - pos: -35.5,22.5 + pos: -7.5,-65.5 parent: 2 - uid: 7362 components: - type: Transform - pos: -34.5,22.5 + pos: 6.5,-56.5 parent: 2 - uid: 7363 components: - type: Transform - pos: -44.5,36.5 + pos: 10.5,-55.5 parent: 2 - uid: 7364 components: - type: Transform - pos: 11.5,-40.5 + pos: 5.5,-63.5 parent: 2 - uid: 7365 components: - type: Transform - pos: 11.5,-39.5 + pos: 5.5,-64.5 parent: 2 - uid: 7366 components: - type: Transform - pos: 11.5,-38.5 + pos: 3.5,-68.5 parent: 2 - uid: 7367 components: - type: Transform - pos: 11.5,-37.5 + pos: 6.5,-52.5 parent: 2 - uid: 7368 components: - type: Transform - pos: 12.5,-37.5 - parent: 2 - - uid: 9877 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 10210 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - - uid: 10288 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 10289 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - - uid: 10295 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - - uid: 12153 - components: - - type: Transform - pos: 24.5,-32.5 - parent: 2 - - uid: 12230 - components: - - type: Transform - pos: 23.5,-36.5 - parent: 2 - - uid: 12231 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 2 - - uid: 21075 - components: - - type: Transform - pos: 30.5,-38.5 + pos: 7.5,-52.5 parent: 2 -- proto: CableApcStack - entities: - uid: 7369 components: - type: Transform - pos: -22.574043,-20.541626 + pos: 11.5,-52.5 parent: 2 - uid: 7370 components: - type: Transform - pos: -11.530048,37.577045 + pos: -20.5,-55.5 parent: 2 - uid: 7371 components: - type: Transform - pos: 77.47492,-43.4493 + pos: -21.5,-55.5 parent: 2 - uid: 7372 components: - type: Transform - pos: -66.46611,-34.373695 + pos: 11.5,-55.5 parent: 2 -- proto: CableApcStack1 - entities: - uid: 7373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.427982,45.52066 + pos: -10.5,-46.5 parent: 2 - uid: 7374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.439327,47.51809 + pos: 12.5,-49.5 parent: 2 - uid: 7375 components: - type: Transform - pos: -14.8449135,-96.398895 + pos: 13.5,-49.5 parent: 2 - uid: 7376 components: - type: Transform - pos: 57.114487,42.493305 + pos: 6.5,-51.5 parent: 2 - uid: 7377 components: - type: Transform - pos: -14.677503,-33.453545 + pos: -9.5,-46.5 parent: 2 -- proto: CableHV - entities: - uid: 7378 components: - type: Transform - pos: -79.5,-38.5 + pos: -1.5,-68.5 parent: 2 - uid: 7379 components: - type: Transform - pos: 15.5,-28.5 + pos: -8.5,-56.5 parent: 2 - uid: 7380 components: - type: Transform - pos: 7.5,-26.5 + pos: 9.5,-67.5 parent: 2 - uid: 7381 components: - type: Transform - pos: 27.5,-42.5 + pos: 10.5,-67.5 parent: 2 - uid: 7382 components: - type: Transform - pos: 8.5,-95.5 + pos: 10.5,-66.5 parent: 2 - uid: 7383 components: - type: Transform - pos: -1.5,-66.5 + pos: 14.5,-66.5 parent: 2 - uid: 7384 components: - type: Transform - pos: 15.5,-33.5 + pos: 14.5,-67.5 parent: 2 - uid: 7385 components: - type: Transform - pos: 12.5,-26.5 + pos: 13.5,-67.5 parent: 2 - uid: 7386 components: - type: Transform - pos: -11.5,-26.5 + pos: 12.5,-67.5 parent: 2 - uid: 7387 components: - type: Transform - pos: 2.5,-42.5 + pos: 11.5,-67.5 parent: 2 - uid: 7388 components: - type: Transform - pos: 6.5,-42.5 + pos: 7.5,-70.5 parent: 2 - uid: 7389 components: - type: Transform - pos: 0.5,-42.5 + pos: -19.5,-63.5 parent: 2 - uid: 7390 components: - type: Transform - pos: 4.5,-42.5 + pos: -19.5,-62.5 parent: 2 - uid: 7391 components: - type: Transform - pos: -5.5,-39.5 + pos: 5.5,-21.5 parent: 2 - uid: 7392 components: - type: Transform - pos: 8.5,-55.5 + pos: 5.5,-22.5 parent: 2 - uid: 7393 components: - type: Transform - pos: -1.5,-42.5 + pos: -14.5,-33.5 parent: 2 - uid: 7394 components: - type: Transform - pos: -1.5,-26.5 + pos: -13.5,-39.5 parent: 2 - uid: 7395 components: - type: Transform - pos: 15.5,-26.5 + pos: -11.5,-32.5 parent: 2 - uid: 7396 components: - type: Transform - pos: -1.5,-64.5 + pos: -11.5,-31.5 parent: 2 - uid: 7397 components: - type: Transform - pos: -12.5,-75.5 + pos: -11.5,-30.5 parent: 2 - uid: 7398 components: - type: Transform - pos: 32.5,-42.5 + pos: -11.5,-29.5 parent: 2 - uid: 7399 components: - type: Transform - pos: 14.5,-46.5 + pos: -10.5,-29.5 parent: 2 - uid: 7400 components: - type: Transform - pos: 21.5,-42.5 + pos: -9.5,-29.5 parent: 2 - uid: 7401 components: - type: Transform - pos: 38.5,-30.5 + pos: -8.5,-29.5 parent: 2 - uid: 7402 components: - type: Transform - pos: -12.5,-71.5 + pos: -12.5,-29.5 parent: 2 - uid: 7403 components: - type: Transform - pos: 4.5,-16.5 + pos: -13.5,-29.5 parent: 2 - uid: 7404 components: - type: Transform - pos: 3.5,-16.5 + pos: -13.5,-30.5 parent: 2 - uid: 7405 components: - type: Transform - pos: 2.5,-16.5 + pos: -13.5,-31.5 parent: 2 - uid: 7406 components: - type: Transform - pos: 1.5,-16.5 + pos: -14.5,-31.5 parent: 2 - uid: 7407 components: - type: Transform - pos: 1.5,-17.5 + pos: -30.5,-51.5 parent: 2 - uid: 7408 components: - type: Transform - pos: 0.5,-17.5 + pos: -29.5,-51.5 parent: 2 - uid: 7409 components: - type: Transform - pos: 39.5,-28.5 + pos: -28.5,-51.5 parent: 2 - uid: 7410 components: - type: Transform - pos: 25.5,-42.5 + pos: -27.5,-51.5 parent: 2 - uid: 7411 components: - type: Transform - pos: 24.5,-42.5 + pos: -26.5,-51.5 parent: 2 - uid: 7412 components: - type: Transform - pos: 23.5,-42.5 + pos: -45.5,17.5 parent: 2 - uid: 7413 components: - type: Transform - pos: 22.5,-42.5 + pos: -45.5,16.5 parent: 2 - uid: 7414 components: - type: Transform - pos: 25.5,-10.5 + pos: -45.5,15.5 parent: 2 - uid: 7415 components: - type: Transform - pos: 24.5,-5.5 + pos: -46.5,15.5 parent: 2 - uid: 7416 components: - type: Transform - pos: 12.5,-42.5 + pos: -46.5,38.5 parent: 2 - uid: 7417 components: - type: Transform - pos: -14.5,34.5 + pos: -23.5,-57.5 parent: 2 - uid: 7418 components: - type: Transform - pos: 8.5,-16.5 + pos: -23.5,-56.5 parent: 2 - uid: 7419 components: - type: Transform - pos: 4.5,-14.5 + pos: -29.5,-55.5 parent: 2 - uid: 7420 components: - type: Transform - pos: -4.5,-18.5 + pos: -30.5,-55.5 parent: 2 - uid: 7421 components: - type: Transform - pos: 5.5,-92.5 + pos: -27.5,-66.5 parent: 2 - uid: 7422 components: - type: Transform - pos: 4.5,-92.5 + pos: -28.5,-66.5 parent: 2 +- proto: CableApcStack + entities: - uid: 7423 components: - type: Transform - pos: 2.5,-92.5 + pos: -22.574043,-20.541626 parent: 2 - uid: 7424 components: - type: Transform - pos: 12.5,-49.5 + pos: -11.530048,37.577045 parent: 2 - uid: 7425 components: - type: Transform - pos: 10.5,-49.5 + pos: 77.47492,-43.4493 parent: 2 - uid: 7426 components: - type: Transform - pos: 9.5,-52.5 + pos: -66.46611,-34.373695 parent: 2 +- proto: CableApcStack1 + entities: - uid: 7427 components: - type: Transform - pos: 8.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.427982,45.52066 parent: 2 - uid: 7428 components: - type: Transform - pos: 8.5,-53.5 + rot: 3.141592653589793 rad + pos: 38.439327,47.51809 parent: 2 - uid: 7429 components: - type: Transform - pos: 10.5,-55.5 + pos: -14.8449135,-96.398895 parent: 2 - uid: 7430 components: - type: Transform - pos: 11.5,-55.5 + pos: 57.114487,42.493305 parent: 2 +- proto: CablecuffsBroken + entities: - uid: 7431 components: - type: Transform - pos: 12.5,-56.5 + pos: 3.5204124,-65.66156 parent: 2 +- proto: CableHV + entities: - uid: 7432 components: - type: Transform - pos: 14.5,-57.5 + pos: 31.5,-42.5 parent: 2 - uid: 7433 components: - type: Transform - pos: 14.5,-58.5 + pos: -79.5,-38.5 parent: 2 - uid: 7434 components: - type: Transform - pos: 39.5,-29.5 + pos: 15.5,-28.5 parent: 2 - uid: 7435 components: - type: Transform - pos: 36.5,-30.5 + pos: 7.5,-26.5 parent: 2 - uid: 7436 components: - type: Transform - pos: 10.5,-92.5 + pos: 27.5,-42.5 parent: 2 - uid: 7437 components: - type: Transform - pos: -11.5,-75.5 + pos: 8.5,-95.5 parent: 2 - uid: 7438 components: - type: Transform - pos: 6.5,-92.5 + pos: 15.5,-33.5 parent: 2 - uid: 7439 components: - type: Transform - pos: -7.5,-75.5 + pos: 12.5,-26.5 parent: 2 - uid: 7440 components: - type: Transform - pos: -5.5,-75.5 + pos: -11.5,-26.5 parent: 2 - uid: 7441 components: - type: Transform - pos: 25.5,-49.5 + pos: 2.5,-42.5 parent: 2 - uid: 7442 components: - type: Transform - pos: 0.5,-89.5 + pos: 6.5,-42.5 parent: 2 - uid: 7443 components: - type: Transform - pos: -0.5,-89.5 + pos: 0.5,-42.5 parent: 2 - uid: 7444 components: - type: Transform - pos: -1.5,-89.5 + pos: 4.5,-42.5 parent: 2 - uid: 7445 components: - type: Transform - pos: -1.5,-88.5 + pos: -5.5,-39.5 parent: 2 - uid: 7446 components: - type: Transform - pos: -1.5,-87.5 + pos: 8.5,-55.5 parent: 2 - uid: 7447 components: - type: Transform - pos: 14.5,-98.5 + pos: -1.5,-42.5 parent: 2 - uid: 7448 components: - type: Transform - pos: 12.5,-95.5 + pos: -1.5,-26.5 parent: 2 - uid: 7449 components: - type: Transform - pos: -4.5,-22.5 + pos: 15.5,-26.5 parent: 2 - uid: 7450 components: - type: Transform - pos: 10.5,-95.5 + pos: -12.5,-75.5 parent: 2 - uid: 7451 components: - type: Transform - pos: 15.5,-37.5 + pos: 32.5,-42.5 parent: 2 - uid: 7452 components: - type: Transform - pos: -15.5,-71.5 + pos: 21.5,-42.5 parent: 2 - uid: 7453 components: - type: Transform - pos: 35.5,-40.5 + pos: 38.5,-30.5 parent: 2 - uid: 7454 components: - type: Transform - pos: 13.5,-45.5 + pos: -12.5,-71.5 parent: 2 - uid: 7455 components: - type: Transform - pos: -4.5,-25.5 + pos: 4.5,-16.5 parent: 2 - uid: 7456 components: - type: Transform - pos: -5.5,-30.5 + pos: 3.5,-16.5 parent: 2 - uid: 7457 components: - type: Transform - pos: 6.5,-26.5 + pos: 2.5,-16.5 parent: 2 - uid: 7458 components: - type: Transform - pos: 5.5,-26.5 + pos: 1.5,-16.5 parent: 2 - uid: 7459 components: - type: Transform - pos: 3.5,-26.5 + pos: 1.5,-17.5 parent: 2 - uid: 7460 components: - type: Transform - pos: 2.5,-26.5 + pos: 0.5,-17.5 parent: 2 - uid: 7461 components: - type: Transform - pos: 1.5,-26.5 + pos: 39.5,-28.5 parent: 2 - uid: 7462 components: - type: Transform - pos: -17.5,-26.5 + pos: 25.5,-42.5 parent: 2 - uid: 7463 components: - type: Transform - pos: 15.5,-41.5 + pos: 24.5,-42.5 parent: 2 - uid: 7464 components: - type: Transform - pos: 13.5,-42.5 + pos: 23.5,-42.5 parent: 2 - uid: 7465 components: - type: Transform - pos: 10.5,-42.5 + pos: 22.5,-42.5 parent: 2 - uid: 7466 components: - type: Transform - pos: 7.5,-42.5 + pos: 25.5,-10.5 parent: 2 - uid: 7467 components: - type: Transform - pos: 8.5,-42.5 + pos: 24.5,-5.5 parent: 2 - uid: 7468 components: - type: Transform - pos: 25.5,-6.5 + pos: 12.5,-42.5 parent: 2 - uid: 7469 components: - type: Transform - pos: 25.5,-12.5 + pos: -14.5,34.5 parent: 2 - uid: 7470 components: - type: Transform - pos: 25.5,-13.5 + pos: 8.5,-16.5 parent: 2 - uid: 7471 components: - type: Transform - pos: 25.5,-14.5 + pos: 4.5,-14.5 parent: 2 - uid: 7472 components: - type: Transform - pos: 2.5,-71.5 + pos: -4.5,-18.5 parent: 2 - uid: 7473 components: - type: Transform - pos: -12.5,-73.5 + pos: 5.5,-92.5 parent: 2 - uid: 7474 components: - type: Transform - pos: 35.5,-34.5 + pos: 4.5,-92.5 parent: 2 - uid: 7475 components: - type: Transform - pos: 25.5,-44.5 + pos: 2.5,-92.5 parent: 2 - uid: 7476 components: - type: Transform - pos: 25.5,-43.5 + pos: 12.5,-49.5 parent: 2 - uid: 7477 components: - type: Transform - pos: 33.5,-42.5 + pos: 10.5,-49.5 parent: 2 - uid: 7478 components: - type: Transform - pos: -67.5,-25.5 + pos: 9.5,-52.5 parent: 2 - uid: 7479 components: - type: Transform - pos: -2.5,-61.5 + pos: 8.5,-54.5 parent: 2 - uid: 7480 components: - type: Transform - pos: -2.5,-59.5 + pos: 8.5,-53.5 parent: 2 - uid: 7481 components: - type: Transform - pos: -6.5,-69.5 + pos: 10.5,-55.5 parent: 2 - uid: 7482 components: - type: Transform - pos: -15.5,-72.5 + pos: 11.5,-55.5 parent: 2 - uid: 7483 components: - type: Transform - pos: 11.5,-92.5 + pos: 12.5,-56.5 parent: 2 - uid: 7484 components: - type: Transform - pos: 18.5,-95.5 + pos: 14.5,-57.5 parent: 2 - uid: 7485 components: - type: Transform - pos: 12.5,-98.5 + pos: 14.5,-58.5 parent: 2 - uid: 7486 components: - type: Transform - pos: -1.5,-77.5 + pos: 39.5,-29.5 parent: 2 - uid: 7487 components: - type: Transform - pos: -1.5,-80.5 + pos: 36.5,-30.5 parent: 2 - uid: 7488 components: - type: Transform - pos: -1.5,-68.5 + pos: 10.5,-92.5 parent: 2 - uid: 7489 components: - type: Transform - pos: -12.5,-69.5 + pos: -11.5,-75.5 parent: 2 - uid: 7490 components: - type: Transform - pos: 8.5,-92.5 + pos: 6.5,-92.5 parent: 2 - uid: 7491 components: - type: Transform - pos: 23.5,-17.5 + pos: -7.5,-75.5 parent: 2 - uid: 7492 components: - type: Transform - pos: -14.5,-71.5 + pos: -5.5,-75.5 parent: 2 - uid: 7493 components: - type: Transform - pos: -15.5,-73.5 + pos: 25.5,-49.5 parent: 2 - uid: 7494 components: - type: Transform - pos: 15.5,-43.5 + pos: 0.5,-89.5 parent: 2 - uid: 7495 components: - type: Transform - pos: -2.5,-63.5 + pos: -0.5,-89.5 parent: 2 - uid: 7496 components: - type: Transform - pos: 12.5,-57.5 + pos: -1.5,-89.5 parent: 2 - uid: 7497 components: - type: Transform - pos: 9.5,-55.5 + pos: -1.5,-88.5 parent: 2 - uid: 7498 components: - type: Transform - pos: 15.5,-40.5 + pos: -1.5,-87.5 parent: 2 - uid: 7499 components: - type: Transform - pos: -4.5,-69.5 + pos: 14.5,-98.5 parent: 2 - uid: 7500 components: - type: Transform - pos: -1.5,-65.5 + pos: 12.5,-95.5 parent: 2 - uid: 7501 components: - type: Transform - pos: 14.5,-47.5 + pos: -4.5,-22.5 parent: 2 - uid: 7502 components: - type: Transform - pos: 14.5,-45.5 + pos: 10.5,-95.5 parent: 2 - uid: 7503 components: - type: Transform - pos: -0.5,-42.5 + pos: 15.5,-37.5 parent: 2 - uid: 7504 components: - type: Transform - pos: 1.5,-42.5 + pos: -15.5,-71.5 parent: 2 - uid: 7505 components: - type: Transform - pos: 3.5,-42.5 + pos: 35.5,-40.5 parent: 2 - uid: 7506 components: - type: Transform - pos: 5.5,-42.5 + pos: 15.5,-46.5 parent: 2 - uid: 7507 components: - type: Transform - pos: 31.5,-5.5 + pos: -4.5,-25.5 parent: 2 - uid: 7508 components: - type: Transform - pos: 25.5,-5.5 + pos: -5.5,-30.5 parent: 2 - uid: 7509 components: - type: Transform - pos: -4.5,-24.5 + pos: 6.5,-26.5 parent: 2 - uid: 7510 components: - type: Transform - pos: -5.5,-40.5 + pos: 5.5,-26.5 parent: 2 - uid: 7511 components: - type: Transform - pos: -5.5,-38.5 + pos: 3.5,-26.5 parent: 2 - uid: 7512 components: - type: Transform - pos: -5.5,-26.5 + pos: 2.5,-26.5 parent: 2 - uid: 7513 components: - type: Transform - pos: 18.5,-29.5 + pos: 1.5,-26.5 parent: 2 - uid: 7514 components: - type: Transform - pos: -0.5,-17.5 + pos: -17.5,-26.5 parent: 2 - uid: 7515 components: - type: Transform - pos: 30.5,-3.5 + pos: 15.5,-41.5 parent: 2 - uid: 7516 components: - type: Transform - pos: 30.5,7.5 + pos: 13.5,-42.5 parent: 2 - uid: 7517 components: - type: Transform - pos: -24.5,-14.5 + pos: 10.5,-42.5 parent: 2 - uid: 7518 components: - type: Transform - pos: -5.5,-19.5 + pos: 7.5,-42.5 parent: 2 - uid: 7519 components: - type: Transform - pos: -4.5,-19.5 + pos: 8.5,-42.5 parent: 2 - uid: 7520 components: - type: Transform - pos: -4.5,-21.5 + pos: 25.5,-6.5 parent: 2 - uid: 7521 components: - type: Transform - pos: 2.5,-91.5 + pos: 25.5,-12.5 parent: 2 - uid: 7522 components: - type: Transform - pos: 13.5,-47.5 + pos: 25.5,-13.5 parent: 2 - uid: 7523 components: - type: Transform - pos: 7.5,-92.5 + pos: 25.5,-14.5 parent: 2 - uid: 7524 components: - type: Transform - pos: -3.5,-75.5 + pos: 2.5,-71.5 parent: 2 - uid: 7525 components: - type: Transform - pos: 20.5,-42.5 + pos: -12.5,-73.5 parent: 2 - uid: 7526 components: - type: Transform - pos: -65.5,-25.5 + pos: 35.5,-34.5 parent: 2 - uid: 7527 components: - type: Transform - pos: -24.5,-13.5 + pos: 25.5,-44.5 parent: 2 - uid: 7528 components: - type: Transform - pos: 2.5,-89.5 + pos: 25.5,-43.5 parent: 2 - uid: 7529 components: - type: Transform - pos: -1.5,-84.5 + pos: 33.5,-42.5 parent: 2 - uid: 7530 components: - type: Transform - pos: -1.5,-85.5 + pos: -67.5,-25.5 parent: 2 - uid: 7531 components: - type: Transform - pos: 17.5,-95.5 + pos: -6.5,-69.5 parent: 2 - uid: 7532 components: - type: Transform - pos: 4.5,-95.5 + pos: -15.5,-72.5 parent: 2 - uid: 7533 components: - type: Transform - pos: 25.5,-11.5 + pos: 11.5,-92.5 parent: 2 - uid: 7534 components: - type: Transform - pos: 25.5,-9.5 + pos: 18.5,-95.5 parent: 2 - uid: 7535 components: - type: Transform - pos: 25.5,-8.5 + pos: 12.5,-98.5 parent: 2 - uid: 7536 components: - type: Transform - pos: 25.5,-7.5 + pos: -1.5,-77.5 parent: 2 - uid: 7537 components: - type: Transform - pos: 9.5,-42.5 + pos: -1.5,-80.5 parent: 2 - uid: 7538 components: - type: Transform - pos: 14.5,-42.5 + pos: -12.5,-69.5 parent: 2 - uid: 7539 components: - type: Transform - pos: 11.5,-42.5 + pos: 8.5,-92.5 parent: 2 - uid: 7540 components: - type: Transform - pos: 4.5,-26.5 + pos: 23.5,-17.5 parent: 2 - uid: 7541 components: - type: Transform - pos: -3.5,-17.5 + pos: -14.5,-71.5 parent: 2 - uid: 7542 components: - type: Transform - pos: 10.5,-98.5 + pos: -15.5,-73.5 parent: 2 - uid: 7543 components: - type: Transform - pos: 7.5,-95.5 + pos: 15.5,-43.5 parent: 2 - uid: 7544 components: - type: Transform - pos: 15.5,-42.5 + pos: 12.5,-57.5 parent: 2 - uid: 7545 components: - type: Transform - pos: 15.5,-44.5 + pos: 9.5,-55.5 parent: 2 - uid: 7546 components: - type: Transform - pos: 15.5,-36.5 + pos: 15.5,-40.5 parent: 2 - uid: 7547 components: - type: Transform - pos: 15.5,-34.5 + pos: -4.5,-69.5 parent: 2 - uid: 7548 components: - type: Transform - pos: 15.5,-32.5 + pos: 14.5,-47.5 parent: 2 - uid: 7549 components: - type: Transform - pos: -3.5,-69.5 + pos: 15.5,-47.5 parent: 2 - uid: 7550 components: - type: Transform - pos: -5.5,-69.5 + pos: -0.5,-42.5 parent: 2 - uid: 7551 components: - type: Transform - pos: 14.5,-48.5 + pos: 1.5,-42.5 parent: 2 - uid: 7552 components: - type: Transform - pos: -6.5,-71.5 + pos: 3.5,-42.5 parent: 2 - uid: 7553 components: - type: Transform - pos: -6.5,-70.5 + pos: 5.5,-42.5 parent: 2 - uid: 7554 components: - type: Transform - pos: -8.5,-71.5 + pos: 31.5,-5.5 parent: 2 - uid: 7555 components: - type: Transform - pos: -10.5,-71.5 + pos: 25.5,-5.5 parent: 2 - uid: 7556 components: - type: Transform - pos: 14.5,-49.5 + pos: -4.5,-24.5 parent: 2 - uid: 7557 components: - type: Transform - pos: 13.5,-49.5 + pos: -5.5,-40.5 parent: 2 - uid: 7558 components: - type: Transform - pos: 11.5,-49.5 + pos: -5.5,-38.5 parent: 2 - uid: 7559 components: - type: Transform - pos: -11.5,-71.5 + pos: -5.5,-26.5 parent: 2 - uid: 7560 components: - type: Transform - pos: 25.5,-17.5 + pos: 18.5,-29.5 parent: 2 - uid: 7561 components: - type: Transform - pos: 38.5,-28.5 + pos: -0.5,-17.5 parent: 2 - uid: 7562 components: - type: Transform - pos: 37.5,-30.5 + pos: 30.5,-3.5 parent: 2 - uid: 7563 components: - type: Transform - pos: 35.5,-30.5 + pos: 30.5,7.5 parent: 2 - uid: 7564 components: - type: Transform - pos: 35.5,-29.5 + pos: -24.5,-14.5 parent: 2 - uid: 7565 components: - type: Transform - pos: 9.5,-101.5 + pos: -5.5,-19.5 parent: 2 - uid: 7566 components: - type: Transform - pos: -11.5,58.5 + pos: -4.5,-19.5 parent: 2 - uid: 7567 components: - type: Transform - pos: -12.5,58.5 + pos: -4.5,-21.5 parent: 2 - uid: 7568 components: - type: Transform - pos: -15.5,44.5 + pos: 2.5,-91.5 parent: 2 - uid: 7569 components: - type: Transform - pos: -16.5,44.5 + pos: 13.5,-47.5 parent: 2 - uid: 7570 components: - type: Transform - pos: -17.5,44.5 + pos: 7.5,-92.5 parent: 2 - uid: 7571 components: - type: Transform - pos: -17.5,45.5 + pos: -3.5,-75.5 parent: 2 - uid: 7572 components: - type: Transform - pos: -17.5,46.5 + pos: 20.5,-42.5 parent: 2 - uid: 7573 components: - type: Transform - pos: -17.5,47.5 + pos: -65.5,-25.5 parent: 2 - uid: 7574 components: - type: Transform - pos: -17.5,48.5 + pos: -24.5,-13.5 parent: 2 - uid: 7575 components: - type: Transform - pos: -17.5,49.5 + pos: 2.5,-89.5 parent: 2 - uid: 7576 components: - type: Transform - pos: -17.5,50.5 + pos: -1.5,-84.5 parent: 2 - uid: 7577 components: - type: Transform - pos: -16.5,50.5 + pos: -1.5,-85.5 parent: 2 - uid: 7578 components: - type: Transform - pos: -13.5,50.5 + pos: 17.5,-95.5 parent: 2 - uid: 7579 components: - type: Transform - pos: -15.5,50.5 + pos: 4.5,-95.5 parent: 2 - uid: 7580 components: - type: Transform - pos: -14.5,50.5 + pos: 25.5,-11.5 parent: 2 - uid: 7581 components: - type: Transform - pos: -13.5,58.5 + pos: 25.5,-9.5 parent: 2 - uid: 7582 components: - type: Transform - pos: -13.5,57.5 + pos: 25.5,-8.5 parent: 2 - uid: 7583 components: - type: Transform - pos: -13.5,51.5 + pos: 25.5,-7.5 parent: 2 - uid: 7584 components: - type: Transform - pos: -13.5,52.5 + pos: 9.5,-42.5 parent: 2 - uid: 7585 components: - type: Transform - pos: -13.5,53.5 + pos: 14.5,-42.5 parent: 2 - uid: 7586 components: - type: Transform - pos: -13.5,54.5 + pos: 11.5,-42.5 parent: 2 - uid: 7587 components: - type: Transform - pos: -13.5,55.5 + pos: 4.5,-26.5 parent: 2 - uid: 7588 components: - type: Transform - pos: -13.5,56.5 + pos: -3.5,-17.5 parent: 2 - uid: 7589 components: - type: Transform - pos: 15.5,-39.5 + pos: 10.5,-98.5 parent: 2 - uid: 7590 components: - type: Transform - pos: -6.5,-75.5 + pos: 7.5,-95.5 parent: 2 - uid: 7591 components: - type: Transform - pos: 18.5,-42.5 + pos: 15.5,-42.5 parent: 2 - uid: 7592 components: - type: Transform - pos: -24.5,-15.5 + pos: 15.5,-44.5 parent: 2 - uid: 7593 components: - type: Transform - pos: 17.5,-29.5 + pos: 15.5,-36.5 parent: 2 - uid: 7594 components: - type: Transform - pos: 35.5,-38.5 + pos: 15.5,-34.5 parent: 2 - uid: 7595 components: - type: Transform - pos: 26.5,-42.5 + pos: 15.5,-32.5 parent: 2 - uid: 7596 components: - type: Transform - pos: -13.5,-26.5 + pos: -3.5,-69.5 parent: 2 - uid: 7597 components: - type: Transform - pos: -10.5,-26.5 + pos: -5.5,-69.5 parent: 2 - uid: 7598 components: - type: Transform - pos: -5.5,-34.5 + pos: 14.5,-48.5 parent: 2 - uid: 7599 components: - type: Transform - pos: -5.5,-41.5 + pos: -6.5,-71.5 parent: 2 - uid: 7600 components: - type: Transform - pos: 13.5,-57.5 + pos: -6.5,-70.5 parent: 2 - uid: 7601 components: - type: Transform - pos: 12.5,-55.5 + pos: -8.5,-71.5 parent: 2 - uid: 7602 components: - type: Transform - pos: 8.5,-52.5 + pos: -10.5,-71.5 parent: 2 - uid: 7603 components: - type: Transform - pos: -11.5,-42.5 + pos: 14.5,-49.5 parent: 2 - uid: 7604 components: - type: Transform - pos: -8.5,-26.5 + pos: 13.5,-49.5 parent: 2 - uid: 7605 components: - type: Transform - pos: -13.5,-73.5 + pos: 11.5,-49.5 parent: 2 - uid: 7606 components: - type: Transform - pos: 25.5,-47.5 + pos: -11.5,-71.5 parent: 2 - uid: 7607 components: - type: Transform - pos: -5.5,-31.5 + pos: 25.5,-17.5 parent: 2 - uid: 7608 components: - type: Transform - pos: -5.5,-33.5 + pos: 38.5,-28.5 parent: 2 - uid: 7609 components: - type: Transform - pos: -14.5,-26.5 + pos: 37.5,-30.5 parent: 2 - uid: 7610 components: - type: Transform - pos: -15.5,-26.5 + pos: 35.5,-30.5 parent: 2 - uid: 7611 components: - type: Transform - pos: -3.5,-26.5 + pos: 35.5,-29.5 parent: 2 - uid: 7612 components: - type: Transform - pos: -2.5,-26.5 + pos: 9.5,-101.5 parent: 2 - uid: 7613 components: - type: Transform - pos: -0.5,-26.5 + pos: -11.5,58.5 parent: 2 - uid: 7614 components: - type: Transform - pos: 9.5,-26.5 + pos: -12.5,58.5 parent: 2 - uid: 7615 components: - type: Transform - pos: 13.5,-26.5 + pos: -15.5,44.5 parent: 2 - uid: 7616 components: - type: Transform - pos: 15.5,-29.5 + pos: -16.5,44.5 parent: 2 - uid: 7617 components: - type: Transform - pos: -4.5,-42.5 + pos: -17.5,44.5 parent: 2 - uid: 7618 components: - type: Transform - pos: -7.5,-42.5 + pos: -17.5,45.5 parent: 2 - uid: 7619 components: - type: Transform - pos: -8.5,-42.5 + pos: -17.5,46.5 parent: 2 - uid: 7620 components: - type: Transform - pos: -10.5,-42.5 + pos: -17.5,47.5 parent: 2 - uid: 7621 components: - type: Transform - pos: -12.5,-42.5 + pos: -17.5,48.5 parent: 2 - uid: 7622 components: - type: Transform - pos: -13.5,-42.5 + pos: -17.5,49.5 parent: 2 - uid: 7623 components: - type: Transform - pos: 10.5,-51.5 + pos: -17.5,50.5 parent: 2 - uid: 7624 components: - type: Transform - pos: -15.5,-42.5 + pos: -16.5,50.5 parent: 2 - uid: 7625 components: - type: Transform - pos: -12.5,-70.5 + pos: -13.5,50.5 parent: 2 - uid: 7626 components: - type: Transform - pos: -8.5,-75.5 + pos: -15.5,50.5 parent: 2 - uid: 7627 components: - type: Transform - pos: -18.5,-42.5 + pos: -14.5,50.5 parent: 2 - uid: 7628 components: - type: Transform - pos: 15.5,-95.5 + pos: -13.5,58.5 parent: 2 - uid: 7629 components: - type: Transform - pos: 25.5,-50.5 + pos: -13.5,57.5 parent: 2 - uid: 7630 components: - type: Transform - pos: 9.5,-92.5 + pos: -13.5,51.5 parent: 2 - uid: 7631 components: - type: Transform - pos: 13.5,-95.5 + pos: -13.5,52.5 parent: 2 - uid: 7632 components: - type: Transform - pos: 34.5,-42.5 + pos: -13.5,53.5 parent: 2 - uid: 7633 components: - type: Transform - pos: 35.5,-42.5 + pos: -13.5,54.5 parent: 2 - uid: 7634 components: - type: Transform - pos: 25.5,-45.5 + pos: -13.5,55.5 parent: 2 - uid: 7635 components: - type: Transform - pos: 35.5,-32.5 + pos: -13.5,56.5 parent: 2 - uid: 7636 components: - type: Transform - pos: 35.5,-36.5 + pos: 15.5,-39.5 parent: 2 - uid: 7637 components: - type: Transform - pos: 70.5,-46.5 + pos: -6.5,-75.5 parent: 2 - uid: 7638 components: - type: Transform - pos: -12.5,-74.5 + pos: 18.5,-42.5 parent: 2 - uid: 7639 components: - type: Transform - pos: -0.5,-72.5 + pos: -24.5,-15.5 parent: 2 - uid: 7640 components: - type: Transform - pos: 11.5,-105.5 + pos: 17.5,-29.5 parent: 2 - uid: 7641 components: - type: Transform - pos: -1.5,-86.5 + pos: 35.5,-38.5 parent: 2 - uid: 7642 components: - type: Transform - pos: -16.5,-26.5 + pos: 26.5,-42.5 parent: 2 - uid: 7643 components: - type: Transform - pos: 11.5,-26.5 + pos: -13.5,-26.5 parent: 2 - uid: 7644 components: - type: Transform - pos: -17.5,-42.5 + pos: -10.5,-26.5 parent: 2 - uid: 7645 components: - type: Transform - pos: -9.5,-71.5 + pos: -5.5,-34.5 parent: 2 - uid: 7646 components: - type: Transform - pos: 6.5,-14.5 + pos: -5.5,-41.5 parent: 2 - uid: 7647 components: - type: Transform - pos: -4.5,-19.5 + pos: 13.5,-57.5 parent: 2 - uid: 7648 components: - type: Transform - pos: -5.5,-32.5 + pos: 12.5,-55.5 parent: 2 - uid: 7649 components: - type: Transform - pos: 25.5,-48.5 + pos: 8.5,-52.5 parent: 2 - uid: 7650 components: - type: Transform - pos: -9.5,-26.5 + pos: -11.5,-42.5 parent: 2 - uid: 7651 components: - type: Transform - pos: 25.5,-46.5 + pos: -8.5,-26.5 parent: 2 - uid: 7652 components: - type: Transform - pos: -5.5,-42.5 + pos: -13.5,-73.5 parent: 2 - uid: 7653 components: - type: Transform - pos: 15.5,-38.5 + pos: 25.5,-47.5 parent: 2 - uid: 7654 components: - type: Transform - pos: -5.5,-36.5 + pos: -5.5,-31.5 parent: 2 - uid: 7655 components: - type: Transform - pos: 25.5,-51.5 + pos: -5.5,-33.5 parent: 2 - uid: 7656 components: - type: Transform - pos: 15.5,-45.5 + pos: -14.5,-26.5 parent: 2 - uid: 7657 components: - type: Transform - pos: 15.5,-31.5 + pos: -15.5,-26.5 parent: 2 - uid: 7658 components: - type: Transform - pos: 6.5,-95.5 + pos: -3.5,-26.5 parent: 2 - uid: 7659 components: - type: Transform - pos: 15.5,-35.5 + pos: -2.5,-26.5 parent: 2 - uid: 7660 components: - type: Transform - pos: -16.5,-42.5 + pos: -0.5,-26.5 parent: 2 - uid: 7661 components: - type: Transform - pos: 15.5,-30.5 + pos: 9.5,-26.5 parent: 2 - uid: 7662 components: - type: Transform - pos: 10.5,-50.5 + pos: 13.5,-26.5 parent: 2 - uid: 7663 components: - type: Transform - pos: -1.5,-63.5 + pos: 15.5,-29.5 parent: 2 - uid: 7664 components: - type: Transform - pos: -12.5,-26.5 + pos: -4.5,-42.5 parent: 2 - uid: 7665 components: - type: Transform - pos: 0.5,-26.5 + pos: -7.5,-42.5 parent: 2 - uid: 7666 components: - type: Transform - pos: 14.5,-26.5 + pos: -8.5,-42.5 parent: 2 - uid: 7667 components: - type: Transform - pos: 15.5,-27.5 + pos: -10.5,-42.5 parent: 2 - uid: 7668 components: - type: Transform - pos: -6.5,-42.5 + pos: -12.5,-42.5 parent: 2 - uid: 7669 components: - type: Transform - pos: -3.5,-42.5 + pos: -13.5,-42.5 parent: 2 - uid: 7670 components: - type: Transform - pos: -2.5,-17.5 + pos: 10.5,-51.5 parent: 2 - uid: 7671 components: - type: Transform - pos: -1.5,-17.5 + pos: -15.5,-42.5 parent: 2 - uid: 7672 components: - type: Transform - pos: 30.5,-2.5 + pos: -12.5,-70.5 parent: 2 - uid: 7673 components: - type: Transform - pos: 30.5,-4.5 + pos: -8.5,-75.5 parent: 2 - uid: 7674 components: - type: Transform - pos: -4.5,-75.5 + pos: -18.5,-42.5 parent: 2 - uid: 7675 components: - type: Transform - pos: 24.5,-17.5 + pos: 15.5,-95.5 parent: 2 - uid: 7676 components: - type: Transform - pos: 25.5,-16.5 + pos: 25.5,-50.5 parent: 2 - uid: 7677 components: - type: Transform - pos: 25.5,-15.5 + pos: 9.5,-92.5 parent: 2 - uid: 7678 components: - type: Transform - pos: 17.5,-5.5 + pos: 13.5,-95.5 parent: 2 - uid: 7679 components: - type: Transform - pos: 32.5,-17.5 + pos: 34.5,-42.5 parent: 2 - uid: 7680 components: - type: Transform - pos: 35.5,-21.5 + pos: 35.5,-42.5 parent: 2 - uid: 7681 components: - type: Transform - pos: -13.5,-71.5 + pos: 25.5,-45.5 parent: 2 - uid: 7682 components: - type: Transform - pos: 9.5,-95.5 + pos: 35.5,-32.5 parent: 2 - uid: 7683 components: - type: Transform - pos: 13.5,-98.5 + pos: 35.5,-36.5 parent: 2 - uid: 7684 components: - type: Transform - pos: -2.5,-77.5 + pos: 70.5,-46.5 parent: 2 - uid: 7685 components: - type: Transform - pos: -2.5,-78.5 + pos: -12.5,-74.5 parent: 2 - uid: 7686 components: - type: Transform - pos: -1.5,-82.5 + pos: -0.5,-72.5 parent: 2 - uid: 7687 components: - type: Transform - pos: -9.5,-75.5 + pos: 11.5,-105.5 parent: 2 - uid: 7688 components: - type: Transform - pos: 28.5,-42.5 + pos: -1.5,-86.5 parent: 2 - uid: 7689 components: - type: Transform - pos: -4.5,-23.5 + pos: -16.5,-26.5 parent: 2 - uid: 7690 components: - type: Transform - pos: -5.5,-28.5 + pos: 11.5,-26.5 parent: 2 - uid: 7691 components: - type: Transform - pos: -5.5,-35.5 + pos: -17.5,-42.5 parent: 2 - uid: 7692 components: - type: Transform - pos: 10.5,-26.5 + pos: -9.5,-71.5 parent: 2 - uid: 7693 components: - type: Transform - pos: 8.5,-26.5 + pos: 6.5,-14.5 parent: 2 - uid: 7694 components: - type: Transform - pos: -7.5,-71.5 + pos: -4.5,-19.5 parent: 2 - uid: 7695 components: - type: Transform - pos: -7.5,-26.5 + pos: -5.5,-32.5 parent: 2 - uid: 7696 components: - type: Transform - pos: -6.5,-26.5 + pos: 25.5,-48.5 parent: 2 - uid: 7697 components: - type: Transform - pos: -9.5,-42.5 + pos: -9.5,-26.5 parent: 2 - uid: 7698 components: - type: Transform - pos: 8.5,-98.5 + pos: 25.5,-46.5 parent: 2 - uid: 7699 components: - type: Transform - pos: 2.5,-90.5 + pos: -5.5,-42.5 parent: 2 - uid: 7700 components: - type: Transform - pos: 15.5,-31.5 + pos: 15.5,-38.5 parent: 2 - uid: 7701 components: - type: Transform - pos: 14.5,-95.5 + pos: -5.5,-36.5 parent: 2 - uid: 7702 components: - type: Transform - pos: -5.5,-37.5 + pos: 25.5,-51.5 parent: 2 - uid: 7703 components: - type: Transform - pos: -14.5,-73.5 + pos: 15.5,-45.5 parent: 2 - uid: 7704 components: - type: Transform - pos: 35.5,-28.5 + pos: 15.5,-31.5 parent: 2 - uid: 7705 components: - type: Transform - pos: -14.5,-42.5 + pos: 6.5,-95.5 parent: 2 - uid: 7706 components: - type: Transform - pos: 1.5,-89.5 + pos: 15.5,-35.5 parent: 2 - uid: 7707 components: - type: Transform - pos: 3.5,-92.5 + pos: -16.5,-42.5 parent: 2 - uid: 7708 components: - type: Transform - pos: 5.5,-95.5 + pos: 15.5,-30.5 parent: 2 - uid: 7709 components: - type: Transform - pos: 13.5,-101.5 + pos: 10.5,-50.5 parent: 2 - uid: 7710 components: - type: Transform - pos: 9.5,-14.5 + pos: -12.5,-26.5 parent: 2 - uid: 7711 components: - type: Transform - pos: -4.5,-20.5 + pos: 0.5,-26.5 parent: 2 - uid: 7712 components: - type: Transform - pos: 16.5,-29.5 + pos: 14.5,-26.5 parent: 2 - uid: 7713 components: - type: Transform - pos: -4.5,-26.5 + pos: 15.5,-27.5 parent: 2 - uid: 7714 components: - type: Transform - pos: 16.5,-95.5 + pos: -6.5,-42.5 parent: 2 - uid: 7715 components: - type: Transform - pos: -2.5,-42.5 + pos: -3.5,-42.5 parent: 2 - uid: 7716 components: - type: Transform - pos: 16.5,-42.5 + pos: -2.5,-17.5 parent: 2 - uid: 7717 components: - type: Transform - pos: 7.5,-14.5 + pos: -1.5,-17.5 parent: 2 - uid: 7718 components: - type: Transform - pos: 12.5,-101.5 + pos: 30.5,-2.5 parent: 2 - uid: 7719 components: - type: Transform - pos: 10.5,-101.5 + pos: 30.5,-4.5 parent: 2 - uid: 7720 components: - type: Transform - pos: 8.5,-101.5 + pos: -4.5,-75.5 parent: 2 - uid: 7721 components: - type: Transform - pos: 14.5,-101.5 + pos: 24.5,-17.5 parent: 2 - uid: 7722 components: - type: Transform - pos: 9.5,-104.5 + pos: 25.5,-16.5 parent: 2 - uid: 7723 components: - type: Transform - pos: 13.5,-104.5 + pos: 25.5,-15.5 parent: 2 - uid: 7724 components: - type: Transform - pos: 9.5,-98.5 + pos: 17.5,-5.5 parent: 2 - uid: 7725 components: - type: Transform - pos: -1.5,-83.5 + pos: 32.5,-17.5 parent: 2 - uid: 7726 components: - type: Transform - pos: -1.5,-81.5 + pos: 35.5,-21.5 parent: 2 - uid: 7727 components: - type: Transform - pos: -1.5,-79.5 + pos: -13.5,-71.5 parent: 2 - uid: 7728 components: - type: Transform - pos: -2.5,-79.5 + pos: 9.5,-95.5 parent: 2 - uid: 7729 components: - type: Transform - pos: -2.5,-75.5 + pos: 13.5,-98.5 parent: 2 - uid: 7730 components: - type: Transform - pos: -2.5,-76.5 + pos: -2.5,-77.5 parent: 2 - uid: 7731 components: - type: Transform - pos: -10.5,-75.5 + pos: -2.5,-78.5 parent: 2 - uid: 7732 components: - type: Transform - pos: 15.5,-58.5 + pos: -1.5,-82.5 parent: 2 - uid: 7733 components: - type: Transform - pos: -5.5,-27.5 + pos: -9.5,-75.5 parent: 2 - uid: 7734 components: - type: Transform - pos: -5.5,-29.5 + pos: 28.5,-42.5 parent: 2 - uid: 7735 components: - type: Transform - pos: 21.5,-17.5 + pos: -4.5,-23.5 parent: 2 - uid: 7736 components: - type: Transform - pos: 22.5,-17.5 + pos: -5.5,-28.5 parent: 2 - uid: 7737 components: - type: Transform - pos: 20.5,-17.5 + pos: -5.5,-35.5 parent: 2 - uid: 7738 components: - type: Transform - pos: 19.5,-17.5 + pos: 10.5,-26.5 parent: 2 - uid: 7739 components: - type: Transform - pos: 18.5,-17.5 + pos: 8.5,-26.5 parent: 2 - uid: 7740 components: - type: Transform - pos: 17.5,-17.5 + pos: -7.5,-71.5 parent: 2 - uid: 7741 components: - type: Transform - pos: 16.5,-17.5 + pos: -7.5,-26.5 parent: 2 - uid: 7742 components: - type: Transform - pos: 15.5,-22.5 + pos: -6.5,-26.5 parent: 2 - uid: 7743 components: - type: Transform - pos: 15.5,-17.5 + pos: -9.5,-42.5 parent: 2 - uid: 7744 components: - type: Transform - pos: 15.5,-18.5 + pos: 8.5,-98.5 parent: 2 - uid: 7745 components: - type: Transform - pos: 15.5,-19.5 + pos: 2.5,-90.5 parent: 2 - uid: 7746 components: - type: Transform - pos: 15.5,-20.5 + pos: 15.5,-31.5 parent: 2 - uid: 7747 components: - type: Transform - pos: 15.5,-21.5 + pos: 14.5,-95.5 parent: 2 - uid: 7748 components: - type: Transform - pos: 15.5,-23.5 + pos: -5.5,-37.5 parent: 2 - uid: 7749 components: - type: Transform - pos: 15.5,-24.5 + pos: -14.5,-73.5 parent: 2 - uid: 7750 components: - type: Transform - pos: 15.5,-25.5 + pos: 35.5,-28.5 parent: 2 - uid: 7751 components: - type: Transform - pos: 18.5,-5.5 + pos: -14.5,-42.5 parent: 2 - uid: 7752 components: - type: Transform - pos: 19.5,-5.5 + pos: 1.5,-89.5 parent: 2 - uid: 7753 components: - type: Transform - pos: 20.5,-5.5 + pos: 3.5,-92.5 parent: 2 - uid: 7754 components: - type: Transform - pos: 21.5,-5.5 + pos: 5.5,-95.5 parent: 2 - uid: 7755 components: - type: Transform - pos: 22.5,-5.5 + pos: 13.5,-101.5 parent: 2 - uid: 7756 components: - type: Transform - pos: 23.5,-5.5 + pos: 9.5,-14.5 parent: 2 - uid: 7757 components: - type: Transform - pos: 31.5,-17.5 + pos: -4.5,-20.5 parent: 2 - uid: 7758 components: - type: Transform - pos: 30.5,-17.5 + pos: 16.5,-29.5 parent: 2 - uid: 7759 components: - type: Transform - pos: 29.5,-17.5 + pos: -4.5,-26.5 parent: 2 - uid: 7760 components: - type: Transform - pos: 28.5,-17.5 + pos: 16.5,-95.5 parent: 2 - uid: 7761 components: - type: Transform - pos: 27.5,-17.5 + pos: -2.5,-42.5 parent: 2 - uid: 7762 components: - type: Transform - pos: 26.5,-17.5 + pos: 16.5,-42.5 parent: 2 - uid: 7763 components: - type: Transform - pos: 35.5,-20.5 + pos: 7.5,-14.5 parent: 2 - uid: 7764 components: - type: Transform - pos: 35.5,-19.5 + pos: 12.5,-101.5 parent: 2 - uid: 7765 components: - type: Transform - pos: 35.5,-18.5 + pos: 10.5,-101.5 parent: 2 - uid: 7766 components: - type: Transform - pos: 35.5,-17.5 + pos: 8.5,-101.5 parent: 2 - uid: 7767 components: - type: Transform - pos: 34.5,-17.5 + pos: 14.5,-101.5 parent: 2 - uid: 7768 components: - type: Transform - pos: 33.5,-17.5 + pos: 9.5,-104.5 parent: 2 - uid: 7769 components: - type: Transform - pos: 35.5,-27.5 + pos: 13.5,-104.5 parent: 2 - uid: 7770 components: - type: Transform - pos: 35.5,-26.5 + pos: 9.5,-98.5 parent: 2 - uid: 7771 components: - type: Transform - pos: 35.5,-25.5 + pos: -1.5,-83.5 parent: 2 - uid: 7772 components: - type: Transform - pos: 35.5,-24.5 + pos: -1.5,-81.5 parent: 2 - uid: 7773 components: - type: Transform - pos: 35.5,-23.5 + pos: -1.5,-79.5 parent: 2 - uid: 7774 components: - type: Transform - pos: 35.5,-22.5 + pos: -2.5,-79.5 parent: 2 - uid: 7775 components: - type: Transform - pos: 30.5,-5.5 + pos: -2.5,-75.5 parent: 2 - uid: 7776 components: - type: Transform - pos: 29.5,-5.5 + pos: -2.5,-76.5 parent: 2 - uid: 7777 components: - type: Transform - pos: 28.5,-5.5 + pos: -10.5,-75.5 parent: 2 - uid: 7778 components: - type: Transform - pos: 27.5,-5.5 + pos: 15.5,-58.5 parent: 2 - uid: 7779 components: - type: Transform - pos: 26.5,-5.5 + pos: -5.5,-27.5 parent: 2 - uid: 7780 components: - type: Transform - pos: 33.5,-2.5 + pos: -5.5,-29.5 parent: 2 - uid: 7781 components: - type: Transform - pos: 33.5,-3.5 + pos: 21.5,-17.5 parent: 2 - uid: 7782 components: - type: Transform - pos: 33.5,-4.5 + pos: 22.5,-17.5 parent: 2 - uid: 7783 components: - type: Transform - pos: 33.5,-5.5 + pos: 20.5,-17.5 parent: 2 - uid: 7784 components: - type: Transform - pos: 32.5,-5.5 + pos: 19.5,-17.5 parent: 2 - uid: 7785 components: - type: Transform - pos: 39.5,-30.5 + pos: 18.5,-17.5 parent: 2 - uid: 7786 components: - type: Transform - pos: 35.5,-31.5 + pos: 17.5,-17.5 parent: 2 - uid: 7787 components: - type: Transform - pos: 35.5,-33.5 + pos: 16.5,-17.5 parent: 2 - uid: 7788 components: - type: Transform - pos: 35.5,-35.5 + pos: 15.5,-22.5 parent: 2 - uid: 7789 components: - type: Transform - pos: 35.5,-37.5 + pos: 15.5,-17.5 parent: 2 - uid: 7790 components: - type: Transform - pos: 35.5,-39.5 + pos: 15.5,-18.5 parent: 2 - uid: 7791 components: - type: Transform - pos: 35.5,-41.5 + pos: 15.5,-19.5 parent: 2 - uid: 7792 components: - type: Transform - pos: 17.5,-42.5 + pos: 15.5,-20.5 parent: 2 - uid: 7793 components: - type: Transform - pos: 19.5,-42.5 + pos: 15.5,-21.5 parent: 2 - uid: 7794 components: - type: Transform - pos: 10.5,-52.5 + pos: 15.5,-23.5 parent: 2 - uid: 7795 components: - type: Transform - pos: 33.5,-1.5 + pos: 15.5,-24.5 parent: 2 - uid: 7796 components: - type: Transform - pos: 33.5,-0.5 + pos: 15.5,-25.5 parent: 2 - uid: 7797 components: - type: Transform - pos: 33.5,0.5 + pos: 18.5,-5.5 parent: 2 - uid: 7798 components: - type: Transform - pos: 33.5,1.5 + pos: 19.5,-5.5 parent: 2 - uid: 7799 components: - type: Transform - pos: 33.5,2.5 + pos: 20.5,-5.5 parent: 2 - uid: 7800 components: - type: Transform - pos: 33.5,3.5 + pos: 21.5,-5.5 parent: 2 - uid: 7801 components: - type: Transform - pos: 33.5,4.5 + pos: 22.5,-5.5 parent: 2 - uid: 7802 components: - type: Transform - pos: 33.5,5.5 + pos: 23.5,-5.5 parent: 2 - uid: 7803 components: - type: Transform - pos: 33.5,6.5 + pos: 31.5,-17.5 parent: 2 - uid: 7804 components: - type: Transform - pos: 33.5,7.5 + pos: 30.5,-17.5 parent: 2 - uid: 7805 components: - type: Transform - pos: 32.5,7.5 + pos: 29.5,-17.5 parent: 2 - uid: 7806 components: - type: Transform - pos: 31.5,7.5 + pos: 28.5,-17.5 parent: 2 - uid: 7807 components: - type: Transform - pos: 29.5,7.5 + pos: 27.5,-17.5 parent: 2 - uid: 7808 components: - type: Transform - pos: 28.5,7.5 + pos: 26.5,-17.5 parent: 2 - uid: 7809 components: - type: Transform - pos: 27.5,7.5 + pos: 35.5,-20.5 parent: 2 - uid: 7810 components: - type: Transform - pos: 26.5,7.5 + pos: 35.5,-19.5 parent: 2 - uid: 7811 components: - type: Transform - pos: 25.5,7.5 + pos: 35.5,-18.5 parent: 2 - uid: 7812 components: - type: Transform - pos: 24.5,7.5 + pos: 35.5,-17.5 parent: 2 - uid: 7813 components: - type: Transform - pos: 23.5,7.5 + pos: 34.5,-17.5 parent: 2 - uid: 7814 components: - type: Transform - pos: 22.5,7.5 + pos: 33.5,-17.5 parent: 2 - uid: 7815 components: - type: Transform - pos: 21.5,7.5 + pos: 35.5,-27.5 parent: 2 - uid: 7816 components: - type: Transform - pos: 20.5,7.5 + pos: 35.5,-26.5 parent: 2 - uid: 7817 components: - type: Transform - pos: 19.5,7.5 + pos: 35.5,-25.5 parent: 2 - uid: 7818 components: - type: Transform - pos: 18.5,7.5 + pos: 35.5,-24.5 parent: 2 - uid: 7819 components: - type: Transform - pos: 17.5,7.5 + pos: 35.5,-23.5 parent: 2 - uid: 7820 components: - type: Transform - pos: 17.5,6.5 + pos: 35.5,-22.5 parent: 2 - uid: 7821 components: - type: Transform - pos: 17.5,5.5 + pos: 30.5,-5.5 parent: 2 - uid: 7822 components: - type: Transform - pos: 17.5,4.5 + pos: 29.5,-5.5 parent: 2 - uid: 7823 components: - type: Transform - pos: 17.5,3.5 + pos: 28.5,-5.5 parent: 2 - uid: 7824 components: - type: Transform - pos: 17.5,2.5 + pos: 27.5,-5.5 parent: 2 - uid: 7825 components: - type: Transform - pos: 17.5,1.5 + pos: 26.5,-5.5 parent: 2 - uid: 7826 components: - type: Transform - pos: 17.5,0.5 + pos: 33.5,-2.5 parent: 2 - uid: 7827 components: - type: Transform - pos: 17.5,-0.5 + pos: 33.5,-3.5 parent: 2 - uid: 7828 components: - type: Transform - pos: 17.5,-1.5 + pos: 33.5,-4.5 parent: 2 - uid: 7829 components: - type: Transform - pos: 17.5,-2.5 + pos: 33.5,-5.5 parent: 2 - uid: 7830 components: - type: Transform - pos: 17.5,-3.5 + pos: 32.5,-5.5 parent: 2 - uid: 7831 components: - type: Transform - pos: 17.5,-4.5 + pos: 39.5,-30.5 parent: 2 - uid: 7832 components: - type: Transform - pos: -4.5,-17.5 + pos: 35.5,-31.5 parent: 2 - uid: 7833 components: - type: Transform - pos: -4.5,-16.5 + pos: 35.5,-33.5 parent: 2 - uid: 7834 components: - type: Transform - pos: -4.5,-15.5 + pos: 35.5,-35.5 parent: 2 - uid: 7835 components: - type: Transform - pos: -4.5,-14.5 + pos: 35.5,-37.5 parent: 2 - uid: 7836 components: - type: Transform - pos: -4.5,-13.5 + pos: 35.5,-39.5 parent: 2 - uid: 7837 components: - type: Transform - pos: -4.5,-12.5 + pos: 35.5,-41.5 parent: 2 - uid: 7838 components: - type: Transform - pos: -4.5,-11.5 + pos: 17.5,-42.5 parent: 2 - uid: 7839 components: - type: Transform - pos: -4.5,-10.5 + pos: 19.5,-42.5 parent: 2 - uid: 7840 components: - type: Transform - pos: -4.5,-9.5 + pos: 10.5,-52.5 parent: 2 - uid: 7841 components: - type: Transform - pos: -4.5,-8.5 + pos: 33.5,-1.5 parent: 2 - uid: 7842 components: - type: Transform - pos: -4.5,-7.5 + pos: 33.5,-0.5 parent: 2 - uid: 7843 components: - type: Transform - pos: -4.5,-6.5 + pos: 33.5,0.5 parent: 2 - uid: 7844 components: - type: Transform - pos: -4.5,-5.5 + pos: 33.5,1.5 parent: 2 - uid: 7845 components: - type: Transform - pos: -4.5,-4.5 + pos: 33.5,2.5 parent: 2 - uid: 7846 components: - type: Transform - pos: -4.5,-3.5 + pos: 33.5,3.5 parent: 2 - uid: 7847 components: - type: Transform - pos: -4.5,-2.5 + pos: 33.5,4.5 parent: 2 - uid: 7848 components: - type: Transform - pos: -4.5,-1.5 + pos: 33.5,5.5 parent: 2 - uid: 7849 components: - type: Transform - pos: -4.5,-0.5 + pos: 33.5,6.5 parent: 2 - uid: 7850 components: - type: Transform - pos: -4.5,0.5 + pos: 33.5,7.5 parent: 2 - uid: 7851 components: - type: Transform - pos: -4.5,1.5 + pos: 32.5,7.5 parent: 2 - uid: 7852 components: - type: Transform - pos: 25.5,8.5 + pos: 31.5,7.5 parent: 2 - uid: 7853 components: - type: Transform - pos: 25.5,9.5 + pos: 29.5,7.5 parent: 2 - uid: 7854 components: - type: Transform - pos: 24.5,9.5 + pos: 28.5,7.5 parent: 2 - uid: 7855 components: - type: Transform - pos: 24.5,10.5 + pos: 27.5,7.5 parent: 2 - uid: 7856 components: - type: Transform - pos: 24.5,11.5 + pos: 26.5,7.5 parent: 2 - uid: 7857 components: - type: Transform - pos: 24.5,12.5 + pos: 25.5,7.5 parent: 2 - uid: 7858 components: - type: Transform - pos: 24.5,13.5 + pos: 24.5,7.5 parent: 2 - uid: 7859 components: - type: Transform - pos: 24.5,14.5 + pos: 23.5,7.5 parent: 2 - uid: 7860 components: - type: Transform - pos: 24.5,15.5 + pos: 22.5,7.5 parent: 2 - uid: 7861 components: - type: Transform - pos: 24.5,16.5 + pos: 21.5,7.5 parent: 2 - uid: 7862 components: - type: Transform - pos: 23.5,16.5 + pos: 20.5,7.5 parent: 2 - uid: 7863 components: - type: Transform - pos: 22.5,16.5 + pos: 19.5,7.5 parent: 2 - uid: 7864 components: - type: Transform - pos: 24.5,17.5 + pos: 18.5,7.5 parent: 2 - uid: 7865 components: - type: Transform - pos: 24.5,18.5 + pos: 17.5,7.5 parent: 2 - uid: 7866 components: - type: Transform - pos: 25.5,18.5 + pos: 17.5,6.5 parent: 2 - uid: 7867 components: - type: Transform - pos: 26.5,18.5 + pos: 17.5,5.5 parent: 2 - uid: 7868 components: - type: Transform - pos: 27.5,18.5 + pos: 17.5,4.5 parent: 2 - uid: 7869 components: - type: Transform - pos: 28.5,18.5 + pos: 17.5,3.5 parent: 2 - uid: 7870 components: - type: Transform - pos: 29.5,18.5 + pos: 17.5,2.5 parent: 2 - uid: 7871 components: - type: Transform - pos: 29.5,20.5 + pos: 17.5,1.5 parent: 2 - uid: 7872 components: - type: Transform - pos: 29.5,19.5 + pos: 17.5,0.5 parent: 2 - uid: 7873 components: - type: Transform - pos: 29.5,21.5 + pos: 17.5,-0.5 parent: 2 - uid: 7874 components: - type: Transform - pos: 30.5,21.5 + pos: 17.5,-1.5 parent: 2 - uid: 7875 components: - type: Transform - pos: 31.5,21.5 + pos: 17.5,-2.5 parent: 2 - uid: 7876 components: - type: Transform - pos: 32.5,21.5 + pos: 17.5,-3.5 parent: 2 - uid: 7877 components: - type: Transform - pos: 32.5,22.5 + pos: 17.5,-4.5 parent: 2 - uid: 7878 components: - type: Transform - pos: 32.5,23.5 + pos: -4.5,-17.5 parent: 2 - uid: 7879 components: - type: Transform - pos: 32.5,24.5 + pos: -4.5,-16.5 parent: 2 - uid: 7880 components: - type: Transform - pos: 32.5,25.5 + pos: -4.5,-15.5 parent: 2 - uid: 7881 components: - type: Transform - pos: 22.5,17.5 + pos: -4.5,-14.5 parent: 2 - uid: 7882 components: - type: Transform - pos: 22.5,18.5 + pos: -4.5,-13.5 parent: 2 - uid: 7883 components: - type: Transform - pos: 22.5,19.5 + pos: -4.5,-12.5 parent: 2 - uid: 7884 components: - type: Transform - pos: 22.5,20.5 + pos: -4.5,-11.5 parent: 2 - uid: 7885 components: - type: Transform - pos: 22.5,21.5 + pos: -4.5,-10.5 parent: 2 - uid: 7886 components: - type: Transform - pos: 22.5,22.5 + pos: -4.5,-9.5 parent: 2 - uid: 7887 components: - type: Transform - pos: 21.5,22.5 + pos: -4.5,-8.5 parent: 2 - uid: 7888 components: - type: Transform - pos: 21.5,23.5 + pos: -4.5,-7.5 parent: 2 - uid: 7889 components: - type: Transform - pos: 21.5,24.5 + pos: -4.5,-6.5 parent: 2 - uid: 7890 components: - type: Transform - pos: 21.5,25.5 + pos: -4.5,-5.5 parent: 2 - uid: 7891 components: - type: Transform - pos: 20.5,25.5 + pos: -4.5,-4.5 parent: 2 - uid: 7892 components: - type: Transform - pos: 18.5,25.5 + pos: -4.5,-3.5 parent: 2 - uid: 7893 components: - type: Transform - pos: 19.5,25.5 + pos: -4.5,-2.5 parent: 2 - uid: 7894 components: - type: Transform - pos: 33.5,25.5 + pos: -4.5,-1.5 parent: 2 - uid: 7895 components: - type: Transform - pos: -4.5,2.5 + pos: -4.5,-0.5 parent: 2 - uid: 7896 components: - type: Transform - pos: -5.5,2.5 + pos: -4.5,0.5 parent: 2 - uid: 7897 components: - type: Transform - pos: -6.5,2.5 + pos: -4.5,1.5 parent: 2 - uid: 7898 components: - type: Transform - pos: -7.5,2.5 + pos: 25.5,8.5 parent: 2 - uid: 7899 components: - type: Transform - pos: -8.5,2.5 + pos: 25.5,9.5 parent: 2 - uid: 7900 components: - type: Transform - pos: -9.5,2.5 + pos: 24.5,9.5 parent: 2 - uid: 7901 components: - type: Transform - pos: -10.5,2.5 + pos: 24.5,10.5 parent: 2 - uid: 7902 components: - type: Transform - pos: -11.5,2.5 + pos: 24.5,11.5 parent: 2 - uid: 7903 components: - type: Transform - pos: -12.5,2.5 + pos: 24.5,12.5 parent: 2 - uid: 7904 components: - type: Transform - pos: -13.5,2.5 + pos: 24.5,13.5 parent: 2 - uid: 7905 components: - type: Transform - pos: -2.5,-62.5 + pos: 24.5,14.5 parent: 2 - uid: 7906 components: - type: Transform - pos: 34.5,1.5 + pos: 24.5,15.5 parent: 2 - uid: 7907 components: - type: Transform - pos: 35.5,1.5 + pos: 24.5,16.5 parent: 2 - uid: 7908 components: - type: Transform - pos: 36.5,1.5 + pos: 23.5,16.5 parent: 2 - uid: 7909 components: - type: Transform - pos: 36.5,2.5 + pos: 22.5,16.5 parent: 2 - uid: 7910 components: - type: Transform - pos: 37.5,2.5 + pos: 24.5,17.5 parent: 2 - uid: 7911 components: - type: Transform - pos: 38.5,2.5 + pos: 24.5,18.5 parent: 2 - uid: 7912 components: - type: Transform - pos: 39.5,2.5 + pos: 25.5,18.5 parent: 2 - uid: 7913 components: - type: Transform - pos: 40.5,2.5 + pos: 26.5,18.5 parent: 2 - uid: 7914 components: - type: Transform - pos: 41.5,2.5 + pos: 27.5,18.5 parent: 2 - uid: 7915 components: - type: Transform - pos: 42.5,2.5 + pos: 28.5,18.5 parent: 2 - uid: 7916 components: - type: Transform - pos: 44.5,2.5 + pos: 29.5,18.5 parent: 2 - uid: 7917 components: - type: Transform - pos: 43.5,2.5 + pos: 29.5,20.5 parent: 2 - uid: 7918 components: - type: Transform - pos: -10.5,26.5 + pos: 29.5,19.5 parent: 2 - uid: 7919 components: - type: Transform - pos: -14.5,35.5 + pos: 29.5,21.5 parent: 2 - uid: 7920 components: - type: Transform - pos: -9.5,26.5 + pos: 30.5,21.5 parent: 2 - uid: 7921 components: - type: Transform - pos: -20.5,29.5 + pos: 31.5,21.5 parent: 2 - uid: 7922 components: - type: Transform - pos: -18.5,29.5 + pos: 32.5,21.5 parent: 2 - uid: 7923 components: - type: Transform - pos: -20.5,28.5 + pos: 32.5,22.5 parent: 2 - uid: 7924 components: - type: Transform - pos: -14.5,31.5 + pos: 32.5,23.5 parent: 2 - uid: 7925 components: - type: Transform - pos: -19.5,29.5 + pos: 32.5,24.5 parent: 2 - uid: 7926 components: - type: Transform - pos: -14.5,33.5 + pos: 32.5,25.5 parent: 2 - uid: 7927 components: - type: Transform - pos: -20.5,26.5 + pos: 22.5,17.5 parent: 2 - uid: 7928 components: - type: Transform - pos: -20.5,27.5 + pos: 22.5,18.5 parent: 2 - uid: 7929 components: - type: Transform - pos: -14.5,39.5 + pos: 22.5,19.5 parent: 2 - uid: 7930 components: - type: Transform - pos: -14.5,40.5 + pos: 22.5,20.5 parent: 2 - uid: 7931 components: - type: Transform - pos: -9.5,27.5 + pos: 22.5,21.5 parent: 2 - uid: 7932 components: - type: Transform - pos: -9.5,29.5 + pos: 22.5,22.5 parent: 2 - uid: 7933 components: - type: Transform - pos: -8.5,29.5 + pos: 21.5,22.5 parent: 2 - uid: 7934 components: - type: Transform - pos: -8.5,30.5 + pos: 21.5,23.5 parent: 2 - uid: 7935 components: - type: Transform - pos: -8.5,31.5 + pos: 21.5,24.5 parent: 2 - uid: 7936 components: - type: Transform - pos: 16.5,27.5 + pos: 21.5,25.5 parent: 2 - uid: 7937 components: - type: Transform - pos: 16.5,26.5 + pos: 20.5,25.5 parent: 2 - uid: 7938 components: - type: Transform - pos: 16.5,25.5 + pos: 18.5,25.5 parent: 2 - uid: 7939 components: - type: Transform - pos: 17.5,25.5 + pos: 19.5,25.5 parent: 2 - uid: 7940 components: - type: Transform - pos: 45.5,2.5 + pos: 33.5,25.5 parent: 2 - uid: 7941 components: - type: Transform - pos: 46.5,2.5 + pos: -4.5,2.5 parent: 2 - uid: 7942 components: - type: Transform - pos: 47.5,2.5 + pos: -5.5,2.5 parent: 2 - uid: 7943 components: - type: Transform - pos: 48.5,2.5 + pos: -6.5,2.5 parent: 2 - uid: 7944 components: - type: Transform - pos: 49.5,2.5 + pos: -7.5,2.5 parent: 2 - uid: 7945 components: - type: Transform - pos: 50.5,2.5 + pos: -8.5,2.5 parent: 2 - uid: 7946 components: - type: Transform - pos: 51.5,2.5 + pos: -9.5,2.5 parent: 2 - uid: 7947 components: - type: Transform - pos: 52.5,2.5 + pos: -10.5,2.5 parent: 2 - uid: 7948 components: - type: Transform - pos: 52.5,1.5 + pos: -11.5,2.5 parent: 2 - uid: 7949 components: - type: Transform - pos: 52.5,0.5 + pos: -12.5,2.5 parent: 2 - uid: 7950 components: - type: Transform - pos: 52.5,-0.5 + pos: -13.5,2.5 parent: 2 - uid: 7951 components: - type: Transform - pos: 53.5,1.5 + pos: 34.5,1.5 parent: 2 - uid: 7952 components: - type: Transform - pos: 54.5,1.5 + pos: 35.5,1.5 parent: 2 - uid: 7953 components: - type: Transform - pos: 55.5,1.5 + pos: 36.5,1.5 parent: 2 - uid: 7954 components: - type: Transform - pos: 56.5,1.5 + pos: 36.5,2.5 parent: 2 - uid: 7955 components: - type: Transform - pos: 57.5,1.5 + pos: 37.5,2.5 parent: 2 - uid: 7956 components: - type: Transform - pos: 58.5,1.5 + pos: 38.5,2.5 parent: 2 - uid: 7957 components: - type: Transform - pos: 59.5,1.5 + pos: 39.5,2.5 parent: 2 - uid: 7958 components: - type: Transform - pos: 60.5,1.5 + pos: 40.5,2.5 parent: 2 - uid: 7959 components: - type: Transform - pos: 61.5,1.5 + pos: 41.5,2.5 parent: 2 - uid: 7960 components: - type: Transform - pos: 62.5,1.5 + pos: 42.5,2.5 parent: 2 - uid: 7961 components: - type: Transform - pos: 62.5,2.5 + pos: 44.5,2.5 parent: 2 - uid: 7962 components: - type: Transform - pos: 62.5,3.5 + pos: 43.5,2.5 parent: 2 - uid: 7963 components: - type: Transform - pos: 62.5,4.5 + pos: -10.5,26.5 parent: 2 - uid: 7964 components: - type: Transform - pos: 62.5,5.5 + pos: -14.5,35.5 parent: 2 - uid: 7965 components: - type: Transform - pos: 62.5,6.5 + pos: -9.5,26.5 parent: 2 - uid: 7966 components: - type: Transform - pos: 62.5,7.5 + pos: -20.5,29.5 parent: 2 - uid: 7967 components: - type: Transform - pos: 63.5,7.5 + pos: -18.5,29.5 parent: 2 - uid: 7968 components: - type: Transform - pos: 25.5,-52.5 + pos: -20.5,28.5 parent: 2 - uid: 7969 components: - type: Transform - pos: 25.5,-53.5 + pos: -14.5,31.5 parent: 2 - uid: 7970 components: - type: Transform - pos: 25.5,-54.5 + pos: -19.5,29.5 parent: 2 - uid: 7971 components: - type: Transform - pos: 25.5,-55.5 + pos: -14.5,33.5 parent: 2 - uid: 7972 components: - type: Transform - pos: 25.5,-56.5 + pos: -20.5,26.5 parent: 2 - uid: 7973 components: - type: Transform - pos: 25.5,-57.5 + pos: -20.5,27.5 parent: 2 - uid: 7974 components: - type: Transform - pos: 25.5,-58.5 + pos: -14.5,39.5 parent: 2 - uid: 7975 components: - type: Transform - pos: 25.5,-59.5 + pos: -14.5,40.5 parent: 2 - uid: 7976 components: - type: Transform - pos: 26.5,-59.5 + pos: -9.5,27.5 parent: 2 - uid: 7977 components: - type: Transform - pos: 27.5,-59.5 + pos: -9.5,29.5 parent: 2 - uid: 7978 components: - type: Transform - pos: 28.5,-59.5 + pos: -8.5,29.5 parent: 2 - uid: 7979 components: - type: Transform - pos: 29.5,-59.5 + pos: -8.5,30.5 parent: 2 - uid: 7980 components: - type: Transform - pos: 30.5,-59.5 + pos: -8.5,31.5 parent: 2 - uid: 7981 components: - type: Transform - pos: 31.5,-59.5 + pos: 16.5,27.5 parent: 2 - uid: 7982 components: - type: Transform - pos: 32.5,-59.5 + pos: 16.5,26.5 parent: 2 - uid: 7983 components: - type: Transform - pos: 33.5,-59.5 + pos: 16.5,25.5 parent: 2 - uid: 7984 components: - type: Transform - pos: 34.5,-59.5 + pos: 17.5,25.5 parent: 2 - uid: 7985 components: - type: Transform - pos: -13.5,1.5 + pos: 45.5,2.5 parent: 2 - uid: 7986 components: - type: Transform - pos: -13.5,0.5 + pos: 46.5,2.5 parent: 2 - uid: 7987 components: - type: Transform - pos: -13.5,-0.5 + pos: 47.5,2.5 parent: 2 - uid: 7988 components: - type: Transform - pos: -13.5,-1.5 + pos: 48.5,2.5 parent: 2 - uid: 7989 components: - type: Transform - pos: -13.5,-2.5 + pos: 49.5,2.5 parent: 2 - uid: 7990 components: - type: Transform - pos: -13.5,-3.5 + pos: 50.5,2.5 parent: 2 - uid: 7991 components: - type: Transform - pos: -13.5,-4.5 + pos: 51.5,2.5 parent: 2 - uid: 7992 components: - type: Transform - pos: -13.5,-5.5 + pos: 52.5,2.5 parent: 2 - uid: 7993 components: - type: Transform - pos: -14.5,-5.5 + pos: 52.5,1.5 parent: 2 - uid: 7994 components: - type: Transform - pos: -15.5,-5.5 + pos: 52.5,0.5 parent: 2 - uid: 7995 components: - type: Transform - pos: -16.5,-5.5 + pos: 52.5,-0.5 parent: 2 - uid: 7996 components: - type: Transform - pos: -17.5,-5.5 + pos: 53.5,1.5 parent: 2 - uid: 7997 components: - type: Transform - pos: -18.5,-5.5 + pos: 54.5,1.5 parent: 2 - uid: 7998 components: - type: Transform - pos: -19.5,-5.5 + pos: 55.5,1.5 parent: 2 - uid: 7999 components: - type: Transform - pos: -19.5,-6.5 + pos: 56.5,1.5 parent: 2 - uid: 8000 components: - type: Transform - pos: -19.5,-7.5 + pos: 57.5,1.5 parent: 2 - uid: 8001 components: - type: Transform - pos: -19.5,-8.5 + pos: 58.5,1.5 parent: 2 - uid: 8002 components: - type: Transform - pos: -19.5,-9.5 + pos: 59.5,1.5 parent: 2 - uid: 8003 components: - type: Transform - pos: -19.5,-10.5 + pos: 60.5,1.5 parent: 2 - uid: 8004 components: - type: Transform - pos: -19.5,-11.5 + pos: 61.5,1.5 parent: 2 - uid: 8005 components: - type: Transform - pos: -19.5,-12.5 + pos: 62.5,1.5 parent: 2 - uid: 8006 components: - type: Transform - pos: -19.5,-13.5 + pos: 62.5,2.5 parent: 2 - uid: 8007 components: - type: Transform - pos: -19.5,-14.5 + pos: 62.5,3.5 parent: 2 - uid: 8008 components: - type: Transform - pos: -19.5,-15.5 + pos: 62.5,4.5 parent: 2 - uid: 8009 components: - type: Transform - pos: -19.5,-16.5 + pos: 62.5,5.5 parent: 2 - uid: 8010 components: - type: Transform - pos: -19.5,-17.5 + pos: 62.5,6.5 parent: 2 - uid: 8011 components: - type: Transform - pos: -19.5,-18.5 + pos: 62.5,7.5 parent: 2 - uid: 8012 components: - type: Transform - pos: -19.5,-19.5 + pos: 63.5,7.5 parent: 2 - uid: 8013 components: - type: Transform - pos: -19.5,-20.5 + pos: 25.5,-52.5 parent: 2 - uid: 8014 components: - type: Transform - pos: -19.5,-21.5 + pos: 25.5,-53.5 parent: 2 - uid: 8015 components: - type: Transform - pos: -19.5,-22.5 + pos: 25.5,-54.5 parent: 2 - uid: 8016 components: - type: Transform - pos: -19.5,-23.5 + pos: 25.5,-55.5 parent: 2 - uid: 8017 components: - type: Transform - pos: -19.5,-24.5 + pos: 25.5,-56.5 parent: 2 - uid: 8018 components: - type: Transform - pos: -19.5,-25.5 + pos: 25.5,-57.5 parent: 2 - uid: 8019 components: - type: Transform - pos: -19.5,-26.5 + pos: 25.5,-58.5 parent: 2 - uid: 8020 components: - type: Transform - pos: -19.5,-27.5 + pos: 25.5,-59.5 parent: 2 - uid: 8021 components: - type: Transform - pos: -18.5,-26.5 + pos: 26.5,-59.5 parent: 2 - uid: 8022 components: - type: Transform - pos: 4.5,-15.5 + pos: 27.5,-59.5 parent: 2 - uid: 8023 components: - type: Transform - pos: 52.5,-1.5 + pos: 28.5,-59.5 parent: 2 - uid: 8024 components: - type: Transform - pos: 52.5,-2.5 + pos: 29.5,-59.5 parent: 2 - uid: 8025 components: - type: Transform - pos: 52.5,-3.5 + pos: 30.5,-59.5 parent: 2 - uid: 8026 components: - type: Transform - pos: 52.5,-4.5 + pos: 31.5,-59.5 parent: 2 - uid: 8027 components: - type: Transform - pos: 52.5,-5.5 + pos: 32.5,-59.5 parent: 2 - uid: 8028 components: - type: Transform - pos: 52.5,-6.5 + pos: 33.5,-59.5 parent: 2 - uid: 8029 components: - type: Transform - pos: 52.5,-7.5 + pos: 34.5,-59.5 parent: 2 - uid: 8030 components: - type: Transform - pos: 51.5,-7.5 + pos: -13.5,1.5 parent: 2 - uid: 8031 components: - type: Transform - pos: 50.5,-7.5 + pos: -13.5,0.5 parent: 2 - uid: 8032 components: - type: Transform - pos: 51.5,-1.5 + pos: -13.5,-0.5 parent: 2 - uid: 8033 components: - type: Transform - pos: 50.5,-1.5 + pos: -13.5,-1.5 parent: 2 - uid: 8034 components: - type: Transform - pos: 49.5,-1.5 + pos: -13.5,-2.5 parent: 2 - uid: 8035 components: - type: Transform - pos: 48.5,-1.5 + pos: -13.5,-3.5 parent: 2 - uid: 8036 components: - type: Transform - pos: 48.5,-2.5 + pos: -13.5,-4.5 parent: 2 - uid: 8037 components: - type: Transform - pos: 48.5,-3.5 + pos: -13.5,-5.5 parent: 2 - uid: 8038 components: - type: Transform - pos: 47.5,-3.5 + pos: -14.5,-5.5 parent: 2 - uid: 8039 components: - type: Transform - pos: 71.5,-46.5 + pos: -15.5,-5.5 parent: 2 - uid: 8040 components: - type: Transform - pos: 49.5,-7.5 + pos: -16.5,-5.5 parent: 2 - uid: 8041 components: - type: Transform - pos: 49.5,-6.5 + pos: -17.5,-5.5 parent: 2 - uid: 8042 components: - type: Transform - pos: 49.5,-5.5 + pos: -18.5,-5.5 parent: 2 - uid: 8043 components: - type: Transform - pos: 48.5,-5.5 + pos: -19.5,-5.5 parent: 2 - uid: 8044 components: - type: Transform - pos: 38.5,-44.5 + pos: -19.5,-6.5 parent: 2 - uid: 8045 components: - type: Transform - pos: -24.5,-16.5 + pos: -19.5,-7.5 parent: 2 - uid: 8046 components: - type: Transform - pos: 36.5,-42.5 + pos: -19.5,-8.5 parent: 2 - uid: 8047 components: - type: Transform - pos: 37.5,-42.5 + pos: -19.5,-9.5 parent: 2 - uid: 8048 components: - type: Transform - pos: 38.5,-42.5 + pos: -19.5,-10.5 parent: 2 - uid: 8049 components: - type: Transform - pos: 39.5,-42.5 + pos: -19.5,-11.5 parent: 2 - uid: 8050 components: - type: Transform - pos: 40.5,-42.5 + pos: -19.5,-12.5 parent: 2 - uid: 8051 components: - type: Transform - pos: 41.5,-42.5 + pos: -19.5,-13.5 parent: 2 - uid: 8052 components: - type: Transform - pos: 42.5,-42.5 + pos: -19.5,-14.5 parent: 2 - uid: 8053 components: - type: Transform - pos: 43.5,-42.5 + pos: -19.5,-15.5 parent: 2 - uid: 8054 components: - type: Transform - pos: 44.5,-42.5 + pos: -19.5,-16.5 parent: 2 - uid: 8055 components: - type: Transform - pos: 45.5,-42.5 + pos: -19.5,-17.5 parent: 2 - uid: 8056 components: - type: Transform - pos: 46.5,-42.5 + pos: -19.5,-18.5 parent: 2 - uid: 8057 components: - type: Transform - pos: 47.5,-42.5 + pos: -19.5,-19.5 parent: 2 - uid: 8058 components: - type: Transform - pos: 48.5,-42.5 + pos: -19.5,-20.5 parent: 2 - uid: 8059 components: - type: Transform - pos: 49.5,-42.5 + pos: -19.5,-21.5 parent: 2 - uid: 8060 components: - type: Transform - pos: 49.5,-43.5 + pos: -19.5,-22.5 parent: 2 - uid: 8061 components: - type: Transform - pos: 49.5,-44.5 + pos: -19.5,-23.5 parent: 2 - uid: 8062 components: - type: Transform - pos: 38.5,-45.5 + pos: -19.5,-24.5 parent: 2 - uid: 8063 components: - type: Transform - pos: 38.5,-43.5 + pos: -19.5,-25.5 parent: 2 - uid: 8064 components: - type: Transform - pos: 38.5,-46.5 + pos: -19.5,-26.5 parent: 2 - uid: 8065 components: - type: Transform - pos: -19.5,-4.5 + pos: -19.5,-27.5 parent: 2 - uid: 8066 components: - type: Transform - pos: -19.5,-3.5 + pos: -18.5,-26.5 parent: 2 - uid: 8067 components: - type: Transform - pos: -19.5,-2.5 + pos: 4.5,-15.5 parent: 2 - uid: 8068 components: - type: Transform - pos: -19.5,-1.5 + pos: 52.5,-1.5 parent: 2 - uid: 8069 components: - type: Transform - pos: -19.5,-0.5 + pos: 52.5,-2.5 parent: 2 - uid: 8070 components: - type: Transform - pos: -18.5,-0.5 + pos: 52.5,-3.5 parent: 2 - uid: 8071 components: - type: Transform - pos: -17.5,-0.5 + pos: 52.5,-4.5 parent: 2 - uid: 8072 components: - type: Transform - pos: -16.5,-0.5 + pos: 52.5,-5.5 parent: 2 - uid: 8073 components: - type: Transform - pos: -20.5,-12.5 + pos: 52.5,-6.5 parent: 2 - uid: 8074 components: - type: Transform - pos: -21.5,-12.5 + pos: 52.5,-7.5 parent: 2 - uid: 8075 components: - type: Transform - pos: -23.5,-12.5 + pos: 51.5,-7.5 parent: 2 - uid: 8076 components: - type: Transform - pos: -22.5,-12.5 + pos: 50.5,-7.5 parent: 2 - uid: 8077 components: - type: Transform - pos: -24.5,-17.5 + pos: 51.5,-1.5 parent: 2 - uid: 8078 components: - type: Transform - pos: -25.5,-17.5 + pos: 50.5,-1.5 parent: 2 - uid: 8079 components: - type: Transform - pos: -26.5,-17.5 + pos: 49.5,-1.5 parent: 2 - uid: 8080 components: - type: Transform - pos: -27.5,-17.5 + pos: 48.5,-1.5 parent: 2 - uid: 8081 components: - type: Transform - pos: -28.5,-17.5 + pos: 48.5,-2.5 parent: 2 - uid: 8082 components: - type: Transform - pos: -29.5,-17.5 + pos: 48.5,-3.5 parent: 2 - uid: 8083 components: - type: Transform - pos: -30.5,-17.5 + pos: 47.5,-3.5 parent: 2 - uid: 8084 components: - type: Transform - pos: -31.5,-17.5 + pos: 71.5,-46.5 parent: 2 - uid: 8085 components: - type: Transform - pos: -20.5,-22.5 + pos: 49.5,-7.5 parent: 2 - uid: 8086 components: - type: Transform - pos: -21.5,-22.5 + pos: 49.5,-6.5 parent: 2 - uid: 8087 components: - type: Transform - pos: -22.5,-22.5 + pos: 49.5,-5.5 parent: 2 - uid: 8088 components: - type: Transform - pos: -23.5,-22.5 + pos: 48.5,-5.5 parent: 2 - uid: 8089 components: - type: Transform - pos: -24.5,-22.5 + pos: 38.5,-44.5 parent: 2 - uid: 8090 components: - type: Transform - pos: -25.5,-22.5 + pos: -24.5,-16.5 parent: 2 - uid: 8091 components: - type: Transform - pos: -26.5,-22.5 + pos: 36.5,-42.5 parent: 2 - uid: 8092 components: - type: Transform - pos: -27.5,-22.5 + pos: 37.5,-42.5 parent: 2 - uid: 8093 components: - type: Transform - pos: -28.5,-22.5 + pos: 38.5,-42.5 parent: 2 - uid: 8094 components: - type: Transform - pos: -28.5,-23.5 + pos: 39.5,-42.5 parent: 2 - uid: 8095 components: - type: Transform - pos: -24.5,-12.5 + pos: 40.5,-42.5 parent: 2 - uid: 8096 components: - type: Transform - pos: 35.5,-59.5 + pos: 41.5,-42.5 parent: 2 - uid: 8097 components: - type: Transform - pos: 36.5,-59.5 + pos: 42.5,-42.5 parent: 2 - uid: 8098 components: - type: Transform - pos: 37.5,-59.5 + pos: 43.5,-42.5 parent: 2 - uid: 8099 components: - type: Transform - pos: -18.5,-41.5 + pos: 44.5,-42.5 parent: 2 - uid: 8100 components: - type: Transform - pos: -18.5,-40.5 + pos: 45.5,-42.5 parent: 2 - uid: 8101 components: - type: Transform - pos: -18.5,-39.5 + pos: 46.5,-42.5 parent: 2 - uid: 8102 components: - type: Transform - pos: -18.5,-38.5 + pos: 47.5,-42.5 parent: 2 - uid: 8103 components: - type: Transform - pos: -18.5,-37.5 + pos: 48.5,-42.5 parent: 2 - uid: 8104 components: - type: Transform - pos: -18.5,-36.5 + pos: 49.5,-42.5 parent: 2 - uid: 8105 components: - type: Transform - pos: -18.5,-35.5 + pos: 49.5,-43.5 parent: 2 - uid: 8106 components: - type: Transform - pos: -18.5,-34.5 + pos: 49.5,-44.5 parent: 2 - uid: 8107 components: - type: Transform - pos: -18.5,-33.5 + pos: 38.5,-45.5 parent: 2 - uid: 8108 components: - type: Transform - pos: -18.5,-32.5 + pos: 38.5,-43.5 parent: 2 - uid: 8109 components: - type: Transform - pos: -18.5,-31.5 + pos: 38.5,-46.5 parent: 2 - uid: 8110 components: - type: Transform - pos: -18.5,-30.5 + pos: -19.5,-4.5 parent: 2 - uid: 8111 components: - type: Transform - pos: -19.5,-30.5 + pos: -19.5,-3.5 parent: 2 - uid: 8112 components: - type: Transform - pos: -19.5,-29.5 + pos: -19.5,-2.5 parent: 2 - uid: 8113 components: - type: Transform - pos: -19.5,-28.5 + pos: -19.5,-1.5 parent: 2 - uid: 8114 components: - type: Transform - pos: 38.5,-59.5 + pos: -19.5,-0.5 parent: 2 - uid: 8115 components: - type: Transform - pos: 39.5,-59.5 + pos: -18.5,-0.5 parent: 2 - uid: 8116 components: - type: Transform - pos: 40.5,-59.5 + pos: -17.5,-0.5 parent: 2 - uid: 8117 components: - type: Transform - pos: 40.5,-60.5 + pos: -16.5,-0.5 parent: 2 - uid: 8118 components: - type: Transform - pos: 40.5,-61.5 + pos: -20.5,-12.5 parent: 2 - uid: 8119 components: - type: Transform - pos: 40.5,-62.5 + pos: -21.5,-12.5 parent: 2 - uid: 8120 components: - type: Transform - pos: 40.5,-63.5 + pos: -23.5,-12.5 parent: 2 - uid: 8121 components: - type: Transform - pos: 40.5,-64.5 + pos: -22.5,-12.5 parent: 2 - uid: 8122 components: - type: Transform - pos: 40.5,-65.5 + pos: -24.5,-17.5 parent: 2 - uid: 8123 components: - type: Transform - pos: 40.5,-66.5 + pos: -25.5,-17.5 parent: 2 - uid: 8124 components: - type: Transform - pos: 40.5,-67.5 + pos: -26.5,-17.5 parent: 2 - uid: 8125 components: - type: Transform - pos: 40.5,-68.5 + pos: -27.5,-17.5 parent: 2 - uid: 8126 components: - type: Transform - pos: 41.5,-59.5 + pos: -28.5,-17.5 parent: 2 - uid: 8127 components: - type: Transform - pos: 42.5,-59.5 + pos: -29.5,-17.5 parent: 2 - uid: 8128 components: - type: Transform - pos: 43.5,-59.5 + pos: -30.5,-17.5 parent: 2 - uid: 8129 components: - type: Transform - pos: 43.5,-58.5 + pos: -31.5,-17.5 parent: 2 - uid: 8130 components: - type: Transform - pos: -31.5,-16.5 + pos: -20.5,-22.5 parent: 2 - uid: 8131 components: - type: Transform - pos: -31.5,-15.5 + pos: -21.5,-22.5 parent: 2 - uid: 8132 components: - type: Transform - pos: -31.5,-14.5 + pos: -22.5,-22.5 parent: 2 - uid: 8133 components: - type: Transform - pos: -31.5,-13.5 + pos: -23.5,-22.5 parent: 2 - uid: 8134 components: - type: Transform - pos: -31.5,-12.5 + pos: -24.5,-22.5 parent: 2 - uid: 8135 components: - type: Transform - pos: -31.5,-11.5 + pos: -25.5,-22.5 parent: 2 - uid: 8136 components: - type: Transform - pos: -32.5,-11.5 + pos: -26.5,-22.5 parent: 2 - uid: 8137 components: - type: Transform - pos: -33.5,-11.5 + pos: -27.5,-22.5 parent: 2 - uid: 8138 components: - type: Transform - pos: -34.5,-11.5 + pos: -28.5,-22.5 parent: 2 - uid: 8139 components: - type: Transform - pos: -35.5,-11.5 + pos: -28.5,-23.5 parent: 2 - uid: 8140 components: - type: Transform - pos: -36.5,-11.5 + pos: -24.5,-12.5 parent: 2 - uid: 8141 components: - type: Transform - pos: -37.5,-11.5 + pos: 35.5,-59.5 parent: 2 - uid: 8142 components: - type: Transform - pos: -38.5,-11.5 + pos: 36.5,-59.5 parent: 2 - uid: 8143 components: - type: Transform - pos: -39.5,-11.5 + pos: 37.5,-59.5 parent: 2 - uid: 8144 components: - type: Transform - pos: -40.5,-11.5 + pos: -18.5,-41.5 parent: 2 - uid: 8145 components: - type: Transform - pos: -41.5,-11.5 + pos: -18.5,-40.5 parent: 2 - uid: 8146 components: - type: Transform - pos: -42.5,-11.5 + pos: -18.5,-39.5 parent: 2 - uid: 8147 components: - type: Transform - pos: -2.5,-69.5 + pos: -18.5,-38.5 parent: 2 - uid: 8148 components: - type: Transform - pos: -1.5,-69.5 + pos: -18.5,-37.5 parent: 2 - uid: 8149 components: - type: Transform - pos: -1.5,-67.5 + pos: -18.5,-36.5 parent: 2 - uid: 8150 components: - type: Transform - pos: -2.5,-60.5 + pos: -18.5,-35.5 parent: 2 - uid: 8151 components: - type: Transform - pos: -2.5,-58.5 + pos: -18.5,-34.5 parent: 2 - uid: 8152 components: - type: Transform - pos: -42.5,-6.5 + pos: -18.5,-33.5 parent: 2 - uid: 8153 components: - type: Transform - pos: -42.5,-10.5 + pos: -18.5,-32.5 parent: 2 - uid: 8154 components: - type: Transform - pos: -42.5,-7.5 + pos: -18.5,-31.5 parent: 2 - uid: 8155 components: - type: Transform - pos: -42.5,-8.5 + pos: -18.5,-30.5 parent: 2 - uid: 8156 components: - type: Transform - pos: -46.5,-11.5 + pos: -19.5,-30.5 parent: 2 - uid: 8157 components: - type: Transform - pos: -46.5,-12.5 + pos: -19.5,-29.5 parent: 2 - uid: 8158 components: - type: Transform - pos: -46.5,-13.5 + pos: -19.5,-28.5 parent: 2 - uid: 8159 components: - type: Transform - pos: -46.5,-14.5 + pos: 38.5,-59.5 parent: 2 - uid: 8160 components: - type: Transform - pos: -46.5,-10.5 + pos: 39.5,-59.5 parent: 2 - uid: 8161 components: - type: Transform - pos: -46.5,-9.5 + pos: 40.5,-59.5 parent: 2 - uid: 8162 components: - type: Transform - pos: -46.5,-15.5 + pos: 40.5,-60.5 parent: 2 - uid: 8163 components: - type: Transform - pos: -46.5,-16.5 + pos: 40.5,-61.5 parent: 2 - uid: 8164 components: - type: Transform - pos: -42.5,-9.5 + pos: 40.5,-62.5 parent: 2 - uid: 8165 components: - type: Transform - pos: -46.5,-17.5 + pos: 40.5,-63.5 parent: 2 - uid: 8166 components: - type: Transform - pos: -46.5,-18.5 + pos: 40.5,-64.5 parent: 2 - uid: 8167 components: - type: Transform - pos: -46.5,-19.5 + pos: 40.5,-65.5 parent: 2 - uid: 8168 components: - type: Transform - pos: -47.5,-19.5 + pos: 40.5,-66.5 parent: 2 - uid: 8169 components: - type: Transform - pos: -48.5,-19.5 + pos: 40.5,-67.5 parent: 2 - uid: 8170 components: - type: Transform - pos: -48.5,-20.5 + pos: 40.5,-68.5 parent: 2 - uid: 8171 components: - type: Transform - pos: -46.5,-20.5 + pos: 41.5,-59.5 parent: 2 - uid: 8172 components: - type: Transform - pos: -45.5,-19.5 + pos: 42.5,-59.5 parent: 2 - uid: 8173 components: - type: Transform - pos: -44.5,-19.5 + pos: 43.5,-59.5 parent: 2 - uid: 8174 components: - type: Transform - pos: -44.5,-20.5 + pos: 43.5,-58.5 parent: 2 - uid: 8175 components: - type: Transform - pos: -46.5,-21.5 + pos: -31.5,-16.5 parent: 2 - uid: 8176 components: - type: Transform - pos: -48.5,-21.5 + pos: -31.5,-15.5 parent: 2 - uid: 8177 components: - type: Transform - pos: -44.5,-21.5 + pos: -31.5,-14.5 parent: 2 - uid: 8178 components: - type: Transform - pos: -46.5,-22.5 + pos: -31.5,-13.5 parent: 2 - uid: 8179 components: - type: Transform - pos: -48.5,-22.5 + pos: -31.5,-12.5 parent: 2 - uid: 8180 components: - type: Transform - pos: -44.5,-22.5 + pos: -31.5,-11.5 parent: 2 - uid: 8181 components: - type: Transform - pos: -48.5,-23.5 + pos: -32.5,-11.5 parent: 2 - uid: 8182 components: - type: Transform - pos: -47.5,-23.5 + pos: -33.5,-11.5 parent: 2 - uid: 8183 components: - type: Transform - pos: -46.5,-23.5 + pos: -34.5,-11.5 parent: 2 - uid: 8184 components: - type: Transform - pos: -44.5,-23.5 + pos: -35.5,-11.5 parent: 2 - uid: 8185 components: - type: Transform - pos: -45.5,-23.5 + pos: -36.5,-11.5 parent: 2 - uid: 8186 components: - type: Transform - pos: -49.5,-23.5 + pos: -37.5,-11.5 parent: 2 - uid: 8187 components: - type: Transform - pos: -50.5,-23.5 + pos: -38.5,-11.5 parent: 2 - uid: 8188 components: - type: Transform - pos: -51.5,-24.5 + pos: -39.5,-11.5 parent: 2 - uid: 8189 components: - type: Transform - pos: -51.5,-23.5 + pos: -40.5,-11.5 parent: 2 - uid: 8190 components: - type: Transform - pos: -43.5,-22.5 + pos: -41.5,-11.5 parent: 2 - uid: 8191 components: - type: Transform - pos: -42.5,-22.5 + pos: -42.5,-11.5 parent: 2 - uid: 8192 components: - type: Transform - pos: -41.5,-22.5 + pos: -42.5,-6.5 parent: 2 - uid: 8193 components: - type: Transform - pos: -41.5,-21.5 + pos: -42.5,-10.5 parent: 2 - uid: 8194 components: - type: Transform - pos: -41.5,-20.5 + pos: -42.5,-7.5 parent: 2 - uid: 8195 components: - type: Transform - pos: -43.5,-6.5 + pos: -42.5,-8.5 parent: 2 - uid: 8196 components: - type: Transform - pos: -44.5,-6.5 + pos: -46.5,-11.5 parent: 2 - uid: 8197 components: - type: Transform - pos: -45.5,-6.5 + pos: -46.5,-12.5 parent: 2 - uid: 8198 components: - type: Transform - pos: -46.5,-6.5 + pos: -46.5,-13.5 parent: 2 - uid: 8199 components: - type: Transform - pos: -47.5,-6.5 + pos: -46.5,-14.5 parent: 2 - uid: 8200 components: - type: Transform - pos: -48.5,-6.5 + pos: -46.5,-10.5 parent: 2 - uid: 8201 components: - type: Transform - pos: -49.5,-6.5 + pos: -46.5,-9.5 parent: 2 - uid: 8202 components: - type: Transform - pos: -50.5,-6.5 + pos: -46.5,-15.5 parent: 2 - uid: 8203 components: - type: Transform - pos: -51.5,-6.5 + pos: -46.5,-16.5 parent: 2 - uid: 8204 components: - type: Transform - pos: -52.5,-6.5 + pos: -42.5,-9.5 parent: 2 - uid: 8205 components: - type: Transform - pos: -52.5,-7.5 + pos: -46.5,-17.5 parent: 2 - uid: 8206 components: - type: Transform - pos: -52.5,-8.5 + pos: -46.5,-18.5 parent: 2 - uid: 8207 components: - type: Transform - pos: -52.5,-9.5 + pos: -46.5,-19.5 parent: 2 - uid: 8208 components: - type: Transform - pos: -41.5,-12.5 + pos: -47.5,-19.5 parent: 2 - uid: 8209 components: - type: Transform - pos: -41.5,-13.5 + pos: -48.5,-19.5 parent: 2 - uid: 8210 components: - type: Transform - pos: -41.5,-14.5 + pos: -48.5,-20.5 parent: 2 - uid: 8211 components: - type: Transform - pos: -41.5,-15.5 + pos: -46.5,-20.5 parent: 2 - uid: 8212 components: - type: Transform - pos: -41.5,-18.5 + pos: -45.5,-19.5 parent: 2 - uid: 8213 components: - type: Transform - pos: -41.5,-17.5 + pos: -44.5,-19.5 parent: 2 - uid: 8214 components: - type: Transform - pos: -41.5,-19.5 + pos: -44.5,-20.5 parent: 2 - uid: 8215 components: - type: Transform - pos: -41.5,-16.5 + pos: -46.5,-21.5 parent: 2 - uid: 8216 components: - type: Transform - pos: -51.5,-9.5 + pos: -48.5,-21.5 parent: 2 - uid: 8217 components: - type: Transform - pos: -50.5,-9.5 + pos: -44.5,-21.5 parent: 2 - uid: 8218 components: - type: Transform - pos: -50.5,-8.5 + pos: -46.5,-22.5 parent: 2 - uid: 8219 components: - type: Transform - pos: -57.5,-20.5 + pos: -48.5,-22.5 parent: 2 - uid: 8220 components: - type: Transform - pos: -14.5,45.5 + pos: -44.5,-22.5 parent: 2 - uid: 8221 components: - type: Transform - pos: -14.5,44.5 + pos: -48.5,-23.5 parent: 2 - uid: 8222 components: - type: Transform - pos: -56.5,-24.5 + pos: -47.5,-23.5 parent: 2 - uid: 8223 components: - type: Transform - pos: -65.5,-25.5 + pos: -46.5,-23.5 parent: 2 - uid: 8224 components: - type: Transform - pos: -53.5,-19.5 + pos: -44.5,-23.5 parent: 2 - uid: 8225 components: - type: Transform - pos: -66.5,-25.5 + pos: -45.5,-23.5 parent: 2 - uid: 8226 components: - type: Transform - pos: -53.5,-21.5 + pos: -49.5,-23.5 parent: 2 - uid: 8227 components: - type: Transform - pos: -57.5,-13.5 + pos: -50.5,-23.5 parent: 2 - uid: 8228 components: - type: Transform - pos: -64.5,-28.5 + pos: -51.5,-24.5 parent: 2 - uid: 8229 components: - type: Transform - pos: -65.5,-28.5 + pos: -51.5,-23.5 parent: 2 - uid: 8230 components: - type: Transform - pos: -66.5,-28.5 + pos: -43.5,-22.5 parent: 2 - uid: 8231 components: - type: Transform - pos: -66.5,-27.5 + pos: -42.5,-22.5 parent: 2 - uid: 8232 components: - type: Transform - pos: -66.5,-26.5 + pos: -41.5,-22.5 parent: 2 - uid: 8233 components: - type: Transform - pos: -64.5,-25.5 + pos: -41.5,-21.5 parent: 2 - uid: 8234 components: - type: Transform - pos: -14.5,36.5 + pos: -41.5,-20.5 parent: 2 - uid: 8235 components: - type: Transform - pos: -56.5,-23.5 + pos: -43.5,-6.5 parent: 2 - uid: 8236 components: - type: Transform - pos: -56.5,-22.5 + pos: -44.5,-6.5 parent: 2 - uid: 8237 components: - type: Transform - pos: -56.5,-21.5 + pos: -45.5,-6.5 parent: 2 - uid: 8238 components: - type: Transform - pos: -56.5,-20.5 + pos: -46.5,-6.5 parent: 2 - uid: 8239 components: - type: Transform - pos: -64.5,-29.5 + pos: -47.5,-6.5 parent: 2 - uid: 8240 components: - type: Transform - pos: -64.5,-30.5 + pos: -48.5,-6.5 parent: 2 - uid: 8241 components: - type: Transform - pos: -63.5,-30.5 + pos: -49.5,-6.5 parent: 2 - uid: 8242 components: - type: Transform - pos: -62.5,-30.5 + pos: -50.5,-6.5 parent: 2 - uid: 8243 components: - type: Transform - pos: -61.5,-30.5 + pos: -51.5,-6.5 parent: 2 - uid: 8244 components: - type: Transform - pos: -60.5,-30.5 + pos: -52.5,-6.5 parent: 2 - uid: 8245 components: - type: Transform - pos: -64.5,-31.5 + pos: -52.5,-7.5 parent: 2 - uid: 8246 components: - type: Transform - pos: -68.5,-31.5 + pos: -52.5,-8.5 parent: 2 - uid: 8247 components: - type: Transform - pos: -65.5,-31.5 + pos: -52.5,-9.5 parent: 2 - uid: 8248 components: - type: Transform - pos: -14.5,42.5 + pos: -41.5,-12.5 parent: 2 - uid: 8249 components: - type: Transform - pos: -60.5,-29.5 + pos: -41.5,-13.5 parent: 2 - uid: 8250 components: - type: Transform - pos: -60.5,-26.5 + pos: -41.5,-14.5 parent: 2 - uid: 8251 components: - type: Transform - pos: -60.5,-25.5 + pos: -41.5,-15.5 parent: 2 - uid: 8252 components: - type: Transform - pos: -59.5,-25.5 + pos: -41.5,-18.5 parent: 2 - uid: 8253 components: - type: Transform - pos: -58.5,-25.5 + pos: -41.5,-17.5 parent: 2 - uid: 8254 components: - type: Transform - pos: -56.5,-13.5 + pos: -41.5,-19.5 parent: 2 - uid: 8255 components: - type: Transform - pos: -58.5,-13.5 + pos: -41.5,-16.5 parent: 2 - uid: 8256 components: - type: Transform - pos: -52.5,-19.5 + pos: -51.5,-9.5 parent: 2 - uid: 8257 components: - type: Transform - pos: -51.5,-19.5 + pos: -50.5,-9.5 parent: 2 - uid: 8258 components: - type: Transform - pos: -50.5,-19.5 + pos: -50.5,-8.5 parent: 2 - uid: 8259 components: - type: Transform - pos: -49.5,-19.5 + pos: -57.5,-20.5 parent: 2 - uid: 8260 components: - type: Transform - pos: -31.5,-18.5 + pos: -14.5,45.5 parent: 2 - uid: 8261 components: - type: Transform - pos: -31.5,-19.5 + pos: -14.5,44.5 parent: 2 - uid: 8262 components: - type: Transform - pos: -31.5,-20.5 + pos: -56.5,-24.5 parent: 2 - uid: 8263 components: - type: Transform - pos: -31.5,-21.5 + pos: -65.5,-25.5 parent: 2 - uid: 8264 components: - type: Transform - pos: -31.5,-22.5 + pos: -53.5,-19.5 parent: 2 - uid: 8265 components: - type: Transform - pos: -31.5,-23.5 + pos: -66.5,-25.5 parent: 2 - uid: 8266 components: - type: Transform - pos: -31.5,-24.5 + pos: -53.5,-21.5 parent: 2 - uid: 8267 components: - type: Transform - pos: -31.5,-25.5 + pos: -57.5,-13.5 parent: 2 - uid: 8268 components: - type: Transform - pos: -31.5,-26.5 + pos: -64.5,-28.5 parent: 2 - uid: 8269 components: - type: Transform - pos: -31.5,-27.5 + pos: -65.5,-28.5 parent: 2 - uid: 8270 components: - type: Transform - pos: -31.5,-28.5 + pos: -66.5,-28.5 parent: 2 - uid: 8271 components: - type: Transform - pos: -31.5,-29.5 + pos: -66.5,-27.5 parent: 2 - uid: 8272 components: - type: Transform - pos: -31.5,-30.5 + pos: -66.5,-26.5 parent: 2 - uid: 8273 components: - type: Transform - pos: -31.5,-31.5 + pos: -64.5,-25.5 parent: 2 - uid: 8274 components: - type: Transform - pos: -31.5,-32.5 + pos: -14.5,36.5 parent: 2 - uid: 8275 components: - type: Transform - pos: -31.5,-33.5 + pos: -56.5,-23.5 parent: 2 - uid: 8276 components: - type: Transform - pos: -31.5,-34.5 + pos: -56.5,-22.5 parent: 2 - uid: 8277 components: - type: Transform - pos: -30.5,-34.5 + pos: -56.5,-21.5 parent: 2 - uid: 8278 components: - type: Transform - pos: -29.5,-34.5 + pos: -56.5,-20.5 parent: 2 - uid: 8279 components: - type: Transform - pos: -28.5,-34.5 + pos: -64.5,-29.5 parent: 2 - uid: 8280 components: - type: Transform - pos: -28.5,-35.5 + pos: -64.5,-30.5 parent: 2 - uid: 8281 components: - type: Transform - pos: -28.5,-36.5 + pos: -63.5,-30.5 parent: 2 - uid: 8282 components: - type: Transform - pos: -28.5,-37.5 + pos: -62.5,-30.5 parent: 2 - uid: 8283 components: - type: Transform - pos: -27.5,-37.5 + pos: -61.5,-30.5 parent: 2 - uid: 8284 components: - type: Transform - pos: -60.5,-28.5 + pos: -60.5,-30.5 parent: 2 - uid: 8285 components: - type: Transform - pos: -71.5,-22.5 + pos: -64.5,-31.5 parent: 2 - uid: 8286 components: - type: Transform - pos: -72.5,-22.5 + pos: -68.5,-31.5 parent: 2 - uid: 8287 components: - type: Transform - pos: -73.5,-22.5 + pos: -65.5,-31.5 parent: 2 - uid: 8288 components: - type: Transform - pos: -74.5,-22.5 + pos: -14.5,42.5 parent: 2 - uid: 8289 components: - type: Transform - pos: -75.5,-22.5 + pos: -60.5,-29.5 parent: 2 - uid: 8290 components: - type: Transform - pos: -76.5,-22.5 + pos: -60.5,-26.5 parent: 2 - uid: 8291 components: - type: Transform - pos: -76.5,-21.5 + pos: -60.5,-25.5 parent: 2 - uid: 8292 components: - type: Transform - pos: -76.5,-20.5 + pos: -59.5,-25.5 parent: 2 - uid: 8293 components: - type: Transform - pos: -76.5,-19.5 + pos: -58.5,-25.5 parent: 2 - uid: 8294 components: - type: Transform - pos: -76.5,-18.5 + pos: -56.5,-13.5 parent: 2 - uid: 8295 components: - type: Transform - pos: -76.5,-17.5 + pos: -58.5,-13.5 parent: 2 - uid: 8296 components: - type: Transform - pos: -76.5,-16.5 + pos: -52.5,-19.5 parent: 2 - uid: 8297 components: - type: Transform - pos: -76.5,-15.5 + pos: -51.5,-19.5 parent: 2 - uid: 8298 components: - type: Transform - pos: -76.5,-14.5 + pos: -50.5,-19.5 parent: 2 - uid: 8299 components: - type: Transform - pos: -76.5,-13.5 + pos: -49.5,-19.5 parent: 2 - uid: 8300 components: - type: Transform - pos: -76.5,-12.5 + pos: -31.5,-18.5 parent: 2 - uid: 8301 components: - type: Transform - pos: -76.5,-11.5 + pos: -31.5,-19.5 parent: 2 - uid: 8302 components: - type: Transform - pos: -76.5,-10.5 + pos: -31.5,-20.5 parent: 2 - uid: 8303 components: - type: Transform - pos: -76.5,-9.5 + pos: -31.5,-21.5 parent: 2 - uid: 8304 components: - type: Transform - pos: -76.5,-8.5 + pos: -31.5,-22.5 parent: 2 - uid: 8305 components: - type: Transform - pos: -76.5,-7.5 + pos: -31.5,-23.5 parent: 2 - uid: 8306 components: - type: Transform - pos: -76.5,-6.5 + pos: -31.5,-24.5 parent: 2 - uid: 8307 components: - type: Transform - pos: -76.5,-5.5 + pos: -31.5,-25.5 parent: 2 - uid: 8308 components: - type: Transform - pos: -76.5,-4.5 + pos: -31.5,-26.5 parent: 2 - uid: 8309 components: - type: Transform - pos: -76.5,-3.5 + pos: -31.5,-27.5 parent: 2 - uid: 8310 components: - type: Transform - pos: -75.5,-3.5 + pos: -31.5,-28.5 parent: 2 - uid: 8311 components: - type: Transform - pos: -74.5,-3.5 + pos: -31.5,-29.5 parent: 2 - uid: 8312 components: - type: Transform - pos: -73.5,-3.5 + pos: -31.5,-30.5 parent: 2 - uid: 8313 components: - type: Transform - pos: -72.5,-3.5 + pos: -31.5,-31.5 parent: 2 - uid: 8314 components: - type: Transform - pos: -71.5,-3.5 + pos: -31.5,-32.5 parent: 2 - uid: 8315 components: - type: Transform - pos: -70.5,-3.5 + pos: -31.5,-33.5 parent: 2 - uid: 8316 components: - type: Transform - pos: -69.5,-3.5 + pos: -31.5,-34.5 parent: 2 - uid: 8317 components: - type: Transform - pos: -68.5,-3.5 + pos: -30.5,-34.5 parent: 2 - uid: 8318 components: - type: Transform - pos: -67.5,-3.5 + pos: -29.5,-34.5 parent: 2 - uid: 8319 components: - type: Transform - pos: -66.5,-3.5 + pos: -28.5,-34.5 parent: 2 - uid: 8320 components: - type: Transform - pos: -65.5,-3.5 + pos: -28.5,-35.5 parent: 2 - uid: 8321 components: - type: Transform - pos: -64.5,-3.5 + pos: -28.5,-36.5 parent: 2 - uid: 8322 components: - type: Transform - pos: -63.5,-3.5 + pos: -28.5,-37.5 parent: 2 - uid: 8323 components: - type: Transform - pos: -62.5,-3.5 + pos: -27.5,-37.5 parent: 2 - uid: 8324 components: - type: Transform - pos: -61.5,-3.5 + pos: -60.5,-28.5 parent: 2 - uid: 8325 components: - type: Transform - pos: -60.5,-3.5 + pos: -71.5,-22.5 parent: 2 - uid: 8326 components: - type: Transform - pos: -59.5,-3.5 + pos: -72.5,-22.5 parent: 2 - uid: 8327 components: - type: Transform - pos: -58.5,-3.5 + pos: -73.5,-22.5 parent: 2 - uid: 8328 components: - type: Transform - pos: -57.5,-3.5 + pos: -74.5,-22.5 parent: 2 - uid: 8329 components: - type: Transform - pos: -56.5,-3.5 + pos: -75.5,-22.5 parent: 2 - uid: 8330 components: - type: Transform - pos: -56.5,-4.5 + pos: -76.5,-22.5 parent: 2 - uid: 8331 components: - type: Transform - pos: -56.5,-6.5 + pos: -76.5,-21.5 parent: 2 - uid: 8332 components: - type: Transform - pos: -56.5,-5.5 + pos: -76.5,-20.5 parent: 2 - uid: 8333 components: - type: Transform - pos: -76.5,-23.5 + pos: -76.5,-19.5 parent: 2 - uid: 8334 components: - type: Transform - pos: -76.5,-24.5 + pos: -76.5,-18.5 parent: 2 - uid: 8335 components: - type: Transform - pos: -76.5,-25.5 + pos: -76.5,-17.5 parent: 2 - uid: 8336 components: - type: Transform - pos: -53.5,-25.5 + pos: -76.5,-16.5 parent: 2 - uid: 8337 components: - type: Transform - pos: -51.5,-25.5 + pos: -76.5,-15.5 parent: 2 - uid: 8338 components: - type: Transform - pos: -71.5,-21.5 + pos: -76.5,-14.5 parent: 2 - uid: 8339 components: - type: Transform - pos: -19.5,-42.5 + pos: -76.5,-13.5 parent: 2 - uid: 8340 components: - type: Transform - pos: -20.5,-42.5 + pos: -76.5,-12.5 parent: 2 - uid: 8341 components: - type: Transform - pos: -21.5,-42.5 + pos: -76.5,-11.5 parent: 2 - uid: 8342 components: - type: Transform - pos: -22.5,-42.5 + pos: -76.5,-10.5 parent: 2 - uid: 8343 components: - type: Transform - pos: -23.5,-42.5 + pos: -76.5,-9.5 parent: 2 - uid: 8344 components: - type: Transform - pos: -23.5,-43.5 + pos: -76.5,-8.5 parent: 2 - uid: 8345 components: - type: Transform - pos: -23.5,-44.5 + pos: -76.5,-7.5 parent: 2 - uid: 8346 components: - type: Transform - pos: -23.5,-45.5 + pos: -76.5,-6.5 parent: 2 - uid: 8347 components: - type: Transform - pos: -23.5,-46.5 + pos: -76.5,-5.5 parent: 2 - uid: 8348 components: - type: Transform - pos: -23.5,-47.5 + pos: -76.5,-4.5 parent: 2 - uid: 8349 components: - type: Transform - pos: -23.5,-48.5 + pos: -76.5,-3.5 parent: 2 - uid: 8350 components: - type: Transform - pos: -23.5,-49.5 + pos: -75.5,-3.5 parent: 2 - uid: 8351 components: - type: Transform - pos: -24.5,-49.5 + pos: -74.5,-3.5 parent: 2 - uid: 8352 components: - type: Transform - pos: -25.5,-49.5 + pos: -73.5,-3.5 parent: 2 - uid: 8353 components: - type: Transform - pos: -26.5,-49.5 + pos: -72.5,-3.5 parent: 2 - uid: 8354 components: - type: Transform - pos: -27.5,-49.5 + pos: -71.5,-3.5 parent: 2 - uid: 8355 components: - type: Transform - pos: -27.5,-48.5 + pos: -70.5,-3.5 parent: 2 - uid: 8356 components: - type: Transform - pos: -27.5,-47.5 + pos: -69.5,-3.5 parent: 2 - uid: 8357 components: - type: Transform - pos: -27.5,-46.5 + pos: -68.5,-3.5 parent: 2 - uid: 8358 components: - type: Transform - pos: -27.5,-45.5 + pos: -67.5,-3.5 parent: 2 - uid: 8359 components: - type: Transform - pos: -27.5,-44.5 + pos: -66.5,-3.5 parent: 2 - uid: 8360 components: - type: Transform - pos: -28.5,-44.5 + pos: -65.5,-3.5 parent: 2 - uid: 8361 components: - type: Transform - pos: -29.5,-44.5 + pos: -64.5,-3.5 parent: 2 - uid: 8362 components: - type: Transform - pos: -30.5,-44.5 + pos: -63.5,-3.5 parent: 2 - uid: 8363 components: - type: Transform - pos: -31.5,-44.5 + pos: -62.5,-3.5 parent: 2 - uid: 8364 components: - type: Transform - pos: -31.5,-45.5 + pos: -61.5,-3.5 parent: 2 - uid: 8365 components: - type: Transform - pos: -31.5,-46.5 + pos: -60.5,-3.5 parent: 2 - uid: 8366 components: - type: Transform - pos: -31.5,-47.5 + pos: -59.5,-3.5 parent: 2 - uid: 8367 components: - type: Transform - pos: -30.5,-47.5 + pos: -58.5,-3.5 parent: 2 - uid: 8368 components: - type: Transform - pos: -30.5,-48.5 + pos: -57.5,-3.5 parent: 2 - uid: 8369 components: - type: Transform - pos: -30.5,-49.5 + pos: -56.5,-3.5 parent: 2 - uid: 8370 components: - type: Transform - pos: -30.5,-50.5 + pos: -56.5,-4.5 parent: 2 - uid: 8371 components: - type: Transform - pos: -30.5,-51.5 + pos: -56.5,-6.5 parent: 2 - uid: 8372 components: - type: Transform - pos: -30.5,-52.5 + pos: -56.5,-5.5 parent: 2 - uid: 8373 components: - type: Transform - pos: -30.5,-53.5 + pos: -76.5,-23.5 parent: 2 - uid: 8374 components: - type: Transform - pos: -31.5,-53.5 + pos: -76.5,-24.5 parent: 2 - uid: 8375 components: - type: Transform - pos: -31.5,-54.5 + pos: -76.5,-25.5 parent: 2 - uid: 8376 components: - type: Transform - pos: -58.5,-88.5 + pos: -53.5,-25.5 parent: 2 - uid: 8377 components: - type: Transform - pos: -57.5,-88.5 + pos: -51.5,-25.5 parent: 2 - uid: 8378 components: - type: Transform - pos: -58.5,-87.5 + pos: -71.5,-21.5 parent: 2 - uid: 8379 components: - type: Transform - pos: -56.5,-88.5 + pos: -19.5,-42.5 parent: 2 - uid: 8380 components: - type: Transform - pos: -9.5,28.5 + pos: -20.5,-42.5 parent: 2 - uid: 8381 components: - type: Transform - pos: 14.5,32.5 + pos: -21.5,-42.5 parent: 2 - uid: 8382 components: - type: Transform - pos: 13.5,32.5 + pos: -22.5,-42.5 parent: 2 - uid: 8383 components: - type: Transform - pos: 2.5,32.5 + pos: -23.5,-42.5 parent: 2 - uid: 8384 components: - type: Transform - pos: 1.5,32.5 + pos: -23.5,-43.5 parent: 2 - uid: 8385 components: - type: Transform - pos: 0.5,32.5 + pos: -23.5,-44.5 parent: 2 - uid: 8386 components: - type: Transform - pos: -0.5,32.5 + pos: -23.5,-45.5 parent: 2 - uid: 8387 components: - type: Transform - pos: -1.5,32.5 + pos: -23.5,-46.5 parent: 2 - uid: 8388 components: - type: Transform - pos: -2.5,32.5 + pos: -23.5,-47.5 parent: 2 - uid: 8389 components: - type: Transform - pos: -3.5,32.5 + pos: -23.5,-48.5 parent: 2 - uid: 8390 components: - type: Transform - pos: -4.5,32.5 + pos: -23.5,-49.5 parent: 2 - uid: 8391 components: - type: Transform - pos: -5.5,32.5 + pos: -24.5,-49.5 parent: 2 - uid: 8392 components: - type: Transform - pos: -6.5,32.5 + pos: -25.5,-49.5 parent: 2 - uid: 8393 components: - type: Transform - pos: -7.5,32.5 + pos: -26.5,-49.5 parent: 2 - uid: 8394 components: - type: Transform - pos: -8.5,32.5 + pos: -27.5,-49.5 parent: 2 - uid: 8395 components: - type: Transform - pos: -8.5,33.5 + pos: -27.5,-48.5 parent: 2 - uid: 8396 components: - type: Transform - pos: -8.5,34.5 + pos: -27.5,-47.5 parent: 2 - uid: 8397 components: - type: Transform - pos: -8.5,35.5 + pos: -27.5,-46.5 parent: 2 - uid: 8398 components: - type: Transform - pos: -14.5,32.5 + pos: -27.5,-45.5 parent: 2 - uid: 8399 components: - type: Transform - pos: -14.5,30.5 + pos: -27.5,-44.5 parent: 2 - uid: 8400 components: - type: Transform - pos: -14.5,29.5 + pos: -28.5,-44.5 parent: 2 - uid: 8401 components: - type: Transform - pos: -16.5,29.5 + pos: -29.5,-44.5 parent: 2 - uid: 8402 components: - type: Transform - pos: -22.5,17.5 + pos: -30.5,-44.5 parent: 2 - uid: 8403 components: - type: Transform - pos: -21.5,17.5 + pos: -31.5,-44.5 parent: 2 - uid: 8404 components: - type: Transform - pos: -20.5,17.5 + pos: -31.5,-45.5 parent: 2 - uid: 8405 components: - type: Transform - pos: -22.5,16.5 + pos: -31.5,-46.5 parent: 2 - uid: 8406 components: - type: Transform - pos: -23.5,16.5 + pos: -31.5,-47.5 parent: 2 - uid: 8407 components: - type: Transform - pos: -23.5,15.5 + pos: -30.5,-47.5 parent: 2 - uid: 8408 components: - type: Transform - pos: -13.5,3.5 + pos: -30.5,-48.5 parent: 2 - uid: 8409 components: - type: Transform - pos: -13.5,4.5 + pos: -30.5,-49.5 parent: 2 - uid: 8410 components: - type: Transform - pos: -13.5,5.5 + pos: -30.5,-50.5 parent: 2 - uid: 8411 components: - type: Transform - pos: -13.5,6.5 + pos: -30.5,-51.5 parent: 2 - uid: 8412 components: - type: Transform - pos: -13.5,7.5 + pos: -29.5,-51.5 parent: 2 - uid: 8413 components: - type: Transform - pos: -14.5,7.5 + pos: -28.5,-51.5 parent: 2 - uid: 8414 components: - type: Transform - pos: -15.5,7.5 + pos: -27.5,-51.5 parent: 2 - uid: 8415 components: - type: Transform - pos: -16.5,7.5 + pos: -31.5,-54.5 parent: 2 - uid: 8416 components: - type: Transform - pos: -17.5,7.5 + pos: -58.5,-88.5 parent: 2 - uid: 8417 components: - type: Transform - pos: -18.5,7.5 + pos: -57.5,-88.5 parent: 2 - uid: 8418 components: - type: Transform - pos: -19.5,7.5 + pos: -58.5,-87.5 parent: 2 - uid: 8419 components: - type: Transform - pos: -20.5,7.5 + pos: -56.5,-88.5 parent: 2 - uid: 8420 components: - type: Transform - pos: -20.5,8.5 + pos: -9.5,28.5 parent: 2 - uid: 8421 components: - type: Transform - pos: -20.5,9.5 + pos: 14.5,32.5 parent: 2 - uid: 8422 components: - type: Transform - pos: -20.5,10.5 + pos: 13.5,32.5 parent: 2 - uid: 8423 components: - type: Transform - pos: -20.5,11.5 + pos: 2.5,32.5 parent: 2 - uid: 8424 components: - type: Transform - pos: -20.5,12.5 + pos: 1.5,32.5 parent: 2 - uid: 8425 components: - type: Transform - pos: -20.5,13.5 + pos: 0.5,32.5 parent: 2 - uid: 8426 components: - type: Transform - pos: -20.5,14.5 + pos: -0.5,32.5 parent: 2 - uid: 8427 components: - type: Transform - pos: -20.5,15.5 + pos: -1.5,32.5 parent: 2 - uid: 8428 components: - type: Transform - pos: -20.5,16.5 + pos: -2.5,32.5 parent: 2 - uid: 8429 components: - type: Transform - pos: -71.5,-20.5 + pos: -3.5,32.5 parent: 2 - uid: 8430 components: - type: Transform - pos: -72.5,-20.5 + pos: -4.5,32.5 parent: 2 - uid: 8431 components: - type: Transform - pos: -73.5,-20.5 + pos: -5.5,32.5 parent: 2 - uid: 8432 components: - type: Transform - pos: -73.5,-19.5 + pos: -6.5,32.5 parent: 2 - uid: 8433 components: - type: Transform - pos: -73.5,-18.5 + pos: -7.5,32.5 parent: 2 - uid: 8434 components: - type: Transform - pos: -73.5,-17.5 + pos: -8.5,32.5 parent: 2 - uid: 8435 components: - type: Transform - pos: -73.5,-16.5 + pos: -8.5,33.5 parent: 2 - uid: 8436 components: - type: Transform - pos: -73.5,-15.5 + pos: -8.5,34.5 parent: 2 - uid: 8437 components: - type: Transform - pos: -73.5,-14.5 + pos: -8.5,35.5 parent: 2 - uid: 8438 components: - type: Transform - pos: -73.5,-13.5 + pos: -14.5,32.5 parent: 2 - uid: 8439 components: - type: Transform - pos: -73.5,-12.5 + pos: -14.5,30.5 parent: 2 - uid: 8440 components: - type: Transform - pos: -73.5,-11.5 + pos: -14.5,29.5 parent: 2 - uid: 8441 components: - type: Transform - pos: -73.5,-10.5 + pos: -16.5,29.5 parent: 2 - uid: 8442 components: - type: Transform - pos: -73.5,-9.5 + pos: -22.5,17.5 parent: 2 - uid: 8443 components: - type: Transform - pos: -73.5,-8.5 + pos: -21.5,17.5 parent: 2 - uid: 8444 components: - type: Transform - pos: -73.5,-7.5 + pos: -20.5,17.5 parent: 2 - uid: 8445 components: - type: Transform - pos: -73.5,-6.5 + pos: -22.5,16.5 parent: 2 - uid: 8446 components: - type: Transform - pos: -72.5,-6.5 + pos: -23.5,16.5 parent: 2 - uid: 8447 components: - type: Transform - pos: -71.5,-6.5 + pos: -23.5,15.5 parent: 2 - uid: 8448 components: - type: Transform - pos: -70.5,-6.5 + pos: -13.5,3.5 parent: 2 - uid: 8449 components: - type: Transform - pos: -69.5,-6.5 + pos: -13.5,4.5 parent: 2 - uid: 8450 components: - type: Transform - pos: -68.5,-6.5 + pos: -13.5,5.5 parent: 2 - uid: 8451 components: - type: Transform - pos: -67.5,-6.5 + pos: -13.5,6.5 parent: 2 - uid: 8452 components: - type: Transform - pos: -66.5,-6.5 + pos: -13.5,7.5 parent: 2 - uid: 8453 components: - type: Transform - pos: -65.5,-6.5 + pos: -14.5,7.5 parent: 2 - uid: 8454 components: - type: Transform - pos: -64.5,-6.5 + pos: -15.5,7.5 parent: 2 - uid: 8455 components: - type: Transform - pos: -63.5,-6.5 + pos: -16.5,7.5 parent: 2 - uid: 8456 components: - type: Transform - pos: -62.5,-6.5 + pos: -17.5,7.5 parent: 2 - uid: 8457 components: - type: Transform - pos: -61.5,-6.5 + pos: -18.5,7.5 parent: 2 - uid: 8458 components: - type: Transform - pos: -60.5,-6.5 + pos: -19.5,7.5 parent: 2 - uid: 8459 components: - type: Transform - pos: -59.5,-6.5 + pos: -20.5,7.5 parent: 2 - uid: 8460 components: - type: Transform - pos: -59.5,-7.5 + pos: -20.5,8.5 parent: 2 - uid: 8461 components: - type: Transform - pos: -59.5,-8.5 + pos: -20.5,9.5 parent: 2 - uid: 8462 components: - type: Transform - pos: -59.5,-9.5 + pos: -20.5,10.5 parent: 2 - uid: 8463 components: - type: Transform - pos: -59.5,-10.5 + pos: -20.5,11.5 parent: 2 - uid: 8464 components: - type: Transform - pos: -59.5,-11.5 + pos: -20.5,12.5 parent: 2 - uid: 8465 components: - type: Transform - pos: -59.5,-12.5 + pos: -20.5,13.5 parent: 2 - uid: 8466 components: - type: Transform - pos: -59.5,-13.5 + pos: -20.5,14.5 parent: 2 - uid: 8467 components: - type: Transform - pos: -59.5,-14.5 + pos: -20.5,15.5 parent: 2 - uid: 8468 components: - type: Transform - pos: -59.5,-15.5 + pos: -20.5,16.5 parent: 2 - uid: 8469 components: - type: Transform - pos: -59.5,-16.5 + pos: -71.5,-20.5 parent: 2 - uid: 8470 components: - type: Transform - pos: -59.5,-17.5 + pos: -72.5,-20.5 parent: 2 - uid: 8471 components: - type: Transform - pos: -59.5,-18.5 + pos: -73.5,-20.5 parent: 2 - uid: 8472 components: - type: Transform - pos: -59.5,-19.5 + pos: -73.5,-19.5 parent: 2 - uid: 8473 components: - type: Transform - pos: -59.5,-20.5 + pos: -73.5,-18.5 parent: 2 - uid: 8474 components: - type: Transform - pos: -60.5,-20.5 + pos: -73.5,-17.5 parent: 2 - uid: 8475 components: - type: Transform - pos: -61.5,-20.5 + pos: -73.5,-16.5 parent: 2 - uid: 8476 components: - type: Transform - pos: -62.5,-20.5 + pos: -73.5,-15.5 parent: 2 - uid: 8477 components: - type: Transform - pos: -63.5,-20.5 + pos: -73.5,-14.5 parent: 2 - uid: 8478 components: - type: Transform - pos: -64.5,-20.5 + pos: -73.5,-13.5 parent: 2 - uid: 8479 components: - type: Transform - pos: -65.5,-20.5 + pos: -73.5,-12.5 parent: 2 - uid: 8480 components: - type: Transform - pos: -66.5,-20.5 + pos: -73.5,-11.5 parent: 2 - uid: 8481 components: - type: Transform - pos: -67.5,-20.5 + pos: -73.5,-10.5 parent: 2 - uid: 8482 components: - type: Transform - pos: -68.5,-20.5 + pos: -73.5,-9.5 parent: 2 - uid: 8483 components: - type: Transform - pos: -69.5,-20.5 + pos: -73.5,-8.5 parent: 2 - uid: 8484 components: - type: Transform - pos: -70.5,-20.5 + pos: -73.5,-7.5 parent: 2 - uid: 8485 components: - type: Transform - pos: -20.5,-5.5 + pos: -73.5,-6.5 parent: 2 - uid: 8486 components: - type: Transform - pos: -21.5,-5.5 + pos: -72.5,-6.5 parent: 2 - uid: 8487 components: - type: Transform - pos: -22.5,-5.5 + pos: -71.5,-6.5 parent: 2 - uid: 8488 components: - type: Transform - pos: -23.5,-5.5 + pos: -70.5,-6.5 parent: 2 - uid: 8489 components: - type: Transform - pos: -24.5,-5.5 + pos: -69.5,-6.5 parent: 2 - uid: 8490 components: - type: Transform - pos: -25.5,-5.5 + pos: -68.5,-6.5 parent: 2 - uid: 8491 components: - type: Transform - pos: -25.5,-4.5 + pos: -67.5,-6.5 parent: 2 - uid: 8492 components: - type: Transform - pos: -25.5,-3.5 + pos: -66.5,-6.5 parent: 2 - uid: 8493 components: - type: Transform - pos: -25.5,-2.5 + pos: -65.5,-6.5 parent: 2 - uid: 8494 components: - type: Transform - pos: -25.5,-1.5 + pos: -64.5,-6.5 parent: 2 - uid: 8495 components: - type: Transform - pos: -25.5,-0.5 + pos: -63.5,-6.5 parent: 2 - uid: 8496 components: - type: Transform - pos: -26.5,-0.5 + pos: -62.5,-6.5 parent: 2 - uid: 8497 components: - type: Transform - pos: -27.5,-0.5 + pos: -61.5,-6.5 parent: 2 - uid: 8498 components: - type: Transform - pos: -28.5,-0.5 + pos: -60.5,-6.5 parent: 2 - uid: 8499 components: - type: Transform - pos: -29.5,-0.5 + pos: -59.5,-6.5 parent: 2 - uid: 8500 components: - type: Transform - pos: -30.5,-0.5 + pos: -59.5,-7.5 parent: 2 - uid: 8501 components: - type: Transform - pos: -31.5,-0.5 + pos: -59.5,-8.5 parent: 2 - uid: 8502 components: - type: Transform - pos: -32.5,-0.5 + pos: -59.5,-9.5 parent: 2 - uid: 8503 components: - type: Transform - pos: -33.5,-0.5 + pos: -59.5,-10.5 parent: 2 - uid: 8504 components: - type: Transform - pos: -34.5,-0.5 + pos: -59.5,-11.5 parent: 2 - uid: 8505 components: - type: Transform - pos: -35.5,-0.5 + pos: -59.5,-12.5 parent: 2 - uid: 8506 components: - type: Transform - pos: -36.5,-0.5 + pos: -59.5,-13.5 parent: 2 - uid: 8507 components: - type: Transform - pos: -37.5,-0.5 + pos: -59.5,-14.5 parent: 2 - uid: 8508 components: - type: Transform - pos: -37.5,-1.5 + pos: -59.5,-15.5 parent: 2 - uid: 8509 components: - type: Transform - pos: -37.5,-2.5 + pos: -59.5,-16.5 parent: 2 - uid: 8510 components: - type: Transform - pos: -36.5,-2.5 + pos: -59.5,-17.5 parent: 2 - uid: 8511 components: - type: Transform - pos: -35.5,-2.5 + pos: -59.5,-18.5 parent: 2 - uid: 8512 components: - type: Transform - pos: -34.5,-2.5 + pos: -59.5,-19.5 parent: 2 - uid: 8513 components: - type: Transform - pos: -34.5,-3.5 + pos: -59.5,-20.5 parent: 2 - uid: 8514 components: - type: Transform - pos: -20.5,18.5 + pos: -60.5,-20.5 parent: 2 - uid: 8515 components: - type: Transform - pos: -20.5,19.5 + pos: -61.5,-20.5 parent: 2 - uid: 8516 components: - type: Transform - pos: -20.5,20.5 + pos: -62.5,-20.5 parent: 2 - uid: 8517 components: - type: Transform - pos: -20.5,21.5 + pos: -63.5,-20.5 parent: 2 - uid: 8518 components: - type: Transform - pos: -20.5,22.5 + pos: -64.5,-20.5 parent: 2 - uid: 8519 components: - type: Transform - pos: -20.5,23.5 + pos: -65.5,-20.5 parent: 2 - uid: 8520 components: - type: Transform - pos: -20.5,24.5 + pos: -66.5,-20.5 parent: 2 - uid: 8521 components: - type: Transform - pos: -20.5,25.5 + pos: -67.5,-20.5 parent: 2 - uid: 8522 components: - type: Transform - pos: 8.5,-104.5 + pos: -68.5,-20.5 parent: 2 - uid: 8523 components: - type: Transform - pos: 7.5,-104.5 + pos: -69.5,-20.5 parent: 2 - uid: 8524 components: - type: Transform - pos: 6.5,-104.5 + pos: -70.5,-20.5 parent: 2 - uid: 8525 components: - type: Transform - pos: 5.5,-104.5 + pos: -20.5,-5.5 parent: 2 - uid: 8526 components: - type: Transform - pos: 4.5,-104.5 + pos: -21.5,-5.5 parent: 2 - uid: 8527 components: - type: Transform - pos: 14.5,-104.5 + pos: -22.5,-5.5 parent: 2 - uid: 8528 components: - type: Transform - pos: 15.5,-104.5 + pos: -23.5,-5.5 parent: 2 - uid: 8529 components: - type: Transform - pos: 16.5,-104.5 + pos: -24.5,-5.5 parent: 2 - uid: 8530 components: - type: Transform - pos: 17.5,-104.5 + pos: -25.5,-5.5 parent: 2 - uid: 8531 components: - type: Transform - pos: 18.5,-104.5 + pos: -25.5,-4.5 parent: 2 - uid: 8532 components: - type: Transform - pos: 15.5,-101.5 + pos: -25.5,-3.5 parent: 2 - uid: 8533 components: - type: Transform - pos: 16.5,-101.5 + pos: -25.5,-2.5 parent: 2 - uid: 8534 components: - type: Transform - pos: 17.5,-101.5 + pos: -25.5,-1.5 parent: 2 - uid: 8535 components: - type: Transform - pos: 18.5,-101.5 + pos: -25.5,-0.5 parent: 2 - uid: 8536 components: - type: Transform - pos: 7.5,-101.5 + pos: -26.5,-0.5 parent: 2 - uid: 8537 components: - type: Transform - pos: 6.5,-101.5 + pos: -27.5,-0.5 parent: 2 - uid: 8538 components: - type: Transform - pos: 5.5,-101.5 + pos: -28.5,-0.5 parent: 2 - uid: 8539 components: - type: Transform - pos: 4.5,-101.5 + pos: -29.5,-0.5 parent: 2 - uid: 8540 components: - type: Transform - pos: 4.5,-98.5 + pos: -30.5,-0.5 parent: 2 - uid: 8541 components: - type: Transform - pos: 5.5,-98.5 + pos: -31.5,-0.5 parent: 2 - uid: 8542 components: - type: Transform - pos: 6.5,-98.5 + pos: -32.5,-0.5 parent: 2 - uid: 8543 components: - type: Transform - pos: 7.5,-98.5 + pos: -33.5,-0.5 parent: 2 - uid: 8544 components: - type: Transform - pos: 18.5,-98.5 + pos: -34.5,-0.5 parent: 2 - uid: 8545 components: - type: Transform - pos: 17.5,-98.5 + pos: -35.5,-0.5 parent: 2 - uid: 8546 components: - type: Transform - pos: 16.5,-98.5 + pos: -36.5,-0.5 parent: 2 - uid: 8547 components: - type: Transform - pos: 15.5,-98.5 + pos: -37.5,-0.5 parent: 2 - uid: 8548 components: - type: Transform - pos: -2.5,-57.5 + pos: -37.5,-1.5 parent: 2 - uid: 8549 components: - type: Transform - pos: -2.5,-56.5 + pos: -37.5,-2.5 parent: 2 - uid: 8550 components: - type: Transform - pos: -2.5,-55.5 + pos: -36.5,-2.5 parent: 2 - uid: 8551 components: - type: Transform - pos: -2.5,-54.5 + pos: -35.5,-2.5 parent: 2 - uid: 8552 components: - type: Transform - pos: -2.5,-53.5 + pos: -34.5,-2.5 parent: 2 - uid: 8553 components: - type: Transform - pos: -1.5,-53.5 + pos: -34.5,-3.5 parent: 2 - uid: 8554 components: - type: Transform - pos: -0.5,-53.5 + pos: -20.5,18.5 parent: 2 - uid: 8555 components: - type: Transform - pos: -0.5,-52.5 + pos: -20.5,19.5 parent: 2 - uid: 8556 components: - type: Transform - pos: -0.5,-51.5 + pos: -20.5,20.5 parent: 2 - uid: 8557 components: - type: Transform - pos: -0.5,-50.5 + pos: -20.5,21.5 parent: 2 - uid: 8558 components: - type: Transform - pos: -0.5,-49.5 + pos: -20.5,22.5 parent: 2 - uid: 8559 components: - type: Transform - pos: -0.5,-48.5 + pos: -20.5,23.5 parent: 2 - uid: 8560 components: - type: Transform - pos: -0.5,-47.5 + pos: -20.5,24.5 parent: 2 - uid: 8561 components: - type: Transform - pos: -0.5,-46.5 + pos: -20.5,25.5 parent: 2 - uid: 8562 components: - type: Transform - pos: -0.5,-45.5 + pos: 8.5,-104.5 parent: 2 - uid: 8563 components: - type: Transform - pos: -0.5,-44.5 + pos: 7.5,-104.5 parent: 2 - uid: 8564 components: - type: Transform - pos: -0.5,-43.5 + pos: 6.5,-104.5 parent: 2 - uid: 8565 components: - type: Transform - pos: -53.5,-18.5 + pos: 5.5,-104.5 parent: 2 - uid: 8566 components: - type: Transform - pos: -53.5,-17.5 + pos: 4.5,-104.5 parent: 2 - uid: 8567 components: - type: Transform - pos: -53.5,-16.5 + pos: 14.5,-104.5 parent: 2 - uid: 8568 components: - type: Transform - pos: -53.5,-15.5 + pos: 15.5,-104.5 parent: 2 - uid: 8569 components: - type: Transform - pos: -53.5,-14.5 + pos: 16.5,-104.5 parent: 2 - uid: 8570 components: - type: Transform - pos: -53.5,-13.5 + pos: 17.5,-104.5 parent: 2 - uid: 8571 components: - type: Transform - pos: -54.5,-13.5 + pos: 18.5,-104.5 parent: 2 - uid: 8572 components: - type: Transform - pos: -55.5,-13.5 + pos: 15.5,-101.5 parent: 2 - uid: 8573 components: - type: Transform - pos: -55.5,-25.5 + pos: 16.5,-101.5 parent: 2 - uid: 8574 components: - type: Transform - pos: -56.5,-25.5 + pos: 17.5,-101.5 parent: 2 - uid: 8575 components: - type: Transform - pos: -57.5,-25.5 + pos: 18.5,-101.5 parent: 2 - uid: 8576 components: - type: Transform - pos: -60.5,-27.5 + pos: 7.5,-101.5 parent: 2 - uid: 8577 components: - type: Transform - pos: -54.5,-25.5 + pos: 6.5,-101.5 parent: 2 - uid: 8578 components: - type: Transform - pos: -52.5,-25.5 + pos: 5.5,-101.5 parent: 2 - uid: 8579 components: - type: Transform - pos: -0.5,-79.5 + pos: 4.5,-101.5 parent: 2 - uid: 8580 components: - type: Transform - pos: -14.5,38.5 + pos: 4.5,-98.5 parent: 2 - uid: 8581 components: - type: Transform - pos: -14.5,43.5 + pos: 5.5,-98.5 parent: 2 - uid: 8582 components: - type: Transform - pos: -14.5,41.5 + pos: 6.5,-98.5 parent: 2 - uid: 8583 components: - type: Transform - pos: -17.5,29.5 + pos: 7.5,-98.5 parent: 2 - uid: 8584 components: - type: Transform - pos: -14.5,37.5 + pos: 18.5,-98.5 parent: 2 - uid: 8585 components: - type: Transform - pos: -15.5,29.5 + pos: 17.5,-98.5 parent: 2 - uid: 8586 components: - type: Transform - pos: -0.5,-78.5 + pos: 16.5,-98.5 parent: 2 - uid: 8587 components: - type: Transform - pos: -0.5,-77.5 + pos: 15.5,-98.5 parent: 2 - uid: 8588 components: - type: Transform - pos: 12.5,-104.5 + pos: -0.5,-51.5 parent: 2 - uid: 8589 components: - type: Transform - pos: 10.5,-104.5 + pos: -0.5,-50.5 parent: 2 - uid: 8590 components: - type: Transform - pos: -74.5,-38.5 + pos: -0.5,-49.5 parent: 2 - uid: 8591 components: - type: Transform - pos: -75.5,-38.5 + pos: -0.5,-48.5 parent: 2 - uid: 8592 components: - type: Transform - pos: -79.5,-37.5 + pos: -0.5,-47.5 parent: 2 - uid: 8593 components: - type: Transform - pos: 5.5,-14.5 + pos: -0.5,-46.5 parent: 2 - uid: 8594 components: - type: Transform - pos: 8.5,-14.5 + pos: -0.5,-45.5 parent: 2 - uid: 8595 components: - type: Transform - pos: 33.5,22.5 + pos: -0.5,-44.5 parent: 2 - uid: 8596 components: - type: Transform - pos: 34.5,22.5 + pos: -0.5,-43.5 parent: 2 - uid: 8597 components: - type: Transform - pos: 35.5,22.5 + pos: -53.5,-18.5 parent: 2 - uid: 8598 components: - type: Transform - pos: 36.5,22.5 + pos: -53.5,-17.5 parent: 2 - uid: 8599 components: - type: Transform - pos: 36.5,23.5 + pos: -53.5,-16.5 parent: 2 - uid: 8600 components: - type: Transform - pos: 37.5,23.5 + pos: -53.5,-15.5 parent: 2 - uid: 8601 components: - type: Transform - pos: 38.5,23.5 + pos: -53.5,-14.5 parent: 2 - uid: 8602 components: - type: Transform - pos: 39.5,23.5 + pos: -53.5,-13.5 parent: 2 - uid: 8603 components: - type: Transform - pos: 40.5,23.5 + pos: -54.5,-13.5 parent: 2 - uid: 8604 components: - type: Transform - pos: 41.5,23.5 + pos: -55.5,-13.5 parent: 2 - uid: 8605 components: - type: Transform - pos: 42.5,23.5 + pos: -55.5,-25.5 parent: 2 - uid: 8606 components: - type: Transform - pos: 43.5,23.5 + pos: -56.5,-25.5 parent: 2 - uid: 8607 components: - type: Transform - pos: 44.5,23.5 + pos: -57.5,-25.5 parent: 2 - uid: 8608 components: - type: Transform - pos: 44.5,24.5 + pos: -60.5,-27.5 parent: 2 - uid: 8609 components: - type: Transform - pos: 44.5,25.5 + pos: -54.5,-25.5 parent: 2 - uid: 8610 components: - type: Transform - pos: 44.5,26.5 + pos: -52.5,-25.5 parent: 2 - uid: 8611 components: - type: Transform - pos: 45.5,26.5 + pos: -0.5,-79.5 parent: 2 - uid: 8612 components: - type: Transform - pos: 46.5,26.5 + pos: -14.5,38.5 parent: 2 - uid: 8613 components: - type: Transform - pos: 47.5,26.5 + pos: -14.5,43.5 parent: 2 - uid: 8614 components: - type: Transform - pos: 48.5,26.5 + pos: -14.5,41.5 parent: 2 - uid: 8615 components: - type: Transform - pos: 48.5,27.5 + pos: -17.5,29.5 parent: 2 - uid: 8616 components: - type: Transform - pos: 48.5,28.5 + pos: -14.5,37.5 parent: 2 - uid: 8617 components: - type: Transform - pos: 49.5,28.5 + pos: -15.5,29.5 parent: 2 - uid: 8618 components: - type: Transform - pos: 50.5,28.5 + pos: -0.5,-78.5 parent: 2 - uid: 8619 components: - type: Transform - pos: 50.5,29.5 + pos: -0.5,-77.5 parent: 2 - uid: 8620 components: - type: Transform - pos: 91.5,36.5 + pos: 12.5,-104.5 parent: 2 - uid: 8621 components: - type: Transform - pos: 77.5,36.5 + pos: 10.5,-104.5 parent: 2 - uid: 8622 components: - type: Transform - pos: 76.5,36.5 + pos: -74.5,-38.5 parent: 2 - uid: 8623 components: - type: Transform - pos: 75.5,36.5 + pos: -75.5,-38.5 parent: 2 - uid: 8624 components: - type: Transform - pos: 74.5,36.5 + pos: -79.5,-37.5 parent: 2 - uid: 8625 components: - type: Transform - pos: 78.5,44.5 + pos: 5.5,-14.5 parent: 2 - uid: 8626 components: - type: Transform - pos: 78.5,43.5 + pos: 8.5,-14.5 parent: 2 - uid: 8627 components: - type: Transform - pos: 78.5,42.5 + pos: 33.5,22.5 parent: 2 - uid: 8628 components: - type: Transform - pos: 78.5,41.5 + pos: 34.5,22.5 parent: 2 - uid: 8629 components: - type: Transform - pos: 78.5,40.5 + pos: 35.5,22.5 parent: 2 - uid: 8630 components: - type: Transform - pos: 78.5,39.5 + pos: 36.5,22.5 parent: 2 - uid: 8631 components: - type: Transform - pos: 78.5,38.5 + pos: 36.5,23.5 parent: 2 - uid: 8632 components: - type: Transform - pos: 78.5,37.5 + pos: 37.5,23.5 parent: 2 - uid: 8633 components: - type: Transform - pos: 78.5,35.5 + pos: 38.5,23.5 parent: 2 - uid: 8634 components: - type: Transform - pos: 78.5,34.5 + pos: 39.5,23.5 parent: 2 - uid: 8635 components: - type: Transform - pos: 78.5,33.5 + pos: 40.5,23.5 parent: 2 - uid: 8636 components: - type: Transform - pos: 78.5,32.5 + pos: 41.5,23.5 parent: 2 - uid: 8637 components: - type: Transform - pos: 78.5,31.5 + pos: 42.5,23.5 parent: 2 - uid: 8638 components: - type: Transform - pos: 78.5,30.5 + pos: 43.5,23.5 parent: 2 - uid: 8639 components: - type: Transform - pos: 78.5,29.5 + pos: 44.5,23.5 parent: 2 - uid: 8640 components: - type: Transform - pos: 78.5,28.5 + pos: 44.5,24.5 parent: 2 - uid: 8641 components: - type: Transform - pos: 81.5,28.5 + pos: 44.5,25.5 parent: 2 - uid: 8642 components: - type: Transform - pos: 81.5,29.5 + pos: 44.5,26.5 parent: 2 - uid: 8643 components: - type: Transform - pos: 81.5,30.5 + pos: 45.5,26.5 parent: 2 - uid: 8644 components: - type: Transform - pos: 81.5,31.5 + pos: 46.5,26.5 parent: 2 - uid: 8645 components: - type: Transform - pos: 81.5,32.5 + pos: 47.5,26.5 parent: 2 - uid: 8646 components: - type: Transform - pos: 81.5,33.5 + pos: 48.5,26.5 parent: 2 - uid: 8647 components: - type: Transform - pos: 81.5,34.5 + pos: 48.5,27.5 parent: 2 - uid: 8648 components: - type: Transform - pos: 81.5,35.5 + pos: 48.5,28.5 parent: 2 - uid: 8649 components: - type: Transform - pos: 81.5,37.5 + pos: 49.5,28.5 parent: 2 - uid: 8650 components: - type: Transform - pos: 81.5,38.5 + pos: 50.5,28.5 parent: 2 - uid: 8651 components: - type: Transform - pos: 81.5,39.5 + pos: 50.5,29.5 parent: 2 - uid: 8652 components: - type: Transform - pos: 81.5,40.5 + pos: 91.5,36.5 parent: 2 - uid: 8653 components: - type: Transform - pos: 81.5,41.5 + pos: 77.5,36.5 parent: 2 - uid: 8654 components: - type: Transform - pos: 81.5,42.5 + pos: 76.5,36.5 parent: 2 - uid: 8655 components: - type: Transform - pos: 81.5,43.5 + pos: 75.5,36.5 parent: 2 - uid: 8656 components: - type: Transform - pos: 81.5,44.5 + pos: 74.5,36.5 parent: 2 - uid: 8657 components: - type: Transform - pos: 84.5,44.5 + pos: 78.5,44.5 parent: 2 - uid: 8658 components: - type: Transform - pos: 84.5,43.5 + pos: 78.5,43.5 parent: 2 - uid: 8659 components: - type: Transform - pos: 84.5,42.5 + pos: 78.5,42.5 parent: 2 - uid: 8660 components: - type: Transform - pos: 84.5,41.5 + pos: 78.5,41.5 parent: 2 - uid: 8661 components: - type: Transform - pos: 84.5,40.5 + pos: 78.5,40.5 parent: 2 - uid: 8662 components: - type: Transform - pos: 84.5,39.5 + pos: 78.5,39.5 parent: 2 - uid: 8663 components: - type: Transform - pos: 84.5,38.5 + pos: 78.5,38.5 parent: 2 - uid: 8664 components: - type: Transform - pos: 84.5,37.5 + pos: 78.5,37.5 parent: 2 - uid: 8665 components: - type: Transform - pos: 84.5,35.5 + pos: 78.5,35.5 parent: 2 - uid: 8666 components: - type: Transform - pos: 84.5,34.5 + pos: 78.5,34.5 parent: 2 - uid: 8667 components: - type: Transform - pos: 84.5,33.5 + pos: 78.5,33.5 parent: 2 - uid: 8668 components: - type: Transform - pos: 84.5,32.5 + pos: 78.5,32.5 parent: 2 - uid: 8669 components: - type: Transform - pos: 84.5,31.5 + pos: 78.5,31.5 parent: 2 - uid: 8670 components: - type: Transform - pos: 84.5,30.5 + pos: 78.5,30.5 parent: 2 - uid: 8671 components: - type: Transform - pos: 84.5,29.5 + pos: 78.5,29.5 parent: 2 - uid: 8672 components: - type: Transform - pos: 84.5,28.5 + pos: 78.5,28.5 parent: 2 - uid: 8673 components: - type: Transform - pos: 87.5,28.5 + pos: 81.5,28.5 parent: 2 - uid: 8674 components: - type: Transform - pos: 87.5,29.5 + pos: 81.5,29.5 parent: 2 - uid: 8675 components: - type: Transform - pos: 87.5,30.5 + pos: 81.5,30.5 parent: 2 - uid: 8676 components: - type: Transform - pos: 87.5,31.5 + pos: 81.5,31.5 parent: 2 - uid: 8677 components: - type: Transform - pos: 87.5,32.5 + pos: 81.5,32.5 parent: 2 - uid: 8678 components: - type: Transform - pos: 87.5,33.5 + pos: 81.5,33.5 parent: 2 - uid: 8679 components: - type: Transform - pos: 87.5,34.5 + pos: 81.5,34.5 parent: 2 - uid: 8680 components: - type: Transform - pos: 87.5,35.5 + pos: 81.5,35.5 parent: 2 - uid: 8681 components: - type: Transform - pos: 87.5,37.5 + pos: 81.5,37.5 parent: 2 - uid: 8682 components: - type: Transform - pos: 87.5,38.5 + pos: 81.5,38.5 parent: 2 - uid: 8683 components: - type: Transform - pos: 87.5,39.5 + pos: 81.5,39.5 parent: 2 - uid: 8684 components: - type: Transform - pos: 87.5,40.5 + pos: 81.5,40.5 parent: 2 - uid: 8685 components: - type: Transform - pos: 87.5,41.5 + pos: 81.5,41.5 parent: 2 - uid: 8686 components: - type: Transform - pos: 87.5,42.5 + pos: 81.5,42.5 parent: 2 - uid: 8687 components: - type: Transform - pos: 87.5,43.5 + pos: 81.5,43.5 parent: 2 - uid: 8688 components: - type: Transform - pos: 87.5,44.5 + pos: 81.5,44.5 parent: 2 - uid: 8689 components: - type: Transform - pos: 90.5,44.5 + pos: 84.5,44.5 parent: 2 - uid: 8690 components: - type: Transform - pos: 90.5,43.5 + pos: 84.5,43.5 parent: 2 - uid: 8691 components: - type: Transform - pos: 90.5,42.5 + pos: 84.5,42.5 parent: 2 - uid: 8692 components: - type: Transform - pos: 90.5,41.5 + pos: 84.5,41.5 parent: 2 - uid: 8693 components: - type: Transform - pos: 90.5,40.5 + pos: 84.5,40.5 parent: 2 - uid: 8694 components: - type: Transform - pos: 90.5,39.5 + pos: 84.5,39.5 parent: 2 - uid: 8695 components: - type: Transform - pos: 90.5,38.5 + pos: 84.5,38.5 parent: 2 - uid: 8696 components: - type: Transform - pos: 90.5,37.5 + pos: 84.5,37.5 parent: 2 - uid: 8697 components: - type: Transform - pos: 90.5,35.5 + pos: 84.5,35.5 parent: 2 - uid: 8698 components: - type: Transform - pos: 90.5,34.5 + pos: 84.5,34.5 parent: 2 - uid: 8699 components: - type: Transform - pos: 90.5,33.5 + pos: 84.5,33.5 parent: 2 - uid: 8700 components: - type: Transform - pos: 90.5,32.5 + pos: 84.5,32.5 parent: 2 - uid: 8701 components: - type: Transform - pos: 90.5,31.5 + pos: 84.5,31.5 parent: 2 - uid: 8702 components: - type: Transform - pos: 90.5,30.5 + pos: 84.5,30.5 parent: 2 - uid: 8703 components: - type: Transform - pos: 90.5,29.5 + pos: 84.5,29.5 parent: 2 - uid: 8704 components: - type: Transform - pos: 90.5,28.5 + pos: 84.5,28.5 parent: 2 - uid: 8705 components: - type: Transform - pos: 74.5,37.5 + pos: 87.5,28.5 parent: 2 - uid: 8706 components: - type: Transform - pos: 74.5,38.5 + pos: 87.5,29.5 parent: 2 - uid: 8707 components: - type: Transform - pos: 73.5,38.5 + pos: 87.5,30.5 parent: 2 - uid: 8708 components: - type: Transform - pos: 72.5,38.5 + pos: 87.5,31.5 parent: 2 - uid: 8709 components: - type: Transform - pos: 74.5,35.5 + pos: 87.5,32.5 parent: 2 - uid: 8710 components: - type: Transform - pos: 74.5,34.5 + pos: 87.5,33.5 parent: 2 - uid: 8711 components: - type: Transform - pos: 73.5,34.5 + pos: 87.5,34.5 parent: 2 - uid: 8712 components: - type: Transform - pos: 72.5,34.5 + pos: 87.5,35.5 parent: 2 - uid: 8713 components: - type: Transform - pos: 71.5,34.5 + pos: 87.5,37.5 parent: 2 - uid: 8714 components: - type: Transform - pos: 70.5,34.5 + pos: 87.5,38.5 parent: 2 - uid: 8715 components: - type: Transform - pos: 70.5,35.5 + pos: 87.5,39.5 parent: 2 - uid: 8716 components: - type: Transform - pos: 70.5,36.5 + pos: 87.5,40.5 parent: 2 - uid: 8717 components: - type: Transform - pos: 69.5,36.5 + pos: 87.5,41.5 parent: 2 - uid: 8718 components: - type: Transform - pos: 71.5,38.5 + pos: 87.5,42.5 parent: 2 - uid: 8719 components: - type: Transform - pos: 70.5,38.5 + pos: 87.5,43.5 parent: 2 - uid: 8720 components: - type: Transform - pos: 70.5,37.5 + pos: 87.5,44.5 parent: 2 - uid: 8721 components: - type: Transform - pos: 68.5,36.5 + pos: 90.5,44.5 parent: 2 - uid: 8722 components: - type: Transform - pos: 67.5,36.5 + pos: 90.5,43.5 parent: 2 - uid: 8723 components: - type: Transform - pos: 66.5,36.5 + pos: 90.5,42.5 parent: 2 - uid: 8724 components: - type: Transform - pos: 65.5,36.5 + pos: 90.5,41.5 parent: 2 - uid: 8725 components: - type: Transform - pos: 64.5,36.5 + pos: 90.5,40.5 parent: 2 - uid: 8726 components: - type: Transform - pos: 63.5,36.5 + pos: 90.5,39.5 parent: 2 - uid: 8727 components: - type: Transform - pos: 63.5,35.5 + pos: 90.5,38.5 parent: 2 - uid: 8728 components: - type: Transform - pos: 63.5,34.5 + pos: 90.5,37.5 parent: 2 - uid: 8729 components: - type: Transform - pos: 63.5,33.5 + pos: 90.5,35.5 parent: 2 - uid: 8730 components: - type: Transform - pos: 63.5,32.5 + pos: 90.5,34.5 parent: 2 - uid: 8731 components: - type: Transform - pos: 63.5,31.5 + pos: 90.5,33.5 parent: 2 - uid: 8732 components: - type: Transform - pos: 63.5,30.5 + pos: 90.5,32.5 parent: 2 - uid: 8733 components: - type: Transform - pos: 63.5,29.5 + pos: 90.5,31.5 parent: 2 - uid: 8734 components: - type: Transform - pos: 63.5,28.5 + pos: 90.5,30.5 parent: 2 - uid: 8735 components: - type: Transform - pos: 63.5,27.5 + pos: 90.5,29.5 parent: 2 - uid: 8736 components: - type: Transform - pos: 63.5,26.5 + pos: 90.5,28.5 parent: 2 - uid: 8737 components: - type: Transform - pos: 62.5,26.5 + pos: 74.5,37.5 parent: 2 - uid: 8738 components: - type: Transform - pos: 61.5,26.5 + pos: 74.5,38.5 parent: 2 - uid: 8739 components: - type: Transform - pos: 60.5,26.5 + pos: 73.5,38.5 parent: 2 - uid: 8740 components: - type: Transform - pos: 59.5,26.5 + pos: 72.5,38.5 parent: 2 - uid: 8741 components: - type: Transform - pos: 58.5,26.5 + pos: 74.5,35.5 parent: 2 - uid: 8742 components: - type: Transform - pos: 57.5,26.5 + pos: 74.5,34.5 parent: 2 - uid: 8743 components: - type: Transform - pos: 56.5,26.5 + pos: 73.5,34.5 parent: 2 - uid: 8744 components: - type: Transform - pos: 55.5,26.5 + pos: 72.5,34.5 parent: 2 - uid: 8745 components: - type: Transform - pos: 54.5,26.5 + pos: 71.5,34.5 parent: 2 - uid: 8746 components: - type: Transform - pos: 53.5,26.5 + pos: 70.5,34.5 parent: 2 - uid: 8747 components: - type: Transform - pos: 52.5,26.5 + pos: 70.5,35.5 parent: 2 - uid: 8748 components: - type: Transform - pos: 51.5,26.5 + pos: 70.5,36.5 parent: 2 - uid: 8749 components: - type: Transform - pos: 50.5,26.5 + pos: 69.5,36.5 parent: 2 - uid: 8750 components: - type: Transform - pos: 49.5,26.5 + pos: 71.5,38.5 parent: 2 - uid: 8751 components: - type: Transform - pos: -11.5,26.5 + pos: 70.5,38.5 parent: 2 - uid: 8752 components: - type: Transform - pos: -12.5,26.5 + pos: 70.5,37.5 parent: 2 - uid: 8753 components: - type: Transform - pos: -13.5,26.5 + pos: 68.5,36.5 parent: 2 - uid: 8754 components: - type: Transform - pos: -14.5,26.5 + pos: 67.5,36.5 parent: 2 - uid: 8755 components: - type: Transform - pos: -15.5,26.5 + pos: 66.5,36.5 parent: 2 - uid: 8756 components: - type: Transform - pos: -15.5,27.5 + pos: 65.5,36.5 parent: 2 - uid: 8757 components: - type: Transform - pos: -15.5,28.5 + pos: 64.5,36.5 parent: 2 - uid: 8758 components: - type: Transform - pos: -1.5,69.5 + pos: 63.5,36.5 parent: 2 - uid: 8759 components: - type: Transform - pos: -1.5,68.5 + pos: 63.5,35.5 parent: 2 - uid: 8760 components: - type: Transform - pos: -1.5,67.5 + pos: 63.5,34.5 parent: 2 - uid: 8761 components: - type: Transform - pos: -1.5,66.5 + pos: 63.5,33.5 parent: 2 - uid: 8762 components: - type: Transform - pos: -1.5,65.5 + pos: 63.5,32.5 parent: 2 - uid: 8763 components: - type: Transform - pos: -1.5,64.5 + pos: 63.5,31.5 parent: 2 - uid: 8764 components: - type: Transform - pos: -1.5,63.5 + pos: 63.5,30.5 parent: 2 - uid: 8765 components: - type: Transform - pos: -1.5,62.5 + pos: 63.5,29.5 parent: 2 - uid: 8766 components: - type: Transform - pos: -1.5,61.5 + pos: 63.5,28.5 parent: 2 - uid: 8767 components: - type: Transform - pos: -1.5,60.5 + pos: 63.5,27.5 parent: 2 - uid: 8768 components: - type: Transform - pos: -1.5,59.5 + pos: 63.5,26.5 parent: 2 - uid: 8769 components: - type: Transform - pos: -1.5,58.5 + pos: 62.5,26.5 parent: 2 - uid: 8770 components: - type: Transform - pos: -2.5,58.5 + pos: 61.5,26.5 parent: 2 - uid: 8771 components: - type: Transform - pos: -3.5,58.5 + pos: 60.5,26.5 parent: 2 - uid: 8772 components: - type: Transform - pos: -4.5,58.5 + pos: 59.5,26.5 parent: 2 - uid: 8773 components: - type: Transform - pos: -5.5,58.5 + pos: 58.5,26.5 parent: 2 - uid: 8774 components: - type: Transform - pos: -6.5,58.5 + pos: 57.5,26.5 parent: 2 - uid: 8775 components: - type: Transform - pos: -7.5,58.5 + pos: 56.5,26.5 parent: 2 - uid: 8776 components: - type: Transform - pos: -8.5,58.5 + pos: 55.5,26.5 parent: 2 - uid: 8777 components: - type: Transform - pos: -9.5,58.5 + pos: 54.5,26.5 parent: 2 - uid: 8778 components: - type: Transform - pos: -10.5,58.5 + pos: 53.5,26.5 parent: 2 - uid: 8779 components: - type: Transform - pos: -10.5,59.5 + pos: 52.5,26.5 parent: 2 - uid: 8780 components: - type: Transform - pos: -10.5,60.5 + pos: 51.5,26.5 parent: 2 - uid: 8781 components: - type: Transform - pos: -10.5,61.5 + pos: 50.5,26.5 parent: 2 - uid: 8782 components: - type: Transform - pos: -10.5,62.5 + pos: 49.5,26.5 parent: 2 - uid: 8783 components: - type: Transform - pos: -71.5,-23.5 + pos: -11.5,26.5 parent: 2 - uid: 8784 components: - type: Transform - pos: -71.5,-24.5 + pos: -12.5,26.5 parent: 2 - uid: 8785 components: - type: Transform - pos: -71.5,-25.5 + pos: -13.5,26.5 parent: 2 - uid: 8786 components: - type: Transform - pos: -72.5,-25.5 + pos: -14.5,26.5 parent: 2 - uid: 8787 components: - type: Transform - pos: -72.5,-26.5 + pos: -15.5,26.5 parent: 2 - uid: 8788 components: - type: Transform - pos: -72.5,-27.5 + pos: -15.5,27.5 parent: 2 - uid: 8789 components: - type: Transform - pos: -72.5,-28.5 + pos: -15.5,28.5 parent: 2 - uid: 8790 components: - type: Transform - pos: -71.5,-28.5 + pos: -1.5,69.5 parent: 2 - uid: 8791 components: - type: Transform - pos: -70.5,-28.5 + pos: -1.5,68.5 parent: 2 - uid: 8792 components: - type: Transform - pos: -70.5,-29.5 + pos: -1.5,67.5 parent: 2 - uid: 8793 components: - type: Transform - pos: -72.5,-29.5 + pos: -1.5,66.5 parent: 2 - uid: 8794 components: - type: Transform - pos: -73.5,-28.5 + pos: -1.5,65.5 parent: 2 - uid: 8795 components: - type: Transform - pos: -74.5,-28.5 + pos: -1.5,64.5 parent: 2 - uid: 8796 components: - type: Transform - pos: -74.5,-29.5 + pos: -1.5,63.5 parent: 2 - uid: 8797 components: - type: Transform - pos: -74.5,-30.5 + pos: -1.5,62.5 parent: 2 - uid: 8798 components: - type: Transform - pos: -72.5,-30.5 + pos: -1.5,61.5 parent: 2 - uid: 8799 components: - type: Transform - pos: -70.5,-30.5 + pos: -1.5,60.5 parent: 2 - uid: 8800 components: - type: Transform - pos: -70.5,-31.5 + pos: -1.5,59.5 parent: 2 - uid: 8801 components: - type: Transform - pos: -72.5,-38.5 + pos: -1.5,58.5 parent: 2 - uid: 8802 components: - type: Transform - pos: -72.5,-32.5 + pos: -2.5,58.5 parent: 2 - uid: 8803 components: - type: Transform - pos: -74.5,-31.5 + pos: -3.5,58.5 parent: 2 - uid: 8804 components: - type: Transform - pos: -74.5,-32.5 + pos: -4.5,58.5 parent: 2 - uid: 8805 components: - type: Transform - pos: -72.5,-31.5 + pos: -5.5,58.5 parent: 2 - uid: 8806 components: - type: Transform - pos: -72.5,-33.5 + pos: -6.5,58.5 parent: 2 - uid: 8807 components: - type: Transform - pos: -69.5,-34.5 + pos: -7.5,58.5 parent: 2 - uid: 8808 components: - type: Transform - pos: -69.5,-35.5 + pos: -8.5,58.5 parent: 2 - uid: 8809 components: - type: Transform - pos: -76.5,-38.5 + pos: -9.5,58.5 parent: 2 - uid: 8810 components: - type: Transform - pos: -73.5,-38.5 + pos: -10.5,58.5 parent: 2 - uid: 8811 components: - type: Transform - pos: -79.5,-35.5 + pos: -10.5,59.5 parent: 2 - uid: 8812 components: - type: Transform - pos: 68.5,-46.5 + pos: -10.5,60.5 parent: 2 - uid: 8813 components: - type: Transform - pos: 67.5,-46.5 + pos: -10.5,61.5 parent: 2 - uid: 8814 components: - type: Transform - pos: 66.5,-46.5 + pos: -10.5,62.5 parent: 2 - uid: 8815 components: - type: Transform - pos: 65.5,-46.5 + pos: -71.5,-23.5 parent: 2 - uid: 8816 components: - type: Transform - pos: 64.5,-46.5 + pos: -71.5,-24.5 parent: 2 - uid: 8817 components: - type: Transform - pos: 64.5,-45.5 + pos: -71.5,-25.5 parent: 2 - uid: 8818 components: - type: Transform - pos: 64.5,-44.5 + pos: -72.5,-25.5 parent: 2 - uid: 8819 components: - type: Transform - pos: 63.5,-44.5 + pos: -72.5,-26.5 parent: 2 - uid: 8820 components: - type: Transform - pos: 62.5,-44.5 + pos: -72.5,-27.5 parent: 2 - uid: 8821 components: - type: Transform - pos: 61.5,-44.5 + pos: -72.5,-28.5 parent: 2 - uid: 8822 components: - type: Transform - pos: 60.5,-44.5 + pos: -71.5,-28.5 parent: 2 - uid: 8823 components: - type: Transform - pos: 59.5,-44.5 + pos: -70.5,-28.5 parent: 2 - uid: 8824 components: - type: Transform - pos: 58.5,-44.5 + pos: -70.5,-29.5 parent: 2 - uid: 8825 components: - type: Transform - pos: 57.5,-44.5 + pos: -72.5,-29.5 parent: 2 - uid: 8826 components: - type: Transform - pos: 56.5,-44.5 + pos: -73.5,-28.5 parent: 2 - uid: 8827 components: - type: Transform - pos: 55.5,-44.5 + pos: -74.5,-28.5 parent: 2 - uid: 8828 components: - type: Transform - pos: 54.5,-44.5 + pos: -74.5,-29.5 parent: 2 - uid: 8829 components: - type: Transform - pos: 53.5,-44.5 + pos: -74.5,-30.5 parent: 2 - uid: 8830 components: - type: Transform - pos: 52.5,-44.5 + pos: -72.5,-30.5 parent: 2 - uid: 8831 components: - type: Transform - pos: 51.5,-44.5 + pos: -70.5,-30.5 parent: 2 - uid: 8832 components: - type: Transform - pos: 50.5,-44.5 + pos: -70.5,-31.5 parent: 2 - uid: 8833 components: - type: Transform - pos: 69.5,-46.5 + pos: -72.5,-38.5 parent: 2 - uid: 8834 components: - type: Transform - pos: 72.5,-46.5 + pos: -72.5,-32.5 parent: 2 - uid: 8835 components: - type: Transform - pos: 73.5,-46.5 + pos: -74.5,-31.5 parent: 2 - uid: 8836 components: - type: Transform - pos: 74.5,-46.5 + pos: -74.5,-32.5 parent: 2 - uid: 8837 components: - type: Transform - pos: 75.5,-46.5 + pos: -72.5,-31.5 parent: 2 - uid: 8838 components: - type: Transform - pos: 75.5,-47.5 + pos: -72.5,-33.5 parent: 2 - uid: 8839 components: - type: Transform - pos: 75.5,-48.5 + pos: -69.5,-34.5 parent: 2 - uid: 8840 components: - type: Transform - pos: 75.5,-49.5 + pos: -69.5,-35.5 parent: 2 - uid: 8841 components: - type: Transform - pos: 75.5,-50.5 + pos: -76.5,-38.5 parent: 2 - uid: 8842 components: - type: Transform - pos: 75.5,-51.5 + pos: -73.5,-38.5 parent: 2 - uid: 8843 components: - type: Transform - pos: 75.5,-52.5 + pos: -79.5,-35.5 parent: 2 - uid: 8844 components: - type: Transform - pos: 75.5,-53.5 + pos: 68.5,-46.5 parent: 2 - uid: 8845 components: - type: Transform - pos: 75.5,-54.5 + pos: 67.5,-46.5 parent: 2 - uid: 8846 components: - type: Transform - pos: 75.5,-55.5 + pos: 66.5,-46.5 parent: 2 - uid: 8847 components: - type: Transform - pos: 75.5,-56.5 + pos: 65.5,-46.5 parent: 2 - uid: 8848 components: - type: Transform - pos: 74.5,-56.5 + pos: 64.5,-46.5 parent: 2 - uid: 8849 components: - type: Transform - pos: 74.5,-57.5 + pos: 64.5,-45.5 parent: 2 - uid: 8850 components: - type: Transform - pos: 73.5,-57.5 + pos: 64.5,-44.5 parent: 2 - uid: 8851 components: - type: Transform - pos: 72.5,-57.5 + pos: 63.5,-44.5 parent: 2 - uid: 8852 components: - type: Transform - pos: 71.5,-57.5 + pos: 62.5,-44.5 parent: 2 - uid: 8853 components: - type: Transform - pos: 71.5,-58.5 + pos: 61.5,-44.5 parent: 2 - uid: 8854 components: - type: Transform - pos: 71.5,-59.5 + pos: 60.5,-44.5 parent: 2 - uid: 8855 components: - type: Transform - pos: 71.5,-60.5 + pos: 59.5,-44.5 parent: 2 - uid: 8856 components: - type: Transform - pos: 71.5,-61.5 + pos: 58.5,-44.5 parent: 2 - uid: 8857 components: - type: Transform - pos: 70.5,-61.5 + pos: 57.5,-44.5 parent: 2 - uid: 8858 components: - type: Transform - pos: 69.5,-61.5 + pos: 56.5,-44.5 parent: 2 - uid: 8859 components: - type: Transform - pos: 68.5,-61.5 + pos: 55.5,-44.5 parent: 2 - uid: 8860 components: - type: Transform - pos: 68.5,-60.5 + pos: 54.5,-44.5 parent: 2 - uid: 8861 components: - type: Transform - pos: 68.5,-59.5 + pos: 53.5,-44.5 parent: 2 - uid: 8862 components: - type: Transform - pos: 69.5,-59.5 + pos: 52.5,-44.5 parent: 2 - uid: 8863 components: - type: Transform - pos: 12.5,-92.5 + pos: 51.5,-44.5 parent: 2 - uid: 8864 components: - type: Transform - pos: 12.5,-91.5 + pos: 50.5,-44.5 parent: 2 - uid: 8865 components: - type: Transform - pos: 12.5,-90.5 + pos: 69.5,-46.5 parent: 2 - uid: 8866 components: - type: Transform - pos: 12.5,-89.5 + pos: 72.5,-46.5 parent: 2 - uid: 8867 components: - type: Transform - pos: 11.5,-89.5 + pos: 73.5,-46.5 parent: 2 - uid: 8868 components: - type: Transform - pos: 10.5,-89.5 + pos: 74.5,-46.5 parent: 2 - uid: 8869 components: - type: Transform - pos: 9.5,-89.5 + pos: 75.5,-46.5 parent: 2 - uid: 8870 components: - type: Transform - pos: 8.5,-89.5 + pos: 75.5,-47.5 parent: 2 - uid: 8871 components: - type: Transform - pos: 7.5,-89.5 + pos: 75.5,-48.5 parent: 2 - uid: 8872 components: - type: Transform - pos: 6.5,-89.5 + pos: 75.5,-49.5 parent: 2 - uid: 8873 components: - type: Transform - pos: 5.5,-89.5 + pos: 75.5,-50.5 parent: 2 - uid: 8874 components: - type: Transform - pos: 4.5,-89.5 + pos: 75.5,-51.5 parent: 2 - uid: 8875 components: - type: Transform - pos: 3.5,-89.5 + pos: 75.5,-52.5 parent: 2 - uid: 8876 components: - type: Transform - pos: 16.5,-24.5 + pos: 75.5,-53.5 parent: 2 - uid: 8877 components: - type: Transform - pos: 17.5,-24.5 + pos: 75.5,-54.5 parent: 2 - uid: 8878 components: - type: Transform - pos: 18.5,-24.5 + pos: 75.5,-55.5 parent: 2 - uid: 8879 components: - type: Transform - pos: 19.5,-24.5 + pos: 75.5,-56.5 parent: 2 - uid: 8880 components: - type: Transform - pos: 20.5,-24.5 + pos: 74.5,-56.5 parent: 2 - uid: 8881 components: - type: Transform - pos: 21.5,-24.5 + pos: 74.5,-57.5 parent: 2 - uid: 8882 components: - type: Transform - pos: 21.5,-23.5 + pos: 73.5,-57.5 parent: 2 - uid: 8883 components: - type: Transform - pos: 21.5,-22.5 + pos: 72.5,-57.5 parent: 2 - uid: 8884 components: - type: Transform - pos: 21.5,-21.5 + pos: 71.5,-57.5 parent: 2 - uid: 8885 components: - type: Transform - pos: -30.5,-13.5 + pos: 71.5,-58.5 parent: 2 - uid: 8886 components: - type: Transform - pos: -29.5,-13.5 + pos: 71.5,-59.5 parent: 2 - uid: 8887 components: - type: Transform - pos: -28.5,-13.5 + pos: 71.5,-60.5 parent: 2 - uid: 8888 components: - type: Transform - pos: -27.5,-13.5 + pos: 71.5,-61.5 parent: 2 - uid: 8889 components: - type: Transform - pos: 4.5,-21.5 + pos: 70.5,-61.5 parent: 2 - uid: 8890 components: - type: Transform - pos: 4.5,-22.5 + pos: 69.5,-61.5 parent: 2 - uid: 8891 components: - type: Transform - pos: 4.5,-19.5 + pos: 68.5,-61.5 parent: 2 - uid: 8892 components: - type: Transform - pos: 4.5,-20.5 + pos: 68.5,-60.5 parent: 2 - uid: 8893 components: - type: Transform - pos: 10.5,-14.5 + pos: 68.5,-59.5 parent: 2 - uid: 8894 components: - type: Transform - pos: 11.5,-14.5 + pos: 69.5,-59.5 parent: 2 - uid: 8895 components: - type: Transform - pos: 12.5,-14.5 + pos: 12.5,-92.5 parent: 2 - uid: 8896 components: - type: Transform - pos: 12.5,-15.5 + pos: 12.5,-91.5 parent: 2 - uid: 8897 components: - type: Transform - pos: 12.5,-16.5 + pos: 12.5,-90.5 parent: 2 - uid: 8898 components: - type: Transform - pos: 11.5,-16.5 + pos: 12.5,-89.5 parent: 2 - uid: 8899 components: - type: Transform - pos: 10.5,-16.5 + pos: 11.5,-89.5 parent: 2 - uid: 8900 components: - type: Transform - pos: 9.5,-16.5 + pos: 10.5,-89.5 parent: 2 - uid: 8901 components: - type: Transform - pos: -76.5,-26.5 + pos: 9.5,-89.5 parent: 2 - uid: 8902 components: - type: Transform - pos: 4.5,-23.5 + pos: 8.5,-89.5 parent: 2 - uid: 8903 components: - type: Transform - pos: 31.5,-16.5 + pos: 7.5,-89.5 parent: 2 - uid: 8904 components: - type: Transform - pos: 31.5,-15.5 + pos: 6.5,-89.5 parent: 2 - uid: 8905 components: - type: Transform - pos: 33.5,-16.5 + pos: 5.5,-89.5 parent: 2 - uid: 8906 components: - type: Transform - pos: 33.5,-15.5 + pos: 4.5,-89.5 parent: 2 - uid: 8907 components: - type: Transform - pos: -65.5,-51.5 + pos: 3.5,-89.5 parent: 2 - uid: 8908 components: - type: Transform - pos: -65.5,-52.5 + pos: 16.5,-24.5 parent: 2 - uid: 8909 components: - type: Transform - pos: -65.5,-53.5 + pos: 17.5,-24.5 parent: 2 - uid: 8910 components: - type: Transform - pos: -65.5,-54.5 + pos: 18.5,-24.5 parent: 2 - uid: 8911 components: - type: Transform - pos: -71.5,-35.5 + pos: 19.5,-24.5 parent: 2 - uid: 8912 components: - type: Transform - pos: -69.5,-44.5 + pos: 20.5,-24.5 parent: 2 - uid: 8913 components: - type: Transform - pos: -69.5,-43.5 + pos: 21.5,-24.5 parent: 2 - uid: 8914 components: - type: Transform - pos: -69.5,-42.5 + pos: 21.5,-23.5 parent: 2 - uid: 8915 components: - type: Transform - pos: -69.5,-41.5 + pos: 21.5,-22.5 parent: 2 - uid: 8916 components: - type: Transform - pos: -69.5,-40.5 + pos: 21.5,-21.5 parent: 2 - uid: 8917 components: - type: Transform - pos: -70.5,-40.5 + pos: -30.5,-13.5 parent: 2 - uid: 8918 components: - type: Transform - pos: -71.5,-40.5 + pos: -29.5,-13.5 parent: 2 - uid: 8919 components: - type: Transform - pos: -71.5,-39.5 + pos: -28.5,-13.5 parent: 2 - uid: 8920 components: - type: Transform - pos: -71.5,-38.5 + pos: -27.5,-13.5 parent: 2 - uid: 8921 components: - type: Transform - pos: -78.5,-38.5 + pos: 4.5,-21.5 parent: 2 - uid: 8922 components: - type: Transform - pos: -77.5,-38.5 + pos: 4.5,-22.5 parent: 2 - uid: 8923 components: - type: Transform - pos: -69.5,-31.5 + pos: 4.5,-19.5 parent: 2 - uid: 8924 components: - type: Transform - pos: -72.5,-34.5 + pos: 4.5,-20.5 parent: 2 - uid: 8925 components: - type: Transform - pos: -72.5,-35.5 + pos: 10.5,-14.5 parent: 2 - uid: 8926 components: - type: Transform - pos: -79.5,-36.5 + pos: 11.5,-14.5 parent: 2 - uid: 8927 components: - type: Transform - pos: -79.5,-34.5 + pos: 12.5,-14.5 parent: 2 - uid: 8928 components: - type: Transform - pos: -79.5,-33.5 + pos: 12.5,-15.5 parent: 2 - uid: 8929 components: - type: Transform - pos: -79.5,-32.5 + pos: 12.5,-16.5 parent: 2 - uid: 8930 components: - type: Transform - pos: -79.5,-31.5 + pos: 11.5,-16.5 parent: 2 - uid: 8931 components: - type: Transform - pos: -79.5,-30.5 + pos: 10.5,-16.5 parent: 2 - uid: 8932 components: - type: Transform - pos: -79.5,-29.5 + pos: 9.5,-16.5 parent: 2 - uid: 8933 components: - type: Transform - pos: -79.5,-28.5 + pos: -76.5,-26.5 parent: 2 - uid: 8934 components: - type: Transform - pos: -78.5,-28.5 + pos: 4.5,-23.5 parent: 2 - uid: 8935 components: - type: Transform - pos: -77.5,-28.5 + pos: 31.5,-16.5 parent: 2 - uid: 8936 components: - type: Transform - pos: -76.5,-28.5 + pos: 31.5,-15.5 parent: 2 - uid: 8937 components: - type: Transform - pos: -75.5,-28.5 + pos: 33.5,-16.5 parent: 2 - uid: 8938 components: - type: Transform - pos: -73.5,-31.5 + pos: 33.5,-15.5 parent: 2 - uid: 8939 components: - type: Transform - pos: -71.5,-31.5 + pos: -65.5,-51.5 parent: 2 - uid: 8940 components: - type: Transform - pos: -67.5,-31.5 + pos: -65.5,-52.5 parent: 2 - uid: 8941 components: - type: Transform - pos: -66.5,-31.5 + pos: -65.5,-53.5 parent: 2 - uid: 8942 components: - type: Transform - pos: 18.5,-28.5 + pos: -65.5,-54.5 parent: 2 - uid: 8943 components: - type: Transform - pos: 18.5,-27.5 + pos: -71.5,-35.5 parent: 2 - uid: 8944 components: - type: Transform - pos: 5.5,-23.5 + pos: -69.5,-44.5 parent: 2 - uid: 8945 components: - type: Transform - pos: 7.5,-23.5 + pos: -69.5,-43.5 parent: 2 - uid: 8946 components: - type: Transform - pos: 6.5,-23.5 + pos: -69.5,-42.5 parent: 2 - uid: 8947 components: - type: Transform - pos: 8.5,-23.5 + pos: -69.5,-41.5 parent: 2 - uid: 8948 components: - type: Transform - pos: 9.5,-23.5 + pos: -69.5,-40.5 parent: 2 - uid: 8949 components: - type: Transform - pos: 10.5,-23.5 + pos: -70.5,-40.5 parent: 2 - uid: 8950 components: - type: Transform - pos: 11.5,-23.5 + pos: -71.5,-40.5 parent: 2 - uid: 8951 components: - type: Transform - pos: 12.5,-23.5 + pos: -71.5,-39.5 parent: 2 - uid: 8952 components: - type: Transform - pos: 12.5,-22.5 + pos: -71.5,-38.5 parent: 2 - uid: 8953 components: - type: Transform - pos: 12.5,-21.5 + pos: -78.5,-38.5 parent: 2 - uid: 8954 components: - type: Transform - pos: 13.5,-21.5 + pos: -77.5,-38.5 parent: 2 - uid: 8955 components: - type: Transform - pos: 14.5,-21.5 + pos: -69.5,-31.5 parent: 2 - uid: 8956 components: - type: Transform - pos: -71.5,-35.5 + pos: -72.5,-34.5 parent: 2 - uid: 8957 components: - type: Transform - pos: -56.5,-86.5 + pos: -72.5,-35.5 parent: 2 - uid: 8958 components: - type: Transform - pos: -56.5,-87.5 + pos: -79.5,-36.5 parent: 2 - uid: 8959 components: - type: Transform - pos: -3.5,-14.5 + pos: -79.5,-34.5 parent: 2 - uid: 8960 components: - type: Transform - pos: -2.5,-14.5 + pos: -79.5,-33.5 parent: 2 - uid: 8961 components: - type: Transform - pos: -1.5,-14.5 + pos: -79.5,-32.5 parent: 2 - uid: 8962 components: - type: Transform - pos: -0.5,-14.5 + pos: -79.5,-31.5 parent: 2 - uid: 8963 components: - type: Transform - pos: -70.5,-35.5 + pos: -79.5,-30.5 parent: 2 - uid: 8964 components: - type: Transform - pos: -72.5,-13.5 + pos: -79.5,-29.5 parent: 2 - uid: 8965 components: - type: Transform - pos: -72.5,-11.5 + pos: -79.5,-28.5 parent: 2 - uid: 8966 components: - type: Transform - pos: -60.5,-13.5 + pos: -78.5,-28.5 parent: 2 - uid: 8967 components: - type: Transform - pos: -72.5,-15.5 + pos: -77.5,-28.5 parent: 2 - uid: 8968 components: - type: Transform - pos: -60.5,-15.5 + pos: -76.5,-28.5 parent: 2 - uid: 8969 components: - type: Transform - pos: -60.5,-11.5 + pos: -75.5,-28.5 parent: 2 -- proto: CableHVStack - entities: - uid: 8970 components: - type: Transform - pos: -39.402794,-17.87967 + pos: -73.5,-31.5 parent: 2 - uid: 8971 components: - type: Transform - pos: 71.74222,36.65267 + pos: -71.5,-31.5 parent: 2 - uid: 8972 components: - type: Transform - pos: -0.5088408,-77.44958 - parent: 2 -- proto: CableMV - entities: - - uid: 950 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: 23.5,-37.5 + pos: -67.5,-31.5 parent: 2 - uid: 8973 components: - type: Transform - pos: -45.5,21.5 + pos: -66.5,-31.5 parent: 2 - uid: 8974 components: - type: Transform - pos: -7.5,-18.5 + pos: 18.5,-28.5 parent: 2 - uid: 8975 components: - type: Transform - pos: -7.5,-19.5 + pos: 18.5,-27.5 parent: 2 - uid: 8976 components: - type: Transform - pos: 6.5,-47.5 + pos: 5.5,-23.5 parent: 2 - uid: 8977 components: - type: Transform - pos: -57.5,-21.5 + pos: 7.5,-23.5 parent: 2 - uid: 8978 components: - type: Transform - pos: 25.5,-37.5 + pos: 6.5,-23.5 parent: 2 - uid: 8979 components: - type: Transform - pos: 18.5,-31.5 + pos: 8.5,-23.5 parent: 2 - uid: 8980 components: - type: Transform - pos: 1.5,-5.5 + pos: 9.5,-23.5 parent: 2 - uid: 8981 components: - type: Transform - pos: 18.5,-27.5 + pos: 10.5,-23.5 parent: 2 - uid: 8982 components: - type: Transform - pos: 18.5,-29.5 + pos: 11.5,-23.5 parent: 2 - uid: 8983 components: - type: Transform - pos: 18.5,-30.5 + pos: 12.5,-23.5 parent: 2 - uid: 8984 components: - type: Transform - pos: 3.5,-3.5 + pos: 12.5,-22.5 parent: 2 - uid: 8985 components: - type: Transform - pos: 20.5,-32.5 + pos: 12.5,-21.5 parent: 2 - uid: 8986 components: - type: Transform - pos: 9.5,-4.5 + pos: 13.5,-21.5 parent: 2 - uid: 8987 components: - type: Transform - pos: 10.5,-2.5 + pos: 14.5,-21.5 parent: 2 - uid: 8988 components: - type: Transform - pos: 18.5,-32.5 + pos: -71.5,-35.5 parent: 2 - uid: 8989 components: - type: Transform - pos: 19.5,-32.5 + pos: -56.5,-86.5 parent: 2 - uid: 8990 components: - type: Transform - pos: 10.5,-1.5 + pos: -56.5,-87.5 parent: 2 - uid: 8991 components: - type: Transform - pos: 8.5,-1.5 + pos: -3.5,-14.5 parent: 2 - uid: 8992 components: - type: Transform - pos: 22.5,-36.5 + pos: -2.5,-14.5 parent: 2 - uid: 8993 components: - type: Transform - pos: 22.5,-32.5 + pos: -1.5,-14.5 parent: 2 - uid: 8994 components: - type: Transform - pos: 22.5,-34.5 + pos: -0.5,-14.5 parent: 2 - uid: 8995 components: - type: Transform - pos: 9.5,-1.5 + pos: -70.5,-35.5 parent: 2 - uid: 8996 components: - type: Transform - pos: 22.5,-37.5 + pos: -72.5,-13.5 parent: 2 - uid: 8997 components: - type: Transform - pos: 22.5,-33.5 + pos: -72.5,-11.5 parent: 2 - uid: 8998 components: - type: Transform - pos: 22.5,-35.5 + pos: -60.5,-13.5 parent: 2 - uid: 8999 components: - type: Transform - pos: 21.5,-32.5 + pos: -72.5,-15.5 parent: 2 - uid: 9000 components: - type: Transform - pos: 7.5,-1.5 + pos: -60.5,-15.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: -60.5,-11.5 parent: 2 - uid: 9002 components: - type: Transform - pos: 6.5,-1.5 + pos: -0.5,-52.5 parent: 2 - uid: 9003 components: - type: Transform - pos: 5.5,-1.5 + pos: -0.5,-53.5 parent: 2 - uid: 9004 components: - type: Transform - pos: -72.5,-38.5 + pos: -1.5,-53.5 parent: 2 - uid: 9005 components: - type: Transform - pos: -10.5,15.5 + pos: -2.5,-53.5 parent: 2 - uid: 9006 components: - type: Transform - pos: -6.5,-70.5 + pos: -2.5,-54.5 parent: 2 - uid: 9007 components: - type: Transform - pos: 18.5,-52.5 + pos: -2.5,-55.5 parent: 2 - uid: 9008 components: - type: Transform - pos: 10.5,-55.5 + pos: -2.5,-56.5 parent: 2 - uid: 9009 components: - type: Transform - pos: 37.5,21.5 + pos: -3.5,-56.5 parent: 2 - uid: 9010 components: - type: Transform - pos: 3.5,-49.5 + pos: -4.5,-56.5 parent: 2 - uid: 9011 components: - type: Transform - pos: 32.5,0.5 + pos: -4.5,-57.5 parent: 2 - uid: 9012 components: - type: Transform - pos: 32.5,1.5 + pos: -4.5,-58.5 parent: 2 - uid: 9013 components: - type: Transform - pos: -2.5,-51.5 + pos: -4.5,-59.5 parent: 2 - uid: 9014 components: - type: Transform - pos: -2.5,-52.5 + pos: -4.5,-60.5 parent: 2 - uid: 9015 components: - type: Transform - pos: -2.5,-53.5 + pos: -4.5,-61.5 parent: 2 - uid: 9016 components: - type: Transform - pos: 40.5,-26.5 + pos: -4.5,-62.5 parent: 2 - uid: 9017 components: - type: Transform - pos: 31.5,2.5 + pos: -4.5,-63.5 parent: 2 - uid: 9018 components: - type: Transform - pos: -6.5,-71.5 + pos: -4.5,-64.5 parent: 2 - uid: 9019 components: - type: Transform - pos: -6.5,-69.5 + pos: -4.5,-65.5 parent: 2 - uid: 9020 components: - type: Transform - pos: 27.5,-28.5 + pos: -4.5,-66.5 parent: 2 - uid: 9021 components: - type: Transform - pos: 4.5,-49.5 + pos: -4.5,-67.5 parent: 2 - uid: 9022 components: - type: Transform - pos: 3.5,-52.5 + pos: -4.5,-68.5 parent: 2 - uid: 9023 components: - type: Transform - pos: -0.5,-53.5 + pos: 13.5,-45.5 parent: 2 - uid: 9024 components: - type: Transform - pos: 8.5,-43.5 + pos: 13.5,-46.5 parent: 2 - uid: 9025 components: - type: Transform - pos: -14.5,-69.5 + pos: 6.5,-41.5 parent: 2 - uid: 9026 components: - type: Transform - pos: 9.5,-43.5 + pos: 6.5,-40.5 parent: 2 - uid: 9027 components: - type: Transform - pos: 24.5,-28.5 + pos: 6.5,-39.5 parent: 2 - uid: 9028 components: - type: Transform - pos: 45.5,-64.5 + pos: 6.5,-38.5 parent: 2 - uid: 9029 components: - type: Transform - pos: 5.5,-45.5 + pos: -26.5,-52.5 parent: 2 - uid: 9030 components: - type: Transform - pos: 5.5,-44.5 + pos: -26.5,-51.5 parent: 2 - uid: 9031 components: - type: Transform - pos: 4.5,-43.5 + pos: -26.5,-53.5 parent: 2 - uid: 9032 components: - type: Transform - pos: 3.5,-43.5 + pos: -27.5,-53.5 parent: 2 - uid: 9033 components: - type: Transform - pos: 3.5,-42.5 + pos: -28.5,-53.5 parent: 2 - uid: 9034 components: - type: Transform - pos: 2.5,-42.5 + pos: -28.5,-54.5 parent: 2 - uid: 9035 components: - type: Transform - pos: 1.5,-42.5 + pos: -28.5,-55.5 parent: 2 - uid: 9036 components: - type: Transform - pos: 0.5,-42.5 + pos: -29.5,-55.5 parent: 2 - uid: 9037 components: - type: Transform - pos: 0.5,-41.5 + pos: -30.5,-55.5 parent: 2 - uid: 9038 components: - type: Transform - pos: 0.5,-40.5 + pos: -31.5,-55.5 parent: 2 - uid: 9039 components: - type: Transform - pos: 15.5,-58.5 + pos: 30.5,-42.5 parent: 2 - uid: 9040 components: - type: Transform - pos: 15.5,-57.5 + pos: 29.5,-42.5 parent: 2 +- proto: CableHVStack + entities: - uid: 9041 components: - type: Transform - pos: 14.5,-57.5 + pos: -39.402794,-17.87967 parent: 2 - uid: 9042 components: - type: Transform - pos: 12.5,-57.5 + pos: 71.74222,36.65267 parent: 2 - uid: 9043 components: - type: Transform - pos: 12.5,-56.5 + pos: -0.5088408,-77.44958 parent: 2 +- proto: CableMV + entities: - uid: 9044 components: - type: Transform - pos: 11.5,-55.5 + pos: -31.5,-54.5 parent: 2 - uid: 9045 components: - type: Transform - pos: 12.5,-55.5 + pos: 22.5,-11.5 parent: 2 - uid: 9046 components: - type: Transform - pos: 8.5,-55.5 + pos: 10.5,-52.5 parent: 2 - uid: 9047 components: - type: Transform - pos: 8.5,-54.5 + pos: 10.5,-49.5 parent: 2 - uid: 9048 components: - type: Transform - pos: 8.5,-53.5 + pos: 7.5,-58.5 parent: 2 - uid: 9049 components: - type: Transform - pos: 7.5,-53.5 + pos: -11.5,-59.5 parent: 2 - uid: 9050 components: - type: Transform - pos: 16.5,-52.5 + pos: 6.5,-50.5 parent: 2 - uid: 9051 components: - type: Transform - pos: 43.5,-26.5 + pos: -19.5,-62.5 parent: 2 - uid: 9052 components: - type: Transform - pos: 0.5,14.5 + pos: 6.5,-58.5 parent: 2 - uid: 9053 components: - type: Transform - pos: 37.5,13.5 + pos: 6.5,-57.5 parent: 2 - uid: 9054 components: - type: Transform - pos: 38.5,14.5 + pos: -45.5,21.5 parent: 2 - uid: 9055 components: - type: Transform - pos: -5.5,-69.5 + pos: -7.5,-18.5 parent: 2 - uid: 9056 components: - type: Transform - pos: 38.5,-28.5 + pos: -7.5,-19.5 parent: 2 - uid: 9057 components: - type: Transform - pos: 35.5,-29.5 + pos: -57.5,-21.5 parent: 2 - uid: 9058 components: - type: Transform - pos: 37.5,-30.5 + pos: 22.5,-39.5 parent: 2 - uid: 9059 components: - type: Transform - pos: -11.5,-70.5 + pos: 18.5,-31.5 parent: 2 - uid: 9060 components: - type: Transform - pos: 21.5,15.5 + pos: 1.5,-5.5 parent: 2 - uid: 9061 components: - type: Transform - pos: 5.5,-48.5 + pos: 18.5,-27.5 parent: 2 - uid: 9062 components: - type: Transform - pos: 29.5,-26.5 + pos: 18.5,-29.5 parent: 2 - uid: 9063 components: - type: Transform - pos: 0.5,11.5 + pos: 18.5,-30.5 parent: 2 - uid: 9064 components: - type: Transform - pos: 28.5,18.5 + pos: 3.5,-3.5 parent: 2 - uid: 9065 components: - type: Transform - pos: -11.5,-71.5 + pos: 20.5,-32.5 parent: 2 - uid: 9066 components: - type: Transform - pos: -7.5,-71.5 + pos: 9.5,-4.5 parent: 2 - uid: 9067 components: - type: Transform - pos: -3.5,-68.5 + pos: 10.5,-2.5 parent: 2 - uid: 9068 components: - type: Transform - pos: -1.5,-53.5 + pos: 18.5,-32.5 parent: 2 - uid: 9069 components: - type: Transform - pos: -19.5,25.5 + pos: 19.5,-32.5 parent: 2 - uid: 9070 components: - type: Transform - pos: 1.5,9.5 + pos: 10.5,-1.5 parent: 2 - uid: 9071 components: - type: Transform - pos: -11.5,-69.5 + pos: 8.5,-1.5 parent: 2 - uid: 9072 components: - type: Transform - pos: -8.5,-71.5 + pos: 22.5,-36.5 parent: 2 - uid: 9073 components: - type: Transform - pos: -10.5,-71.5 + pos: 22.5,-32.5 parent: 2 - uid: 9074 components: - type: Transform - pos: 21.5,-9.5 + pos: 22.5,-34.5 parent: 2 - uid: 9075 components: - type: Transform - pos: 29.5,18.5 + pos: 9.5,-1.5 parent: 2 - uid: 9076 components: - type: Transform - pos: 29.5,19.5 + pos: 22.5,-37.5 parent: 2 - uid: 9077 components: - type: Transform - pos: 21.5,17.5 + pos: 22.5,-33.5 parent: 2 - uid: 9078 components: - type: Transform - pos: 32.5,2.5 + pos: 22.5,-35.5 parent: 2 - uid: 9079 components: - type: Transform - pos: 32.5,-0.5 + pos: 21.5,-32.5 parent: 2 - uid: 9080 components: - type: Transform - pos: 32.5,-1.5 + pos: 7.5,-1.5 parent: 2 - uid: 9081 components: - type: Transform - pos: 5.5,-46.5 + pos: 22.5,-38.5 parent: 2 - uid: 9082 components: - type: Transform - pos: 3.5,-50.5 + pos: 6.5,-1.5 parent: 2 - uid: 9083 components: - type: Transform - pos: 13.5,-14.5 + pos: 5.5,-1.5 parent: 2 - uid: 9084 components: - type: Transform - pos: 5.5,-49.5 + pos: -72.5,-38.5 parent: 2 - uid: 9085 components: - type: Transform - pos: 9.5,-55.5 + pos: -10.5,15.5 parent: 2 - uid: 9086 components: - type: Transform - pos: -3.5,14.5 + pos: -6.5,-70.5 parent: 2 - uid: 9087 components: - type: Transform - pos: -2.5,14.5 + pos: 18.5,-52.5 parent: 2 - uid: 9088 components: - type: Transform - pos: -1.5,14.5 + pos: 10.5,-55.5 parent: 2 - uid: 9089 components: - type: Transform - pos: -0.5,14.5 + pos: 37.5,21.5 parent: 2 - uid: 9090 components: - type: Transform - pos: -5.5,14.5 + pos: 3.5,-49.5 parent: 2 - uid: 9091 components: - type: Transform - pos: -6.5,14.5 + pos: 32.5,0.5 parent: 2 - uid: 9092 components: - type: Transform - pos: 1.5,10.5 + pos: 32.5,1.5 parent: 2 - uid: 9093 components: - type: Transform - pos: 0.5,10.5 + pos: -2.5,-51.5 parent: 2 - uid: 9094 components: - type: Transform - pos: 18.5,-28.5 + pos: 40.5,-26.5 parent: 2 - uid: 9095 components: - type: Transform - pos: 21.5,16.5 + pos: 31.5,2.5 parent: 2 - uid: 9096 components: - type: Transform - pos: -19.5,24.5 + pos: -6.5,-71.5 parent: 2 - uid: 9097 components: - type: Transform - pos: 12.5,-15.5 + pos: -6.5,-69.5 parent: 2 - uid: 9098 components: - type: Transform - pos: 31.5,-4.5 + pos: 27.5,-28.5 parent: 2 - uid: 9099 components: - type: Transform - pos: 30.5,-4.5 + pos: 4.5,-49.5 parent: 2 - uid: 9100 components: - type: Transform - pos: 30.5,-3.5 + pos: 8.5,-43.5 parent: 2 - uid: 9101 components: - type: Transform - pos: 30.5,-2.5 + pos: 9.5,-43.5 parent: 2 - uid: 9102 components: - type: Transform - pos: -9.5,-21.5 + pos: 24.5,-28.5 parent: 2 - uid: 9103 components: - type: Transform - pos: -8.5,-19.5 + pos: 45.5,-64.5 parent: 2 - uid: 9104 components: - type: Transform - pos: -8.5,-20.5 + pos: 5.5,-46.5 parent: 2 - uid: 9105 components: - type: Transform - pos: -8.5,-21.5 + pos: 3.5,-41.5 parent: 2 - uid: 9106 components: - type: Transform - pos: -10.5,-21.5 + pos: 4.5,-41.5 parent: 2 - uid: 9107 components: - type: Transform - pos: -10.5,-20.5 + pos: 3.5,-42.5 parent: 2 - uid: 9108 components: - type: Transform - pos: 13.5,-46.5 + pos: 2.5,-42.5 parent: 2 - uid: 9109 components: - type: Transform - pos: 3.5,-51.5 + pos: 1.5,-42.5 parent: 2 - uid: 9110 components: - type: Transform - pos: 3.5,-53.5 + pos: 0.5,-42.5 parent: 2 - uid: 9111 components: - type: Transform - pos: 1.5,-53.5 + pos: 0.5,-41.5 parent: 2 - uid: 9112 components: - type: Transform - pos: 0.5,-53.5 + pos: 0.5,-40.5 parent: 2 - uid: 9113 components: - type: Transform - pos: 7.5,-43.5 + pos: 15.5,-58.5 parent: 2 - uid: 9114 components: - type: Transform - pos: -20.5,-69.5 + pos: 14.5,-59.5 parent: 2 - uid: 9115 components: - type: Transform - pos: -21.5,-68.5 + pos: 14.5,-57.5 parent: 2 - uid: 9116 components: - type: Transform - pos: -9.5,-71.5 + pos: 12.5,-57.5 parent: 2 - uid: 9117 components: - type: Transform - pos: -3.5,-69.5 + pos: 12.5,-56.5 parent: 2 - uid: 9118 components: - type: Transform - pos: 2.5,-53.5 + pos: 11.5,-55.5 parent: 2 - uid: 9119 components: - type: Transform - pos: 18.5,-11.5 + pos: 12.5,-55.5 parent: 2 - uid: 9120 components: - type: Transform - pos: 17.5,-11.5 + pos: 8.5,-55.5 parent: 2 - uid: 9121 components: - type: Transform - pos: 44.5,-64.5 + pos: 16.5,-52.5 parent: 2 - uid: 9122 components: - type: Transform - pos: 46.5,-65.5 + pos: 43.5,-26.5 parent: 2 - uid: 9123 components: - type: Transform - pos: 38.5,-30.5 + pos: 0.5,14.5 parent: 2 - uid: 9124 components: - type: Transform - pos: 36.5,-30.5 + pos: 37.5,13.5 parent: 2 - uid: 9125 components: - type: Transform - pos: 28.5,-28.5 + pos: 38.5,14.5 parent: 2 - uid: 9126 components: - type: Transform - pos: 35.5,-27.5 + pos: -5.5,-69.5 parent: 2 - uid: 9127 components: - type: Transform - pos: 35.5,-26.5 + pos: 38.5,-28.5 parent: 2 - uid: 9128 components: - type: Transform - pos: 36.5,-26.5 + pos: 35.5,-29.5 parent: 2 - uid: 9129 components: - type: Transform - pos: 37.5,-26.5 + pos: 37.5,-30.5 parent: 2 - uid: 9130 components: - type: Transform - pos: 38.5,-26.5 + pos: -11.5,-70.5 parent: 2 - uid: 9131 components: - type: Transform - pos: 39.5,-26.5 + pos: 21.5,15.5 parent: 2 - uid: 9132 components: - type: Transform - pos: 41.5,-26.5 + pos: 5.5,-48.5 parent: 2 - uid: 9133 components: - type: Transform - pos: 42.5,-26.5 + pos: 29.5,-26.5 parent: 2 - uid: 9134 components: - type: Transform - pos: 0.5,12.5 + pos: 0.5,11.5 parent: 2 - uid: 9135 components: - type: Transform - pos: 0.5,13.5 + pos: 28.5,18.5 parent: 2 - uid: 9136 components: - type: Transform - pos: 38.5,-29.5 + pos: -11.5,-71.5 parent: 2 - uid: 9137 components: - type: Transform - pos: 6.5,-19.5 + pos: -7.5,-71.5 parent: 2 - uid: 9138 components: - type: Transform - pos: 6.5,-11.5 + pos: 6.5,-51.5 parent: 2 - uid: 9139 components: - type: Transform - pos: 7.5,-11.5 + pos: -19.5,25.5 parent: 2 - uid: 9140 components: - type: Transform - pos: 8.5,-11.5 + pos: 1.5,9.5 parent: 2 - uid: 9141 components: - type: Transform - pos: 8.5,-10.5 + pos: -11.5,-69.5 parent: 2 - uid: 9142 components: - type: Transform - pos: 8.5,-9.5 + pos: -8.5,-71.5 parent: 2 - uid: 9143 components: - type: Transform - pos: 8.5,-7.5 + pos: -10.5,-71.5 parent: 2 - uid: 9144 components: - type: Transform - pos: 8.5,-5.5 + pos: 21.5,-9.5 parent: 2 - uid: 9145 components: - type: Transform - pos: 8.5,-4.5 + pos: 29.5,18.5 parent: 2 - uid: 9146 components: - type: Transform - pos: 8.5,-3.5 + pos: 29.5,19.5 parent: 2 - uid: 9147 components: - type: Transform - pos: -21.5,-69.5 + pos: 21.5,17.5 parent: 2 - uid: 9148 components: - type: Transform - pos: 10.5,-14.5 + pos: 32.5,2.5 parent: 2 - uid: 9149 components: - type: Transform - pos: -19.5,-69.5 + pos: 32.5,-0.5 parent: 2 - uid: 9150 components: - type: Transform - pos: 9.5,-14.5 + pos: 32.5,-1.5 parent: 2 - uid: 9151 components: - type: Transform - pos: 15.5,-14.5 + pos: 5.5,-41.5 parent: 2 - uid: 9152 components: - type: Transform - pos: 12.5,-14.5 + pos: 13.5,-14.5 parent: 2 - uid: 9153 components: - type: Transform - pos: -16.5,-69.5 + pos: 5.5,-49.5 parent: 2 - uid: 9154 components: - type: Transform - pos: 8.5,-6.5 + pos: 9.5,-55.5 parent: 2 - uid: 9155 components: - type: Transform - pos: 8.5,-8.5 + pos: -3.5,14.5 parent: 2 - uid: 9156 components: - type: Transform - pos: -4.5,14.5 + pos: -2.5,14.5 parent: 2 - uid: 9157 components: - type: Transform - pos: 10.5,-49.5 + pos: -1.5,14.5 parent: 2 - uid: 9158 components: - type: Transform - pos: 19.5,-51.5 + pos: -0.5,14.5 parent: 2 - uid: 9159 components: - type: Transform - pos: 17.5,-52.5 + pos: -5.5,14.5 parent: 2 - uid: 9160 components: - type: Transform - pos: 15.5,-52.5 + pos: -6.5,14.5 parent: 2 - uid: 9161 components: - type: Transform - pos: 14.5,-51.5 + pos: 1.5,10.5 parent: 2 - uid: 9162 components: - type: Transform - pos: 14.5,-50.5 + pos: 0.5,10.5 parent: 2 - uid: 9163 components: - type: Transform - pos: 14.5,-49.5 + pos: 18.5,-28.5 parent: 2 - uid: 9164 components: - type: Transform - pos: 13.5,-49.5 + pos: 21.5,16.5 parent: 2 - uid: 9165 components: - type: Transform - pos: 11.5,-49.5 + pos: -19.5,24.5 parent: 2 - uid: 9166 components: - type: Transform - pos: 16.5,-14.5 + pos: 12.5,-15.5 parent: 2 - uid: 9167 components: - type: Transform - pos: 17.5,-14.5 + pos: 31.5,-4.5 parent: 2 - uid: 9168 components: - type: Transform - pos: 17.5,-13.5 + pos: 30.5,-4.5 parent: 2 - uid: 9169 components: - type: Transform - pos: 17.5,-12.5 + pos: 30.5,-3.5 parent: 2 - uid: 9170 components: - type: Transform - pos: 19.5,-11.5 + pos: 30.5,-2.5 parent: 2 - uid: 9171 components: - type: Transform - pos: 21.5,-11.5 + pos: -9.5,-21.5 parent: 2 - uid: 9172 components: - type: Transform - pos: 5.5,-47.5 + pos: -8.5,-19.5 parent: 2 - uid: 9173 components: - type: Transform - pos: 19.5,-52.5 + pos: -8.5,-20.5 parent: 2 - uid: 9174 components: - type: Transform - pos: 32.5,-4.5 + pos: -8.5,-21.5 parent: 2 - uid: 9175 components: - type: Transform - pos: 6.5,-43.5 + pos: -10.5,-21.5 parent: 2 - uid: 9176 components: - type: Transform - pos: 14.5,-14.5 + pos: -10.5,-20.5 parent: 2 - uid: 9177 components: - type: Transform - pos: 6.5,-14.5 + pos: 14.5,-45.5 parent: 2 - uid: 9178 components: - type: Transform - pos: 7.5,-14.5 + pos: 7.5,-43.5 parent: 2 - uid: 9179 components: - type: Transform - pos: 8.5,-14.5 + pos: -20.5,-69.5 parent: 2 - uid: 9180 components: - type: Transform - pos: 8.5,-16.5 + pos: -21.5,-68.5 parent: 2 - uid: 9181 components: - type: Transform - pos: 21.5,-28.5 + pos: -9.5,-71.5 parent: 2 - uid: 9182 components: - type: Transform - pos: 21.5,-10.5 + pos: -3.5,-69.5 parent: 2 - uid: 9183 components: - type: Transform - pos: 12.5,-49.5 + pos: 20.5,-13.5 parent: 2 - uid: 9184 components: - type: Transform - pos: 13.5,-57.5 + pos: 20.5,-14.5 parent: 2 - uid: 9185 components: - type: Transform - pos: 14.5,-52.5 + pos: 44.5,-64.5 parent: 2 - uid: 9186 components: - type: Transform - pos: 32.5,-2.5 + pos: 46.5,-65.5 parent: 2 - uid: 9187 components: - type: Transform - pos: -4.5,-69.5 + pos: 38.5,-30.5 parent: 2 - uid: 9188 components: - type: Transform - pos: 5.5,-43.5 + pos: 36.5,-30.5 parent: 2 - uid: 9189 components: - type: Transform - pos: 38.5,16.5 + pos: 28.5,-28.5 parent: 2 - uid: 9190 components: - type: Transform - pos: 37.5,14.5 + pos: 35.5,-27.5 parent: 2 - uid: 9191 components: - type: Transform - pos: 27.5,18.5 + pos: 35.5,-26.5 parent: 2 - uid: 9192 components: - type: Transform - pos: 32.5,-3.5 + pos: 36.5,-26.5 parent: 2 - uid: 9193 components: - type: Transform - pos: -18.5,-69.5 + pos: 37.5,-26.5 parent: 2 - uid: 9194 components: - type: Transform - pos: -13.5,-69.5 + pos: 38.5,-26.5 parent: 2 - uid: 9195 components: - type: Transform - pos: 26.5,-28.5 + pos: 39.5,-26.5 parent: 2 - uid: 9196 components: - type: Transform - pos: 25.5,-28.5 + pos: 41.5,-26.5 parent: 2 - uid: 9197 components: - type: Transform - pos: 23.5,-28.5 + pos: 42.5,-26.5 parent: 2 - uid: 9198 components: - type: Transform - pos: 22.5,-28.5 + pos: 0.5,12.5 parent: 2 - uid: 9199 components: - type: Transform - pos: 20.5,-28.5 + pos: 0.5,13.5 parent: 2 - uid: 9200 components: - type: Transform - pos: 11.5,-14.5 + pos: 38.5,-29.5 parent: 2 - uid: 9201 components: - type: Transform - pos: 20.5,-11.5 + pos: 6.5,-19.5 parent: 2 - uid: 9202 components: - type: Transform - pos: -17.5,-69.5 + pos: 6.5,-11.5 parent: 2 - uid: 9203 components: - type: Transform - pos: 22.5,17.5 + pos: 7.5,-11.5 parent: 2 - uid: 9204 components: - type: Transform - pos: 23.5,17.5 + pos: 8.5,-11.5 parent: 2 - uid: 9205 components: - type: Transform - pos: 23.5,18.5 + pos: 8.5,-10.5 parent: 2 - uid: 9206 components: - type: Transform - pos: 24.5,18.5 + pos: 8.5,-9.5 parent: 2 - uid: 9207 components: - type: Transform - pos: 25.5,18.5 + pos: 8.5,-7.5 parent: 2 - uid: 9208 components: - type: Transform - pos: 26.5,18.5 + pos: 8.5,-5.5 parent: 2 - uid: 9209 components: - type: Transform - pos: 35.5,-28.5 + pos: 8.5,-4.5 parent: 2 - uid: 9210 components: - type: Transform - pos: 35.5,-30.5 + pos: 8.5,-3.5 parent: 2 - uid: 9211 components: - type: Transform - pos: -15.5,-69.5 + pos: -21.5,-69.5 parent: 2 - uid: 9212 components: - type: Transform - pos: -12.5,-69.5 + pos: 10.5,-14.5 parent: 2 - uid: 9213 components: - type: Transform - pos: 33.5,23.5 + pos: -19.5,-69.5 parent: 2 - uid: 9214 components: - type: Transform - pos: 29.5,20.5 + pos: 9.5,-14.5 parent: 2 - uid: 9215 components: - type: Transform - pos: 29.5,21.5 + pos: 15.5,-14.5 parent: 2 - uid: 9216 components: - type: Transform - pos: 28.5,21.5 + pos: 12.5,-14.5 parent: 2 - uid: 9217 components: - type: Transform - pos: 27.5,21.5 + pos: 8.5,-6.5 parent: 2 - uid: 9218 components: - type: Transform - pos: 26.5,21.5 + pos: 8.5,-8.5 parent: 2 - uid: 9219 components: - type: Transform - pos: 25.5,21.5 + pos: -4.5,14.5 parent: 2 - uid: 9220 components: - type: Transform - pos: 25.5,22.5 + pos: 12.5,-49.5 parent: 2 - uid: 9221 components: - type: Transform - pos: 25.5,23.5 + pos: 19.5,-51.5 parent: 2 - uid: 9222 components: - type: Transform - pos: 25.5,24.5 + pos: 17.5,-52.5 parent: 2 - uid: 9223 components: - type: Transform - pos: 24.5,24.5 + pos: 15.5,-52.5 parent: 2 - uid: 9224 components: - type: Transform - pos: 30.5,21.5 + pos: 14.5,-51.5 parent: 2 - uid: 9225 components: - type: Transform - pos: 31.5,21.5 + pos: 14.5,-50.5 parent: 2 - uid: 9226 components: - type: Transform - pos: 32.5,21.5 + pos: 14.5,-60.5 parent: 2 - uid: 9227 components: - type: Transform - pos: 32.5,22.5 + pos: 13.5,-49.5 parent: 2 - uid: 9228 components: - type: Transform - pos: 32.5,23.5 + pos: 17.5,-16.5 parent: 2 - uid: 9229 components: - type: Transform - pos: 33.5,24.5 + pos: 19.5,-16.5 parent: 2 - uid: 9230 components: - type: Transform - pos: 33.5,25.5 + pos: 20.5,-16.5 parent: 2 - uid: 9231 components: - type: Transform - pos: 46.5,-64.5 + pos: 20.5,-15.5 parent: 2 - uid: 9232 components: - type: Transform - pos: -13.5,42.5 + pos: 20.5,-12.5 parent: 2 - uid: 9233 components: - type: Transform - pos: -14.5,42.5 + pos: 21.5,-11.5 parent: 2 - uid: 9234 components: - type: Transform - pos: -19.5,23.5 + pos: 5.5,-47.5 parent: 2 - uid: 9235 components: - type: Transform - pos: -19.5,22.5 + pos: 19.5,-52.5 parent: 2 - uid: 9236 components: - type: Transform - pos: 32.5,-9.5 + pos: 32.5,-4.5 parent: 2 - uid: 9237 components: - type: Transform - pos: 63.5,7.5 + pos: 5.5,-43.5 parent: 2 - uid: 9238 components: - type: Transform - pos: 63.5,6.5 + pos: 14.5,-14.5 parent: 2 - uid: 9239 components: - type: Transform - pos: 63.5,5.5 + pos: 6.5,-14.5 parent: 2 - uid: 9240 components: - type: Transform - pos: 63.5,4.5 + pos: 7.5,-14.5 parent: 2 - uid: 9241 components: - type: Transform - pos: 62.5,4.5 + pos: 8.5,-14.5 parent: 2 - uid: 9242 components: - type: Transform - pos: 61.5,4.5 + pos: 8.5,-16.5 parent: 2 - uid: 9243 components: - type: Transform - pos: 60.5,4.5 + pos: 21.5,-28.5 parent: 2 - uid: 9244 components: - type: Transform - pos: 60.5,5.5 + pos: 21.5,-10.5 parent: 2 - uid: 9245 components: - type: Transform - pos: 60.5,6.5 + pos: 14.5,-49.5 parent: 2 - uid: 9246 components: - type: Transform - pos: 60.5,7.5 + pos: 13.5,-57.5 parent: 2 - uid: 9247 components: - type: Transform - pos: 60.5,8.5 + pos: 14.5,-52.5 parent: 2 - uid: 9248 components: - type: Transform - pos: 60.5,9.5 + pos: 32.5,-2.5 parent: 2 - uid: 9249 components: - type: Transform - pos: 59.5,9.5 + pos: -4.5,-69.5 parent: 2 - uid: 9250 components: - type: Transform - pos: 58.5,9.5 + pos: 6.5,-43.5 parent: 2 - uid: 9251 components: - type: Transform - pos: 58.5,10.5 + pos: 38.5,16.5 parent: 2 - uid: 9252 components: - type: Transform - pos: 58.5,11.5 + pos: 37.5,14.5 parent: 2 - uid: 9253 components: - type: Transform - pos: 38.5,15.5 + pos: 27.5,18.5 parent: 2 - uid: 9254 components: - type: Transform - pos: 22.5,-8.5 + pos: 32.5,-3.5 parent: 2 - uid: 9255 components: - type: Transform - pos: 23.5,-8.5 + pos: 26.5,-28.5 parent: 2 - uid: 9256 components: - type: Transform - pos: 24.5,-8.5 + pos: 25.5,-28.5 parent: 2 - uid: 9257 components: - type: Transform - pos: 25.5,-8.5 + pos: 23.5,-28.5 parent: 2 - uid: 9258 components: - type: Transform - pos: 26.5,-8.5 + pos: 22.5,-28.5 parent: 2 - uid: 9259 components: - type: Transform - pos: 27.5,-8.5 + pos: 20.5,-28.5 parent: 2 - uid: 9260 components: - type: Transform - pos: 29.5,-8.5 + pos: 11.5,-14.5 parent: 2 - uid: 9261 components: - type: Transform - pos: 28.5,-8.5 + pos: 20.5,-11.5 parent: 2 - uid: 9262 components: - type: Transform - pos: 30.5,-8.5 + pos: 22.5,17.5 parent: 2 - uid: 9263 components: - type: Transform - pos: 31.5,-8.5 + pos: 23.5,17.5 parent: 2 - uid: 9264 components: - type: Transform - pos: 32.5,-8.5 + pos: 23.5,18.5 parent: 2 - uid: 9265 components: - type: Transform - pos: 47.5,-3.5 + pos: 24.5,18.5 parent: 2 - uid: 9266 components: - type: Transform - pos: 47.5,-2.5 + pos: 25.5,18.5 parent: 2 - uid: 9267 components: - type: Transform - pos: 47.5,-1.5 + pos: 26.5,18.5 parent: 2 - uid: 9268 components: - type: Transform - pos: 46.5,-1.5 + pos: 35.5,-28.5 parent: 2 - uid: 9269 components: - type: Transform - pos: 46.5,-0.5 + pos: 35.5,-30.5 parent: 2 - uid: 9270 components: - type: Transform - pos: 46.5,0.5 + pos: -12.5,-69.5 parent: 2 - uid: 9271 components: - type: Transform - pos: 47.5,0.5 + pos: 33.5,23.5 parent: 2 - uid: 9272 components: - type: Transform - pos: 48.5,0.5 + pos: 29.5,20.5 parent: 2 - uid: 9273 components: - type: Transform - pos: 49.5,0.5 + pos: 29.5,21.5 parent: 2 - uid: 9274 components: - type: Transform - pos: 49.5,1.5 + pos: 28.5,21.5 parent: 2 - uid: 9275 components: - type: Transform - pos: 49.5,2.5 + pos: 27.5,21.5 parent: 2 - uid: 9276 components: - type: Transform - pos: 49.5,3.5 + pos: 26.5,21.5 parent: 2 - uid: 9277 components: - type: Transform - pos: 48.5,-5.5 + pos: 25.5,21.5 parent: 2 - uid: 9278 components: - type: Transform - pos: 47.5,-5.5 + pos: 25.5,22.5 parent: 2 - uid: 9279 components: - type: Transform - pos: 47.5,-6.5 + pos: 25.5,23.5 parent: 2 - uid: 9280 components: - type: Transform - pos: 47.5,-7.5 + pos: 25.5,24.5 parent: 2 - uid: 9281 components: - type: Transform - pos: 47.5,-8.5 + pos: 24.5,24.5 parent: 2 - uid: 9282 components: - type: Transform - pos: 48.5,-8.5 + pos: 30.5,21.5 parent: 2 - uid: 9283 components: - type: Transform - pos: 49.5,-8.5 + pos: 31.5,21.5 parent: 2 - uid: 9284 components: - type: Transform - pos: 50.5,-8.5 + pos: 32.5,21.5 parent: 2 - uid: 9285 components: - type: Transform - pos: 51.5,-8.5 + pos: 32.5,22.5 parent: 2 - uid: 9286 components: - type: Transform - pos: 52.5,-8.5 + pos: 32.5,23.5 parent: 2 - uid: 9287 components: - type: Transform - pos: 52.5,-7.5 + pos: 33.5,24.5 parent: 2 - uid: 9288 components: - type: Transform - pos: 52.5,-6.5 + pos: 33.5,25.5 parent: 2 - uid: 9289 components: - type: Transform - pos: 53.5,-6.5 + pos: 46.5,-64.5 parent: 2 - uid: 9290 components: - type: Transform - pos: 53.5,-5.5 + pos: -13.5,42.5 parent: 2 - uid: 9291 components: - type: Transform - pos: 54.5,-5.5 + pos: -14.5,42.5 parent: 2 - uid: 9292 components: - type: Transform - pos: 55.5,-5.5 + pos: -19.5,23.5 parent: 2 - uid: 9293 components: - type: Transform - pos: 56.5,-5.5 + pos: -19.5,22.5 parent: 2 - uid: 9294 components: - type: Transform - pos: 57.5,-5.5 + pos: 32.5,-9.5 parent: 2 - uid: 9295 components: - type: Transform - pos: 58.5,-5.5 + pos: 63.5,7.5 parent: 2 - uid: 9296 components: - type: Transform - pos: 59.5,-5.5 + pos: 63.5,6.5 parent: 2 - uid: 9297 components: - type: Transform - pos: 59.5,-4.5 + pos: 63.5,5.5 parent: 2 - uid: 9298 components: - type: Transform - pos: 43.5,-64.5 + pos: 63.5,4.5 parent: 2 - uid: 9299 components: - type: Transform - pos: 38.5,-46.5 + pos: 62.5,4.5 parent: 2 - uid: 9300 components: - type: Transform - pos: 38.5,-45.5 + pos: 61.5,4.5 parent: 2 - uid: 9301 components: - type: Transform - pos: 38.5,-44.5 + pos: 60.5,4.5 parent: 2 - uid: 9302 components: - type: Transform - pos: 38.5,-43.5 + pos: 60.5,5.5 parent: 2 - uid: 9303 components: - type: Transform - pos: 39.5,-43.5 + pos: 60.5,6.5 parent: 2 - uid: 9304 components: - type: Transform - pos: 40.5,-43.5 + pos: 60.5,7.5 parent: 2 - uid: 9305 components: - type: Transform - pos: 41.5,-43.5 + pos: 60.5,8.5 parent: 2 - uid: 9306 components: - type: Transform - pos: 42.5,-43.5 + pos: 60.5,9.5 parent: 2 - uid: 9307 components: - type: Transform - pos: 43.5,-43.5 + pos: 59.5,9.5 parent: 2 - uid: 9308 components: - type: Transform - pos: 44.5,-43.5 + pos: 58.5,9.5 parent: 2 - uid: 9309 components: - type: Transform - pos: 45.5,-43.5 + pos: 58.5,10.5 parent: 2 - uid: 9310 components: - type: Transform - pos: 46.5,-43.5 + pos: 58.5,11.5 parent: 2 - uid: 9311 components: - type: Transform - pos: 47.5,-43.5 + pos: 38.5,15.5 parent: 2 - uid: 9312 components: - type: Transform - pos: 48.5,-43.5 + pos: 25.5,-11.5 parent: 2 - uid: 9313 components: - type: Transform - pos: 49.5,-43.5 + pos: 24.5,-11.5 parent: 2 - uid: 9314 components: - type: Transform - pos: 49.5,-44.5 + pos: 25.5,-9.5 parent: 2 - uid: 9315 components: - type: Transform - pos: 49.5,-45.5 + pos: 25.5,-8.5 parent: 2 - uid: 9316 components: - type: Transform - pos: 50.5,-45.5 + pos: 26.5,-8.5 parent: 2 - uid: 9317 components: - type: Transform - pos: 51.5,-45.5 + pos: 27.5,-8.5 parent: 2 - uid: 9318 components: - type: Transform - pos: 52.5,-45.5 + pos: 29.5,-8.5 parent: 2 - uid: 9319 components: - type: Transform - pos: 53.5,-45.5 + pos: 28.5,-8.5 parent: 2 - uid: 9320 components: - type: Transform - pos: 54.5,-45.5 + pos: 30.5,-8.5 parent: 2 - uid: 9321 components: - type: Transform - pos: 55.5,-45.5 + pos: 31.5,-8.5 parent: 2 - uid: 9322 components: - type: Transform - pos: 55.5,-44.5 + pos: 32.5,-8.5 parent: 2 - uid: 9323 components: - type: Transform - pos: 55.5,-43.5 + pos: 47.5,-3.5 parent: 2 - uid: 9324 components: - type: Transform - pos: 68.5,-59.5 + pos: 47.5,-2.5 parent: 2 - uid: 9325 components: - type: Transform - pos: 69.5,-59.5 + pos: 47.5,-1.5 parent: 2 - uid: 9326 components: - type: Transform - pos: 40.5,-62.5 + pos: 46.5,-1.5 parent: 2 - uid: 9327 components: - type: Transform - pos: 40.5,-60.5 + pos: 46.5,-0.5 parent: 2 - uid: 9328 components: - type: Transform - pos: 42.5,-64.5 + pos: 46.5,0.5 parent: 2 - uid: 9329 components: - type: Transform - pos: -16.5,-0.5 + pos: 47.5,0.5 parent: 2 - uid: 9330 components: - type: Transform - pos: -17.5,-0.5 + pos: 48.5,0.5 parent: 2 - uid: 9331 components: - type: Transform - pos: -18.5,-0.5 + pos: 49.5,0.5 parent: 2 - uid: 9332 components: - type: Transform - pos: -19.5,-0.5 + pos: 49.5,1.5 parent: 2 - uid: 9333 components: - type: Transform - pos: -20.5,-0.5 + pos: 49.5,2.5 parent: 2 - uid: 9334 components: - type: Transform - pos: -20.5,0.5 + pos: 49.5,3.5 parent: 2 - uid: 9335 components: - type: Transform - pos: -29.5,-8.5 + pos: 48.5,-5.5 parent: 2 - uid: 9336 components: - type: Transform - pos: -28.5,-23.5 + pos: 47.5,-5.5 parent: 2 - uid: 9337 components: - type: Transform - pos: -28.5,-22.5 + pos: 47.5,-6.5 parent: 2 - uid: 9338 components: - type: Transform - pos: -28.5,-21.5 + pos: 47.5,-7.5 parent: 2 - uid: 9339 components: - type: Transform - pos: -29.5,-21.5 + pos: 47.5,-8.5 parent: 2 - uid: 9340 components: - type: Transform - pos: -30.5,-21.5 + pos: 48.5,-8.5 parent: 2 - uid: 9341 components: - type: Transform - pos: -31.5,-21.5 + pos: 49.5,-8.5 parent: 2 - uid: 9342 components: - type: Transform - pos: -31.5,-20.5 + pos: 50.5,-8.5 parent: 2 - uid: 9343 components: - type: Transform - pos: -31.5,-19.5 + pos: 51.5,-8.5 parent: 2 - uid: 9344 components: - type: Transform - pos: -31.5,-18.5 + pos: 52.5,-8.5 parent: 2 - uid: 9345 components: - type: Transform - pos: -31.5,-17.5 + pos: 52.5,-7.5 parent: 2 - uid: 9346 components: - type: Transform - pos: -31.5,-16.5 + pos: 52.5,-6.5 parent: 2 - uid: 9347 components: - type: Transform - pos: -31.5,-15.5 + pos: 53.5,-6.5 parent: 2 - uid: 9348 components: - type: Transform - pos: -31.5,-14.5 + pos: 53.5,-5.5 parent: 2 - uid: 9349 components: - type: Transform - pos: -31.5,-13.5 + pos: 54.5,-5.5 parent: 2 - uid: 9350 components: - type: Transform - pos: -31.5,-12.5 + pos: 55.5,-5.5 parent: 2 - uid: 9351 components: - type: Transform - pos: -31.5,-11.5 + pos: 56.5,-5.5 parent: 2 - uid: 9352 components: - type: Transform - pos: -31.5,-10.5 + pos: 57.5,-5.5 parent: 2 - uid: 9353 components: - type: Transform - pos: -30.5,-10.5 + pos: 58.5,-5.5 parent: 2 - uid: 9354 components: - type: Transform - pos: -29.5,-10.5 + pos: 59.5,-5.5 parent: 2 - uid: 9355 components: - type: Transform - pos: -29.5,-9.5 + pos: 59.5,-4.5 parent: 2 - uid: 9356 components: - type: Transform - pos: 43.5,-58.5 + pos: 43.5,-64.5 parent: 2 - uid: 9357 components: - type: Transform - pos: 43.5,-59.5 + pos: 38.5,-46.5 parent: 2 - uid: 9358 components: - type: Transform - pos: 42.5,-59.5 + pos: 38.5,-45.5 parent: 2 - uid: 9359 components: - type: Transform - pos: 41.5,-59.5 + pos: 38.5,-44.5 parent: 2 - uid: 9360 components: - type: Transform - pos: 40.5,-59.5 + pos: 38.5,-43.5 parent: 2 - uid: 9361 components: - type: Transform - pos: 39.5,-59.5 + pos: 39.5,-43.5 parent: 2 - uid: 9362 components: - type: Transform - pos: 38.5,-59.5 + pos: 40.5,-43.5 parent: 2 - uid: 9363 components: - type: Transform - pos: 37.5,-59.5 + pos: 41.5,-43.5 parent: 2 - uid: 9364 components: - type: Transform - pos: 37.5,-58.5 + pos: 42.5,-43.5 parent: 2 - uid: 9365 components: - type: Transform - pos: 37.5,-57.5 + pos: 43.5,-43.5 parent: 2 - uid: 9366 components: - type: Transform - pos: 56.5,-45.5 + pos: 44.5,-43.5 parent: 2 - uid: 9367 components: - type: Transform - pos: 57.5,-45.5 + pos: 45.5,-43.5 parent: 2 - uid: 9368 components: - type: Transform - pos: 58.5,-45.5 + pos: 46.5,-43.5 parent: 2 - uid: 9369 components: - type: Transform - pos: 59.5,-45.5 + pos: 47.5,-43.5 parent: 2 - uid: 9370 components: - type: Transform - pos: 60.5,-45.5 + pos: 48.5,-43.5 parent: 2 - uid: 9371 components: - type: Transform - pos: 61.5,-45.5 + pos: 49.5,-43.5 parent: 2 - uid: 9372 components: - type: Transform - pos: 61.5,-46.5 + pos: 49.5,-44.5 parent: 2 - uid: 9373 components: - type: Transform - pos: 61.5,-47.5 + pos: 49.5,-45.5 parent: 2 - uid: 9374 components: - type: Transform - pos: 61.5,-48.5 + pos: 50.5,-45.5 parent: 2 - uid: 9375 components: - type: Transform - pos: 61.5,-49.5 + pos: 51.5,-45.5 parent: 2 - uid: 9376 components: - type: Transform - pos: 61.5,-50.5 + pos: 52.5,-45.5 parent: 2 - uid: 9377 components: - type: Transform - pos: 61.5,-51.5 + pos: 53.5,-45.5 parent: 2 - uid: 9378 components: - type: Transform - pos: 60.5,-51.5 + pos: 54.5,-45.5 parent: 2 - uid: 9379 components: - type: Transform - pos: 59.5,-51.5 + pos: 55.5,-45.5 parent: 2 - uid: 9380 components: - type: Transform - pos: 58.5,-51.5 + pos: 55.5,-44.5 parent: 2 - uid: 9381 components: - type: Transform - pos: 58.5,-52.5 + pos: 55.5,-43.5 parent: 2 - uid: 9382 components: - type: Transform - pos: 58.5,-53.5 + pos: 68.5,-59.5 parent: 2 - uid: 9383 components: - type: Transform - pos: 59.5,-53.5 + pos: 69.5,-59.5 parent: 2 - uid: 9384 components: - type: Transform - pos: 59.5,-54.5 + pos: 40.5,-62.5 parent: 2 - uid: 9385 components: - type: Transform - pos: 59.5,-55.5 + pos: 40.5,-60.5 parent: 2 - uid: 9386 components: - type: Transform - pos: 60.5,-55.5 + pos: 42.5,-64.5 parent: 2 - uid: 9387 components: - type: Transform - pos: 60.5,-56.5 + pos: -16.5,-0.5 parent: 2 - uid: 9388 components: - type: Transform - pos: 61.5,-56.5 + pos: -17.5,-0.5 parent: 2 - uid: 9389 components: - type: Transform - pos: 62.5,-56.5 + pos: -18.5,-0.5 parent: 2 - uid: 9390 components: - type: Transform - pos: 63.5,-56.5 + pos: -19.5,-0.5 parent: 2 - uid: 9391 components: - type: Transform - pos: 64.5,-56.5 + pos: -20.5,-0.5 parent: 2 - uid: 9392 components: - type: Transform - pos: 64.5,-55.5 + pos: -20.5,0.5 parent: 2 - uid: 9393 components: - type: Transform - pos: 65.5,-55.5 + pos: -29.5,-8.5 parent: 2 - uid: 9394 components: - type: Transform - pos: 65.5,-54.5 + pos: -28.5,-23.5 parent: 2 - uid: 9395 components: - type: Transform - pos: 65.5,-53.5 + pos: -28.5,-22.5 parent: 2 - uid: 9396 components: - type: Transform - pos: 66.5,-53.5 + pos: -28.5,-21.5 parent: 2 - uid: 9397 components: - type: Transform - pos: 66.5,-52.5 + pos: -29.5,-21.5 parent: 2 - uid: 9398 components: - type: Transform - pos: 66.5,-51.5 + pos: -30.5,-21.5 parent: 2 - uid: 9399 components: - type: Transform - pos: 66.5,-50.5 + pos: -31.5,-21.5 parent: 2 - uid: 9400 components: - type: Transform - pos: 65.5,-50.5 + pos: -31.5,-20.5 parent: 2 - uid: 9401 components: - type: Transform - pos: 47.5,-65.5 + pos: -31.5,-19.5 parent: 2 - uid: 9402 components: - type: Transform - pos: -59.5,-20.5 + pos: -31.5,-18.5 parent: 2 - uid: 9403 components: - type: Transform - pos: -57.5,-20.5 + pos: -31.5,-17.5 parent: 2 - uid: 9404 components: - type: Transform - pos: -56.5,-21.5 + pos: -31.5,-16.5 parent: 2 - uid: 9405 components: - type: Transform - pos: -60.5,-20.5 + pos: -31.5,-15.5 parent: 2 - uid: 9406 components: - type: Transform - pos: -61.5,-20.5 + pos: -31.5,-14.5 parent: 2 - uid: 9407 components: - type: Transform - pos: -62.5,-20.5 + pos: -31.5,-13.5 parent: 2 - uid: 9408 components: - type: Transform - pos: -63.5,-20.5 + pos: -31.5,-12.5 parent: 2 - uid: 9409 components: - type: Transform - pos: -64.5,-20.5 + pos: -31.5,-11.5 parent: 2 - uid: 9410 components: - type: Transform - pos: -65.5,-20.5 + pos: -31.5,-10.5 parent: 2 - uid: 9411 components: - type: Transform - pos: -66.5,-20.5 + pos: -30.5,-10.5 parent: 2 - uid: 9412 components: - type: Transform - pos: -67.5,-20.5 + pos: -29.5,-10.5 parent: 2 - uid: 9413 components: - type: Transform - pos: -68.5,-20.5 + pos: -29.5,-9.5 parent: 2 - uid: 9414 components: - type: Transform - pos: -69.5,-20.5 + pos: 43.5,-58.5 parent: 2 - uid: 9415 components: - type: Transform - pos: -70.5,-20.5 + pos: 43.5,-59.5 parent: 2 - uid: 9416 components: - type: Transform - pos: -71.5,-20.5 + pos: 42.5,-59.5 parent: 2 - uid: 9417 components: - type: Transform - pos: -72.5,-20.5 + pos: 41.5,-59.5 parent: 2 - uid: 9418 components: - type: Transform - pos: -73.5,-20.5 + pos: 40.5,-59.5 parent: 2 - uid: 9419 components: - type: Transform - pos: -73.5,-19.5 + pos: 39.5,-59.5 parent: 2 - uid: 9420 components: - type: Transform - pos: -73.5,-18.5 + pos: 38.5,-59.5 parent: 2 - uid: 9421 components: - type: Transform - pos: -73.5,-17.5 + pos: 37.5,-59.5 parent: 2 - uid: 9422 components: - type: Transform - pos: -73.5,-16.5 + pos: 37.5,-58.5 parent: 2 - uid: 9423 components: - type: Transform - pos: -73.5,-15.5 + pos: 37.5,-57.5 parent: 2 - uid: 9424 components: - type: Transform - pos: -73.5,-14.5 + pos: 56.5,-45.5 parent: 2 - uid: 9425 components: - type: Transform - pos: -73.5,-13.5 + pos: 57.5,-45.5 parent: 2 - uid: 9426 components: - type: Transform - pos: -73.5,-12.5 + pos: 58.5,-45.5 parent: 2 - uid: 9427 components: - type: Transform - pos: -73.5,-11.5 + pos: 59.5,-45.5 parent: 2 - uid: 9428 components: - type: Transform - pos: -73.5,-10.5 + pos: 60.5,-45.5 parent: 2 - uid: 9429 components: - type: Transform - pos: -73.5,-9.5 + pos: 61.5,-45.5 parent: 2 - uid: 9430 components: - type: Transform - pos: -73.5,-8.5 + pos: 61.5,-46.5 parent: 2 - uid: 9431 components: - type: Transform - pos: -73.5,-7.5 + pos: 61.5,-47.5 parent: 2 - uid: 9432 components: - type: Transform - pos: -73.5,-6.5 + pos: 61.5,-48.5 parent: 2 - uid: 9433 components: - type: Transform - pos: -72.5,-6.5 + pos: 61.5,-49.5 parent: 2 - uid: 9434 components: - type: Transform - pos: -71.5,-6.5 + pos: 61.5,-50.5 parent: 2 - uid: 9435 components: - type: Transform - pos: -70.5,-6.5 + pos: 61.5,-51.5 parent: 2 - uid: 9436 components: - type: Transform - pos: -69.5,-6.5 + pos: 60.5,-51.5 parent: 2 - uid: 9437 components: - type: Transform - pos: -68.5,-6.5 + pos: 59.5,-51.5 parent: 2 - uid: 9438 components: - type: Transform - pos: -67.5,-6.5 + pos: 58.5,-51.5 parent: 2 - uid: 9439 components: - type: Transform - pos: -66.5,-6.5 + pos: 58.5,-52.5 parent: 2 - uid: 9440 components: - type: Transform - pos: -65.5,-6.5 + pos: 58.5,-53.5 parent: 2 - uid: 9441 components: - type: Transform - pos: -64.5,-6.5 + pos: 59.5,-53.5 parent: 2 - uid: 9442 components: - type: Transform - pos: -63.5,-6.5 + pos: 59.5,-54.5 parent: 2 - uid: 9443 components: - type: Transform - pos: -62.5,-6.5 + pos: 59.5,-55.5 parent: 2 - uid: 9444 components: - type: Transform - pos: -61.5,-6.5 + pos: 60.5,-55.5 parent: 2 - uid: 9445 components: - type: Transform - pos: -60.5,-6.5 + pos: 60.5,-56.5 parent: 2 - uid: 9446 components: - type: Transform - pos: -59.5,-6.5 + pos: 61.5,-56.5 parent: 2 - uid: 9447 components: - type: Transform - pos: -59.5,-7.5 + pos: 62.5,-56.5 parent: 2 - uid: 9448 components: - type: Transform - pos: -59.5,-8.5 + pos: 63.5,-56.5 parent: 2 - uid: 9449 components: - type: Transform - pos: -59.5,-9.5 + pos: 64.5,-56.5 parent: 2 - uid: 9450 components: - type: Transform - pos: -59.5,-10.5 + pos: 64.5,-55.5 parent: 2 - uid: 9451 components: - type: Transform - pos: -59.5,-11.5 + pos: 65.5,-55.5 parent: 2 - uid: 9452 components: - type: Transform - pos: -59.5,-12.5 + pos: 65.5,-54.5 parent: 2 - uid: 9453 components: - type: Transform - pos: -59.5,-13.5 + pos: 65.5,-53.5 parent: 2 - uid: 9454 components: - type: Transform - pos: -59.5,-14.5 + pos: 66.5,-53.5 parent: 2 - uid: 9455 components: - type: Transform - pos: -59.5,-15.5 + pos: 66.5,-52.5 parent: 2 - uid: 9456 components: - type: Transform - pos: -59.5,-16.5 + pos: 66.5,-51.5 parent: 2 - uid: 9457 components: - type: Transform - pos: -59.5,-17.5 + pos: 66.5,-50.5 parent: 2 - uid: 9458 components: - type: Transform - pos: -59.5,-18.5 + pos: 65.5,-50.5 parent: 2 - uid: 9459 components: - type: Transform - pos: -59.5,-19.5 + pos: 47.5,-65.5 parent: 2 - uid: 9460 components: - type: Transform - pos: -50.5,-8.5 + pos: -59.5,-20.5 parent: 2 - uid: 9461 components: - type: Transform - pos: -51.5,-8.5 + pos: -57.5,-20.5 parent: 2 - uid: 9462 components: - type: Transform - pos: -52.5,-8.5 + pos: -56.5,-21.5 parent: 2 - uid: 9463 components: - type: Transform - pos: -53.5,-8.5 + pos: -60.5,-20.5 parent: 2 - uid: 9464 components: - type: Transform - pos: -53.5,-9.5 + pos: -61.5,-20.5 parent: 2 - uid: 9465 components: - type: Transform - pos: -53.5,-10.5 + pos: -62.5,-20.5 parent: 2 - uid: 9466 components: - type: Transform - pos: -53.5,-11.5 + pos: -63.5,-20.5 parent: 2 - uid: 9467 components: - type: Transform - pos: -53.5,-12.5 + pos: -64.5,-20.5 parent: 2 - uid: 9468 components: - type: Transform - pos: -53.5,-13.5 + pos: -65.5,-20.5 parent: 2 - uid: 9469 components: - type: Transform - pos: -53.5,-14.5 + pos: -66.5,-20.5 parent: 2 - uid: 9470 components: - type: Transform - pos: -53.5,-15.5 + pos: -67.5,-20.5 parent: 2 - uid: 9471 components: - type: Transform - pos: -53.5,-16.5 + pos: -68.5,-20.5 parent: 2 - uid: 9472 components: - type: Transform - pos: -51.5,-16.5 + pos: -69.5,-20.5 parent: 2 - uid: 9473 components: - type: Transform - pos: -52.5,-16.5 + pos: -70.5,-20.5 parent: 2 - uid: 9474 components: - type: Transform - pos: -50.5,-16.5 + pos: -71.5,-20.5 parent: 2 - uid: 9475 components: - type: Transform - pos: -50.5,-15.5 + pos: -72.5,-20.5 parent: 2 - uid: 9476 components: - type: Transform - pos: -27.5,-37.5 + pos: -73.5,-20.5 parent: 2 - uid: 9477 components: - type: Transform - pos: -27.5,-36.5 + pos: -73.5,-19.5 parent: 2 - uid: 9478 components: - type: Transform - pos: -27.5,-35.5 + pos: -73.5,-18.5 parent: 2 - uid: 9479 components: - type: Transform - pos: -27.5,-34.5 + pos: -73.5,-17.5 parent: 2 - uid: 9480 components: - type: Transform - pos: -28.5,-34.5 + pos: -73.5,-16.5 parent: 2 - uid: 9481 components: - type: Transform - pos: -29.5,-34.5 + pos: -73.5,-15.5 parent: 2 - uid: 9482 components: - type: Transform - pos: -30.5,-34.5 + pos: -73.5,-14.5 parent: 2 - uid: 9483 components: - type: Transform - pos: -31.5,-34.5 + pos: -73.5,-13.5 parent: 2 - uid: 9484 components: - type: Transform - pos: -32.5,-34.5 + pos: -73.5,-12.5 parent: 2 - uid: 9485 components: - type: Transform - pos: -33.5,-34.5 + pos: -73.5,-11.5 parent: 2 - uid: 9486 components: - type: Transform - pos: -34.5,-34.5 + pos: -73.5,-10.5 parent: 2 - uid: 9487 components: - type: Transform - pos: -35.5,-34.5 + pos: -73.5,-9.5 parent: 2 - uid: 9488 components: - type: Transform - pos: -35.5,-33.5 + pos: -73.5,-8.5 parent: 2 - uid: 9489 components: - type: Transform - pos: -35.5,-32.5 + pos: -73.5,-7.5 parent: 2 - uid: 9490 components: - type: Transform - pos: -35.5,-31.5 + pos: -73.5,-6.5 parent: 2 - uid: 9491 components: - type: Transform - pos: -54.5,-13.5 + pos: -72.5,-6.5 parent: 2 - uid: 9492 components: - type: Transform - pos: -31.5,-54.5 + pos: -71.5,-6.5 parent: 2 - uid: 9493 components: - type: Transform - pos: -31.5,-55.5 + pos: -70.5,-6.5 parent: 2 - uid: 9494 components: - type: Transform - pos: -30.5,-55.5 + pos: -69.5,-6.5 parent: 2 - uid: 9495 components: - type: Transform - pos: -29.5,-55.5 + pos: -68.5,-6.5 parent: 2 - uid: 9496 components: - type: Transform - pos: -28.5,-55.5 + pos: -67.5,-6.5 parent: 2 - uid: 9497 components: - type: Transform - pos: -28.5,-56.5 + pos: -66.5,-6.5 parent: 2 - uid: 9498 components: - type: Transform - pos: -28.5,-57.5 + pos: -65.5,-6.5 parent: 2 - uid: 9499 components: - type: Transform - pos: -28.5,-58.5 + pos: -64.5,-6.5 parent: 2 - uid: 9500 components: - type: Transform - pos: -28.5,-59.5 + pos: -63.5,-6.5 parent: 2 - uid: 9501 components: - type: Transform - pos: -28.5,-60.5 + pos: -62.5,-6.5 parent: 2 - uid: 9502 components: - type: Transform - pos: -28.5,-61.5 + pos: -61.5,-6.5 parent: 2 - uid: 9503 components: - type: Transform - pos: -28.5,-62.5 + pos: -60.5,-6.5 parent: 2 - uid: 9504 components: - type: Transform - pos: -28.5,-63.5 + pos: -59.5,-6.5 parent: 2 - uid: 9505 components: - type: Transform - pos: -29.5,-63.5 + pos: -59.5,-7.5 parent: 2 - uid: 9506 components: - type: Transform - pos: -29.5,-64.5 + pos: -59.5,-8.5 parent: 2 - uid: 9507 components: - type: Transform - pos: -30.5,-63.5 + pos: -59.5,-9.5 parent: 2 - uid: 9508 components: - type: Transform - pos: 21.5,-8.5 + pos: -59.5,-10.5 parent: 2 - uid: 9509 components: - type: Transform - pos: 29.5,-28.5 + pos: -59.5,-11.5 parent: 2 - uid: 9510 components: - type: Transform - pos: -56.5,-86.5 + pos: -59.5,-12.5 parent: 2 - uid: 9511 components: - type: Transform - pos: -56.5,-85.5 + pos: -59.5,-13.5 parent: 2 - uid: 9512 components: - type: Transform - pos: -8.5,35.5 + pos: -59.5,-14.5 parent: 2 - uid: 9513 components: - type: Transform - pos: -8.5,33.5 + pos: -59.5,-15.5 parent: 2 - uid: 9514 components: - type: Transform - pos: -8.5,34.5 + pos: -59.5,-16.5 parent: 2 - uid: 9515 components: - type: Transform - pos: -8.5,31.5 + pos: -59.5,-17.5 parent: 2 - uid: 9516 components: - type: Transform - pos: -8.5,32.5 + pos: -59.5,-18.5 parent: 2 - uid: 9517 components: - type: Transform - pos: -7.5,32.5 + pos: -59.5,-19.5 parent: 2 - uid: 9518 components: - type: Transform - pos: -6.5,32.5 + pos: -50.5,-8.5 parent: 2 - uid: 9519 components: - type: Transform - pos: -5.5,32.5 + pos: -51.5,-8.5 parent: 2 - uid: 9520 components: - type: Transform - pos: -4.5,32.5 + pos: -52.5,-8.5 parent: 2 - uid: 9521 components: - type: Transform - pos: -3.5,32.5 + pos: -53.5,-8.5 parent: 2 - uid: 9522 components: - type: Transform - pos: -2.5,32.5 + pos: -53.5,-9.5 parent: 2 - uid: 9523 components: - type: Transform - pos: -1.5,32.5 + pos: -53.5,-10.5 parent: 2 - uid: 9524 components: - type: Transform - pos: -0.5,32.5 + pos: -53.5,-11.5 parent: 2 - uid: 9525 components: - type: Transform - pos: 0.5,32.5 + pos: -53.5,-12.5 parent: 2 - uid: 9526 components: - type: Transform - pos: 0.5,33.5 + pos: -53.5,-13.5 parent: 2 - uid: 9527 components: - type: Transform - pos: 0.5,34.5 + pos: -53.5,-14.5 parent: 2 - uid: 9528 components: - type: Transform - pos: 0.5,35.5 + pos: -53.5,-15.5 parent: 2 - uid: 9529 components: - type: Transform - pos: -23.5,15.5 + pos: -53.5,-16.5 parent: 2 - uid: 9530 components: - type: Transform - pos: -22.5,15.5 + pos: -51.5,-16.5 parent: 2 - uid: 9531 components: - type: Transform - pos: -21.5,15.5 + pos: -52.5,-16.5 parent: 2 - uid: 9532 components: - type: Transform - pos: -20.5,15.5 + pos: -50.5,-16.5 parent: 2 - uid: 9533 components: - type: Transform - pos: -19.5,15.5 + pos: -50.5,-15.5 parent: 2 - uid: 9534 components: - type: Transform - pos: -19.5,16.5 + pos: -27.5,-37.5 parent: 2 - uid: 9535 components: - type: Transform - pos: -19.5,17.5 + pos: -27.5,-36.5 parent: 2 - uid: 9536 components: - type: Transform - pos: -19.5,18.5 + pos: -27.5,-35.5 parent: 2 - uid: 9537 components: - type: Transform - pos: -19.5,19.5 + pos: -27.5,-34.5 parent: 2 - uid: 9538 components: - type: Transform - pos: -19.5,20.5 + pos: -28.5,-34.5 parent: 2 - uid: 9539 components: - type: Transform - pos: -19.5,21.5 + pos: -29.5,-34.5 parent: 2 - uid: 9540 components: - type: Transform - pos: -20.5,21.5 + pos: -30.5,-34.5 parent: 2 - uid: 9541 components: - type: Transform - pos: -21.5,21.5 + pos: -31.5,-34.5 parent: 2 - uid: 9542 components: - type: Transform - pos: -22.5,21.5 + pos: -32.5,-34.5 parent: 2 - uid: 9543 components: - type: Transform - pos: -23.5,21.5 + pos: -33.5,-34.5 parent: 2 - uid: 9544 components: - type: Transform - pos: -23.5,22.5 + pos: -34.5,-34.5 parent: 2 - uid: 9545 components: - type: Transform - pos: -23.5,23.5 + pos: -35.5,-34.5 parent: 2 - uid: 9546 components: - type: Transform - pos: -23.5,24.5 + pos: -35.5,-33.5 parent: 2 - uid: 9547 components: - type: Transform - pos: -23.5,25.5 + pos: -35.5,-32.5 parent: 2 - uid: 9548 components: - type: Transform - pos: -23.5,26.5 + pos: -35.5,-31.5 parent: 2 - uid: 9549 components: - type: Transform - pos: -9.5,26.5 + pos: -54.5,-13.5 parent: 2 - uid: 9550 components: - type: Transform - pos: -34.5,-3.5 + pos: -31.5,-54.5 parent: 2 - uid: 9551 components: - type: Transform - pos: -34.5,-2.5 + pos: -30.5,-54.5 parent: 2 - uid: 9552 components: - type: Transform - pos: -35.5,-2.5 + pos: -30.5,-55.5 parent: 2 - uid: 9553 components: - type: Transform - pos: -36.5,-2.5 + pos: -29.5,-55.5 parent: 2 - uid: 9554 components: - type: Transform - pos: -37.5,-2.5 + pos: -28.5,-55.5 parent: 2 - uid: 9555 components: - type: Transform - pos: -37.5,-1.5 + pos: -28.5,-56.5 parent: 2 - uid: 9556 components: - type: Transform - pos: -37.5,-0.5 + pos: -28.5,-57.5 parent: 2 - uid: 9557 components: - type: Transform - pos: -37.5,0.5 + pos: -28.5,-58.5 parent: 2 - uid: 9558 components: - type: Transform - pos: -38.5,0.5 + pos: -28.5,-59.5 parent: 2 - uid: 9559 components: - type: Transform - pos: -39.5,0.5 + pos: -28.5,-60.5 parent: 2 - uid: 9560 components: - type: Transform - pos: -40.5,0.5 + pos: -28.5,-61.5 parent: 2 - uid: 9561 components: - type: Transform - pos: -41.5,0.5 + pos: -28.5,-62.5 parent: 2 - uid: 9562 components: - type: Transform - pos: -42.5,0.5 + pos: -28.5,-63.5 parent: 2 - uid: 9563 components: - type: Transform - pos: -42.5,1.5 + pos: -29.5,-63.5 parent: 2 - uid: 9564 components: - type: Transform - pos: -42.5,2.5 + pos: -30.5,-63.5 parent: 2 - uid: 9565 components: - type: Transform - pos: -9.5,25.5 + pos: 25.5,-10.5 parent: 2 - uid: 9566 components: - type: Transform - pos: -6.5,15.5 + pos: 29.5,-28.5 parent: 2 - uid: 9567 components: - type: Transform - pos: -10.5,16.5 + pos: -56.5,-86.5 parent: 2 - uid: 9568 components: - type: Transform - pos: -10.5,18.5 + pos: -56.5,-85.5 parent: 2 - uid: 9569 components: - type: Transform - pos: -11.5,18.5 + pos: -8.5,35.5 parent: 2 - uid: 9570 components: - type: Transform - pos: -12.5,18.5 + pos: -8.5,33.5 parent: 2 - uid: 9571 components: - type: Transform - pos: -12.5,19.5 + pos: -8.5,34.5 parent: 2 - uid: 9572 components: - type: Transform - pos: -12.5,20.5 + pos: -8.5,31.5 parent: 2 - uid: 9573 components: - type: Transform - pos: -12.5,21.5 + pos: -8.5,32.5 parent: 2 - uid: 9574 components: - type: Transform - pos: -12.5,22.5 + pos: -7.5,32.5 parent: 2 - uid: 9575 components: - type: Transform - pos: -12.5,23.5 + pos: -6.5,32.5 parent: 2 - uid: 9576 components: - type: Transform - pos: -12.5,24.5 + pos: -5.5,32.5 parent: 2 - uid: 9577 components: - type: Transform - pos: -11.5,24.5 + pos: -4.5,32.5 parent: 2 - uid: 9578 components: - type: Transform - pos: -10.5,24.5 + pos: -3.5,32.5 parent: 2 - uid: 9579 components: - type: Transform - pos: -9.5,24.5 + pos: -2.5,32.5 parent: 2 - uid: 9580 components: - type: Transform - pos: -8.5,26.5 + pos: -1.5,32.5 parent: 2 - uid: 9581 components: - type: Transform - pos: -8.5,27.5 + pos: -0.5,32.5 parent: 2 - uid: 9582 components: - type: Transform - pos: -8.5,28.5 + pos: 0.5,32.5 parent: 2 - uid: 9583 components: - type: Transform - pos: -8.5,29.5 + pos: 0.5,33.5 parent: 2 - uid: 9584 components: - type: Transform - pos: -8.5,30.5 + pos: 0.5,34.5 parent: 2 - uid: 9585 components: - type: Transform - pos: -55.5,-13.5 + pos: 0.5,35.5 parent: 2 - uid: 9586 components: - type: Transform - pos: 33.5,26.5 + pos: -23.5,15.5 parent: 2 - uid: 9587 components: - type: Transform - pos: 33.5,27.5 + pos: -22.5,15.5 parent: 2 - uid: 9588 components: - type: Transform - pos: 33.5,28.5 + pos: -21.5,15.5 parent: 2 - uid: 9589 components: - type: Transform - pos: 34.5,28.5 + pos: -20.5,15.5 parent: 2 - uid: 9590 components: - type: Transform - pos: 35.5,28.5 + pos: -19.5,15.5 parent: 2 - uid: 9591 components: - type: Transform - pos: 36.5,28.5 + pos: -19.5,16.5 parent: 2 - uid: 9592 components: - type: Transform - pos: 36.5,29.5 + pos: -19.5,17.5 parent: 2 - uid: 9593 components: - type: Transform - pos: 36.5,30.5 + pos: -19.5,18.5 parent: 2 - uid: 9594 components: - type: Transform - pos: 36.5,31.5 + pos: -19.5,19.5 parent: 2 - uid: 9595 components: - type: Transform - pos: 36.5,32.5 + pos: -19.5,20.5 parent: 2 - uid: 9596 components: - type: Transform - pos: 35.5,32.5 + pos: -19.5,21.5 parent: 2 - uid: 9597 components: - type: Transform - pos: 34.5,32.5 + pos: -20.5,21.5 parent: 2 - uid: 9598 components: - type: Transform - pos: 36.5,33.5 + pos: -21.5,21.5 parent: 2 - uid: 9599 components: - type: Transform - pos: 34.5,33.5 + pos: -22.5,21.5 parent: 2 - uid: 9600 components: - type: Transform - pos: 34.5,34.5 + pos: -23.5,21.5 parent: 2 - uid: 9601 components: - type: Transform - pos: 33.5,34.5 + pos: -23.5,22.5 parent: 2 - uid: 9602 components: - type: Transform - pos: 32.5,34.5 + pos: -23.5,23.5 parent: 2 - uid: 9603 components: - type: Transform - pos: 32.5,35.5 + pos: -23.5,24.5 parent: 2 - uid: 9604 components: - type: Transform - pos: 32.5,36.5 + pos: -23.5,25.5 parent: 2 - uid: 9605 components: - type: Transform - pos: 32.5,37.5 + pos: -23.5,26.5 parent: 2 - uid: 9606 components: - type: Transform - pos: 33.5,37.5 + pos: -9.5,26.5 parent: 2 - uid: 9607 components: - type: Transform - pos: 31.5,37.5 + pos: -34.5,-3.5 parent: 2 - uid: 9608 components: - type: Transform - pos: 30.5,37.5 + pos: -34.5,-2.5 parent: 2 - uid: 9609 components: - type: Transform - pos: 29.5,37.5 + pos: -35.5,-2.5 parent: 2 - uid: 9610 components: - type: Transform - pos: 28.5,37.5 + pos: -36.5,-2.5 parent: 2 - uid: 9611 components: - type: Transform - pos: 27.5,37.5 + pos: -37.5,-2.5 parent: 2 - uid: 9612 components: - type: Transform - pos: 26.5,37.5 + pos: -37.5,-1.5 parent: 2 - uid: 9613 components: - type: Transform - pos: 25.5,37.5 + pos: -37.5,-0.5 parent: 2 - uid: 9614 components: - type: Transform - pos: 24.5,37.5 + pos: -37.5,0.5 parent: 2 - uid: 9615 components: - type: Transform - pos: 23.5,37.5 + pos: -38.5,0.5 parent: 2 - uid: 9616 components: - type: Transform - pos: 22.5,37.5 + pos: -39.5,0.5 parent: 2 - uid: 9617 components: - type: Transform - pos: 21.5,37.5 + pos: -40.5,0.5 parent: 2 - uid: 9618 components: - type: Transform - pos: 26.5,36.5 + pos: -41.5,0.5 parent: 2 - uid: 9619 components: - type: Transform - pos: 26.5,35.5 + pos: -42.5,0.5 parent: 2 - uid: 9620 components: - type: Transform - pos: 26.5,34.5 + pos: -42.5,1.5 parent: 2 - uid: 9621 components: - type: Transform - pos: 25.5,34.5 + pos: -42.5,2.5 parent: 2 - uid: 9622 components: - type: Transform - pos: 24.5,34.5 + pos: -9.5,25.5 parent: 2 - uid: 9623 components: - type: Transform - pos: 23.5,34.5 + pos: -6.5,15.5 parent: 2 - uid: 9624 components: - type: Transform - pos: 22.5,34.5 + pos: -10.5,16.5 parent: 2 - uid: 9625 components: - type: Transform - pos: 22.5,33.5 + pos: -10.5,18.5 parent: 2 - uid: 9626 components: - type: Transform - pos: 22.5,32.5 + pos: -11.5,18.5 parent: 2 - uid: 9627 components: - type: Transform - pos: 22.5,31.5 + pos: -12.5,18.5 parent: 2 - uid: 9628 components: - type: Transform - pos: 22.5,30.5 + pos: -12.5,19.5 parent: 2 - uid: 9629 components: - type: Transform - pos: 22.5,29.5 + pos: -12.5,20.5 parent: 2 - uid: 9630 components: - type: Transform - pos: 22.5,28.5 + pos: -12.5,21.5 parent: 2 - uid: 9631 components: - type: Transform - pos: 22.5,27.5 + pos: -12.5,22.5 parent: 2 - uid: 9632 components: - type: Transform - pos: 22.5,26.5 + pos: -12.5,23.5 parent: 2 - uid: 9633 components: - type: Transform - pos: 34.5,37.5 + pos: -12.5,24.5 parent: 2 - uid: 9634 components: - type: Transform - pos: 35.5,37.5 + pos: -11.5,24.5 parent: 2 - uid: 9635 components: - type: Transform - pos: 36.5,37.5 + pos: -10.5,24.5 parent: 2 - uid: 9636 components: - type: Transform - pos: 36.5,36.5 + pos: -9.5,24.5 parent: 2 - uid: 9637 components: - type: Transform - pos: 49.5,-46.5 + pos: -8.5,26.5 parent: 2 - uid: 9638 components: - type: Transform - pos: 49.5,-47.5 + pos: -8.5,27.5 parent: 2 - uid: 9639 components: - type: Transform - pos: 49.5,-48.5 + pos: -8.5,28.5 parent: 2 - uid: 9640 components: - type: Transform - pos: 48.5,-48.5 + pos: -8.5,29.5 parent: 2 - uid: 9641 components: - type: Transform - pos: -31.5,-63.5 + pos: -8.5,30.5 parent: 2 - uid: 9642 components: - type: Transform - pos: -32.5,-63.5 + pos: -55.5,-13.5 parent: 2 - uid: 9643 components: - type: Transform - pos: -33.5,-63.5 + pos: 33.5,26.5 parent: 2 - uid: 9644 components: - type: Transform - pos: -34.5,-63.5 + pos: 33.5,27.5 parent: 2 - uid: 9645 components: - type: Transform - pos: -34.5,-64.5 + pos: 33.5,28.5 parent: 2 - uid: 9646 components: - type: Transform - pos: -34.5,-65.5 + pos: 34.5,28.5 parent: 2 - uid: 9647 components: - type: Transform - pos: -35.5,-65.5 + pos: 35.5,28.5 parent: 2 - uid: 9648 components: - type: Transform - pos: -36.5,-65.5 + pos: 36.5,28.5 parent: 2 - uid: 9649 components: - type: Transform - pos: -37.5,-65.5 + pos: 36.5,29.5 parent: 2 - uid: 9650 components: - type: Transform - pos: -37.5,-66.5 + pos: 36.5,30.5 parent: 2 - uid: 9651 components: - type: Transform - pos: -37.5,-67.5 + pos: 36.5,31.5 parent: 2 - uid: 9652 components: - type: Transform - pos: -37.5,-68.5 + pos: 36.5,32.5 parent: 2 - uid: 9653 components: - type: Transform - pos: -38.5,-68.5 + pos: 35.5,32.5 parent: 2 - uid: 9654 components: - type: Transform - pos: -39.5,-68.5 + pos: 34.5,32.5 parent: 2 - uid: 9655 components: - type: Transform - pos: -39.5,-69.5 + pos: 36.5,33.5 parent: 2 - uid: 9656 components: - type: Transform - pos: -10.5,-58.5 + pos: 34.5,33.5 parent: 2 - uid: 9657 components: - type: Transform - pos: -9.5,-58.5 + pos: 34.5,34.5 parent: 2 - uid: 9658 components: - type: Transform - pos: -8.5,-58.5 + pos: 33.5,34.5 parent: 2 - uid: 9659 components: - type: Transform - pos: -8.5,-57.5 + pos: 32.5,34.5 parent: 2 - uid: 9660 components: - type: Transform - pos: -8.5,-56.5 + pos: 32.5,35.5 parent: 2 - uid: 9661 components: - type: Transform - pos: -7.5,-56.5 + pos: 32.5,36.5 parent: 2 - uid: 9662 components: - type: Transform - pos: -6.5,-56.5 + pos: 32.5,37.5 parent: 2 - uid: 9663 components: - type: Transform - pos: -5.5,-56.5 + pos: 33.5,37.5 parent: 2 - uid: 9664 components: - type: Transform - pos: -4.5,-56.5 + pos: 31.5,37.5 parent: 2 - uid: 9665 components: - type: Transform - pos: -3.5,-56.5 + pos: 30.5,37.5 parent: 2 - uid: 9666 components: - type: Transform - pos: -2.5,-56.5 + pos: 29.5,37.5 parent: 2 - uid: 9667 components: - type: Transform - pos: -1.5,-56.5 + pos: 28.5,37.5 parent: 2 - uid: 9668 components: - type: Transform - pos: -0.5,-56.5 + pos: 27.5,37.5 parent: 2 - uid: 9669 components: - type: Transform - pos: 0.5,-56.5 + pos: 26.5,37.5 parent: 2 - uid: 9670 components: - type: Transform - pos: 1.5,-56.5 + pos: 25.5,37.5 parent: 2 - uid: 9671 components: - type: Transform - pos: 2.5,-56.5 + pos: 24.5,37.5 parent: 2 - uid: 9672 components: - type: Transform - pos: 3.5,-56.5 + pos: 23.5,37.5 parent: 2 - uid: 9673 components: - type: Transform - pos: 4.5,-56.5 + pos: 22.5,37.5 parent: 2 - uid: 9674 components: - type: Transform - pos: 5.5,-56.5 + pos: 21.5,37.5 parent: 2 - uid: 9675 components: - type: Transform - pos: 6.5,-56.5 + pos: 26.5,36.5 parent: 2 - uid: 9676 components: - type: Transform - pos: 6.5,-55.5 + pos: 26.5,35.5 parent: 2 - uid: 9677 components: - type: Transform - pos: 6.5,-54.5 + pos: 26.5,34.5 parent: 2 - uid: 9678 components: - type: Transform - pos: 6.5,-53.5 + pos: 25.5,34.5 parent: 2 - uid: 9679 components: - type: Transform - pos: 34.5,23.5 + pos: 24.5,34.5 parent: 2 - uid: 9680 components: - type: Transform - pos: 35.5,23.5 + pos: 23.5,34.5 parent: 2 - uid: 9681 components: - type: Transform - pos: 35.5,22.5 + pos: 22.5,34.5 parent: 2 - uid: 9682 components: - type: Transform - pos: 36.5,22.5 + pos: 22.5,33.5 parent: 2 - uid: 9683 components: - type: Transform - pos: 37.5,22.5 + pos: 22.5,32.5 parent: 2 - uid: 9684 components: - type: Transform - pos: 37.5,20.5 + pos: 22.5,31.5 parent: 2 - uid: 9685 components: - type: Transform - pos: 37.5,19.5 + pos: 22.5,30.5 parent: 2 - uid: 9686 components: - type: Transform - pos: 37.5,18.5 + pos: 22.5,29.5 parent: 2 - uid: 9687 components: - type: Transform - pos: 38.5,18.5 + pos: 22.5,28.5 parent: 2 - uid: 9688 components: - type: Transform - pos: 38.5,17.5 + pos: 22.5,27.5 parent: 2 - uid: 9689 components: - type: Transform - pos: 29.5,-27.5 + pos: 22.5,26.5 parent: 2 - uid: 9690 components: - type: Transform - pos: 50.5,29.5 + pos: 34.5,37.5 parent: 2 - uid: 9691 components: - type: Transform - pos: 50.5,28.5 + pos: 35.5,37.5 parent: 2 - uid: 9692 components: - type: Transform - pos: 49.5,28.5 + pos: 36.5,37.5 parent: 2 - uid: 9693 components: - type: Transform - pos: 48.5,28.5 + pos: 36.5,36.5 parent: 2 - uid: 9694 components: - type: Transform - pos: 48.5,29.5 + pos: 49.5,-46.5 parent: 2 - uid: 9695 components: - type: Transform - pos: 48.5,30.5 + pos: 49.5,-47.5 parent: 2 - uid: 9696 components: - type: Transform - pos: 48.5,31.5 + pos: 49.5,-48.5 parent: 2 - uid: 9697 components: - type: Transform - pos: 49.5,31.5 + pos: 48.5,-48.5 parent: 2 - uid: 9698 components: - type: Transform - pos: 50.5,31.5 + pos: -31.5,-63.5 parent: 2 - uid: 9699 components: - type: Transform - pos: 51.5,31.5 + pos: -32.5,-63.5 parent: 2 - uid: 9700 components: - type: Transform - pos: 52.5,31.5 + pos: -33.5,-63.5 parent: 2 - uid: 9701 components: - type: Transform - pos: 52.5,32.5 + pos: -34.5,-63.5 parent: 2 - uid: 9702 components: - type: Transform - pos: 52.5,33.5 + pos: -34.5,-64.5 parent: 2 - uid: 9703 components: - type: Transform - pos: 52.5,34.5 + pos: -34.5,-65.5 parent: 2 - uid: 9704 components: - type: Transform - pos: 52.5,35.5 + pos: -35.5,-65.5 parent: 2 - uid: 9705 components: - type: Transform - pos: 52.5,36.5 + pos: -36.5,-65.5 parent: 2 - uid: 9706 components: - type: Transform - pos: 52.5,37.5 + pos: -37.5,-65.5 parent: 2 - uid: 9707 components: - type: Transform - pos: 52.5,38.5 + pos: -39.5,-66.5 parent: 2 - uid: 9708 components: - type: Transform - pos: 52.5,39.5 + pos: -39.5,-64.5 parent: 2 - uid: 9709 components: - type: Transform - pos: 52.5,40.5 + pos: -38.5,-64.5 parent: 2 - uid: 9710 components: - type: Transform - pos: 52.5,41.5 + pos: -37.5,-64.5 parent: 2 - uid: 9711 components: - type: Transform - pos: 52.5,42.5 + pos: -39.5,-68.5 parent: 2 - uid: 9712 components: - type: Transform - pos: 53.5,42.5 + pos: -39.5,-69.5 parent: 2 - uid: 9713 components: - type: Transform - pos: 54.5,42.5 + pos: 34.5,23.5 parent: 2 - uid: 9714 components: - type: Transform - pos: 55.5,42.5 + pos: 35.5,23.5 parent: 2 - uid: 9715 components: - type: Transform - pos: 56.5,42.5 + pos: 35.5,22.5 parent: 2 - uid: 9716 components: - type: Transform - pos: 57.5,42.5 + pos: 36.5,22.5 parent: 2 - uid: 9717 components: - type: Transform - pos: 58.5,42.5 + pos: 37.5,22.5 parent: 2 - uid: 9718 components: - type: Transform - pos: 58.5,43.5 + pos: 37.5,20.5 parent: 2 - uid: 9719 components: - type: Transform - pos: 59.5,43.5 + pos: 37.5,19.5 parent: 2 - uid: 9720 components: - type: Transform - pos: -19.5,26.5 + pos: 37.5,18.5 parent: 2 - uid: 9721 components: - type: Transform - pos: -19.5,27.5 + pos: 38.5,18.5 parent: 2 - uid: 9722 components: - type: Transform - pos: -19.5,28.5 + pos: 38.5,17.5 parent: 2 - uid: 9723 components: - type: Transform - pos: -19.5,29.5 + pos: 29.5,-27.5 parent: 2 - uid: 9724 components: - type: Transform - pos: -18.5,29.5 + pos: 50.5,29.5 parent: 2 - uid: 9725 components: - type: Transform - pos: -17.5,29.5 + pos: 50.5,28.5 parent: 2 - uid: 9726 components: - type: Transform - pos: -16.5,29.5 + pos: 49.5,28.5 parent: 2 - uid: 9727 components: - type: Transform - pos: -15.5,29.5 + pos: 48.5,28.5 parent: 2 - uid: 9728 components: - type: Transform - pos: -15.5,30.5 + pos: 48.5,29.5 parent: 2 - uid: 9729 components: - type: Transform - pos: -15.5,31.5 + pos: 48.5,30.5 parent: 2 - uid: 9730 components: - type: Transform - pos: -15.5,32.5 + pos: 48.5,31.5 parent: 2 - uid: 9731 components: - type: Transform - pos: -15.5,33.5 + pos: 49.5,31.5 parent: 2 - uid: 9732 components: - type: Transform - pos: -15.5,34.5 + pos: 50.5,31.5 parent: 2 - uid: 9733 components: - type: Transform - pos: -15.5,35.5 + pos: 51.5,31.5 parent: 2 - uid: 9734 components: - type: Transform - pos: -15.5,36.5 + pos: 52.5,31.5 parent: 2 - uid: 9735 components: - type: Transform - pos: -15.5,37.5 + pos: 52.5,32.5 parent: 2 - uid: 9736 components: - type: Transform - pos: -15.5,38.5 + pos: 52.5,33.5 parent: 2 - uid: 9737 components: - type: Transform - pos: -15.5,39.5 + pos: 52.5,34.5 parent: 2 - uid: 9738 components: - type: Transform - pos: -15.5,40.5 + pos: 52.5,35.5 parent: 2 - uid: 9739 components: - type: Transform - pos: -15.5,41.5 + pos: 52.5,36.5 parent: 2 - uid: 9740 components: - type: Transform - pos: -15.5,42.5 + pos: 52.5,37.5 parent: 2 - uid: 9741 components: - type: Transform - pos: -10.5,62.5 + pos: 52.5,38.5 parent: 2 - uid: 9742 components: - type: Transform - pos: -10.5,61.5 + pos: 52.5,39.5 parent: 2 - uid: 9743 components: - type: Transform - pos: -10.5,60.5 + pos: 52.5,40.5 parent: 2 - uid: 9744 components: - type: Transform - pos: -10.5,59.5 + pos: 52.5,41.5 parent: 2 - uid: 9745 components: - type: Transform - pos: -9.5,59.5 + pos: 52.5,42.5 parent: 2 - uid: 9746 components: - type: Transform - pos: -8.5,59.5 + pos: 53.5,42.5 parent: 2 - uid: 9747 components: - type: Transform - pos: -8.5,60.5 + pos: 54.5,42.5 parent: 2 - uid: 9748 components: - type: Transform - pos: 40.5,-61.5 + pos: 55.5,42.5 parent: 2 - uid: 9749 components: - type: Transform - pos: 40.5,-63.5 + pos: 56.5,42.5 parent: 2 - uid: 9750 components: - type: Transform - pos: 48.5,-65.5 + pos: 57.5,42.5 parent: 2 - uid: 9751 components: - type: Transform - pos: 51.5,-65.5 + pos: 58.5,42.5 parent: 2 - uid: 9752 components: - type: Transform - pos: 50.5,-65.5 + pos: 58.5,43.5 parent: 2 - uid: 9753 components: - type: Transform - pos: 49.5,-65.5 + pos: 59.5,43.5 parent: 2 - uid: 9754 components: - type: Transform - pos: 40.5,-64.5 + pos: -19.5,26.5 parent: 2 - uid: 9755 components: - type: Transform - pos: 41.5,-64.5 + pos: -19.5,27.5 parent: 2 - uid: 9756 components: - type: Transform - pos: 52.5,-65.5 + pos: -19.5,28.5 parent: 2 - uid: 9757 components: - type: Transform - pos: 53.5,-65.5 + pos: -19.5,29.5 parent: 2 - uid: 9758 components: - type: Transform - pos: 54.5,-65.5 + pos: -18.5,29.5 parent: 2 - uid: 9759 components: - type: Transform - pos: 55.5,-65.5 + pos: -17.5,29.5 parent: 2 - uid: 9760 components: - type: Transform - pos: 55.5,-64.5 + pos: -16.5,29.5 parent: 2 - uid: 9761 components: - type: Transform - pos: 55.5,-63.5 + pos: -15.5,29.5 parent: 2 - uid: 9762 components: - type: Transform - pos: 55.5,-62.5 + pos: -15.5,30.5 parent: 2 - uid: 9763 components: - type: Transform - pos: 68.5,-60.5 + pos: -15.5,31.5 parent: 2 - uid: 9764 components: - type: Transform - pos: 68.5,-61.5 + pos: -15.5,32.5 parent: 2 - uid: 9765 components: - type: Transform - pos: 69.5,-61.5 + pos: -15.5,33.5 parent: 2 - uid: 9766 components: - type: Transform - pos: 70.5,-61.5 + pos: -15.5,34.5 parent: 2 - uid: 9767 components: - type: Transform - pos: 71.5,-61.5 + pos: -15.5,35.5 parent: 2 - uid: 9768 components: - type: Transform - pos: 71.5,-60.5 + pos: -15.5,36.5 parent: 2 - uid: 9769 components: - type: Transform - pos: 71.5,-59.5 + pos: -15.5,37.5 parent: 2 - uid: 9770 components: - type: Transform - pos: 71.5,-58.5 + pos: -15.5,38.5 parent: 2 - uid: 9771 components: - type: Transform - pos: 71.5,-57.5 + pos: -15.5,39.5 parent: 2 - uid: 9772 components: - type: Transform - pos: 72.5,-57.5 + pos: -15.5,40.5 parent: 2 - uid: 9773 components: - type: Transform - pos: 73.5,-57.5 + pos: -15.5,41.5 parent: 2 - uid: 9774 components: - type: Transform - pos: 74.5,-57.5 + pos: -15.5,42.5 parent: 2 - uid: 9775 components: - type: Transform - pos: 74.5,-56.5 + pos: -10.5,62.5 parent: 2 - uid: 9776 components: - type: Transform - pos: 74.5,-55.5 + pos: -10.5,61.5 parent: 2 - uid: 9777 components: - type: Transform - pos: 74.5,-54.5 + pos: -10.5,60.5 parent: 2 - uid: 9778 components: - type: Transform - pos: 75.5,-54.5 + pos: -10.5,59.5 parent: 2 - uid: 9779 components: - type: Transform - pos: 75.5,-53.5 + pos: -9.5,59.5 parent: 2 - uid: 9780 components: - type: Transform - pos: 75.5,-52.5 + pos: -8.5,59.5 parent: 2 - uid: 9781 components: - type: Transform - pos: 75.5,-51.5 + pos: -8.5,60.5 parent: 2 - uid: 9782 components: - type: Transform - pos: 75.5,-50.5 + pos: 40.5,-61.5 parent: 2 - uid: 9783 components: - type: Transform - pos: 75.5,-49.5 + pos: 40.5,-63.5 parent: 2 - uid: 9784 components: - type: Transform - pos: 75.5,-48.5 + pos: 48.5,-65.5 parent: 2 - uid: 9785 components: - type: Transform - pos: 75.5,-47.5 + pos: 51.5,-65.5 parent: 2 - uid: 9786 components: - type: Transform - pos: 75.5,-46.5 + pos: 50.5,-65.5 parent: 2 - uid: 9787 components: - type: Transform - pos: 75.5,-45.5 + pos: 49.5,-65.5 parent: 2 - uid: 9788 components: - type: Transform - pos: 74.5,-45.5 + pos: 40.5,-64.5 parent: 2 - uid: 9789 components: - type: Transform - pos: 73.5,-45.5 + pos: 41.5,-64.5 parent: 2 - uid: 9790 components: - type: Transform - pos: 72.5,-45.5 + pos: 52.5,-65.5 parent: 2 - uid: 9791 components: - type: Transform - pos: 71.5,-45.5 + pos: 53.5,-65.5 parent: 2 - uid: 9792 components: - type: Transform - pos: 71.5,-44.5 + pos: 54.5,-65.5 parent: 2 - uid: 9793 components: - type: Transform - pos: 71.5,-43.5 + pos: 55.5,-65.5 parent: 2 - uid: 9794 components: - type: Transform - pos: 71.5,-42.5 + pos: 55.5,-64.5 parent: 2 - uid: 9795 components: - type: Transform - pos: 4.5,-19.5 + pos: 55.5,-63.5 parent: 2 - uid: 9796 components: - type: Transform - pos: 7.5,-19.5 + pos: 55.5,-62.5 parent: 2 - uid: 9797 components: - type: Transform - pos: 5.5,-19.5 + pos: 68.5,-60.5 parent: 2 - uid: 9798 components: - type: Transform - pos: 7.5,-20.5 + pos: 68.5,-61.5 parent: 2 - uid: 9799 components: - type: Transform - pos: 8.5,-20.5 + pos: 69.5,-61.5 parent: 2 - uid: 9800 components: - type: Transform - pos: 9.5,-20.5 + pos: 70.5,-61.5 parent: 2 - uid: 9801 components: - type: Transform - pos: 10.5,-20.5 + pos: 71.5,-61.5 parent: 2 - uid: 9802 components: - type: Transform - pos: 11.5,-20.5 + pos: 71.5,-60.5 parent: 2 - uid: 9803 components: - type: Transform - pos: 11.5,-19.5 + pos: 71.5,-59.5 parent: 2 - uid: 9804 components: - type: Transform - pos: 11.5,-18.5 + pos: 71.5,-58.5 parent: 2 - uid: 9805 components: - type: Transform - pos: 6.5,-49.5 + pos: 71.5,-57.5 parent: 2 - uid: 9806 components: - type: Transform - pos: 7.5,-49.5 + pos: 72.5,-57.5 parent: 2 - uid: 9807 components: - type: Transform - pos: 9.5,-49.5 + pos: 73.5,-57.5 parent: 2 - uid: 9808 components: - type: Transform - pos: 8.5,-49.5 + pos: 74.5,-57.5 parent: 2 - uid: 9809 components: - type: Transform - pos: 31.5,35.5 + pos: 74.5,-56.5 parent: 2 - uid: 9810 components: - type: Transform - pos: 30.5,35.5 + pos: 74.5,-55.5 parent: 2 - uid: 9811 components: - type: Transform - pos: 29.5,35.5 + pos: 74.5,-54.5 parent: 2 - uid: 9812 components: - type: Transform - pos: 28.5,35.5 + pos: 75.5,-54.5 parent: 2 - uid: 9813 components: - type: Transform - pos: 27.5,35.5 + pos: 75.5,-53.5 parent: 2 - uid: 9814 components: - type: Transform - pos: -10.5,17.5 + pos: 75.5,-52.5 parent: 2 - uid: 9815 components: - type: Transform - pos: -8.5,15.5 + pos: 75.5,-51.5 parent: 2 - uid: 9816 components: - type: Transform - pos: -9.5,15.5 + pos: 75.5,-50.5 parent: 2 - uid: 9817 components: - type: Transform - pos: -7.5,15.5 + pos: 75.5,-49.5 parent: 2 - uid: 9818 components: - type: Transform - pos: -65.5,-54.5 + pos: 75.5,-48.5 parent: 2 - uid: 9819 components: - type: Transform - pos: -66.5,-54.5 + pos: 75.5,-47.5 parent: 2 - uid: 9820 components: - type: Transform - pos: -66.5,-53.5 + pos: 75.5,-46.5 parent: 2 - uid: 9821 components: - type: Transform - pos: -67.5,-53.5 + pos: 75.5,-45.5 parent: 2 - uid: 9822 components: - type: Transform - pos: -68.5,-53.5 + pos: 74.5,-45.5 parent: 2 - uid: 9823 components: - type: Transform - pos: -69.5,-53.5 + pos: 73.5,-45.5 parent: 2 - uid: 9824 components: - type: Transform - pos: -70.5,-53.5 + pos: 72.5,-45.5 parent: 2 - uid: 9825 components: - type: Transform - pos: -71.5,-53.5 + pos: 71.5,-45.5 parent: 2 - uid: 9826 components: - type: Transform - pos: -72.5,-53.5 + pos: 71.5,-44.5 parent: 2 - uid: 9827 components: - type: Transform - pos: -73.5,-53.5 + pos: 71.5,-43.5 parent: 2 - uid: 9828 components: - type: Transform - pos: -73.5,-52.5 + pos: 71.5,-42.5 parent: 2 - uid: 9829 components: - type: Transform - pos: -74.5,-52.5 + pos: 4.5,-19.5 parent: 2 - uid: 9830 components: - type: Transform - pos: -74.5,-51.5 + pos: 7.5,-19.5 parent: 2 - uid: 9831 components: - type: Transform - pos: -74.5,-50.5 + pos: 5.5,-19.5 parent: 2 - uid: 9832 components: - type: Transform - pos: -67.5,-37.5 + pos: 7.5,-20.5 parent: 2 - uid: 9833 components: - type: Transform - pos: -69.5,-34.5 + pos: 8.5,-20.5 parent: 2 - uid: 9834 components: - type: Transform - pos: -68.5,-37.5 + pos: 9.5,-20.5 parent: 2 - uid: 9835 components: - type: Transform - pos: -66.5,-37.5 + pos: 10.5,-20.5 parent: 2 - uid: 9836 components: - type: Transform - pos: -66.5,-36.5 + pos: 11.5,-20.5 parent: 2 - uid: 9837 components: - type: Transform - pos: -72.5,-35.5 + pos: 11.5,-19.5 parent: 2 - uid: 9838 components: - type: Transform - pos: -71.5,-35.5 + pos: 11.5,-18.5 parent: 2 - uid: 9839 components: - type: Transform - pos: -70.5,-35.5 + pos: 6.5,-49.5 parent: 2 - uid: 9840 components: - type: Transform - pos: -70.5,-34.5 + pos: 10.5,-51.5 parent: 2 - uid: 9841 components: - type: Transform - pos: -69.5,-37.5 + pos: 11.5,-49.5 parent: 2 - uid: 9842 components: - type: Transform - pos: -70.5,-37.5 + pos: 10.5,-50.5 parent: 2 - uid: 9843 components: - type: Transform - pos: -72.5,-37.5 + pos: 31.5,35.5 parent: 2 - uid: 9844 components: - type: Transform - pos: -72.5,-36.5 + pos: 30.5,35.5 parent: 2 - uid: 9845 components: - type: Transform - pos: -71.5,-38.5 + pos: 29.5,35.5 parent: 2 - uid: 9846 components: - type: Transform - pos: -70.5,-38.5 + pos: 28.5,35.5 parent: 2 - uid: 9847 components: - type: Transform - pos: -66.5,-35.5 + pos: 27.5,35.5 parent: 2 - uid: 9848 components: - type: Transform - pos: 46.5,1.5 + pos: -10.5,17.5 parent: 2 - uid: 9849 components: - type: Transform - pos: 46.5,2.5 + pos: -8.5,15.5 parent: 2 - uid: 9850 components: - type: Transform - pos: 46.5,3.5 + pos: -9.5,15.5 parent: 2 - uid: 9851 components: - type: Transform - pos: 46.5,4.5 + pos: -7.5,15.5 parent: 2 - uid: 9852 components: - type: Transform - pos: 47.5,4.5 + pos: -65.5,-54.5 parent: 2 - uid: 9853 components: - type: Transform - pos: 47.5,5.5 + pos: -66.5,-54.5 parent: 2 - uid: 9854 components: - type: Transform - pos: 47.5,6.5 + pos: -66.5,-53.5 parent: 2 - uid: 9855 components: - type: Transform - pos: 48.5,6.5 + pos: -67.5,-53.5 parent: 2 - uid: 9856 components: - type: Transform - pos: 48.5,7.5 + pos: -68.5,-53.5 parent: 2 - uid: 9857 components: - type: Transform - pos: 46.5,6.5 + pos: -69.5,-53.5 parent: 2 - uid: 9858 components: - type: Transform - pos: 46.5,7.5 + pos: -70.5,-53.5 parent: 2 - uid: 9859 components: - type: Transform - pos: 46.5,8.5 + pos: -71.5,-53.5 parent: 2 - uid: 9860 components: - type: Transform - pos: 46.5,9.5 + pos: -72.5,-53.5 parent: 2 - uid: 9861 components: - type: Transform - pos: 45.5,9.5 + pos: -73.5,-53.5 parent: 2 - uid: 9862 components: - type: Transform - pos: 25.5,-39.5 + pos: -73.5,-52.5 parent: 2 - uid: 9863 components: - type: Transform - pos: 4.5,-1.5 + pos: -74.5,-52.5 parent: 2 - uid: 9864 components: - type: Transform - pos: 3.5,-2.5 + pos: -74.5,-51.5 parent: 2 - uid: 9865 components: - type: Transform - pos: 11.5,-16.5 + pos: -74.5,-50.5 parent: 2 - uid: 9866 components: - type: Transform - pos: 9.5,-18.5 + pos: -67.5,-37.5 parent: 2 - uid: 9867 components: - type: Transform - pos: 9.5,-19.5 + pos: -69.5,-34.5 parent: 2 - uid: 9868 components: - type: Transform - pos: 2.5,-3.5 + pos: -68.5,-37.5 parent: 2 - uid: 9869 components: - type: Transform - pos: 1.5,-3.5 + pos: -66.5,-37.5 parent: 2 - uid: 9870 components: - type: Transform - pos: 3.5,-1.5 + pos: -66.5,-36.5 parent: 2 - uid: 9871 components: - type: Transform - pos: 10.5,-4.5 + pos: -72.5,-35.5 parent: 2 - uid: 9872 components: - type: Transform - pos: -0.5,-6.5 + pos: -71.5,-35.5 parent: 2 - uid: 9873 components: - type: Transform - pos: 10.5,-3.5 + pos: -70.5,-35.5 parent: 2 - uid: 9874 components: - type: Transform - pos: 1.5,-6.5 + pos: -70.5,-34.5 parent: 2 - uid: 9875 components: - type: Transform - pos: 1.5,-4.5 + pos: -69.5,-37.5 parent: 2 - uid: 9876 components: - type: Transform - pos: 0.5,-6.5 + pos: -70.5,-37.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: -72.5,-37.5 parent: 2 - uid: 9878 components: - type: Transform - pos: 24.5,-37.5 + pos: -72.5,-36.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: -71.5,-38.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: -70.5,-38.5 parent: 2 - uid: 9881 components: - type: Transform - pos: 25.5,-40.5 + pos: -66.5,-35.5 parent: 2 - uid: 9882 components: - type: Transform - pos: 26.5,-40.5 + pos: 46.5,1.5 parent: 2 - uid: 9883 components: - type: Transform - pos: 27.5,-40.5 + pos: 46.5,2.5 parent: 2 - uid: 9884 components: - type: Transform - pos: 10.5,-16.5 + pos: 46.5,3.5 parent: 2 - uid: 9885 components: - type: Transform - pos: 4.5,-14.5 + pos: 46.5,4.5 parent: 2 - uid: 9886 components: - type: Transform - pos: 4.5,-13.5 + pos: 47.5,4.5 parent: 2 - uid: 9887 components: - type: Transform - pos: 9.5,-16.5 + pos: 47.5,5.5 parent: 2 - uid: 9888 components: - type: Transform - pos: 4.5,-12.5 + pos: 47.5,6.5 parent: 2 - uid: 9889 components: - type: Transform - pos: 5.5,-14.5 + pos: 48.5,6.5 parent: 2 - uid: 9890 components: - type: Transform - pos: 4.5,-11.5 + pos: 48.5,7.5 parent: 2 - uid: 9891 components: - type: Transform - pos: 8.5,-16.5 + pos: 46.5,6.5 parent: 2 - uid: 9892 components: - type: Transform - pos: 12.5,-16.5 + pos: 46.5,7.5 parent: 2 - uid: 9893 components: - type: Transform - pos: 5.5,-11.5 + pos: 46.5,8.5 parent: 2 - uid: 9894 components: - type: Transform - pos: 22.5,-30.5 + pos: 46.5,9.5 parent: 2 - uid: 9895 components: - type: Transform - pos: 22.5,-31.5 + pos: 45.5,9.5 parent: 2 - uid: 9896 components: - type: Transform - pos: 23.5,-30.5 + pos: 21.5,-39.5 parent: 2 - uid: 9897 components: - type: Transform - pos: 24.5,-30.5 + pos: 4.5,-1.5 parent: 2 - uid: 9898 components: - type: Transform - pos: 24.5,-29.5 + pos: 3.5,-2.5 parent: 2 - uid: 9899 components: - type: Transform - pos: -56.5,-22.5 + pos: 11.5,-16.5 parent: 2 - uid: 9900 components: - type: Transform - pos: -56.5,-23.5 + pos: 9.5,-18.5 parent: 2 - uid: 9901 components: - type: Transform - pos: -64.5,-24.5 + pos: 9.5,-19.5 parent: 2 - uid: 9902 components: - type: Transform - pos: -64.5,-25.5 + pos: 2.5,-3.5 parent: 2 - uid: 9903 components: - type: Transform - pos: -65.5,-25.5 + pos: 1.5,-3.5 parent: 2 - uid: 9904 components: - type: Transform - pos: -66.5,-25.5 + pos: 3.5,-1.5 parent: 2 - uid: 9905 components: - type: Transform - pos: -66.5,-26.5 + pos: 10.5,-4.5 parent: 2 - uid: 9906 components: - type: Transform - pos: -63.5,-24.5 + pos: -0.5,-6.5 parent: 2 - uid: 9907 components: - type: Transform - pos: -62.5,-24.5 + pos: 10.5,-3.5 parent: 2 - uid: 9908 components: - type: Transform - pos: -61.5,-24.5 + pos: 1.5,-6.5 parent: 2 - uid: 9909 components: - type: Transform - pos: -60.5,-24.5 + pos: 1.5,-4.5 parent: 2 - uid: 9910 components: - type: Transform - pos: -59.5,-24.5 + pos: 0.5,-6.5 parent: 2 - uid: 9911 components: - type: Transform - pos: -58.5,-24.5 + pos: 23.5,-38.5 parent: 2 - uid: 9912 components: - type: Transform - pos: -57.5,-24.5 + pos: 23.5,-39.5 parent: 2 - uid: 9913 components: - type: Transform - pos: -56.5,-24.5 + pos: 23.5,-40.5 parent: 2 - uid: 9914 components: - type: Transform - pos: -55.5,-24.5 + pos: 24.5,-40.5 parent: 2 - uid: 9915 components: - type: Transform - pos: -54.5,-24.5 + pos: 25.5,-40.5 parent: 2 - uid: 9916 components: - type: Transform - pos: -54.5,-23.5 + pos: 26.5,-40.5 parent: 2 - uid: 9917 components: - type: Transform - pos: -54.5,-22.5 + pos: 27.5,-40.5 parent: 2 - uid: 9918 components: - type: Transform - pos: -54.5,-21.5 + pos: 10.5,-16.5 parent: 2 - uid: 9919 components: - type: Transform - pos: -54.5,-20.5 + pos: 4.5,-14.5 parent: 2 - uid: 9920 components: - type: Transform - pos: -54.5,-19.5 + pos: 4.5,-13.5 parent: 2 - uid: 9921 components: - type: Transform - pos: -54.5,-18.5 + pos: 9.5,-16.5 parent: 2 - uid: 9922 components: - type: Transform - pos: -55.5,-18.5 + pos: 4.5,-12.5 parent: 2 - uid: 9923 components: - type: Transform - pos: -56.5,-18.5 + pos: 5.5,-14.5 parent: 2 - uid: 9924 components: - type: Transform - pos: -57.5,-18.5 + pos: 4.5,-11.5 parent: 2 - uid: 9925 components: - type: Transform - pos: -58.5,-18.5 + pos: 8.5,-16.5 parent: 2 - uid: 9926 components: - type: Transform - pos: 13.5,-45.5 + pos: 12.5,-16.5 parent: 2 - uid: 9927 components: - type: Transform - pos: 15.5,-45.5 + pos: 5.5,-11.5 parent: 2 - uid: 9928 components: - type: Transform - pos: 13.5,-47.5 + pos: 22.5,-30.5 parent: 2 - uid: 9929 components: - type: Transform - pos: 15.5,-46.5 + pos: 22.5,-31.5 parent: 2 - uid: 9930 components: - type: Transform - pos: 12.5,-43.5 + pos: 23.5,-30.5 parent: 2 - uid: 9931 components: - type: Transform - pos: 14.5,-46.5 + pos: 24.5,-30.5 parent: 2 - uid: 9932 components: - type: Transform - pos: 13.5,-43.5 + pos: 24.5,-29.5 parent: 2 - uid: 9933 components: - type: Transform - pos: 15.5,-43.5 + pos: -56.5,-22.5 parent: 2 - uid: 9934 components: - type: Transform - pos: 15.5,-44.5 + pos: -56.5,-23.5 parent: 2 - uid: 9935 components: - type: Transform - pos: 10.5,-43.5 + pos: -64.5,-24.5 parent: 2 - uid: 9936 components: - type: Transform - pos: 11.5,-43.5 + pos: -64.5,-25.5 parent: 2 - uid: 9937 components: - type: Transform - pos: 14.5,-43.5 + pos: -65.5,-25.5 parent: 2 - uid: 9938 components: - type: Transform - pos: -3.5,-14.5 + pos: -66.5,-25.5 parent: 2 - uid: 9939 components: - type: Transform - pos: -6.5,-18.5 + pos: -66.5,-26.5 parent: 2 - uid: 9940 components: - type: Transform - pos: -5.5,-18.5 + pos: -63.5,-24.5 parent: 2 - uid: 9941 components: - type: Transform - pos: -4.5,-14.5 + pos: -62.5,-24.5 parent: 2 - uid: 9942 components: - type: Transform - pos: -5.5,-17.5 + pos: -61.5,-24.5 parent: 2 - uid: 9943 components: - type: Transform - pos: -5.5,-16.5 + pos: -60.5,-24.5 parent: 2 - uid: 9944 components: - type: Transform - pos: -5.5,-15.5 + pos: -59.5,-24.5 parent: 2 - uid: 9945 components: - type: Transform - pos: -5.5,-14.5 + pos: -58.5,-24.5 parent: 2 - uid: 9946 components: - type: Transform - pos: -2.5,-14.5 + pos: -57.5,-24.5 parent: 2 - uid: 9947 components: - type: Transform - pos: -1.5,-14.5 + pos: -56.5,-24.5 parent: 2 - uid: 9948 components: - type: Transform - pos: -0.5,-14.5 + pos: -55.5,-24.5 parent: 2 - uid: 9949 components: - type: Transform - pos: -25.5,21.5 + pos: -54.5,-24.5 parent: 2 - uid: 9950 components: - type: Transform - pos: -29.5,21.5 + pos: -54.5,-23.5 parent: 2 - uid: 9951 components: - type: Transform - pos: -26.5,21.5 + pos: -54.5,-22.5 parent: 2 - uid: 9952 components: - type: Transform - pos: -28.5,21.5 + pos: -54.5,-21.5 parent: 2 - uid: 9953 components: - type: Transform - pos: -24.5,21.5 + pos: -54.5,-20.5 parent: 2 - uid: 9954 components: - type: Transform - pos: -27.5,21.5 + pos: -54.5,-19.5 parent: 2 - uid: 9955 components: - type: Transform - pos: -30.5,21.5 + pos: -54.5,-18.5 parent: 2 - uid: 9956 components: - type: Transform - pos: -31.5,21.5 + pos: -55.5,-18.5 parent: 2 - uid: 9957 components: - type: Transform - pos: -32.5,21.5 + pos: -56.5,-18.5 parent: 2 - uid: 9958 components: - type: Transform - pos: -33.5,21.5 + pos: -57.5,-18.5 parent: 2 - uid: 9959 components: - type: Transform - pos: -34.5,21.5 + pos: -58.5,-18.5 parent: 2 - uid: 9960 components: - type: Transform - pos: -35.5,21.5 + pos: 15.5,-45.5 parent: 2 - uid: 9961 components: - type: Transform - pos: -36.5,21.5 + pos: 15.5,-46.5 parent: 2 - uid: 9962 components: - type: Transform - pos: -37.5,21.5 + pos: 12.5,-43.5 parent: 2 - uid: 9963 components: - type: Transform - pos: -38.5,21.5 + pos: 13.5,-45.5 parent: 2 - uid: 9964 components: - type: Transform - pos: -39.5,21.5 + pos: 13.5,-43.5 parent: 2 - uid: 9965 components: - type: Transform - pos: -40.5,21.5 + pos: 15.5,-43.5 parent: 2 - uid: 9966 components: - type: Transform - pos: -41.5,21.5 + pos: 15.5,-44.5 parent: 2 - uid: 9967 components: - type: Transform - pos: -42.5,21.5 + pos: 10.5,-43.5 parent: 2 - uid: 9968 components: - type: Transform - pos: -43.5,21.5 + pos: 11.5,-43.5 parent: 2 - uid: 9969 components: - type: Transform - pos: -44.5,21.5 + pos: 14.5,-43.5 parent: 2 - uid: 9970 components: - type: Transform - pos: -45.5,22.5 + pos: -3.5,-14.5 parent: 2 - uid: 9971 components: - type: Transform - pos: -45.5,23.5 + pos: -6.5,-18.5 parent: 2 - uid: 9972 components: - type: Transform - pos: -45.5,24.5 + pos: -5.5,-18.5 parent: 2 - uid: 9973 components: - type: Transform - pos: -45.5,25.5 + pos: -4.5,-14.5 parent: 2 - uid: 9974 components: - type: Transform - pos: -45.5,26.5 + pos: -5.5,-17.5 parent: 2 - uid: 9975 components: - type: Transform - pos: -45.5,27.5 + pos: -5.5,-16.5 parent: 2 - uid: 9976 components: - type: Transform - pos: -45.5,28.5 + pos: -5.5,-15.5 parent: 2 - uid: 9977 components: - type: Transform - pos: -45.5,29.5 + pos: -5.5,-14.5 parent: 2 - uid: 9978 components: - type: Transform - pos: -45.5,30.5 + pos: -2.5,-14.5 parent: 2 - uid: 9979 components: - type: Transform - pos: -45.5,31.5 + pos: -1.5,-14.5 parent: 2 - uid: 9980 components: - type: Transform - pos: -45.5,32.5 + pos: -0.5,-14.5 parent: 2 - uid: 9981 components: - type: Transform - pos: -45.5,33.5 + pos: -25.5,21.5 parent: 2 - uid: 9982 components: - type: Transform - pos: -45.5,34.5 + pos: -29.5,21.5 parent: 2 - uid: 9983 components: - type: Transform - pos: -45.5,35.5 + pos: -26.5,21.5 parent: 2 - uid: 9984 components: - type: Transform - pos: -45.5,36.5 + pos: -28.5,21.5 parent: 2 - uid: 9985 components: - type: Transform - pos: -44.5,36.5 - parent: 2 - - uid: 10374 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 12232 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 2 - - uid: 23195 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 25528 - components: - - type: Transform - pos: 28.5,-38.5 - parent: 2 - - uid: 25932 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 2 - - uid: 25933 - components: - - type: Transform - pos: 24.5,-34.5 + pos: -24.5,21.5 parent: 2 -- proto: CableMVStack - entities: - uid: 9986 components: - type: Transform - pos: -39.41842,-18.34842 + pos: -27.5,21.5 parent: 2 - uid: 9987 components: - type: Transform - pos: -36.572292,-8.416974 + pos: -30.5,21.5 parent: 2 -- proto: CableTerminal - entities: - uid: 9988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-35.5 + pos: -31.5,21.5 parent: 2 - uid: 9989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-79.5 + pos: -32.5,21.5 parent: 2 - uid: 9990 components: - type: Transform - pos: 48.5,-2.5 + pos: -33.5,21.5 parent: 2 - uid: 9991 components: - type: Transform - pos: -48.5,-20.5 + pos: -34.5,21.5 parent: 2 - uid: 9992 components: - type: Transform - pos: -46.5,-20.5 + pos: -35.5,21.5 parent: 2 - uid: 9993 components: - type: Transform - pos: -44.5,-20.5 + pos: -36.5,21.5 parent: 2 - uid: 9994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 + pos: -37.5,21.5 parent: 2 - uid: 9995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-21.5 + pos: -38.5,21.5 parent: 2 - uid: 9996 components: - type: Transform - pos: -28.5,-36.5 + pos: -39.5,21.5 parent: 2 - uid: 9997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,38.5 + pos: -40.5,21.5 parent: 2 - uid: 9998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,34.5 + pos: -41.5,21.5 parent: 2 - uid: 9999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-79.5 + pos: -42.5,21.5 parent: 2 - uid: 10000 components: - type: Transform - pos: -74.5,-29.5 + pos: -43.5,21.5 parent: 2 - uid: 10001 components: - type: Transform - pos: -72.5,-29.5 + pos: -44.5,21.5 parent: 2 - uid: 10002 components: - type: Transform - pos: -70.5,-29.5 + pos: -45.5,22.5 parent: 2 - uid: 10003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-21.5 + pos: -45.5,23.5 parent: 2 - uid: 10004 components: - type: Transform - pos: -65.5,-52.5 + pos: -45.5,24.5 parent: 2 - uid: 10005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-88.5 + pos: -45.5,25.5 parent: 2 -- proto: CandleRed - entities: - uid: 10006 components: - type: Transform - pos: -40.745144,15.782043 + pos: -45.5,26.5 parent: 2 - uid: 10007 components: - type: Transform - pos: -35.32327,15.891418 + pos: -45.5,27.5 parent: 2 -- proto: CannabisSeeds - entities: - uid: 10008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.50433,-67.64641 + pos: -45.5,28.5 parent: 2 - uid: 10009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.707455,-67.38078 + pos: -45.5,29.5 parent: 2 -- proto: CapacitorStockPart - entities: - uid: 10010 components: - type: Transform - pos: 38.490074,-35.297806 + pos: -45.5,30.5 parent: 2 - uid: 10011 components: - type: Transform - pos: 38.302574,-35.672806 + pos: -45.5,31.5 parent: 2 - uid: 10012 components: - type: Transform - pos: 38.521324,-35.53218 + pos: -45.5,32.5 parent: 2 - uid: 10013 components: - type: Transform - pos: -50.47893,-28.448412 + pos: -45.5,33.5 parent: 2 -- proto: CaptainIDCard - entities: - uid: 10014 components: - type: Transform - pos: 30.440884,-27.198164 + pos: -45.5,34.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - uid: 10015 components: - type: Transform - pos: -40.5,-38.5 + pos: -45.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10016 components: - type: Transform - pos: -50.5,-50.5 + pos: -45.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10017 components: - type: Transform - pos: -52.5,-62.5 + pos: -44.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10018 components: - type: Transform - pos: -76.5,-45.5 + pos: 8.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10019 components: - type: Transform - pos: 46.5,-54.5 + pos: 2.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: Carpet - entities: - uid: 10020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,20.5 + pos: 2.5,-48.5 parent: 2 - uid: 10021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,22.5 + pos: 1.5,-48.5 parent: 2 - uid: 10022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,21.5 + pos: 0.5,-48.5 parent: 2 - uid: 10023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,20.5 + pos: -0.5,-48.5 parent: 2 - uid: 10024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 + pos: -0.5,-49.5 parent: 2 - uid: 10025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 + pos: -0.5,-50.5 parent: 2 - uid: 10026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 + pos: -0.5,-51.5 parent: 2 - uid: 10027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,22.5 + pos: -1.5,-51.5 parent: 2 - uid: 10028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 + pos: 8.5,-53.5 parent: 2 - uid: 10029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 + pos: 6.5,-56.5 parent: 2 - uid: 10030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 + pos: 5.5,-56.5 parent: 2 - uid: 10031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 + pos: 4.5,-56.5 parent: 2 - uid: 10032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 + pos: 3.5,-56.5 parent: 2 - uid: 10033 components: - type: Transform - pos: 39.5,-5.5 + pos: 2.5,-56.5 parent: 2 - uid: 10034 components: - type: Transform - pos: 43.5,-5.5 + pos: 1.5,-56.5 parent: 2 - uid: 10035 components: - type: Transform - pos: 44.5,-5.5 + pos: 0.5,-56.5 parent: 2 - uid: 10036 components: - type: Transform - pos: 42.5,-5.5 + pos: -0.5,-56.5 parent: 2 - uid: 10037 components: - type: Transform - pos: 42.5,-2.5 + pos: -1.5,-56.5 parent: 2 - uid: 10038 components: - type: Transform - pos: 42.5,-3.5 + pos: -2.5,-56.5 parent: 2 - uid: 10039 components: - type: Transform - pos: 42.5,-4.5 + pos: -3.5,-56.5 parent: 2 - uid: 10040 components: - type: Transform - pos: 43.5,-2.5 + pos: -4.5,-56.5 parent: 2 - uid: 10041 components: - type: Transform - pos: 43.5,-3.5 + pos: -4.5,-57.5 parent: 2 - uid: 10042 components: - type: Transform - pos: 43.5,-4.5 + pos: -4.5,-58.5 parent: 2 - uid: 10043 components: - type: Transform - pos: 44.5,-2.5 + pos: -4.5,-59.5 parent: 2 - uid: 10044 components: - type: Transform - pos: 44.5,-3.5 + pos: -5.5,-59.5 parent: 2 - uid: 10045 components: - type: Transform - pos: 44.5,-4.5 + pos: -6.5,-59.5 parent: 2 - uid: 10046 components: - type: Transform - pos: 37.5,-2.5 + pos: -7.5,-59.5 parent: 2 - uid: 10047 components: - type: Transform - pos: 38.5,-2.5 + pos: -8.5,-59.5 parent: 2 - uid: 10048 components: - type: Transform - pos: 39.5,-2.5 + pos: -9.5,-59.5 parent: 2 - uid: 10049 components: - type: Transform - pos: 37.5,-3.5 + pos: -10.5,-59.5 parent: 2 - uid: 10050 components: - type: Transform - pos: 37.5,-4.5 + pos: -10.5,-58.5 parent: 2 - uid: 10051 components: - type: Transform - pos: 38.5,-3.5 + pos: -2.5,-55.5 parent: 2 - uid: 10052 components: - type: Transform - pos: 38.5,-4.5 + pos: -2.5,-54.5 parent: 2 - uid: 10053 components: - type: Transform - pos: 39.5,-3.5 + pos: -2.5,-53.5 parent: 2 - uid: 10054 components: - type: Transform - pos: 39.5,-4.5 + pos: -2.5,-52.5 parent: 2 - uid: 10055 components: - type: Transform - pos: 38.5,-5.5 + pos: -10.5,-57.5 parent: 2 - uid: 10056 components: - type: Transform - pos: 37.5,-5.5 + pos: 7.5,-52.5 parent: 2 - uid: 10057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-50.5 + pos: 14.5,-61.5 parent: 2 - uid: 10058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-51.5 + pos: 14.5,-63.5 parent: 2 - uid: 10059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-50.5 + pos: -19.5,-65.5 parent: 2 - uid: 10060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-51.5 + pos: -19.5,-64.5 parent: 2 - uid: 10061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-50.5 + pos: 14.5,-64.5 parent: 2 - uid: 10062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-51.5 + pos: 6.5,-52.5 parent: 2 - uid: 10063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,15.5 + pos: -19.5,-63.5 parent: 2 - uid: 10064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,14.5 + pos: 5.5,-45.5 parent: 2 - uid: 10065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,13.5 + pos: -1.5,-69.5 parent: 2 - uid: 10066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,12.5 + pos: 14.5,-62.5 parent: 2 - uid: 10067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,11.5 + pos: -2.5,-69.5 parent: 2 - uid: 10068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,10.5 + pos: -19.5,-61.5 parent: 2 - uid: 10069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,9.5 + pos: 14.5,-58.5 parent: 2 - uid: 10070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,8.5 + pos: -1.5,-68.5 parent: 2 - uid: 10071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,15.5 + pos: -12.5,-59.5 parent: 2 - uid: 10072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,14.5 + pos: -13.5,-59.5 parent: 2 - uid: 10073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,13.5 + pos: -14.5,-59.5 parent: 2 - uid: 10074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,12.5 + pos: -14.5,-60.5 parent: 2 - uid: 10075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,11.5 + pos: -15.5,-60.5 parent: 2 - uid: 10076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,10.5 + pos: -16.5,-60.5 parent: 2 - uid: 10077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,9.5 + pos: -17.5,-60.5 parent: 2 - uid: 10078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,8.5 + pos: -18.5,-60.5 parent: 2 - uid: 10079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,15.5 + pos: -20.5,-60.5 parent: 2 - uid: 10080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,14.5 + pos: -19.5,-60.5 parent: 2 - uid: 10081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,13.5 + pos: -21.5,-60.5 parent: 2 - uid: 10082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,15.5 + pos: -22.5,-60.5 parent: 2 - uid: 10083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,14.5 + pos: -23.5,-60.5 parent: 2 - uid: 10084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,13.5 + pos: -23.5,-59.5 parent: 2 - uid: 10085 components: - type: Transform - pos: -30.5,14.5 + pos: -23.5,-58.5 parent: 2 - uid: 10086 components: - type: Transform - pos: -30.5,13.5 + pos: -23.5,-57.5 parent: 2 - uid: 10087 components: - type: Transform - pos: -30.5,12.5 + pos: -23.5,-56.5 parent: 2 - uid: 10088 components: - type: Transform - pos: 64.5,-0.5 + pos: 14.5,-65.5 parent: 2 - uid: 10089 components: - type: Transform - pos: 64.5,-1.5 + pos: 14.5,-66.5 parent: 2 - uid: 10090 components: - type: Transform - pos: 65.5,-0.5 + pos: 14.5,-67.5 parent: 2 - uid: 10091 components: - type: Transform - pos: 65.5,-1.5 + pos: 13.5,-67.5 parent: 2 - uid: 10092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-63.5 + pos: 12.5,-67.5 parent: 2 - uid: 10093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-64.5 + pos: 11.5,-67.5 parent: 2 - uid: 10094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-65.5 + pos: 10.5,-67.5 parent: 2 - uid: 10095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-66.5 + pos: 10.5,-66.5 parent: 2 - uid: 10096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-67.5 + pos: 5.5,-44.5 parent: 2 - uid: 10097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-68.5 + pos: 6.5,-41.5 parent: 2 - uid: 10098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,21.5 + pos: 6.5,-40.5 parent: 2 - uid: 10099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,20.5 + pos: 6.5,-39.5 parent: 2 - uid: 10100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,19.5 + pos: 6.5,-38.5 parent: 2 - uid: 10101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 + pos: -19.5,-66.5 parent: 2 - uid: 10102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 + pos: -19.5,-67.5 parent: 2 - uid: 10103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,21.5 + pos: -19.5,-68.5 parent: 2 - uid: 10104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 + pos: 9.5,-17.5 parent: 2 - uid: 10105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 + pos: 18.5,-16.5 parent: 2 -- proto: CarpetBlack - entities: - uid: 10106 components: - type: Transform - pos: -7.5,-36.5 + pos: 16.5,-16.5 parent: 2 - uid: 10107 components: - type: Transform - pos: -7.5,-37.5 + pos: 10.5,-53.5 parent: 2 - uid: 10108 components: - type: Transform - pos: -7.5,-38.5 + pos: 9.5,-53.5 parent: 2 - uid: 10109 components: - type: Transform - pos: -11.5,-39.5 + pos: 15.5,-16.5 parent: 2 - uid: 10110 components: - type: Transform - pos: -10.5,-39.5 + pos: 15.5,-15.5 parent: 2 - uid: 10111 components: - type: Transform - pos: -9.5,-39.5 + pos: 23.5,-11.5 parent: 2 - uid: 10112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-53.5 + pos: -0.5,-42.5 parent: 2 - uid: 10113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-54.5 + pos: -1.5,-42.5 parent: 2 - uid: 10114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-55.5 + pos: -2.5,-42.5 parent: 2 - uid: 10115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-56.5 + pos: -3.5,-42.5 parent: 2 - uid: 10116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,32.5 + pos: -4.5,-42.5 parent: 2 - uid: 10117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,31.5 + pos: -5.5,-42.5 parent: 2 - uid: 10118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,32.5 + pos: -6.5,-42.5 parent: 2 - uid: 10119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 + pos: -7.5,-42.5 parent: 2 - uid: 10120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,32.5 + pos: -8.5,-42.5 parent: 2 - uid: 10121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,31.5 + pos: -8.5,-41.5 parent: 2 - uid: 10122 components: - type: Transform - pos: 12.5,-38.5 + pos: -8.5,-40.5 parent: 2 -- proto: CarpetBlue - entities: - uid: 10123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + pos: -8.5,-39.5 parent: 2 - uid: 10124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 + pos: -9.5,-39.5 parent: 2 - uid: 10125 components: - type: Transform - pos: -18.5,-56.5 + pos: -10.5,-39.5 parent: 2 - uid: 10126 components: - type: Transform - pos: -18.5,-55.5 + pos: -11.5,-39.5 parent: 2 - uid: 10127 components: - type: Transform - pos: -20.5,-55.5 + pos: -12.5,-39.5 parent: 2 - uid: 10128 components: - type: Transform - pos: -20.5,-54.5 + pos: -13.5,-39.5 parent: 2 - uid: 10129 components: - type: Transform - pos: -19.5,-54.5 + pos: -39.5,-65.5 parent: 2 - uid: 10130 components: - type: Transform - pos: -17.5,-56.5 + pos: -39.5,-67.5 parent: 2 - uid: 10131 components: - type: Transform - pos: -20.5,-56.5 + pos: -27.5,-63.5 parent: 2 - uid: 10132 components: - type: Transform - pos: -17.5,-54.5 + pos: -27.5,-64.5 parent: 2 - uid: 10133 components: - type: Transform - pos: -17.5,-55.5 + pos: -27.5,-65.5 parent: 2 +- proto: CableMVStack + entities: - uid: 10134 components: - type: Transform - pos: -19.5,-55.5 + pos: -39.41842,-18.34842 parent: 2 - uid: 10135 components: - type: Transform - pos: -19.5,-56.5 + pos: -36.572292,-8.416974 parent: 2 +- proto: CableTerminal + entities: - uid: 10136 components: - type: Transform - pos: -18.5,-54.5 + rot: 3.141592653589793 rad + pos: 13.5,-47.5 parent: 2 - uid: 10137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 + rot: 1.5707963267948966 rad + pos: -70.5,-35.5 parent: 2 - uid: 10138 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,13.5 + pos: -2.5,-79.5 parent: 2 - uid: 10139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 + pos: 48.5,-2.5 parent: 2 - uid: 10140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,11.5 + pos: -48.5,-20.5 parent: 2 - uid: 10141 components: - type: Transform - pos: 17.5,9.5 + pos: -46.5,-20.5 parent: 2 - uid: 10142 components: - type: Transform - pos: 17.5,14.5 + pos: -44.5,-20.5 parent: 2 - uid: 10143 components: - type: Transform - pos: 17.5,10.5 + rot: 1.5707963267948966 rad + pos: -51.5,-9.5 parent: 2 - uid: 10144 components: - type: Transform - pos: -22.5,-55.5 + rot: 3.141592653589793 rad + pos: -56.5,-21.5 parent: 2 - uid: 10145 components: - type: Transform - pos: -21.5,-55.5 + pos: -28.5,-36.5 parent: 2 - uid: 10146 components: - type: Transform - pos: -21.5,-54.5 + rot: -1.5707963267948966 rad + pos: 74.5,38.5 parent: 2 - uid: 10147 components: - type: Transform - pos: -22.5,-54.5 + rot: -1.5707963267948966 rad + pos: 74.5,34.5 parent: 2 - uid: 10148 components: - type: Transform - pos: -1.5,-6.5 + rot: 3.141592653589793 rad + pos: -0.5,-79.5 parent: 2 - uid: 10149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 + pos: -74.5,-29.5 parent: 2 - uid: 10150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 + pos: -72.5,-29.5 parent: 2 - uid: 10151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 + pos: -70.5,-29.5 parent: 2 - uid: 10152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: 4.5,-21.5 parent: 2 - uid: 10153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + pos: -65.5,-52.5 parent: 2 - uid: 10154 components: - type: Transform - pos: -1.5,-5.5 + rot: 3.141592653589793 rad + pos: -56.5,-88.5 parent: 2 - uid: 10155 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-7.5 + pos: -30.5,-55.5 parent: 2 +- proto: CandleRed + entities: - uid: 10156 components: - type: Transform - pos: -0.5,-6.5 + pos: -40.745144,15.782043 parent: 2 - uid: 10157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: -35.32327,15.891418 parent: 2 +- proto: CannabisSeeds + entities: - uid: 10158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 + rot: 3.141592653589793 rad + pos: -55.50433,-67.64641 parent: 2 - uid: 10159 components: - type: Transform - pos: -0.5,-5.5 + rot: 1.5707963267948966 rad + pos: -55.707455,-67.38078 parent: 2 +- proto: CapacitorStockPart + entities: - uid: 10160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + pos: 38.490074,-35.297806 parent: 2 - uid: 10161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + pos: 38.302574,-35.672806 parent: 2 - uid: 10162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-36.5 + pos: 38.521324,-35.53218 parent: 2 - uid: 10163 components: - type: Transform - pos: 3.5,-5.5 + pos: -50.47893,-28.448412 parent: 2 +- proto: CaptainIDCard + entities: - uid: 10164 components: - type: Transform - pos: 2.5,-5.5 + pos: 30.440884,-27.198164 parent: 2 +- proto: CarbonDioxideCanister + entities: - uid: 10165 components: - type: Transform - pos: 2.5,-4.5 + pos: -40.5,-38.5 parent: 2 - uid: 10166 components: - type: Transform - pos: 4.5,-4.5 + pos: -50.5,-50.5 parent: 2 - uid: 10167 components: - type: Transform - pos: 5.5,-5.5 + pos: -52.5,-62.5 parent: 2 - uid: 10168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-35.5 + pos: -76.5,-45.5 parent: 2 - uid: 10169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-37.5 + pos: 46.5,-54.5 parent: 2 +- proto: Carpet + entities: - uid: 10170 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-34.5 + pos: 5.5,20.5 parent: 2 - uid: 10171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-39.5 + rot: 3.141592653589793 rad + pos: 4.5,22.5 parent: 2 - uid: 10172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 + rot: 3.141592653589793 rad + pos: 4.5,21.5 parent: 2 - uid: 10173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 + rot: 3.141592653589793 rad + pos: 4.5,20.5 parent: 2 -- proto: CarpetChapel - entities: - uid: 10174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,10.5 + rot: 3.141592653589793 rad + pos: 6.5,22.5 parent: 2 - uid: 10175 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,10.5 + pos: 6.5,21.5 parent: 2 - uid: 10176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,9.5 + rot: 3.141592653589793 rad + pos: 6.5,20.5 parent: 2 - uid: 10177 components: - type: Transform - pos: -36.5,9.5 + rot: 3.141592653589793 rad + pos: 7.5,22.5 parent: 2 - uid: 10178 components: - type: Transform - pos: -36.5,11.5 + rot: 3.141592653589793 rad + pos: 7.5,21.5 parent: 2 - uid: 10179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,11.5 + rot: 3.141592653589793 rad + pos: 7.5,20.5 parent: 2 - uid: 10180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,12.5 + rot: 3.141592653589793 rad + pos: 8.5,22.5 parent: 2 - uid: 10181 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,12.5 + pos: 8.5,21.5 parent: 2 - uid: 10182 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,12.5 + pos: 8.5,20.5 parent: 2 - uid: 10183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,11.5 + pos: 39.5,-5.5 parent: 2 - uid: 10184 components: - type: Transform - pos: -40.5,11.5 + pos: 43.5,-5.5 parent: 2 - uid: 10185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,10.5 + pos: 44.5,-5.5 parent: 2 - uid: 10186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,10.5 + pos: 42.5,-5.5 parent: 2 - uid: 10187 components: - type: Transform - pos: -40.5,9.5 + pos: 42.5,-2.5 parent: 2 - uid: 10188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,9.5 + pos: 42.5,-3.5 parent: 2 - uid: 10189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,12.5 + pos: 42.5,-4.5 parent: 2 - uid: 10190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-65.5 + pos: 43.5,-2.5 parent: 2 - uid: 10191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-65.5 + pos: 43.5,-3.5 parent: 2 - uid: 10192 components: - type: Transform - pos: 59.5,-66.5 + pos: 43.5,-4.5 parent: 2 - uid: 10193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-65.5 + pos: 44.5,-2.5 parent: 2 - uid: 10194 components: - type: Transform - pos: 62.5,-66.5 + pos: 44.5,-3.5 parent: 2 - uid: 10195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-65.5 + pos: 44.5,-4.5 parent: 2 - uid: 10196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-66.5 + pos: 37.5,-2.5 parent: 2 - uid: 10197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-63.5 + pos: 38.5,-2.5 parent: 2 - uid: 10198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-63.5 + pos: 39.5,-2.5 parent: 2 - uid: 10199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-64.5 + pos: 37.5,-3.5 parent: 2 - uid: 10200 components: - type: Transform - pos: 62.5,-64.5 + pos: 37.5,-4.5 parent: 2 - uid: 10201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-63.5 + pos: 38.5,-3.5 parent: 2 - uid: 10202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-63.5 + pos: 38.5,-4.5 parent: 2 - uid: 10203 components: - type: Transform - pos: 59.5,-64.5 + pos: 39.5,-3.5 parent: 2 - uid: 10204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-64.5 + pos: 39.5,-4.5 parent: 2 - uid: 10205 components: - type: Transform - pos: 60.5,-68.5 + pos: 38.5,-5.5 parent: 2 - uid: 10206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-68.5 + pos: 37.5,-5.5 parent: 2 - uid: 10207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-67.5 + rot: 3.141592653589793 rad + pos: 28.5,-50.5 parent: 2 - uid: 10208 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-67.5 + pos: 28.5,-51.5 parent: 2 - uid: 10209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-66.5 - parent: 2 -- proto: CarpetGreen - entities: - - uid: 7234 - components: - - type: Transform - pos: 22.5,-36.5 - parent: 2 - - uid: 7235 - components: - - type: Transform - pos: 22.5,-35.5 - parent: 2 - - uid: 7236 - components: - - type: Transform - pos: 21.5,-36.5 + rot: 3.141592653589793 rad + pos: 29.5,-50.5 parent: 2 - - uid: 7237 + - uid: 10210 components: - type: Transform - pos: 21.5,-37.5 + rot: 3.141592653589793 rad + pos: 29.5,-51.5 parent: 2 - uid: 10211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,-50.5 parent: 2 - uid: 10212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,-51.5 parent: 2 - uid: 10213 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-10.5 + pos: -38.5,15.5 parent: 2 - uid: 10214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-12.5 + pos: -38.5,14.5 parent: 2 - uid: 10215 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-12.5 + pos: -38.5,13.5 parent: 2 - uid: 10216 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-11.5 + pos: -38.5,12.5 parent: 2 - uid: 10217 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-11.5 + pos: -38.5,11.5 parent: 2 - uid: 10218 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-11.5 + pos: -38.5,10.5 parent: 2 - uid: 10219 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-11.5 + pos: -38.5,9.5 parent: 2 - uid: 10220 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-10.5 + pos: -38.5,8.5 parent: 2 - uid: 10221 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-10.5 + pos: -37.5,15.5 parent: 2 - uid: 10222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-12.5 + pos: -37.5,14.5 parent: 2 - uid: 10223 components: - type: Transform - pos: 20.5,13.5 + rot: -1.5707963267948966 rad + pos: -37.5,13.5 parent: 2 - uid: 10224 components: - type: Transform - pos: 14.5,9.5 + rot: -1.5707963267948966 rad + pos: -37.5,12.5 parent: 2 - uid: 10225 components: - type: Transform - pos: 9.5,-11.5 + rot: -1.5707963267948966 rad + pos: -37.5,11.5 parent: 2 - uid: 10226 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-12.5 + pos: -37.5,10.5 parent: 2 - uid: 10227 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-12.5 + pos: -37.5,9.5 parent: 2 - uid: 10228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 + rot: -1.5707963267948966 rad + pos: -37.5,8.5 parent: 2 - uid: 10229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,13.5 + rot: -1.5707963267948966 rad + pos: -34.5,15.5 parent: 2 - uid: 10230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,12.5 + rot: -1.5707963267948966 rad + pos: -34.5,14.5 parent: 2 - uid: 10231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,11.5 + rot: -1.5707963267948966 rad + pos: -34.5,13.5 parent: 2 - uid: 10232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,10.5 + rot: -1.5707963267948966 rad + pos: -33.5,15.5 parent: 2 - uid: 10233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,9.5 + rot: -1.5707963267948966 rad + pos: -33.5,14.5 parent: 2 - uid: 10234 components: - type: Transform - pos: -5.5,-49.5 + rot: -1.5707963267948966 rad + pos: -33.5,13.5 parent: 2 - uid: 10235 components: - type: Transform - pos: -4.5,-49.5 + pos: -30.5,14.5 parent: 2 - uid: 10236 components: - type: Transform - pos: -3.5,-49.5 + pos: -30.5,13.5 parent: 2 - uid: 10237 components: - type: Transform - pos: -3.5,-50.5 + pos: -30.5,12.5 parent: 2 - uid: 10238 components: - type: Transform - pos: -4.5,-50.5 + pos: 64.5,-0.5 parent: 2 - uid: 10239 components: - type: Transform - pos: -5.5,-50.5 + pos: 64.5,-1.5 parent: 2 - uid: 10240 components: - type: Transform - pos: 21.5,13.5 + pos: 65.5,-0.5 parent: 2 - uid: 10241 components: - type: Transform - pos: 21.5,10.5 + pos: 65.5,-1.5 parent: 2 - uid: 10242 components: - type: Transform - pos: 20.5,10.5 + rot: 3.141592653589793 rad + pos: 61.5,-63.5 parent: 2 - uid: 10243 components: - type: Transform - pos: 20.5,12.5 + rot: 3.141592653589793 rad + pos: 61.5,-64.5 parent: 2 - uid: 10244 components: - type: Transform - pos: 20.5,11.5 + rot: 3.141592653589793 rad + pos: 61.5,-65.5 parent: 2 - uid: 10245 components: - type: Transform - pos: 21.5,11.5 + rot: 3.141592653589793 rad + pos: 61.5,-66.5 parent: 2 - uid: 10246 components: - type: Transform - pos: 21.5,12.5 + rot: 3.141592653589793 rad + pos: 61.5,-67.5 parent: 2 - uid: 10247 components: - type: Transform - pos: -22.5,45.5 + rot: 3.141592653589793 rad + pos: 61.5,-68.5 parent: 2 - uid: 10248 components: - type: Transform - pos: -22.5,44.5 + rot: 1.5707963267948966 rad + pos: 2.5,21.5 parent: 2 - uid: 10249 components: - type: Transform - pos: -22.5,43.5 + rot: 1.5707963267948966 rad + pos: 2.5,20.5 parent: 2 - uid: 10250 components: - type: Transform - pos: -22.5,42.5 + rot: 1.5707963267948966 rad + pos: 2.5,19.5 parent: 2 - uid: 10251 components: - type: Transform - pos: -21.5,45.5 + rot: 3.141592653589793 rad + pos: 5.5,21.5 parent: 2 - uid: 10252 components: - type: Transform - pos: -21.5,44.5 + rot: 3.141592653589793 rad + pos: 5.5,22.5 parent: 2 - uid: 10253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-50.5 + rot: -1.5707963267948966 rad + pos: 1.5,21.5 parent: 2 - uid: 10254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-51.5 + rot: -1.5707963267948966 rad + pos: 1.5,19.5 parent: 2 - uid: 10255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-50.5 + rot: -1.5707963267948966 rad + pos: 1.5,20.5 parent: 2 +- proto: CarpetBlack + entities: - uid: 10256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-51.5 + pos: -7.5,-36.5 parent: 2 - uid: 10257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-50.5 + pos: -7.5,-37.5 parent: 2 - uid: 10258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-51.5 + pos: -7.5,-38.5 parent: 2 - uid: 10259 components: - type: Transform - pos: -21.5,42.5 + pos: -11.5,-39.5 parent: 2 - uid: 10260 components: - type: Transform - pos: -21.5,43.5 + pos: -10.5,-39.5 parent: 2 - uid: 10261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,30.5 + pos: -9.5,-39.5 parent: 2 - uid: 10262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,30.5 + rot: 3.141592653589793 rad + pos: -12.5,32.5 parent: 2 - uid: 10263 components: - type: Transform - pos: -23.5,31.5 + rot: 3.141592653589793 rad + pos: -12.5,31.5 parent: 2 - uid: 10264 components: - type: Transform - pos: -23.5,29.5 + rot: 3.141592653589793 rad + pos: -11.5,32.5 parent: 2 - uid: 10265 components: - type: Transform - pos: -22.5,31.5 + rot: 3.141592653589793 rad + pos: -11.5,31.5 parent: 2 - uid: 10266 components: - type: Transform - pos: -22.5,29.5 + rot: 3.141592653589793 rad + pos: -10.5,32.5 parent: 2 - uid: 10267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,33.5 + rot: 3.141592653589793 rad + pos: -10.5,31.5 parent: 2 - uid: 10268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,34.5 + pos: 12.5,-38.5 parent: 2 +- proto: CarpetBlue + entities: - uid: 10269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,35.5 + rot: 3.141592653589793 rad + pos: 28.5,-54.5 parent: 2 - uid: 10270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,33.5 + rot: 3.141592653589793 rad + pos: 29.5,-54.5 parent: 2 - uid: 10271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,34.5 + rot: 3.141592653589793 rad + pos: 29.5,-53.5 parent: 2 - uid: 10272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,35.5 + rot: 3.141592653589793 rad + pos: 28.5,-53.5 parent: 2 - uid: 10273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 + pos: -18.5,-54.5 parent: 2 - uid: 10274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-79.5 + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 parent: 2 - uid: 10275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-79.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 2 - uid: 10276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-79.5 + pos: -18.5,-56.5 parent: 2 - uid: 10277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-79.5 + pos: -18.5,-55.5 parent: 2 - uid: 10278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-79.5 + pos: -20.5,-54.5 parent: 2 - uid: 10279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-87.5 + pos: -19.5,-54.5 parent: 2 - uid: 10280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-87.5 + pos: -20.5,-56.5 parent: 2 - uid: 10281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-87.5 + pos: -19.5,-55.5 parent: 2 - uid: 10282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-87.5 + pos: -19.5,-56.5 parent: 2 - uid: 10283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-87.5 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: -22.5,-55.5 parent: 2 - uid: 10291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-35.5 + pos: -21.5,-54.5 parent: 2 - uid: 10292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 + pos: -22.5,-54.5 parent: 2 - uid: 10293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-37.5 + pos: -1.5,-6.5 parent: 2 - uid: 10294 components: - type: Transform - pos: 26.5,-34.5 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 parent: 2 - uid: 10296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 parent: 2 - uid: 10297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - uid: 10298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 - uid: 10299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -1.5,-5.5 parent: 2 - uid: 10300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - uid: 10301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + pos: -0.5,-6.5 parent: 2 - uid: 10302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 2 - uid: 10303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 parent: 2 - uid: 10304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - - uid: 10371 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - - uid: 22132 - components: - - type: Transform - pos: 21.5,-35.5 + pos: -0.5,-5.5 parent: 2 -- proto: CarpetOrange - entities: - uid: 10305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-6.5 + pos: 5.5,-6.5 parent: 2 - uid: 10306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-5.5 + pos: 5.5,-7.5 parent: 2 - uid: 10307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 parent: 2 - uid: 10308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 + pos: 3.5,-5.5 parent: 2 - uid: 10309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: 2.5,-5.5 parent: 2 - uid: 10310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 + pos: 2.5,-4.5 parent: 2 - uid: 10311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 + pos: 4.5,-4.5 parent: 2 - uid: 10312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 + pos: 5.5,-5.5 parent: 2 - uid: 10313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-8.5 + rot: 1.5707963267948966 rad + pos: 28.5,-35.5 parent: 2 - uid: 10314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 + rot: 1.5707963267948966 rad + pos: 28.5,-37.5 parent: 2 - uid: 10315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: 28.5,-34.5 parent: 2 - uid: 10316 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-5.5 + pos: 10.5,-39.5 parent: 2 - uid: 10317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-6.5 + pos: 10.5,-38.5 parent: 2 - uid: 10318 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + pos: 10.5,-37.5 parent: 2 - uid: 10319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 + pos: -17.5,-51.5 parent: 2 - uid: 10320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-7.5 + pos: -18.5,-52.5 parent: 2 - uid: 10321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 + pos: -17.5,-52.5 parent: 2 - uid: 10322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 + pos: -18.5,-51.5 parent: 2 - uid: 10323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 + pos: -20.5,-55.5 parent: 2 - uid: 10324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 + pos: -21.5,-55.5 parent: 2 - uid: 10325 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,10.5 + pos: 28.5,-55.5 parent: 2 - uid: 10326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,8.5 + rot: 3.141592653589793 rad + pos: 29.5,-55.5 parent: 2 - uid: 10327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 + rot: 3.141592653589793 rad + pos: 30.5,-55.5 parent: 2 - uid: 10328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 + rot: 3.141592653589793 rad + pos: 30.5,-54.5 parent: 2 - uid: 10329 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,11.5 + pos: 30.5,-53.5 parent: 2 - uid: 10330 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,12.5 + pos: 32.5,-53.5 parent: 2 - uid: 10331 components: - type: Transform - pos: -12.5,-35.5 + rot: 3.141592653589793 rad + pos: 32.5,-54.5 parent: 2 - uid: 10332 components: - type: Transform - pos: -12.5,-36.5 + rot: 3.141592653589793 rad + pos: 32.5,-55.5 parent: 2 - uid: 10333 components: - type: Transform - pos: -12.5,-37.5 + rot: 3.141592653589793 rad + pos: 33.5,-55.5 parent: 2 - uid: 10334 components: - type: Transform - pos: -11.5,-35.5 + rot: 3.141592653589793 rad + pos: 33.5,-54.5 parent: 2 - uid: 10335 components: - type: Transform - pos: -11.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,-53.5 parent: 2 - uid: 10336 components: - type: Transform - pos: -11.5,-37.5 + rot: 3.141592653589793 rad + pos: 34.5,-53.5 parent: 2 - uid: 10337 components: - type: Transform - pos: -10.5,-35.5 + rot: 3.141592653589793 rad + pos: 34.5,-54.5 parent: 2 - uid: 10338 components: - type: Transform - pos: -10.5,-36.5 + rot: 3.141592653589793 rad + pos: 34.5,-55.5 parent: 2 +- proto: CarpetChapel + entities: - uid: 10339 components: - type: Transform - pos: -10.5,-37.5 + rot: -1.5707963267948966 rad + pos: -36.5,10.5 parent: 2 - uid: 10340 components: - type: Transform - pos: -9.5,-35.5 + rot: 3.141592653589793 rad + pos: -35.5,10.5 parent: 2 - uid: 10341 components: - type: Transform - pos: -9.5,-36.5 + rot: 1.5707963267948966 rad + pos: -35.5,9.5 parent: 2 - uid: 10342 components: - type: Transform - pos: -9.5,-37.5 + pos: -36.5,9.5 parent: 2 - uid: 10343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 + pos: -36.5,11.5 parent: 2 - uid: 10344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-15.5 + rot: 1.5707963267948966 rad + pos: -35.5,11.5 parent: 2 - uid: 10345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-16.5 + rot: -1.5707963267948966 rad + pos: -36.5,12.5 parent: 2 - uid: 10346 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-17.5 + pos: -35.5,12.5 parent: 2 - uid: 10347 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-18.5 + pos: -39.5,12.5 parent: 2 - uid: 10348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: -39.5,11.5 parent: 2 - uid: 10349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-17.5 + pos: -40.5,11.5 parent: 2 - uid: 10350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-18.5 + rot: -1.5707963267948966 rad + pos: -40.5,10.5 parent: 2 - uid: 10351 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-15.5 + pos: -39.5,10.5 parent: 2 - uid: 10352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-16.5 + pos: -40.5,9.5 parent: 2 - uid: 10353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-17.5 + rot: 1.5707963267948966 rad + pos: -39.5,9.5 parent: 2 - uid: 10354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-18.5 + rot: -1.5707963267948966 rad + pos: -40.5,12.5 parent: 2 - uid: 10355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,31.5 + rot: -1.5707963267948966 rad + pos: 59.5,-65.5 parent: 2 - uid: 10356 components: - type: Transform - pos: -34.5,30.5 + rot: 3.141592653589793 rad + pos: 60.5,-65.5 parent: 2 - uid: 10357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,29.5 + pos: 59.5,-66.5 parent: 2 - uid: 10358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,31.5 + rot: -1.5707963267948966 rad + pos: 62.5,-65.5 parent: 2 - uid: 10359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,30.5 + pos: 62.5,-66.5 parent: 2 - uid: 10360 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,29.5 + pos: 63.5,-65.5 parent: 2 - uid: 10361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,31.5 + rot: 1.5707963267948966 rad + pos: 63.5,-66.5 parent: 2 - uid: 10362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,30.5 + rot: -1.5707963267948966 rad + pos: 62.5,-63.5 parent: 2 - uid: 10363 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,29.5 + pos: 63.5,-63.5 parent: 2 - uid: 10364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,31.5 + rot: 1.5707963267948966 rad + pos: 63.5,-64.5 parent: 2 - uid: 10365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,30.5 + pos: 62.5,-64.5 parent: 2 - uid: 10366 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,29.5 + pos: 60.5,-63.5 parent: 2 - uid: 10367 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,31.5 + rot: -1.5707963267948966 rad + pos: 59.5,-63.5 parent: 2 - uid: 10368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,30.5 + pos: 59.5,-64.5 parent: 2 - uid: 10369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,29.5 + rot: 1.5707963267948966 rad + pos: 60.5,-64.5 parent: 2 - uid: 10370 + components: + - type: Transform + pos: 60.5,-68.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-68.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-67.5 + parent: 2 + - uid: 10373 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,10.5 + pos: 62.5,-67.5 parent: 2 + - uid: 10374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-66.5 + parent: 2 +- proto: CarpetGreen + entities: - uid: 10375 components: - type: Transform - pos: 27.5,-39.5 + pos: 22.5,-34.5 parent: 2 - uid: 10376 components: - type: Transform - pos: 28.5,-39.5 + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - uid: 10377 components: - type: Transform - pos: 29.5,-39.5 + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 parent: 2 - uid: 10378 components: - type: Transform - pos: -36.5,-15.5 + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 parent: 2 -- proto: CarpetPink - entities: - uid: 10379 components: - type: Transform - pos: 21.5,-29.5 + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 - uid: 10380 components: - type: Transform - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 parent: 2 - uid: 10381 components: - type: Transform - pos: 22.5,-29.5 + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 parent: 2 - uid: 10382 components: - type: Transform - pos: 22.5,-28.5 + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 parent: 2 - uid: 10383 components: - type: Transform - pos: 21.5,-28.5 + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 parent: 2 - uid: 10384 components: - type: Transform - pos: 22.5,-29.5 + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 parent: 2 - uid: 10385 components: - type: Transform - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - uid: 10386 components: - type: Transform - pos: 23.5,-28.5 + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 parent: 2 - uid: 10387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-28.5 + pos: 11.5,-12.5 parent: 2 - uid: 10388 components: - type: Transform - pos: 24.5,-28.5 + pos: 20.5,13.5 parent: 2 - uid: 10389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 + pos: 14.5,9.5 parent: 2 - uid: 10390 components: - type: Transform - pos: 20.5,-28.5 + pos: 9.5,-11.5 parent: 2 - uid: 10391 components: - type: Transform - pos: 24.5,-29.5 + rot: -1.5707963267948966 rad + pos: 12.5,-12.5 parent: 2 -- proto: CarpetPurple - entities: - uid: 10392 components: - type: Transform - pos: -16.5,-38.5 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 parent: 2 - uid: 10393 components: - type: Transform - pos: -16.5,-39.5 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 parent: 2 - uid: 10394 components: - type: Transform - pos: -15.5,-38.5 + rot: 3.141592653589793 rad + pos: 14.5,13.5 parent: 2 - uid: 10395 components: - type: Transform - pos: -15.5,-39.5 + rot: 3.141592653589793 rad + pos: 14.5,12.5 parent: 2 - uid: 10396 components: - type: Transform - pos: -14.5,-38.5 + rot: 3.141592653589793 rad + pos: 14.5,11.5 parent: 2 - uid: 10397 components: - type: Transform - pos: -14.5,-39.5 + rot: 3.141592653589793 rad + pos: 14.5,10.5 parent: 2 - uid: 10398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,7.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 2 - uid: 10399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,6.5 + pos: -5.5,-49.5 parent: 2 - uid: 10400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,5.5 + pos: -4.5,-49.5 parent: 2 - uid: 10401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,4.5 + pos: -3.5,-49.5 parent: 2 - uid: 10402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,7.5 + pos: -3.5,-50.5 parent: 2 - uid: 10403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,6.5 + pos: -4.5,-50.5 parent: 2 - uid: 10404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,5.5 + pos: -5.5,-50.5 parent: 2 - uid: 10405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,4.5 + pos: 21.5,13.5 parent: 2 - uid: 10406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,7.5 + pos: 21.5,10.5 parent: 2 - uid: 10407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,6.5 + pos: 20.5,10.5 parent: 2 - uid: 10408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,5.5 + pos: 20.5,12.5 parent: 2 - uid: 10409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,4.5 + pos: 20.5,11.5 parent: 2 - uid: 10410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,7.5 + pos: 21.5,11.5 parent: 2 - uid: 10411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,6.5 + pos: 21.5,12.5 parent: 2 - uid: 10412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,5.5 + pos: -22.5,45.5 parent: 2 - uid: 10413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,4.5 + pos: -22.5,44.5 parent: 2 - uid: 10414 components: - type: Transform - pos: 51.5,-40.5 + pos: -22.5,43.5 parent: 2 - uid: 10415 components: - type: Transform - pos: 52.5,-39.5 + pos: -22.5,42.5 parent: 2 - uid: 10416 components: - type: Transform - pos: 52.5,-41.5 + pos: -21.5,45.5 parent: 2 - uid: 10417 components: - type: Transform - pos: 53.5,-40.5 + pos: -21.5,44.5 parent: 2 - uid: 10418 components: - type: Transform - pos: 52.5,-43.5 + rot: 3.141592653589793 rad + pos: 32.5,-50.5 parent: 2 - uid: 10419 components: - type: Transform - pos: 51.5,-42.5 + rot: 3.141592653589793 rad + pos: 32.5,-51.5 parent: 2 - uid: 10420 components: - type: Transform - pos: 53.5,-43.5 + rot: 3.141592653589793 rad + pos: 33.5,-50.5 parent: 2 - uid: 10421 components: - type: Transform - pos: 51.5,-43.5 + rot: 3.141592653589793 rad + pos: 33.5,-51.5 parent: 2 - uid: 10422 components: - type: Transform - pos: 52.5,-40.5 + rot: 3.141592653589793 rad + pos: 34.5,-50.5 parent: 2 - uid: 10423 components: - type: Transform - pos: 53.5,-39.5 + rot: 3.141592653589793 rad + pos: 34.5,-51.5 parent: 2 - uid: 10424 components: - type: Transform - pos: 52.5,-42.5 + pos: -21.5,42.5 parent: 2 - uid: 10425 components: - type: Transform - pos: 51.5,-39.5 + pos: -21.5,43.5 parent: 2 - uid: 10426 components: - type: Transform - pos: 53.5,-41.5 + rot: 1.5707963267948966 rad + pos: -22.5,30.5 parent: 2 - uid: 10427 components: - type: Transform - pos: 53.5,-42.5 + rot: 1.5707963267948966 rad + pos: -23.5,30.5 parent: 2 - uid: 10428 components: - type: Transform - pos: 51.5,-41.5 + pos: -23.5,31.5 parent: 2 -- proto: CarpetSBlue - entities: - uid: 10429 components: - type: Transform - pos: 21.5,-22.5 + pos: -23.5,29.5 parent: 2 - uid: 10430 components: - type: Transform - pos: 21.5,-23.5 + pos: -22.5,31.5 parent: 2 - uid: 10431 components: - type: Transform - pos: 23.5,-23.5 + pos: -22.5,29.5 parent: 2 - uid: 10432 components: - type: Transform - pos: 24.5,-25.5 + rot: 1.5707963267948966 rad + pos: -19.5,33.5 parent: 2 - uid: 10433 components: - type: Transform - pos: 26.5,-24.5 + rot: 1.5707963267948966 rad + pos: -19.5,34.5 parent: 2 - uid: 10434 components: - type: Transform - pos: 26.5,-25.5 + rot: 1.5707963267948966 rad + pos: -19.5,35.5 parent: 2 - uid: 10435 components: - type: Transform - pos: 29.5,-23.5 + rot: 1.5707963267948966 rad + pos: -18.5,33.5 parent: 2 - uid: 10436 components: - type: Transform - pos: 28.5,-22.5 + rot: 1.5707963267948966 rad + pos: -18.5,34.5 parent: 2 - uid: 10437 components: - type: Transform - pos: 29.5,-23.5 + rot: 1.5707963267948966 rad + pos: -18.5,35.5 parent: 2 - uid: 10438 components: - type: Transform - pos: 25.5,-25.5 + rot: 1.5707963267948966 rad + pos: 8.5,7.5 parent: 2 - uid: 10439 components: - type: Transform - pos: 29.5,-22.5 + rot: 1.5707963267948966 rad + pos: 13.5,-79.5 parent: 2 - uid: 10440 components: - type: Transform - pos: 27.5,-22.5 + rot: 1.5707963267948966 rad + pos: 14.5,-79.5 parent: 2 - uid: 10441 components: - type: Transform - pos: 26.5,-22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-79.5 parent: 2 - uid: 10442 components: - type: Transform - pos: 24.5,-24.5 + rot: 1.5707963267948966 rad + pos: 16.5,-79.5 parent: 2 - uid: 10443 components: - type: Transform - pos: 24.5,-23.5 + rot: 1.5707963267948966 rad + pos: 17.5,-79.5 parent: 2 - uid: 10444 components: - type: Transform - pos: 24.5,-22.5 + rot: 1.5707963267948966 rad + pos: 13.5,-87.5 parent: 2 - uid: 10445 components: - type: Transform - pos: 25.5,-24.5 + rot: 1.5707963267948966 rad + pos: 14.5,-87.5 parent: 2 - uid: 10446 components: - type: Transform - pos: 28.5,-23.5 + rot: 1.5707963267948966 rad + pos: 15.5,-87.5 parent: 2 - uid: 10447 components: - type: Transform - pos: 22.5,-23.5 + rot: 1.5707963267948966 rad + pos: 16.5,-87.5 parent: 2 - uid: 10448 components: - type: Transform - pos: 22.5,-22.5 + rot: 1.5707963267948966 rad + pos: 17.5,-87.5 parent: 2 - uid: 10449 components: - type: Transform - pos: 23.5,-22.5 + rot: -1.5707963267948966 rad + pos: 22.5,-35.5 parent: 2 - uid: 10450 components: - type: Transform - pos: 25.5,-23.5 + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 parent: 2 - uid: 10451 components: - type: Transform - pos: 25.5,-22.5 + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 parent: 2 - uid: 10452 components: - type: Transform - pos: 26.5,-23.5 + rot: -1.5707963267948966 rad + pos: 23.5,-36.5 parent: 2 - uid: 10453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-47.5 + rot: -1.5707963267948966 rad + pos: 24.5,-34.5 parent: 2 - uid: 10454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-48.5 + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 parent: 2 - uid: 10455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-47.5 + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 parent: 2 - uid: 10456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-48.5 + rot: -1.5707963267948966 rad + pos: 26.5,-35.5 parent: 2 - uid: 10457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-47.5 + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 parent: 2 - uid: 10458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-48.5 + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 parent: 2 - uid: 10459 components: - type: Transform - pos: 30.5,-28.5 + pos: 26.5,-34.5 parent: 2 - uid: 10460 components: - type: Transform - pos: 30.5,-29.5 + pos: 23.5,-34.5 parent: 2 - uid: 10461 components: - type: Transform - pos: 31.5,-27.5 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 parent: 2 - uid: 10462 components: - type: Transform - pos: 31.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 parent: 2 - uid: 10463 components: - type: Transform - pos: 31.5,-29.5 + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 parent: 2 - uid: 10464 components: - type: Transform - pos: 32.5,-27.5 + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 parent: 2 - uid: 10465 components: - type: Transform - pos: 32.5,-28.5 + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 parent: 2 - uid: 10466 components: - type: Transform - pos: 32.5,-29.5 + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 parent: 2 - uid: 10467 components: - type: Transform - pos: 30.5,-27.5 + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 parent: 2 - uid: 10468 components: - type: Transform - pos: 31.5,-30.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - uid: 10469 components: - type: Transform - pos: 30.5,-30.5 + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 parent: 2 +- proto: CarpetOrange + entities: - uid: 10470 components: - type: Transform - pos: 59.5,-0.5 + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 parent: 2 - uid: 10471 components: - type: Transform - pos: 59.5,-1.5 + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 parent: 2 - uid: 10472 components: - type: Transform - pos: 60.5,-0.5 + rot: 3.141592653589793 rad + pos: 12.5,11.5 parent: 2 - uid: 10473 components: - type: Transform - pos: 60.5,-1.5 + rot: 1.5707963267948966 rad + pos: 10.5,7.5 parent: 2 - uid: 10474 components: - type: Transform - pos: 61.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 parent: 2 - uid: 10475 components: - type: Transform - pos: 61.5,-1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 parent: 2 - uid: 10476 components: - type: Transform - pos: 62.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 - uid: 10477 components: - type: Transform - pos: 62.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 parent: 2 - uid: 10478 components: - type: Transform - pos: 32.5,-30.5 + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 parent: 2 - uid: 10479 components: - type: Transform - pos: 27.5,-23.5 + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 parent: 2 -- proto: CartridgeMagnumAP - entities: - - uid: 31659 + - uid: 10480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.363762,-36.790497 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 parent: 2 - - uid: 31660 + - uid: 10481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.457512,-36.727997 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 parent: 2 - - uid: 31661 + - uid: 10482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.566887,-36.68112 + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 parent: 2 -- proto: Catwalk - entities: - uid: 10483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-46.5 + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 parent: 2 - uid: 10484 components: - type: Transform - pos: 58.5,-38.5 + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 parent: 2 - uid: 10485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-32.5 + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 parent: 2 - uid: 10486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-38.5 + rot: 1.5707963267948966 rad + pos: 12.5,7.5 parent: 2 - uid: 10487 components: - type: Transform - pos: -79.5,-40.5 + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 parent: 2 - uid: 10488 components: - type: Transform - pos: -79.5,-41.5 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 parent: 2 - uid: 10489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-53.5 + rot: 1.5707963267948966 rad + pos: 12.5,8.5 parent: 2 - uid: 10490 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-54.5 + pos: 12.5,10.5 parent: 2 - uid: 10491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-52.5 + rot: 1.5707963267948966 rad + pos: 10.5,8.5 parent: 2 - uid: 10492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-51.5 + rot: 1.5707963267948966 rad + pos: 11.5,7.5 parent: 2 - uid: 10493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-50.5 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 parent: 2 - uid: 10494 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-49.5 + pos: 11.5,11.5 parent: 2 - uid: 10495 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-48.5 + pos: 11.5,12.5 parent: 2 - uid: 10496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,56.5 + pos: -12.5,-35.5 parent: 2 - uid: 10497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,56.5 + pos: -12.5,-36.5 parent: 2 - uid: 10498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,56.5 + pos: -12.5,-37.5 parent: 2 - uid: 10499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,55.5 + pos: -11.5,-35.5 parent: 2 - uid: 10500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-71.5 + pos: -11.5,-36.5 parent: 2 - uid: 10501 components: - type: Transform - pos: 65.5,-25.5 + pos: -11.5,-37.5 parent: 2 - uid: 10502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-26.5 + pos: -10.5,-35.5 parent: 2 - uid: 10503 components: - type: Transform - pos: 31.5,-14.5 + pos: -10.5,-36.5 parent: 2 - uid: 10504 components: - type: Transform - pos: -11.5,-15.5 + pos: -10.5,-37.5 parent: 2 - uid: 10505 components: - type: Transform - pos: -7.5,-75.5 + pos: -9.5,-35.5 parent: 2 - uid: 10506 components: - type: Transform - pos: 32.5,-11.5 + pos: -9.5,-36.5 parent: 2 - uid: 10507 components: - type: Transform - pos: -1.5,-83.5 + pos: -9.5,-37.5 parent: 2 - uid: 10508 components: - type: Transform - pos: -12.5,-15.5 + rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 2 - uid: 10509 components: - type: Transform - pos: -5.5,-69.5 + rot: 3.141592653589793 rad + pos: -37.5,-15.5 parent: 2 - uid: 10510 components: - type: Transform - pos: 2.5,-90.5 + rot: 3.141592653589793 rad + pos: -37.5,-16.5 parent: 2 - uid: 10511 components: - type: Transform - pos: -1.5,-88.5 + rot: 3.141592653589793 rad + pos: -37.5,-17.5 parent: 2 - uid: 10512 components: - type: Transform - pos: -0.5,-89.5 + rot: 3.141592653589793 rad + pos: -37.5,-18.5 parent: 2 - uid: 10513 components: - type: Transform - pos: 0.5,-89.5 + rot: 3.141592653589793 rad + pos: -36.5,-16.5 parent: 2 - uid: 10514 components: - type: Transform - pos: 3.5,-92.5 + rot: 3.141592653589793 rad + pos: -36.5,-17.5 parent: 2 - uid: 10515 components: - type: Transform - pos: 8.5,-53.5 + rot: 3.141592653589793 rad + pos: -36.5,-18.5 parent: 2 - uid: 10516 components: - type: Transform - pos: 4.5,-92.5 + rot: 3.141592653589793 rad + pos: -35.5,-15.5 parent: 2 - uid: 10517 components: - type: Transform - pos: -46.5,-50.5 + rot: 3.141592653589793 rad + pos: -35.5,-16.5 parent: 2 - uid: 10518 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-71.5 + pos: -35.5,-17.5 parent: 2 - uid: 10519 components: - type: Transform - pos: 2.5,-91.5 + rot: 3.141592653589793 rad + pos: -35.5,-18.5 parent: 2 - uid: 10520 components: - type: Transform - pos: -1.5,-89.5 + rot: 3.141592653589793 rad + pos: -34.5,31.5 parent: 2 - uid: 10521 components: - type: Transform - pos: 4.5,-89.5 + pos: -34.5,30.5 parent: 2 - uid: 10522 components: - type: Transform - pos: -6.5,-75.5 + rot: 3.141592653589793 rad + pos: -34.5,29.5 parent: 2 - uid: 10523 components: - type: Transform - pos: -8.5,-75.5 + rot: 3.141592653589793 rad + pos: -33.5,31.5 parent: 2 - uid: 10524 components: - type: Transform - pos: 30.5,-14.5 + rot: 3.141592653589793 rad + pos: -33.5,30.5 parent: 2 - uid: 10525 components: - type: Transform - pos: -5.5,-75.5 + rot: 3.141592653589793 rad + pos: -33.5,29.5 parent: 2 - uid: 10526 components: - type: Transform - pos: -4.5,-75.5 + rot: 3.141592653589793 rad + pos: -32.5,31.5 parent: 2 - uid: 10527 components: - type: Transform - pos: -3.5,-75.5 + rot: 3.141592653589793 rad + pos: -32.5,30.5 parent: 2 - uid: 10528 components: - type: Transform - pos: -14.5,-73.5 + rot: 3.141592653589793 rad + pos: -32.5,29.5 parent: 2 - uid: 10529 components: - type: Transform - pos: 30.5,-10.5 + rot: 3.141592653589793 rad + pos: -31.5,31.5 parent: 2 - uid: 10530 components: - type: Transform - pos: -13.5,-73.5 + rot: 3.141592653589793 rad + pos: -31.5,30.5 parent: 2 - uid: 10531 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-52.5 + pos: -31.5,29.5 parent: 2 - uid: 10532 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-53.5 + pos: -30.5,31.5 parent: 2 - uid: 10533 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-52.5 + pos: -30.5,30.5 parent: 2 - uid: 10534 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-53.5 + pos: -30.5,29.5 parent: 2 - uid: 10535 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-53.5 + pos: 11.5,10.5 parent: 2 - uid: 10536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-52.5 + pos: 23.5,-38.5 parent: 2 - uid: 10537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-52.5 + pos: 22.5,-38.5 parent: 2 - uid: 10538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-52.5 + pos: 22.5,-39.5 parent: 2 - uid: 10539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-53.5 + pos: 23.5,-39.5 parent: 2 - uid: 10540 components: - type: Transform - pos: -46.5,-43.5 + pos: 27.5,-39.5 parent: 2 - uid: 10541 components: - type: Transform - pos: 32.5,-10.5 + pos: 28.5,-39.5 parent: 2 - uid: 10542 components: - type: Transform - pos: 32.5,-13.5 + pos: 29.5,-39.5 parent: 2 - uid: 10543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 + pos: -36.5,-15.5 parent: 2 +- proto: CarpetPink + entities: - uid: 10544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 + pos: 21.5,-29.5 parent: 2 - uid: 10545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 + pos: 23.5,-29.5 parent: 2 - uid: 10546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-32.5 + pos: 22.5,-29.5 parent: 2 - uid: 10547 components: - type: Transform - pos: -17.5,-52.5 + pos: 22.5,-28.5 parent: 2 - uid: 10548 components: - type: Transform - pos: -8.5,-13.5 + pos: 21.5,-28.5 parent: 2 - uid: 10549 components: - type: Transform - pos: -6.5,-70.5 + pos: 22.5,-29.5 parent: 2 - uid: 10550 components: - type: Transform - pos: 11.5,-17.5 + pos: 23.5,-29.5 parent: 2 - uid: 10551 components: - type: Transform - pos: -19.5,-52.5 + pos: 23.5,-28.5 parent: 2 - uid: 10552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-92.5 + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 parent: 2 - uid: 10553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-92.5 + pos: 24.5,-28.5 parent: 2 - uid: 10554 components: - type: Transform - pos: -1.5,-82.5 + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 parent: 2 - uid: 10555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 + pos: 20.5,-28.5 parent: 2 - uid: 10556 components: - type: Transform - pos: 32.5,-12.5 + pos: 24.5,-29.5 parent: 2 +- proto: CarpetPurple + entities: - uid: 10557 components: - type: Transform - pos: 32.5,-14.5 + pos: -16.5,-38.5 parent: 2 - uid: 10558 components: - type: Transform - pos: -1.5,-85.5 + pos: -16.5,-39.5 parent: 2 - uid: 10559 components: - type: Transform - pos: -1.5,-87.5 + pos: -15.5,-38.5 parent: 2 - uid: 10560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-105.5 + pos: -15.5,-39.5 parent: 2 - uid: 10561 components: - type: Transform - pos: -12.5,-14.5 + pos: -14.5,-38.5 parent: 2 - uid: 10562 components: - type: Transform - pos: 4.5,-67.5 + pos: -14.5,-39.5 parent: 2 - uid: 10563 components: - type: Transform - pos: 1.5,-89.5 + rot: -1.5707963267948966 rad + pos: -49.5,7.5 parent: 2 - uid: 10564 components: - type: Transform - pos: 8.5,-55.5 + rot: -1.5707963267948966 rad + pos: -49.5,6.5 parent: 2 - uid: 10565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-92.5 + rot: -1.5707963267948966 rad + pos: -49.5,5.5 parent: 2 - uid: 10566 components: - type: Transform - pos: 3.5,-67.5 + rot: -1.5707963267948966 rad + pos: -49.5,4.5 parent: 2 - uid: 10567 components: - type: Transform - pos: 5.5,-67.5 + rot: -1.5707963267948966 rad + pos: -48.5,7.5 parent: 2 - uid: 10568 components: - type: Transform - pos: 8.5,-54.5 + rot: -1.5707963267948966 rad + pos: -48.5,6.5 parent: 2 - uid: 10569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,53.5 + rot: -1.5707963267948966 rad + pos: -48.5,5.5 parent: 2 - uid: 10570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,50.5 + rot: -1.5707963267948966 rad + pos: -48.5,4.5 parent: 2 - uid: 10571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,51.5 + rot: -1.5707963267948966 rad + pos: -47.5,7.5 parent: 2 - uid: 10572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,52.5 + rot: -1.5707963267948966 rad + pos: -47.5,6.5 parent: 2 - uid: 10573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,49.5 + rot: -1.5707963267948966 rad + pos: -47.5,5.5 parent: 2 - uid: 10574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-71.5 + rot: -1.5707963267948966 rad + pos: -47.5,4.5 parent: 2 - uid: 10575 components: - type: Transform - pos: 30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -46.5,7.5 parent: 2 - uid: 10576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-32.5 + pos: -46.5,6.5 parent: 2 - uid: 10577 components: - type: Transform - pos: -1.5,-81.5 + rot: -1.5707963267948966 rad + pos: -46.5,5.5 parent: 2 - uid: 10578 components: - type: Transform - pos: -1.5,-86.5 + rot: -1.5707963267948966 rad + pos: -46.5,4.5 parent: 2 - uid: 10579 components: - type: Transform - pos: 2.5,-89.5 + pos: 51.5,-40.5 parent: 2 - uid: 10580 components: - type: Transform - pos: 7.5,-92.5 + pos: 52.5,-39.5 parent: 2 - uid: 10581 components: - type: Transform - pos: 2.5,-92.5 + pos: 52.5,-41.5 parent: 2 - uid: 10582 components: - type: Transform - pos: 11.5,-100.5 + pos: 53.5,-40.5 parent: 2 - uid: 10583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-92.5 + pos: 52.5,-43.5 parent: 2 - uid: 10584 components: - type: Transform - pos: 6.5,-92.5 + pos: 51.5,-42.5 parent: 2 - uid: 10585 components: - type: Transform - pos: 5.5,-92.5 + pos: 53.5,-43.5 parent: 2 - uid: 10586 components: - type: Transform - pos: -9.5,-75.5 + pos: 51.5,-43.5 parent: 2 - uid: 10587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-53.5 + pos: 52.5,-40.5 parent: 2 - uid: 10588 components: - type: Transform - pos: 30.5,-12.5 + pos: 53.5,-39.5 parent: 2 - uid: 10589 components: - type: Transform - pos: 60.5,-58.5 + pos: 52.5,-42.5 parent: 2 - uid: 10590 components: - type: Transform - pos: -4.5,-69.5 + pos: 51.5,-39.5 parent: 2 - uid: 10591 components: - type: Transform - pos: -13.5,-31.5 + pos: 53.5,-41.5 parent: 2 - uid: 10592 components: - type: Transform - pos: -3.5,-69.5 + pos: 53.5,-42.5 parent: 2 - uid: 10593 components: - type: Transform - pos: -9.5,-13.5 + pos: 51.5,-41.5 parent: 2 +- proto: CarpetSBlue + entities: - uid: 10594 components: - type: Transform - pos: -12.5,-13.5 + pos: 21.5,-22.5 parent: 2 - uid: 10595 components: - type: Transform - pos: -10.5,-13.5 + pos: 21.5,-23.5 parent: 2 - uid: 10596 components: - type: Transform - pos: -10.5,-14.5 + pos: 23.5,-23.5 parent: 2 - uid: 10597 components: - type: Transform - pos: -10.5,-15.5 + pos: 24.5,-25.5 parent: 2 - uid: 10598 components: - type: Transform - pos: -13.5,-14.5 + pos: 26.5,-24.5 parent: 2 - uid: 10599 components: - type: Transform - pos: -7.5,-13.5 + pos: 26.5,-25.5 parent: 2 - uid: 10600 components: - type: Transform - pos: -14.5,-31.5 + pos: 29.5,-23.5 parent: 2 - uid: 10601 components: - type: Transform - pos: -15.5,-31.5 + pos: 28.5,-22.5 parent: 2 - uid: 10602 components: - type: Transform - pos: -2.5,-69.5 + pos: 29.5,-23.5 parent: 2 - uid: 10603 components: - type: Transform - pos: -16.5,-31.5 + pos: 25.5,-25.5 parent: 2 - uid: 10604 components: - type: Transform - pos: -6.5,-69.5 + pos: 29.5,-22.5 parent: 2 - uid: 10605 components: - type: Transform - pos: -12.5,15.5 + pos: 27.5,-22.5 parent: 2 - uid: 10606 components: - type: Transform - pos: -14.5,15.5 + pos: 26.5,-22.5 parent: 2 - uid: 10607 components: - type: Transform - pos: -6.5,-71.5 + pos: 24.5,-24.5 parent: 2 - uid: 10608 components: - type: Transform - pos: -7.5,-71.5 + pos: 24.5,-23.5 parent: 2 - uid: 10609 components: - type: Transform - pos: -8.5,-71.5 + pos: 24.5,-22.5 parent: 2 - uid: 10610 components: - type: Transform - pos: -9.5,-71.5 + pos: 25.5,-24.5 parent: 2 - uid: 10611 components: - type: Transform - pos: -10.5,-71.5 + pos: 28.5,-23.5 parent: 2 - uid: 10612 components: - type: Transform - pos: -11.5,-71.5 + pos: 22.5,-23.5 parent: 2 - uid: 10613 components: - type: Transform - pos: 3.5,-16.5 + pos: 22.5,-22.5 parent: 2 - uid: 10614 components: - type: Transform - pos: 2.5,-16.5 + pos: 23.5,-22.5 parent: 2 - uid: 10615 components: - type: Transform - pos: 1.5,-16.5 + pos: 25.5,-23.5 parent: 2 - uid: 10616 components: - type: Transform - pos: 1.5,-17.5 + pos: 25.5,-22.5 parent: 2 - uid: 10617 components: - type: Transform - pos: 0.5,-17.5 + pos: 26.5,-23.5 parent: 2 - uid: 10618 components: - type: Transform - pos: -0.5,-17.5 + rot: 3.141592653589793 rad + pos: 30.5,-47.5 parent: 2 - uid: 10619 components: - type: Transform - pos: -0.5,-17.5 + rot: 3.141592653589793 rad + pos: 30.5,-48.5 parent: 2 - uid: 10620 components: - type: Transform - pos: 14.5,-14.5 + rot: 3.141592653589793 rad + pos: 31.5,-47.5 parent: 2 - uid: 10621 components: - type: Transform - pos: 13.5,-14.5 + rot: 3.141592653589793 rad + pos: 31.5,-48.5 parent: 2 - uid: 10622 components: - type: Transform - pos: 12.5,-14.5 + rot: 3.141592653589793 rad + pos: 32.5,-47.5 parent: 2 - uid: 10623 components: - type: Transform - pos: 11.5,-14.5 + rot: 3.141592653589793 rad + pos: 32.5,-48.5 parent: 2 - uid: 10624 components: - type: Transform - pos: 10.5,-14.5 + pos: 30.5,-28.5 parent: 2 - uid: 10625 components: - type: Transform - pos: 9.5,-14.5 + pos: 30.5,-29.5 parent: 2 - uid: 10626 components: - type: Transform - pos: 8.5,-14.5 + pos: 31.5,-27.5 parent: 2 - uid: 10627 components: - type: Transform - pos: 7.5,-14.5 + pos: 31.5,-28.5 parent: 2 - uid: 10628 components: - type: Transform - pos: 14.5,-5.5 + pos: 31.5,-29.5 parent: 2 - uid: 10629 components: - type: Transform - pos: 14.5,-6.5 + pos: 32.5,-27.5 parent: 2 - uid: 10630 components: - type: Transform - pos: 14.5,-4.5 + pos: 32.5,-28.5 parent: 2 - uid: 10631 components: - type: Transform - pos: 56.5,1.5 + pos: 32.5,-29.5 parent: 2 - uid: 10632 components: - type: Transform - pos: 57.5,2.5 + pos: 30.5,-27.5 parent: 2 - uid: 10633 components: - type: Transform - pos: 56.5,2.5 + pos: 31.5,-30.5 parent: 2 - uid: 10634 components: - type: Transform - pos: 57.5,1.5 + pos: 30.5,-30.5 parent: 2 - uid: 10635 components: - type: Transform - pos: 58.5,1.5 + pos: 59.5,-0.5 parent: 2 - uid: 10636 components: - type: Transform - pos: 59.5,1.5 + pos: 59.5,-1.5 parent: 2 - uid: 10637 components: - type: Transform - pos: 60.5,1.5 + pos: 60.5,-0.5 parent: 2 - uid: 10638 components: - type: Transform - pos: 61.5,1.5 + pos: 60.5,-1.5 parent: 2 - uid: 10639 components: - type: Transform - pos: 62.5,1.5 + pos: 61.5,-0.5 parent: 2 - uid: 10640 components: - type: Transform - pos: 62.5,2.5 + pos: 61.5,-1.5 parent: 2 - uid: 10641 components: - type: Transform - pos: 12.5,-17.5 + pos: 62.5,-0.5 parent: 2 - uid: 10642 components: - type: Transform - pos: 10.5,-17.5 + pos: 62.5,-1.5 parent: 2 - uid: 10643 components: - type: Transform - pos: 8.5,-17.5 + pos: 32.5,-30.5 parent: 2 - uid: 10644 components: - type: Transform - pos: 7.5,-17.5 + pos: 27.5,-23.5 parent: 2 +- proto: CartridgeMagnum + entities: - uid: 10645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-19.5 + rot: 1.5707963267948966 rad + pos: 23.623043,-35.392914 parent: 2 - uid: 10646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-20.5 + rot: 1.5707963267948966 rad + pos: 23.685543,-35.486664 parent: 2 - uid: 10647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-21.5 + rot: 1.5707963267948966 rad + pos: 23.732418,-35.34604 parent: 2 +- proto: Catwalk + entities: - uid: 10648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-19.5 + pos: 9.5,-52.5 parent: 2 - uid: 10649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-19.5 + pos: 15.5,-47.5 parent: 2 - uid: 10650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-18.5 + rot: 3.141592653589793 rad + pos: -2.5,-69.5 parent: 2 - uid: 10651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-17.5 + pos: 8.5,-53.5 parent: 2 - uid: 10652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-17.5 + rot: 1.5707963267948966 rad + pos: 15.5,-46.5 parent: 2 - uid: 10653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-17.5 + pos: 58.5,-38.5 parent: 2 - uid: 10654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-17.5 + rot: 3.141592653589793 rad + pos: 22.5,-32.5 parent: 2 - uid: 10655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-17.5 + rot: 3.141592653589793 rad + pos: -76.5,-38.5 parent: 2 - uid: 10656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-17.5 + pos: -79.5,-40.5 parent: 2 - uid: 10657 components: - type: Transform - pos: 61.5,-58.5 + pos: -79.5,-41.5 parent: 2 - uid: 10658 components: - type: Transform - pos: 62.5,-58.5 + rot: 3.141592653589793 rad + pos: -61.5,-53.5 parent: 2 - uid: 10659 components: - type: Transform - pos: 63.5,-58.5 + rot: 3.141592653589793 rad + pos: -61.5,-54.5 parent: 2 - uid: 10660 components: - type: Transform - pos: 79.5,-43.5 + rot: 3.141592653589793 rad + pos: -61.5,-52.5 parent: 2 - uid: 10661 components: - type: Transform - pos: 79.5,-42.5 + rot: 3.141592653589793 rad + pos: -61.5,-51.5 parent: 2 - uid: 10662 components: - type: Transform - pos: -46.5,-55.5 + rot: 3.141592653589793 rad + pos: -61.5,-50.5 parent: 2 - uid: 10663 components: - type: Transform - pos: -16.5,-0.5 + rot: 3.141592653589793 rad + pos: -61.5,-49.5 parent: 2 - uid: 10664 components: - type: Transform - pos: -17.5,-0.5 + rot: 3.141592653589793 rad + pos: -61.5,-48.5 parent: 2 - uid: 10665 components: - type: Transform - pos: -18.5,-0.5 + rot: 1.5707963267948966 rad + pos: -59.5,56.5 parent: 2 - uid: 10666 components: - type: Transform - pos: -19.5,-0.5 + rot: 1.5707963267948966 rad + pos: -57.5,56.5 parent: 2 - uid: 10667 components: - type: Transform - pos: -20.5,-0.5 + rot: 1.5707963267948966 rad + pos: -55.5,56.5 parent: 2 - uid: 10668 components: - type: Transform - pos: -21.5,-0.5 + rot: 1.5707963267948966 rad + pos: -54.5,55.5 parent: 2 - uid: 10669 components: - type: Transform - pos: -22.5,-0.5 + rot: 3.141592653589793 rad + pos: -0.5,-71.5 parent: 2 - uid: 10670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-85.5 + pos: 65.5,-25.5 parent: 2 - uid: 10671 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-86.5 + pos: 79.5,-26.5 parent: 2 - uid: 10672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-87.5 + pos: 31.5,-14.5 parent: 2 - uid: 10673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-92.5 + pos: -11.5,-15.5 parent: 2 - uid: 10674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-77.5 + pos: -7.5,-75.5 parent: 2 - uid: 10675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-89.5 + pos: 32.5,-11.5 parent: 2 - uid: 10676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-78.5 + pos: -1.5,-83.5 parent: 2 - uid: 10677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-89.5 + pos: -12.5,-15.5 parent: 2 - uid: 10678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-89.5 + pos: -5.5,-69.5 parent: 2 - uid: 10679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-89.5 + pos: 2.5,-90.5 parent: 2 - uid: 10680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-89.5 + pos: -1.5,-88.5 parent: 2 - uid: 10681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-84.5 + pos: -0.5,-89.5 parent: 2 - uid: 10682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-94.5 + pos: 0.5,-89.5 parent: 2 - uid: 10683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-79.5 + pos: 3.5,-92.5 parent: 2 - uid: 10684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-89.5 + pos: 4.5,-92.5 parent: 2 - uid: 10685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-89.5 + pos: -46.5,-50.5 parent: 2 - uid: 10686 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-89.5 + pos: 0.5,-71.5 parent: 2 - uid: 10687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-89.5 + pos: 2.5,-91.5 parent: 2 - uid: 10688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-89.5 + pos: -1.5,-89.5 parent: 2 - uid: 10689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-89.5 + pos: 4.5,-89.5 parent: 2 - uid: 10690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-89.5 + pos: -6.5,-75.5 parent: 2 - uid: 10691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-89.5 + pos: -8.5,-75.5 parent: 2 - uid: 10692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-74.5 + pos: 30.5,-14.5 parent: 2 - uid: 10693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-93.5 + pos: -5.5,-75.5 parent: 2 - uid: 10694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-94.5 + pos: -4.5,-75.5 parent: 2 - uid: 10695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-91.5 + pos: -3.5,-75.5 parent: 2 - uid: 10696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-92.5 + pos: -14.5,-73.5 parent: 2 - uid: 10697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-91.5 + pos: 30.5,-10.5 parent: 2 - uid: 10698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-75.5 + pos: -13.5,-73.5 parent: 2 - uid: 10699 components: - type: Transform - pos: 20.5,-73.5 + rot: 3.141592653589793 rad + pos: 18.5,-52.5 parent: 2 - uid: 10700 components: - type: Transform - pos: 19.5,-73.5 + rot: 3.141592653589793 rad + pos: 14.5,-53.5 parent: 2 - uid: 10701 components: - type: Transform - pos: 18.5,-73.5 + rot: 3.141592653589793 rad + pos: 14.5,-52.5 parent: 2 - uid: 10702 components: - type: Transform - pos: 17.5,-73.5 + rot: 3.141592653589793 rad + pos: 21.5,-53.5 parent: 2 - uid: 10703 components: - type: Transform - pos: 16.5,-73.5 + rot: 3.141592653589793 rad + pos: 15.5,-53.5 parent: 2 - uid: 10704 components: - type: Transform - pos: 15.5,-73.5 + rot: 3.141592653589793 rad + pos: 15.5,-52.5 parent: 2 - uid: 10705 components: - type: Transform - pos: 14.5,-73.5 + rot: 3.141592653589793 rad + pos: 16.5,-52.5 parent: 2 - uid: 10706 components: - type: Transform - pos: 13.5,-73.5 + rot: 3.141592653589793 rad + pos: 17.5,-52.5 parent: 2 - uid: 10707 components: - type: Transform - pos: 12.5,-73.5 + rot: 3.141592653589793 rad + pos: 17.5,-53.5 parent: 2 - uid: 10708 components: - type: Transform - pos: 11.5,-73.5 + pos: -46.5,-43.5 parent: 2 - uid: 10709 components: - type: Transform - pos: 43.5,-59.5 + pos: 32.5,-10.5 parent: 2 - uid: 10710 components: - type: Transform - pos: -46.5,-48.5 + pos: 32.5,-13.5 parent: 2 - uid: 10711 components: - type: Transform - pos: -46.5,-45.5 + rot: -1.5707963267948966 rad + pos: 27.5,-32.5 parent: 2 - uid: 10712 components: - type: Transform - pos: -46.5,-46.5 + rot: -1.5707963267948966 rad + pos: 24.5,-32.5 parent: 2 - uid: 10713 components: - type: Transform - pos: -46.5,-52.5 + rot: 3.141592653589793 rad + pos: 12.5,-16.5 parent: 2 - uid: 10714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 + rot: -1.5707963267948966 rad + pos: 21.5,-32.5 parent: 2 - uid: 10715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -8.5,-13.5 parent: 2 - uid: 10716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 + pos: -6.5,-70.5 parent: 2 - uid: 10717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-95.5 + pos: 11.5,-17.5 parent: 2 - uid: 10718 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-95.5 + pos: 9.5,-92.5 parent: 2 - uid: 10719 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-74.5 + pos: 10.5,-92.5 parent: 2 - uid: 10720 components: - type: Transform - pos: -46.5,-47.5 + pos: -1.5,-82.5 parent: 2 - uid: 10721 components: - type: Transform - pos: -46.5,-49.5 + rot: -1.5707963267948966 rad + pos: 25.5,-32.5 parent: 2 - uid: 10722 components: - type: Transform - pos: -46.5,-44.5 + pos: 32.5,-12.5 parent: 2 - uid: 10723 components: - type: Transform - pos: -46.5,-51.5 + pos: 32.5,-14.5 parent: 2 - uid: 10724 components: - type: Transform - pos: 79.5,-50.5 + pos: -1.5,-85.5 parent: 2 - uid: 10725 components: - type: Transform - pos: 79.5,-49.5 + pos: -1.5,-87.5 parent: 2 - uid: 10726 components: - type: Transform - pos: 79.5,-44.5 + rot: 3.141592653589793 rad + pos: 11.5,-105.5 parent: 2 - uid: 10727 components: - type: Transform - pos: 79.5,-45.5 + pos: -12.5,-14.5 parent: 2 - uid: 10728 components: - type: Transform - pos: 79.5,-46.5 + pos: 1.5,-89.5 parent: 2 - uid: 10729 components: - type: Transform - pos: 79.5,-47.5 + pos: 8.5,-55.5 parent: 2 - uid: 10730 components: - type: Transform - pos: 79.5,-48.5 + rot: 3.141592653589793 rad + pos: 11.5,-92.5 parent: 2 - uid: 10731 components: - type: Transform - pos: 79.5,-41.5 + rot: 1.5707963267948966 rad + pos: -24.5,53.5 parent: 2 - uid: 10732 components: - type: Transform - pos: 68.5,-74.5 + rot: 1.5707963267948966 rad + pos: -24.5,50.5 parent: 2 - uid: 10733 components: - type: Transform - pos: 68.5,-73.5 + rot: 1.5707963267948966 rad + pos: -24.5,51.5 parent: 2 - uid: 10734 components: - type: Transform - pos: -23.5,-26.5 + rot: 1.5707963267948966 rad + pos: -24.5,52.5 parent: 2 - uid: 10735 components: - type: Transform - pos: -24.5,-26.5 + rot: 1.5707963267948966 rad + pos: -24.5,49.5 parent: 2 - uid: 10736 components: - type: Transform - pos: -25.5,-26.5 + rot: 3.141592653589793 rad + pos: 2.5,-71.5 parent: 2 - uid: 10737 components: - type: Transform - pos: -26.5,-26.5 + pos: 30.5,-11.5 parent: 2 - uid: 10738 components: - type: Transform - pos: -27.5,-26.5 + rot: -1.5707963267948966 rad + pos: 20.5,-32.5 parent: 2 - uid: 10739 components: - type: Transform - pos: -28.5,-26.5 + pos: -1.5,-81.5 parent: 2 - uid: 10740 components: - type: Transform - pos: 68.5,-72.5 + pos: -1.5,-86.5 parent: 2 - uid: 10741 components: - type: Transform - pos: 68.5,-71.5 + pos: 2.5,-89.5 parent: 2 - uid: 10742 components: - type: Transform - pos: 36.5,-56.5 + pos: 7.5,-92.5 parent: 2 - uid: 10743 components: - type: Transform - pos: 36.5,-54.5 + pos: 2.5,-92.5 parent: 2 - uid: 10744 components: - type: Transform - pos: 36.5,-53.5 + pos: 11.5,-100.5 parent: 2 - uid: 10745 components: - type: Transform - pos: 36.5,-52.5 + rot: 3.141592653589793 rad + pos: 8.5,-92.5 parent: 2 - uid: 10746 components: - type: Transform - pos: 38.5,-51.5 + pos: 6.5,-92.5 parent: 2 - uid: 10747 components: - type: Transform - pos: 39.5,-51.5 + pos: 5.5,-92.5 parent: 2 - uid: 10748 components: - type: Transform - pos: 40.5,-51.5 + pos: -9.5,-75.5 parent: 2 - uid: 10749 components: - type: Transform - pos: 41.5,-51.5 + rot: 3.141592653589793 rad + pos: 20.5,-53.5 parent: 2 - uid: 10750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-71.5 + pos: 30.5,-12.5 parent: 2 - uid: 10751 components: - type: Transform - pos: 8.5,-56.5 + pos: 60.5,-58.5 parent: 2 - uid: 10752 components: - type: Transform - pos: 62.5,-17.5 + pos: -4.5,-69.5 parent: 2 - uid: 10753 components: - type: Transform - pos: 62.5,-18.5 + pos: -13.5,-31.5 parent: 2 - uid: 10754 components: - type: Transform - pos: 62.5,-19.5 + pos: -3.5,-69.5 parent: 2 - uid: 10755 components: - type: Transform - pos: 62.5,-20.5 + pos: -9.5,-13.5 parent: 2 - uid: 10756 components: - type: Transform - pos: 62.5,-21.5 + pos: -12.5,-13.5 parent: 2 - uid: 10757 components: - type: Transform - pos: 62.5,-22.5 + pos: -10.5,-13.5 parent: 2 - uid: 10758 components: - type: Transform - pos: 62.5,-23.5 + pos: -10.5,-14.5 parent: 2 - uid: 10759 components: - type: Transform - pos: -46.5,-9.5 + pos: -10.5,-15.5 parent: 2 - uid: 10760 components: - type: Transform - pos: -46.5,-10.5 + pos: -13.5,-14.5 parent: 2 - uid: 10761 components: - type: Transform - pos: -46.5,-11.5 + pos: -7.5,-13.5 parent: 2 - uid: 10762 components: - type: Transform - pos: -46.5,-12.5 + pos: -14.5,-31.5 parent: 2 - uid: 10763 components: - type: Transform - pos: -46.5,-13.5 + pos: -15.5,-31.5 parent: 2 - uid: 10764 components: - type: Transform - pos: -46.5,-14.5 + pos: -16.5,-31.5 parent: 2 - uid: 10765 components: - type: Transform - pos: -46.5,-15.5 + pos: -6.5,-69.5 parent: 2 - uid: 10766 components: - type: Transform - pos: -46.5,-16.5 + pos: -12.5,15.5 parent: 2 - uid: 10767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-12.5 + pos: -14.5,15.5 parent: 2 - uid: 10768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-13.5 + pos: -6.5,-71.5 parent: 2 - uid: 10769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-14.5 + pos: -7.5,-71.5 parent: 2 - uid: 10770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-15.5 + pos: -8.5,-71.5 parent: 2 - uid: 10771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 + pos: -9.5,-71.5 parent: 2 - uid: 10772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-17.5 + pos: -10.5,-71.5 parent: 2 - uid: 10773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 + pos: -11.5,-71.5 parent: 2 - uid: 10774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-19.5 + pos: 3.5,-16.5 parent: 2 - uid: 10775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 + pos: 2.5,-16.5 parent: 2 - uid: 10776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-20.5 + pos: 1.5,-16.5 parent: 2 - uid: 10777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-20.5 + pos: 1.5,-17.5 parent: 2 - uid: 10778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-20.5 + pos: 0.5,-17.5 parent: 2 - uid: 10779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-20.5 + pos: -0.5,-17.5 parent: 2 - uid: 10780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-20.5 + pos: -0.5,-17.5 parent: 2 - uid: 10781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-20.5 + pos: 14.5,-14.5 parent: 2 - uid: 10782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-20.5 + pos: 13.5,-14.5 parent: 2 - uid: 10783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-20.5 + pos: 12.5,-14.5 parent: 2 - uid: 10784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-20.5 + pos: 11.5,-14.5 parent: 2 - uid: 10785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-20.5 + pos: 10.5,-14.5 parent: 2 - uid: 10786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-20.5 + pos: 9.5,-14.5 parent: 2 - uid: 10787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-20.5 + pos: 8.5,-14.5 parent: 2 - uid: 10788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-20.5 + pos: 7.5,-14.5 parent: 2 - uid: 10789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-20.5 + pos: 14.5,-5.5 parent: 2 - uid: 10790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-19.5 + pos: 14.5,-6.5 parent: 2 - uid: 10791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-18.5 + pos: 14.5,-4.5 parent: 2 - uid: 10792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-17.5 + pos: 56.5,1.5 parent: 2 - uid: 10793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-16.5 + pos: 57.5,2.5 parent: 2 - uid: 10794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-15.5 + pos: 56.5,2.5 parent: 2 - uid: 10795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-14.5 + pos: 57.5,1.5 parent: 2 - uid: 10796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-13.5 + pos: 58.5,1.5 parent: 2 - uid: 10797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-12.5 + pos: 59.5,1.5 parent: 2 - uid: 10798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-11.5 + pos: 60.5,1.5 parent: 2 - uid: 10799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-10.5 + pos: 61.5,1.5 parent: 2 - uid: 10800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-9.5 + pos: 62.5,1.5 parent: 2 - uid: 10801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-8.5 + pos: 62.5,2.5 parent: 2 - uid: 10802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-7.5 + pos: 12.5,-17.5 parent: 2 - uid: 10803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-6.5 + pos: 10.5,-17.5 parent: 2 - uid: 10804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-6.5 + pos: 8.5,-17.5 parent: 2 - uid: 10805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-6.5 + pos: 7.5,-17.5 parent: 2 - uid: 10806 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-6.5 + pos: 59.5,-19.5 parent: 2 - uid: 10807 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-6.5 + pos: 59.5,-20.5 parent: 2 - uid: 10808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-6.5 + pos: 59.5,-21.5 parent: 2 - uid: 10809 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,-6.5 + pos: 58.5,-19.5 parent: 2 - uid: 10810 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-6.5 + pos: 57.5,-19.5 parent: 2 - uid: 10811 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-6.5 + pos: 57.5,-18.5 parent: 2 - uid: 10812 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-6.5 + pos: 57.5,-17.5 parent: 2 - uid: 10813 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-6.5 + pos: 52.5,-17.5 parent: 2 - uid: 10814 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,-6.5 + pos: 53.5,-17.5 parent: 2 - uid: 10815 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-6.5 + pos: 54.5,-17.5 parent: 2 - uid: 10816 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-6.5 + pos: 55.5,-17.5 parent: 2 - uid: 10817 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-6.5 + pos: 56.5,-17.5 parent: 2 - uid: 10818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-7.5 + pos: 61.5,-58.5 parent: 2 - uid: 10819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-8.5 + pos: 62.5,-58.5 parent: 2 - uid: 10820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-9.5 + pos: 63.5,-58.5 parent: 2 - uid: 10821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-10.5 + pos: 79.5,-43.5 parent: 2 - uid: 10822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-11.5 + pos: 79.5,-42.5 parent: 2 - uid: 10823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-1.5 + pos: -46.5,-55.5 parent: 2 - uid: 10824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-2.5 + pos: -16.5,-0.5 parent: 2 - uid: 10825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-3.5 + pos: -17.5,-0.5 parent: 2 - uid: 10826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-4.5 + pos: -18.5,-0.5 parent: 2 - uid: 10827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-5.5 + pos: -19.5,-0.5 parent: 2 - uid: 10828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-6.5 + pos: -20.5,-0.5 parent: 2 - uid: 10829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-7.5 + pos: -21.5,-0.5 parent: 2 - uid: 10830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-8.5 + pos: -22.5,-0.5 parent: 2 - uid: 10831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-9.5 + rot: 3.141592653589793 rad + pos: 52.5,-85.5 parent: 2 - uid: 10832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-10.5 + rot: 3.141592653589793 rad + pos: 52.5,-86.5 parent: 2 - uid: 10833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-11.5 + rot: 3.141592653589793 rad + pos: 52.5,-87.5 parent: 2 - uid: 10834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-15.5 + rot: 3.141592653589793 rad + pos: 52.5,-92.5 parent: 2 - uid: 10835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-19.5 + rot: 3.141592653589793 rad + pos: 52.5,-77.5 parent: 2 - uid: 10836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-22.5 + rot: 3.141592653589793 rad + pos: 14.5,-89.5 parent: 2 - uid: 10837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-26.5 + rot: 3.141592653589793 rad + pos: 52.5,-78.5 parent: 2 - uid: 10838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-1.5 + rot: 3.141592653589793 rad + pos: 15.5,-89.5 parent: 2 - uid: 10839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-1.5 + rot: 3.141592653589793 rad + pos: 26.5,-89.5 parent: 2 - uid: 10840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-1.5 + rot: 3.141592653589793 rad + pos: 24.5,-89.5 parent: 2 - uid: 10841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-1.5 + rot: 3.141592653589793 rad + pos: 25.5,-89.5 parent: 2 - uid: 10842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-1.5 + rot: 3.141592653589793 rad + pos: 52.5,-84.5 parent: 2 - uid: 10843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-1.5 + rot: 3.141592653589793 rad + pos: 52.5,-94.5 parent: 2 - uid: 10844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-1.5 + rot: 3.141592653589793 rad + pos: 52.5,-79.5 parent: 2 - uid: 10845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-1.5 + rot: 3.141592653589793 rad + pos: 16.5,-89.5 parent: 2 - uid: 10846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-1.5 + rot: 3.141592653589793 rad + pos: 17.5,-89.5 parent: 2 - uid: 10847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-1.5 + rot: 3.141592653589793 rad + pos: 18.5,-89.5 parent: 2 - uid: 10848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-1.5 + rot: 3.141592653589793 rad + pos: 19.5,-89.5 parent: 2 - uid: 10849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-1.5 + rot: 3.141592653589793 rad + pos: 20.5,-89.5 parent: 2 - uid: 10850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-1.5 + rot: 3.141592653589793 rad + pos: 21.5,-89.5 parent: 2 - uid: 10851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-1.5 + rot: 3.141592653589793 rad + pos: 22.5,-89.5 parent: 2 - uid: 10852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-1.5 + rot: 3.141592653589793 rad + pos: 27.5,-89.5 parent: 2 - uid: 10853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-1.5 + rot: 3.141592653589793 rad + pos: 57.5,-74.5 parent: 2 - uid: 10854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-1.5 + rot: 3.141592653589793 rad + pos: 27.5,-93.5 parent: 2 - uid: 10855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-1.5 + rot: 3.141592653589793 rad + pos: 27.5,-94.5 parent: 2 - uid: 10856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-1.5 + rot: 3.141592653589793 rad + pos: 27.5,-91.5 parent: 2 - uid: 10857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-1.5 + rot: 3.141592653589793 rad + pos: 27.5,-92.5 parent: 2 - uid: 10858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-1.5 + rot: 3.141592653589793 rad + pos: 52.5,-91.5 parent: 2 - uid: 10859 components: - type: Transform - pos: -25.5,-58.5 + rot: 1.5707963267948966 rad + pos: 22.5,-75.5 parent: 2 - uid: 10860 components: - type: Transform - pos: -28.5,-66.5 + pos: 20.5,-73.5 parent: 2 - uid: 10861 components: - type: Transform - pos: -29.5,-66.5 + pos: 19.5,-73.5 parent: 2 - uid: 10862 components: - type: Transform - pos: -30.5,-66.5 + pos: 18.5,-73.5 parent: 2 - uid: 10863 components: - type: Transform - pos: -31.5,-66.5 + pos: 17.5,-73.5 parent: 2 - uid: 10864 components: - type: Transform - pos: -32.5,-66.5 + pos: 16.5,-73.5 parent: 2 - uid: 10865 components: - type: Transform - pos: -33.5,-66.5 + pos: 15.5,-73.5 parent: 2 - uid: 10866 components: - type: Transform - pos: -34.5,-66.5 + pos: 14.5,-73.5 parent: 2 - uid: 10867 components: - type: Transform - pos: -35.5,-66.5 + pos: 13.5,-73.5 parent: 2 - uid: 10868 components: - type: Transform - pos: -24.5,-51.5 + pos: 12.5,-73.5 parent: 2 - uid: 10869 components: - type: Transform - pos: -25.5,-51.5 + pos: 11.5,-73.5 parent: 2 - uid: 10870 components: - type: Transform - pos: -26.5,-51.5 + pos: 43.5,-59.5 parent: 2 - uid: 10871 components: - type: Transform - pos: -27.5,-51.5 + pos: -46.5,-48.5 parent: 2 - uid: 10872 components: - type: Transform - pos: -28.5,-51.5 + pos: -46.5,-45.5 parent: 2 - uid: 10873 components: - type: Transform - pos: -29.5,-51.5 + pos: -46.5,-46.5 parent: 2 - uid: 10874 components: - type: Transform - pos: -25.5,-41.5 + pos: -46.5,-52.5 parent: 2 - uid: 10875 components: - type: Transform - pos: -25.5,-42.5 + rot: 1.5707963267948966 rad + pos: -19.5,-45.5 parent: 2 - uid: 10876 components: - type: Transform - pos: -25.5,-43.5 + rot: 1.5707963267948966 rad + pos: -19.5,-46.5 parent: 2 - uid: 10877 components: - type: Transform - pos: -25.5,-44.5 + rot: 1.5707963267948966 rad + pos: -19.5,-47.5 parent: 2 - uid: 10878 components: - type: Transform - pos: -25.5,-45.5 + rot: 3.141592653589793 rad + pos: 27.5,-95.5 parent: 2 - uid: 10879 components: - type: Transform - pos: -25.5,-46.5 + rot: 3.141592653589793 rad + pos: 28.5,-95.5 parent: 2 - uid: 10880 components: - type: Transform - pos: -26.5,-46.5 + rot: 3.141592653589793 rad + pos: 56.5,-74.5 parent: 2 - uid: 10881 components: - type: Transform - pos: -25.5,-47.5 + pos: -46.5,-47.5 parent: 2 - uid: 10882 components: - type: Transform - pos: -25.5,-47.5 + pos: -46.5,-49.5 parent: 2 - uid: 10883 components: - type: Transform - pos: -26.5,-47.5 + pos: -46.5,-44.5 parent: 2 - uid: 10884 components: - type: Transform - pos: -26.5,-39.5 + pos: -46.5,-51.5 parent: 2 - uid: 10885 components: - type: Transform - pos: -26.5,-40.5 + pos: 79.5,-50.5 parent: 2 - uid: 10886 components: - type: Transform - pos: -25.5,-40.5 + pos: 79.5,-49.5 parent: 2 - uid: 10887 components: - type: Transform - pos: -25.5,-39.5 + pos: 79.5,-44.5 parent: 2 - uid: 10888 components: - type: Transform - pos: -47.5,-67.5 + pos: 79.5,-45.5 parent: 2 - uid: 10889 components: - type: Transform - pos: -47.5,-66.5 + pos: 79.5,-46.5 parent: 2 - uid: 10890 components: - type: Transform - pos: -47.5,-68.5 + pos: 79.5,-47.5 parent: 2 - uid: 10891 components: - type: Transform - pos: -46.5,-66.5 + pos: 79.5,-48.5 parent: 2 - uid: 10892 components: - type: Transform - pos: -46.5,-67.5 + pos: 79.5,-41.5 parent: 2 - uid: 10893 components: - type: Transform - pos: -46.5,-68.5 + pos: 68.5,-74.5 parent: 2 - uid: 10894 components: - type: Transform - pos: 46.5,-11.5 + pos: 68.5,-73.5 parent: 2 - uid: 10895 components: - type: Transform - pos: 45.5,-11.5 + pos: -23.5,-26.5 parent: 2 - uid: 10896 components: - type: Transform - pos: 44.5,-11.5 + pos: -24.5,-26.5 parent: 2 - uid: 10897 components: - type: Transform - pos: 43.5,-11.5 + pos: -25.5,-26.5 parent: 2 - uid: 10898 components: - type: Transform - pos: 42.5,-11.5 + pos: -26.5,-26.5 parent: 2 - uid: 10899 components: - type: Transform - pos: 40.5,-7.5 + pos: -27.5,-26.5 parent: 2 - uid: 10900 components: - type: Transform - pos: 40.5,-8.5 + pos: -28.5,-26.5 parent: 2 - uid: 10901 components: - type: Transform - pos: 40.5,-9.5 + pos: 68.5,-72.5 parent: 2 - uid: 10902 components: - type: Transform - pos: 40.5,-10.5 + pos: 68.5,-71.5 parent: 2 - uid: 10903 components: - type: Transform - pos: 40.5,-11.5 + pos: 36.5,-56.5 parent: 2 - uid: 10904 components: - type: Transform - pos: 30.5,-8.5 + pos: 36.5,-54.5 parent: 2 - uid: 10905 components: - type: Transform - pos: 31.5,-8.5 + pos: 36.5,-53.5 parent: 2 - uid: 10906 components: - type: Transform - pos: 33.5,-8.5 + pos: 36.5,-52.5 parent: 2 - uid: 10907 components: - type: Transform - pos: 34.5,-8.5 + pos: 38.5,-51.5 parent: 2 - uid: 10908 components: - type: Transform - pos: 35.5,-8.5 + pos: 39.5,-51.5 parent: 2 - uid: 10909 components: - type: Transform - pos: 30.5,-13.5 + pos: 40.5,-51.5 parent: 2 - uid: 10910 components: - type: Transform - pos: 37.5,-8.5 + pos: 41.5,-51.5 parent: 2 - uid: 10911 components: - type: Transform - pos: -46.5,-42.5 + rot: 3.141592653589793 rad + pos: -1.5,-71.5 parent: 2 - uid: 10912 components: - type: Transform - pos: -20.5,-52.5 + pos: 62.5,-17.5 parent: 2 - uid: 10913 components: - type: Transform - pos: -37.5,-21.5 + pos: 62.5,-18.5 parent: 2 - uid: 10914 components: - type: Transform - pos: -37.5,-22.5 + pos: 62.5,-19.5 parent: 2 - uid: 10915 components: - type: Transform - pos: -37.5,-23.5 + pos: 62.5,-20.5 parent: 2 - uid: 10916 components: - type: Transform - pos: -37.5,-24.5 + pos: 62.5,-21.5 parent: 2 - uid: 10917 components: - type: Transform - pos: -43.5,-26.5 + pos: 62.5,-22.5 parent: 2 - uid: 10918 components: - type: Transform - pos: -42.5,-26.5 + pos: 62.5,-23.5 parent: 2 - uid: 10919 components: - type: Transform - pos: -41.5,-26.5 + pos: -46.5,-9.5 parent: 2 - uid: 10920 components: - type: Transform - pos: -40.5,-26.5 + pos: -46.5,-10.5 parent: 2 - uid: 10921 components: - type: Transform - pos: -39.5,-26.5 + pos: -46.5,-11.5 parent: 2 - uid: 10922 components: - type: Transform - pos: -38.5,-26.5 + pos: -46.5,-12.5 parent: 2 - uid: 10923 components: - type: Transform - pos: -48.5,-32.5 + pos: -46.5,-13.5 parent: 2 - uid: 10924 components: - type: Transform - pos: -52.5,-32.5 + pos: -46.5,-14.5 parent: 2 - uid: 10925 components: - type: Transform - pos: 69.5,3.5 + pos: -46.5,-15.5 parent: 2 - uid: 10926 components: - type: Transform - pos: -2.5,29.5 + pos: -46.5,-16.5 parent: 2 - uid: 10927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,32.5 + rot: -1.5707963267948966 rad + pos: -59.5,-12.5 parent: 2 - uid: 10928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,32.5 + rot: -1.5707963267948966 rad + pos: -59.5,-13.5 parent: 2 - uid: 10929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,32.5 + rot: -1.5707963267948966 rad + pos: -59.5,-14.5 parent: 2 - uid: 10930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,25.5 + rot: -1.5707963267948966 rad + pos: -59.5,-15.5 parent: 2 - uid: 10931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,25.5 + rot: -1.5707963267948966 rad + pos: -59.5,-16.5 parent: 2 - uid: 10932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,25.5 + rot: -1.5707963267948966 rad + pos: -59.5,-17.5 parent: 2 - uid: 10933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,25.5 + rot: -1.5707963267948966 rad + pos: -59.5,-18.5 parent: 2 - uid: 10934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,25.5 + rot: -1.5707963267948966 rad + pos: -59.5,-19.5 parent: 2 - uid: 10935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 parent: 2 - uid: 10936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,25.5 + rot: -1.5707963267948966 rad + pos: -60.5,-20.5 parent: 2 - uid: 10937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,27.5 + rot: -1.5707963267948966 rad + pos: -61.5,-20.5 parent: 2 - uid: 10938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,26.5 + rot: -1.5707963267948966 rad + pos: -62.5,-20.5 parent: 2 - uid: 10939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 + rot: -1.5707963267948966 rad + pos: -63.5,-20.5 parent: 2 - uid: 10940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,24.5 + rot: -1.5707963267948966 rad + pos: -64.5,-20.5 parent: 2 - uid: 10941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,24.5 + rot: -1.5707963267948966 rad + pos: -65.5,-20.5 parent: 2 - uid: 10942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 + rot: -1.5707963267948966 rad + pos: -66.5,-20.5 parent: 2 - uid: 10943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,24.5 + rot: -1.5707963267948966 rad + pos: -67.5,-20.5 parent: 2 - uid: 10944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,24.5 + rot: -1.5707963267948966 rad + pos: -68.5,-20.5 parent: 2 - uid: 10945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,24.5 + rot: -1.5707963267948966 rad + pos: -69.5,-20.5 parent: 2 - uid: 10946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,24.5 + rot: -1.5707963267948966 rad + pos: -70.5,-20.5 parent: 2 - uid: 10947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,23.5 + rot: -1.5707963267948966 rad + pos: -71.5,-20.5 parent: 2 - uid: 10948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,23.5 + rot: -1.5707963267948966 rad + pos: -72.5,-20.5 parent: 2 - uid: 10949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,23.5 + rot: -1.5707963267948966 rad + pos: -73.5,-20.5 parent: 2 - uid: 10950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,23.5 + rot: -1.5707963267948966 rad + pos: -73.5,-19.5 parent: 2 - uid: 10951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,23.5 + rot: -1.5707963267948966 rad + pos: -73.5,-18.5 parent: 2 - uid: 10952 components: - type: Transform - pos: -11.5,18.5 + rot: -1.5707963267948966 rad + pos: -73.5,-17.5 parent: 2 - uid: 10953 components: - type: Transform - pos: -11.5,15.5 + rot: -1.5707963267948966 rad + pos: -73.5,-16.5 parent: 2 - uid: 10954 components: - type: Transform - pos: -12.5,24.5 + rot: -1.5707963267948966 rad + pos: -73.5,-15.5 parent: 2 - uid: 10955 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-24.5 + pos: -73.5,-14.5 parent: 2 - uid: 10956 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-23.5 + pos: -73.5,-13.5 parent: 2 - uid: 10957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-22.5 + pos: -73.5,-12.5 parent: 2 - uid: 10958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-21.5 + pos: -73.5,-11.5 parent: 2 - uid: 10959 components: - type: Transform - pos: 67.5,-18.5 + rot: -1.5707963267948966 rad + pos: -73.5,-10.5 parent: 2 - uid: 10960 components: - type: Transform - pos: -45.5,46.5 + rot: -1.5707963267948966 rad + pos: -73.5,-9.5 parent: 2 - uid: 10961 components: - type: Transform - pos: -45.5,47.5 + rot: -1.5707963267948966 rad + pos: -73.5,-8.5 parent: 2 - uid: 10962 components: - type: Transform - pos: -45.5,48.5 + rot: -1.5707963267948966 rad + pos: -73.5,-7.5 parent: 2 - uid: 10963 components: - type: Transform - pos: -45.5,49.5 + rot: -1.5707963267948966 rad + pos: -73.5,-6.5 parent: 2 - uid: 10964 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,46.5 + pos: -72.5,-6.5 parent: 2 - uid: 10965 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,46.5 + pos: -71.5,-6.5 parent: 2 - uid: 10966 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,46.5 + pos: -70.5,-6.5 parent: 2 - uid: 10967 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,46.5 + pos: -69.5,-6.5 parent: 2 - uid: 10968 components: - type: Transform - pos: -40.5,45.5 + rot: -1.5707963267948966 rad + pos: -68.5,-6.5 parent: 2 - uid: 10969 components: - type: Transform - pos: -39.5,45.5 + rot: -1.5707963267948966 rad + pos: -67.5,-6.5 parent: 2 - uid: 10970 components: - type: Transform - pos: -38.5,45.5 + rot: -1.5707963267948966 rad + pos: -66.5,-6.5 parent: 2 - uid: 10971 components: - type: Transform - pos: -40.5,46.5 + rot: -1.5707963267948966 rad + pos: -65.5,-6.5 parent: 2 - uid: 10972 components: - type: Transform - pos: -40.5,47.5 + rot: -1.5707963267948966 rad + pos: -64.5,-6.5 parent: 2 - uid: 10973 components: - type: Transform - pos: -40.5,48.5 + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 parent: 2 - uid: 10974 components: - type: Transform - pos: -40.5,49.5 + rot: -1.5707963267948966 rad + pos: -62.5,-6.5 parent: 2 - uid: 10975 components: - type: Transform - pos: -40.5,50.5 + rot: -1.5707963267948966 rad + pos: -61.5,-6.5 parent: 2 - uid: 10976 components: - type: Transform - pos: -40.5,51.5 + rot: -1.5707963267948966 rad + pos: -60.5,-6.5 parent: 2 - uid: 10977 components: - type: Transform - pos: -40.5,52.5 + rot: -1.5707963267948966 rad + pos: -59.5,-6.5 parent: 2 - uid: 10978 components: - type: Transform - pos: -40.5,53.5 + rot: -1.5707963267948966 rad + pos: -59.5,-7.5 parent: 2 - uid: 10979 components: - type: Transform - pos: -48.5,53.5 + rot: -1.5707963267948966 rad + pos: -59.5,-8.5 parent: 2 - uid: 10980 components: - type: Transform - pos: -47.5,53.5 + rot: -1.5707963267948966 rad + pos: -59.5,-9.5 parent: 2 - uid: 10981 components: - type: Transform - pos: -46.5,53.5 + rot: -1.5707963267948966 rad + pos: -59.5,-10.5 parent: 2 - uid: 10982 components: - type: Transform - pos: -45.5,53.5 + rot: -1.5707963267948966 rad + pos: -59.5,-11.5 parent: 2 - uid: 10983 components: - type: Transform - pos: -44.5,53.5 + rot: -1.5707963267948966 rad + pos: -79.5,-1.5 parent: 2 - uid: 10984 components: - type: Transform - pos: -43.5,53.5 + rot: -1.5707963267948966 rad + pos: -79.5,-2.5 parent: 2 - uid: 10985 components: - type: Transform - pos: -42.5,53.5 + rot: -1.5707963267948966 rad + pos: -79.5,-3.5 parent: 2 - uid: 10986 components: - type: Transform - pos: -41.5,53.5 + rot: -1.5707963267948966 rad + pos: -79.5,-4.5 parent: 2 - uid: 10987 components: - type: Transform - pos: -40.5,53.5 + rot: -1.5707963267948966 rad + pos: -79.5,-5.5 parent: 2 - uid: 10988 components: - type: Transform - pos: -39.5,53.5 + rot: -1.5707963267948966 rad + pos: -79.5,-6.5 parent: 2 - uid: 10989 components: - type: Transform - pos: -49.5,0.5 + rot: -1.5707963267948966 rad + pos: -79.5,-7.5 parent: 2 - uid: 10990 components: - type: Transform - pos: -49.5,-0.5 + rot: -1.5707963267948966 rad + pos: -79.5,-8.5 parent: 2 - uid: 10991 components: - type: Transform - pos: -49.5,-1.5 + rot: -1.5707963267948966 rad + pos: -79.5,-9.5 parent: 2 - uid: 10992 components: - type: Transform - pos: -49.5,-2.5 + rot: -1.5707963267948966 rad + pos: -79.5,-10.5 parent: 2 - uid: 10993 components: - type: Transform - pos: -49.5,-3.5 + rot: -1.5707963267948966 rad + pos: -79.5,-11.5 parent: 2 - uid: 10994 components: - type: Transform - pos: -50.5,-3.5 + rot: -1.5707963267948966 rad + pos: -79.5,-15.5 parent: 2 - uid: 10995 components: - type: Transform - pos: -51.5,-3.5 + rot: -1.5707963267948966 rad + pos: -79.5,-19.5 parent: 2 - uid: 10996 components: - type: Transform - pos: -51.5,-2.5 + rot: -1.5707963267948966 rad + pos: -79.5,-22.5 parent: 2 - uid: 10997 components: - type: Transform - pos: -51.5,-1.5 + rot: -1.5707963267948966 rad + pos: -79.5,-26.5 parent: 2 - uid: 10998 components: - type: Transform - pos: -51.5,-0.5 + rot: -1.5707963267948966 rad + pos: -78.5,-1.5 parent: 2 - uid: 10999 components: - type: Transform - pos: -51.5,0.5 + rot: -1.5707963267948966 rad + pos: -77.5,-1.5 parent: 2 - uid: 11000 components: - type: Transform - pos: -51.5,1.5 + rot: -1.5707963267948966 rad + pos: -76.5,-1.5 parent: 2 - uid: 11001 components: - type: Transform - pos: -38.5,-2.5 + rot: -1.5707963267948966 rad + pos: -75.5,-1.5 parent: 2 - uid: 11002 components: - type: Transform - pos: -37.5,-2.5 + rot: -1.5707963267948966 rad + pos: -74.5,-1.5 parent: 2 - uid: 11003 components: - type: Transform - pos: -36.5,-2.5 + rot: -1.5707963267948966 rad + pos: -73.5,-1.5 parent: 2 - uid: 11004 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,53.5 + pos: -72.5,-1.5 parent: 2 - uid: 11005 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,53.5 + pos: -71.5,-1.5 parent: 2 - uid: 11006 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,53.5 + pos: -70.5,-1.5 parent: 2 - uid: 11007 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,53.5 + pos: -69.5,-1.5 parent: 2 - uid: 11008 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,53.5 + pos: -68.5,-1.5 parent: 2 - uid: 11009 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,53.5 + pos: -67.5,-1.5 parent: 2 - uid: 11010 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,54.5 + pos: -66.5,-1.5 parent: 2 - uid: 11011 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,55.5 + pos: -65.5,-1.5 parent: 2 - uid: 11012 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,56.5 + pos: -64.5,-1.5 parent: 2 - uid: 11013 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,57.5 + pos: -63.5,-1.5 parent: 2 - uid: 11014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,58.5 + pos: -62.5,-1.5 parent: 2 - uid: 11015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,59.5 + pos: -61.5,-1.5 parent: 2 - uid: 11016 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,60.5 + pos: -60.5,-1.5 parent: 2 - uid: 11017 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,61.5 + pos: -59.5,-1.5 parent: 2 - uid: 11018 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,62.5 + pos: -58.5,-1.5 parent: 2 - uid: 11019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,63.5 + pos: -28.5,-66.5 parent: 2 - uid: 11020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,64.5 + pos: -29.5,-66.5 parent: 2 - uid: 11021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,65.5 + pos: -30.5,-66.5 parent: 2 - uid: 11022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,66.5 + pos: -31.5,-66.5 parent: 2 - uid: 11023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,67.5 + pos: -32.5,-66.5 parent: 2 - uid: 11024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,68.5 + pos: -33.5,-66.5 parent: 2 - uid: 11025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,69.5 + pos: -34.5,-66.5 parent: 2 - uid: 11026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,70.5 + pos: -35.5,-66.5 parent: 2 - uid: 11027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,71.5 + pos: -24.5,-51.5 parent: 2 - uid: 11028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,72.5 + pos: -25.5,-51.5 parent: 2 - uid: 11029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,72.5 + pos: -26.5,-51.5 parent: 2 - uid: 11030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,72.5 + pos: -27.5,-51.5 parent: 2 - uid: 11031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,72.5 + pos: -28.5,-51.5 parent: 2 - uid: 11032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,72.5 + pos: -29.5,-51.5 parent: 2 - uid: 11033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,72.5 + pos: -25.5,-41.5 parent: 2 - uid: 11034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,72.5 + pos: -25.5,-42.5 parent: 2 - uid: 11035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,72.5 + pos: -25.5,-43.5 parent: 2 - uid: 11036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,72.5 + pos: -25.5,-44.5 parent: 2 - uid: 11037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,72.5 + pos: -25.5,-45.5 parent: 2 - uid: 11038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,72.5 + pos: -25.5,-46.5 parent: 2 - uid: 11039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,72.5 + pos: -26.5,-46.5 parent: 2 - uid: 11040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,72.5 + pos: -25.5,-47.5 parent: 2 - uid: 11041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,72.5 + pos: -25.5,-47.5 parent: 2 - uid: 11042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,72.5 + pos: -26.5,-47.5 parent: 2 - uid: 11043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,72.5 + pos: -26.5,-39.5 parent: 2 - uid: 11044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,72.5 + pos: -26.5,-40.5 parent: 2 - uid: 11045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,72.5 + pos: -25.5,-40.5 parent: 2 - uid: 11046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,72.5 + pos: -25.5,-39.5 parent: 2 - uid: 11047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,72.5 + pos: -47.5,-67.5 parent: 2 - uid: 11048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,72.5 + pos: -47.5,-66.5 parent: 2 - uid: 11049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,72.5 + pos: -47.5,-68.5 parent: 2 - uid: 11050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,72.5 + pos: -46.5,-66.5 parent: 2 - uid: 11051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,72.5 + pos: -46.5,-67.5 parent: 2 - uid: 11052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,72.5 + pos: -46.5,-68.5 parent: 2 - uid: 11053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,72.5 + pos: 46.5,-11.5 parent: 2 - uid: 11054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,72.5 + pos: 45.5,-11.5 parent: 2 - uid: 11055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,72.5 + pos: 44.5,-11.5 parent: 2 - uid: 11056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,72.5 + pos: 43.5,-11.5 parent: 2 - uid: 11057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,71.5 + pos: 42.5,-11.5 parent: 2 - uid: 11058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,70.5 + pos: 40.5,-7.5 parent: 2 - uid: 11059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,69.5 + pos: 40.5,-8.5 parent: 2 - uid: 11060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,68.5 + pos: 40.5,-9.5 parent: 2 - uid: 11061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,67.5 + pos: 40.5,-10.5 parent: 2 - uid: 11062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,66.5 + pos: 40.5,-11.5 parent: 2 - uid: 11063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,65.5 + pos: 30.5,-8.5 parent: 2 - uid: 11064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,64.5 + pos: 31.5,-8.5 parent: 2 - uid: 11065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,63.5 + pos: 33.5,-8.5 parent: 2 - uid: 11066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,62.5 + pos: 34.5,-8.5 parent: 2 - uid: 11067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,61.5 + pos: 35.5,-8.5 parent: 2 - uid: 11068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,60.5 + pos: 30.5,-13.5 parent: 2 - uid: 11069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,59.5 + pos: 37.5,-8.5 parent: 2 - uid: 11070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,58.5 + pos: -46.5,-42.5 parent: 2 - uid: 11071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,57.5 + pos: -37.5,-21.5 parent: 2 - uid: 11072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,56.5 + pos: -37.5,-22.5 parent: 2 - uid: 11073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,53.5 + pos: -37.5,-23.5 parent: 2 - uid: 11074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,54.5 + pos: -37.5,-24.5 parent: 2 - uid: 11075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,55.5 + pos: -43.5,-26.5 parent: 2 - uid: 11076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,56.5 + pos: -42.5,-26.5 parent: 2 - uid: 11077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,56.5 + pos: -41.5,-26.5 parent: 2 - uid: 11078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,56.5 + pos: -40.5,-26.5 parent: 2 - uid: 11079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,56.5 + pos: -39.5,-26.5 parent: 2 - uid: 11080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,53.5 + pos: -38.5,-26.5 parent: 2 - uid: 11081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,53.5 + pos: -48.5,-32.5 parent: 2 - uid: 11082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,53.5 + pos: -52.5,-32.5 parent: 2 - uid: 11083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,53.5 + pos: 69.5,3.5 parent: 2 - uid: 11084 components: - type: Transform - pos: 12.5,-92.5 + pos: -2.5,29.5 parent: 2 - uid: 11085 components: - type: Transform - pos: 11.5,-99.5 + rot: 3.141592653589793 rad + pos: 14.5,32.5 parent: 2 - uid: 11086 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-71.5 + pos: 13.5,32.5 parent: 2 - uid: 11087 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-67.5 + pos: 2.5,32.5 parent: 2 - uid: 11088 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-71.5 + pos: 19.5,25.5 parent: 2 - uid: 11089 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-71.5 + pos: 18.5,25.5 parent: 2 - uid: 11090 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-68.5 + pos: 17.5,25.5 parent: 2 - uid: 11091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-25.5 + rot: 3.141592653589793 rad + pos: 16.5,25.5 parent: 2 - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-24.5 + rot: 3.141592653589793 rad + pos: 15.5,25.5 parent: 2 - uid: 11093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-23.5 + rot: 3.141592653589793 rad + pos: 14.5,25.5 parent: 2 - uid: 11094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-21.5 + rot: 3.141592653589793 rad + pos: 13.5,25.5 parent: 2 - uid: 11095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-20.5 + rot: 3.141592653589793 rad + pos: 16.5,27.5 parent: 2 - uid: 11096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-18.5 + rot: 3.141592653589793 rad + pos: 16.5,26.5 parent: 2 - uid: 11097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-17.5 + rot: 3.141592653589793 rad + pos: 8.5,24.5 parent: 2 - uid: 11098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-16.5 + rot: 3.141592653589793 rad + pos: 7.5,24.5 parent: 2 - uid: 11099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-14.5 + rot: 3.141592653589793 rad + pos: 6.5,24.5 parent: 2 - uid: 11100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-12.5 + rot: 3.141592653589793 rad + pos: 5.5,24.5 parent: 2 - uid: 11101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-13.5 + rot: 3.141592653589793 rad + pos: 4.5,24.5 parent: 2 - uid: 11102 components: - type: Transform - pos: -13.5,-8.5 + rot: 3.141592653589793 rad + pos: 3.5,24.5 parent: 2 - uid: 11103 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-89.5 + pos: 2.5,24.5 parent: 2 - uid: 11104 components: - type: Transform - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 0.5,24.5 parent: 2 - uid: 11105 components: - type: Transform - pos: 37.5,23.5 + rot: 3.141592653589793 rad + pos: -3.5,23.5 parent: 2 - uid: 11106 components: - type: Transform - pos: 38.5,23.5 + rot: 3.141592653589793 rad + pos: -4.5,23.5 parent: 2 - uid: 11107 components: - type: Transform - pos: 39.5,23.5 + rot: 3.141592653589793 rad + pos: -5.5,23.5 parent: 2 - uid: 11108 components: - type: Transform - pos: 40.5,23.5 + rot: 3.141592653589793 rad + pos: -6.5,23.5 parent: 2 - uid: 11109 components: - type: Transform - pos: 41.5,23.5 + rot: 3.141592653589793 rad + pos: -7.5,23.5 parent: 2 - uid: 11110 components: - type: Transform - pos: 42.5,23.5 + pos: -11.5,18.5 parent: 2 - uid: 11111 components: - type: Transform - pos: 35.5,23.5 + pos: -11.5,15.5 parent: 2 - uid: 11112 components: - type: Transform - pos: 43.5,23.5 + pos: -12.5,24.5 parent: 2 - uid: 11113 components: - type: Transform - pos: 46.5,26.5 + rot: -1.5707963267948966 rad + pos: 65.5,-24.5 parent: 2 - uid: 11114 components: - type: Transform - pos: 47.5,26.5 + rot: -1.5707963267948966 rad + pos: 65.5,-23.5 parent: 2 - uid: 11115 components: - type: Transform - pos: 48.5,26.5 + rot: -1.5707963267948966 rad + pos: 65.5,-22.5 parent: 2 - uid: 11116 components: - type: Transform - pos: 11.5,-97.5 + rot: -1.5707963267948966 rad + pos: 65.5,-21.5 parent: 2 - uid: 11117 components: - type: Transform - pos: 11.5,-93.5 + pos: 67.5,-18.5 parent: 2 - uid: 11118 components: - type: Transform - pos: 11.5,-94.5 + pos: -45.5,46.5 parent: 2 - uid: 11119 components: - type: Transform - pos: 11.5,-95.5 + pos: -45.5,47.5 parent: 2 - uid: 11120 components: - type: Transform - pos: 11.5,-98.5 + pos: -45.5,48.5 parent: 2 - uid: 11121 components: - type: Transform - pos: 11.5,-96.5 + pos: -45.5,49.5 parent: 2 - uid: 11122 components: - type: Transform - pos: 11.5,-104.5 + rot: -1.5707963267948966 rad + pos: -41.5,46.5 parent: 2 - uid: 11123 components: - type: Transform - pos: 11.5,-103.5 + rot: -1.5707963267948966 rad + pos: -42.5,46.5 parent: 2 - uid: 11124 components: - type: Transform - pos: 11.5,-102.5 + rot: -1.5707963267948966 rad + pos: -43.5,46.5 parent: 2 - uid: 11125 components: - type: Transform - pos: 11.5,-101.5 + rot: -1.5707963267948966 rad + pos: -44.5,46.5 parent: 2 - uid: 11126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-53.5 + pos: -40.5,45.5 parent: 2 - uid: 11127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-53.5 + pos: -39.5,45.5 parent: 2 - uid: 11128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-53.5 + pos: -38.5,45.5 parent: 2 - uid: 11129 components: - type: Transform - pos: -79.5,-27.5 + pos: -40.5,46.5 parent: 2 - uid: 11130 components: - type: Transform - pos: -79.5,-28.5 + pos: -40.5,47.5 parent: 2 - uid: 11131 components: - type: Transform - pos: -79.5,-29.5 + pos: -40.5,48.5 parent: 2 - uid: 11132 components: - type: Transform - pos: -79.5,-30.5 + pos: -40.5,49.5 parent: 2 - uid: 11133 components: - type: Transform - pos: -79.5,-31.5 + pos: -40.5,50.5 parent: 2 - uid: 11134 components: - type: Transform - pos: -61.5,-55.5 + pos: -40.5,51.5 parent: 2 - uid: 11135 components: - type: Transform - pos: -18.5,-52.5 + pos: -40.5,52.5 parent: 2 - uid: 11136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-60.5 + pos: -40.5,53.5 parent: 2 - uid: 11137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-61.5 + pos: -48.5,53.5 parent: 2 - uid: 11138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-62.5 + pos: -47.5,53.5 parent: 2 - uid: 11139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-63.5 + pos: -46.5,53.5 parent: 2 - uid: 11140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-64.5 + pos: -45.5,53.5 parent: 2 - uid: 11141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-67.5 + pos: -44.5,53.5 parent: 2 - uid: 11142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-67.5 + pos: -43.5,53.5 parent: 2 - uid: 11143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-67.5 + pos: -42.5,53.5 parent: 2 - uid: 11144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-67.5 + pos: -41.5,53.5 parent: 2 - uid: 11145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-67.5 + pos: -40.5,53.5 parent: 2 - uid: 11146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-67.5 + pos: -39.5,53.5 parent: 2 - uid: 11147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-67.5 + pos: -49.5,0.5 parent: 2 - uid: 11148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 + pos: -49.5,-0.5 parent: 2 - uid: 11149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 + pos: -49.5,-1.5 parent: 2 - uid: 11150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 + pos: -49.5,-2.5 parent: 2 - uid: 11151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 + pos: -49.5,-3.5 parent: 2 - uid: 11152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 + pos: -50.5,-3.5 parent: 2 - uid: 11153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + pos: -51.5,-3.5 parent: 2 - uid: 11154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-13.5 + pos: -51.5,-2.5 parent: 2 - uid: 11155 components: - type: Transform - pos: 49.5,26.5 + pos: -51.5,-1.5 parent: 2 - uid: 11156 components: - type: Transform - pos: 50.5,26.5 + pos: -51.5,-0.5 parent: 2 - uid: 11157 components: - type: Transform - pos: 51.5,26.5 + pos: -51.5,0.5 parent: 2 - uid: 11158 components: - type: Transform - pos: 52.5,26.5 + pos: -51.5,1.5 parent: 2 - uid: 11159 components: - type: Transform - pos: 53.5,26.5 + pos: -38.5,-2.5 parent: 2 - uid: 11160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,38.5 + pos: -37.5,-2.5 parent: 2 - uid: 11161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,37.5 + pos: -36.5,-2.5 parent: 2 - uid: 11162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,36.5 + rot: -1.5707963267948966 rad + pos: -38.5,53.5 parent: 2 - uid: 11163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,35.5 + rot: -1.5707963267948966 rad + pos: -37.5,53.5 parent: 2 - uid: 11164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,35.5 + rot: -1.5707963267948966 rad + pos: -36.5,53.5 parent: 2 - uid: 11165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,35.5 + rot: -1.5707963267948966 rad + pos: -35.5,53.5 parent: 2 - uid: 11166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,31.5 + rot: -1.5707963267948966 rad + pos: -34.5,53.5 parent: 2 - uid: 11167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,32.5 + rot: -1.5707963267948966 rad + pos: -33.5,53.5 parent: 2 - uid: 11168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,33.5 + rot: -1.5707963267948966 rad + pos: -33.5,54.5 parent: 2 - uid: 11169 components: - type: Transform - pos: 81.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,55.5 parent: 2 - uid: 11170 components: - type: Transform - pos: 80.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,56.5 parent: 2 - uid: 11171 components: - type: Transform - pos: 86.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,57.5 parent: 2 - uid: 11172 components: - type: Transform - pos: 87.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,58.5 parent: 2 - uid: 11173 components: - type: Transform - pos: 79.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,59.5 parent: 2 - uid: 11174 components: - type: Transform - pos: 78.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,60.5 parent: 2 - uid: 11175 components: - type: Transform - pos: 88.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,61.5 parent: 2 - uid: 11176 components: - type: Transform - pos: 82.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,62.5 parent: 2 - uid: 11177 components: - type: Transform - pos: -24.5,47.5 + rot: -1.5707963267948966 rad + pos: -33.5,63.5 parent: 2 - uid: 11178 components: - type: Transform - pos: -24.5,46.5 + rot: -1.5707963267948966 rad + pos: -33.5,64.5 parent: 2 - uid: 11179 components: - type: Transform - pos: -24.5,45.5 + rot: -1.5707963267948966 rad + pos: -33.5,65.5 parent: 2 - uid: 11180 components: - type: Transform - pos: -24.5,44.5 + rot: -1.5707963267948966 rad + pos: -33.5,66.5 parent: 2 - uid: 11181 components: - type: Transform - pos: -24.5,43.5 + rot: -1.5707963267948966 rad + pos: -33.5,67.5 parent: 2 - uid: 11182 components: - type: Transform - pos: -24.5,42.5 + rot: -1.5707963267948966 rad + pos: -33.5,68.5 parent: 2 - uid: 11183 components: - type: Transform - pos: -24.5,41.5 + rot: -1.5707963267948966 rad + pos: -33.5,69.5 parent: 2 - uid: 11184 components: - type: Transform - pos: -24.5,40.5 + rot: -1.5707963267948966 rad + pos: -33.5,70.5 parent: 2 - uid: 11185 components: - type: Transform - pos: -24.5,39.5 + rot: -1.5707963267948966 rad + pos: -33.5,71.5 parent: 2 - uid: 11186 components: - type: Transform - pos: -24.5,38.5 + rot: -1.5707963267948966 rad + pos: -33.5,72.5 parent: 2 - uid: 11187 components: - type: Transform - pos: -31.5,39.5 + rot: -1.5707963267948966 rad + pos: -34.5,72.5 parent: 2 - uid: 11188 components: - type: Transform - pos: -32.5,39.5 + rot: -1.5707963267948966 rad + pos: -35.5,72.5 parent: 2 - uid: 11189 components: - type: Transform - pos: -33.5,39.5 + rot: -1.5707963267948966 rad + pos: -36.5,72.5 parent: 2 - uid: 11190 components: - type: Transform - pos: -34.5,39.5 + rot: -1.5707963267948966 rad + pos: -37.5,72.5 parent: 2 - uid: 11191 components: - type: Transform - pos: -35.5,39.5 + rot: -1.5707963267948966 rad + pos: -38.5,72.5 parent: 2 - uid: 11192 components: - type: Transform - pos: -36.5,39.5 + rot: -1.5707963267948966 rad + pos: -39.5,72.5 parent: 2 - uid: 11193 components: - type: Transform - pos: -39.5,39.5 + rot: -1.5707963267948966 rad + pos: -40.5,72.5 parent: 2 - uid: 11194 components: - type: Transform - pos: -40.5,39.5 + rot: -1.5707963267948966 rad + pos: -41.5,72.5 parent: 2 - uid: 11195 components: - type: Transform - pos: -41.5,39.5 + rot: -1.5707963267948966 rad + pos: -42.5,72.5 parent: 2 - uid: 11196 components: - type: Transform - pos: -42.5,39.5 + rot: -1.5707963267948966 rad + pos: -43.5,72.5 parent: 2 - uid: 11197 components: - type: Transform - pos: -43.5,39.5 + rot: -1.5707963267948966 rad + pos: -44.5,72.5 parent: 2 - uid: 11198 components: - type: Transform - pos: -2.5,28.5 + rot: -1.5707963267948966 rad + pos: -45.5,72.5 parent: 2 - uid: 11199 components: - type: Transform - pos: -2.5,27.5 + rot: -1.5707963267948966 rad + pos: -46.5,72.5 parent: 2 - uid: 11200 components: - type: Transform - pos: -2.5,26.5 + rot: -1.5707963267948966 rad + pos: -47.5,72.5 parent: 2 - uid: 11201 components: - type: Transform - pos: -2.5,25.5 + rot: -1.5707963267948966 rad + pos: -48.5,72.5 parent: 2 - uid: 11202 components: - type: Transform - pos: -12.5,26.5 + rot: -1.5707963267948966 rad + pos: -49.5,72.5 parent: 2 - uid: 11203 components: - type: Transform - pos: -11.5,26.5 + rot: -1.5707963267948966 rad + pos: -50.5,72.5 parent: 2 - uid: 11204 components: - type: Transform - pos: -10.5,26.5 + rot: -1.5707963267948966 rad + pos: -51.5,72.5 parent: 2 - uid: 11205 components: - type: Transform - pos: -10.5,24.5 + rot: -1.5707963267948966 rad + pos: -52.5,72.5 parent: 2 - uid: 11206 components: - type: Transform - pos: -37.5,45.5 + rot: -1.5707963267948966 rad + pos: -53.5,72.5 parent: 2 - uid: 11207 components: - type: Transform - pos: -37.5,44.5 + rot: -1.5707963267948966 rad + pos: -54.5,72.5 parent: 2 - uid: 11208 components: - type: Transform - pos: -17.5,58.5 + rot: -1.5707963267948966 rad + pos: -55.5,72.5 parent: 2 - uid: 11209 components: - type: Transform - pos: -17.5,57.5 + rot: -1.5707963267948966 rad + pos: -56.5,72.5 parent: 2 - uid: 11210 components: - type: Transform - pos: -17.5,56.5 + rot: -1.5707963267948966 rad + pos: -57.5,72.5 parent: 2 - uid: 11211 components: - type: Transform - pos: -17.5,55.5 + rot: -1.5707963267948966 rad + pos: -58.5,72.5 parent: 2 - uid: 11212 components: - type: Transform - pos: -17.5,54.5 + rot: -1.5707963267948966 rad + pos: -59.5,72.5 parent: 2 - uid: 11213 components: - type: Transform - pos: -17.5,53.5 + rot: -1.5707963267948966 rad + pos: -60.5,72.5 parent: 2 - uid: 11214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,24.5 + rot: -1.5707963267948966 rad + pos: -61.5,72.5 parent: 2 - uid: 11215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,71.5 parent: 2 - uid: 11216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,70.5 parent: 2 - uid: 11217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,69.5 parent: 2 - uid: 11218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,68.5 parent: 2 - uid: 11219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,35.5 + rot: -1.5707963267948966 rad + pos: -61.5,67.5 parent: 2 - uid: 11220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,34.5 + rot: -1.5707963267948966 rad + pos: -61.5,66.5 parent: 2 - uid: 11221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,33.5 + rot: -1.5707963267948966 rad + pos: -61.5,65.5 parent: 2 - uid: 11222 components: - type: Transform - pos: 83.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,64.5 parent: 2 - uid: 11223 components: - type: Transform - pos: 84.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,63.5 parent: 2 - uid: 11224 components: - type: Transform - pos: 85.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,62.5 parent: 2 - uid: 11225 components: - type: Transform - pos: 89.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,61.5 parent: 2 - uid: 11226 components: - type: Transform - pos: 90.5,36.5 + rot: -1.5707963267948966 rad + pos: -61.5,60.5 parent: 2 - uid: 11227 components: - type: Transform - pos: -22.5,27.5 + rot: -1.5707963267948966 rad + pos: -61.5,59.5 parent: 2 - uid: 11228 components: - type: Transform - pos: -23.5,27.5 + rot: -1.5707963267948966 rad + pos: -61.5,58.5 parent: 2 - uid: 11229 components: - type: Transform - pos: -24.5,27.5 + rot: -1.5707963267948966 rad + pos: -61.5,57.5 parent: 2 - uid: 11230 components: - type: Transform - pos: -25.5,27.5 + rot: -1.5707963267948966 rad + pos: -61.5,56.5 parent: 2 - uid: 11231 components: - type: Transform - pos: -26.5,27.5 + rot: 1.5707963267948966 rad + pos: -53.5,53.5 parent: 2 - uid: 11232 components: - type: Transform - pos: -27.5,27.5 + rot: 1.5707963267948966 rad + pos: -53.5,54.5 parent: 2 - uid: 11233 components: - type: Transform - pos: -28.5,27.5 + rot: 1.5707963267948966 rad + pos: -53.5,55.5 parent: 2 - uid: 11234 components: - type: Transform - pos: 29.5,55.5 + rot: 1.5707963267948966 rad + pos: -54.5,56.5 parent: 2 - uid: 11235 components: - type: Transform - pos: 29.5,56.5 + rot: 1.5707963267948966 rad + pos: -56.5,56.5 parent: 2 - uid: 11236 components: - type: Transform - pos: 29.5,57.5 + rot: 1.5707963267948966 rad + pos: -58.5,56.5 parent: 2 - uid: 11237 components: - type: Transform - pos: 29.5,58.5 + rot: 1.5707963267948966 rad + pos: -60.5,56.5 parent: 2 - uid: 11238 components: - type: Transform - pos: 29.5,59.5 + rot: -1.5707963267948966 rad + pos: -52.5,53.5 parent: 2 - uid: 11239 components: - type: Transform - pos: 29.5,60.5 + rot: -1.5707963267948966 rad + pos: -51.5,53.5 parent: 2 - uid: 11240 components: - type: Transform - pos: 29.5,61.5 + rot: -1.5707963267948966 rad + pos: -50.5,53.5 parent: 2 - uid: 11241 components: - type: Transform - pos: 29.5,62.5 + rot: -1.5707963267948966 rad + pos: -49.5,53.5 parent: 2 - uid: 11242 components: - type: Transform - pos: 28.5,62.5 + pos: 12.5,-92.5 parent: 2 - uid: 11243 components: - type: Transform - pos: 27.5,62.5 + pos: 11.5,-99.5 parent: 2 - uid: 11244 components: - type: Transform - pos: 26.5,62.5 + rot: 3.141592653589793 rad + pos: 1.5,-71.5 parent: 2 - uid: 11245 components: - type: Transform - pos: 25.5,62.5 + rot: 3.141592653589793 rad + pos: 3.5,-71.5 parent: 2 - uid: 11246 components: - type: Transform - pos: 24.5,62.5 + rot: 3.141592653589793 rad + pos: 4.5,-71.5 parent: 2 - uid: 11247 components: - type: Transform - pos: 23.5,62.5 + rot: 3.141592653589793 rad + pos: 2.5,-68.5 parent: 2 - uid: 11248 components: - type: Transform - pos: 22.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-25.5 parent: 2 - uid: 11249 components: - type: Transform - pos: 21.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-24.5 parent: 2 - uid: 11250 components: - type: Transform - pos: 20.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-23.5 parent: 2 - uid: 11251 components: - type: Transform - pos: 19.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-21.5 parent: 2 - uid: 11252 components: - type: Transform - pos: 18.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-20.5 parent: 2 - uid: 11253 components: - type: Transform - pos: 17.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-18.5 parent: 2 - uid: 11254 components: - type: Transform - pos: 16.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-17.5 parent: 2 - uid: 11255 components: - type: Transform - pos: 15.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-16.5 parent: 2 - uid: 11256 components: - type: Transform - pos: 14.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-14.5 parent: 2 - uid: 11257 components: - type: Transform - pos: 13.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-12.5 parent: 2 - uid: 11258 components: - type: Transform - pos: 12.5,62.5 + rot: -1.5707963267948966 rad + pos: -79.5,-13.5 parent: 2 - uid: 11259 components: - type: Transform - pos: 11.5,62.5 + pos: -13.5,-8.5 parent: 2 - uid: 11260 components: - type: Transform - pos: 10.5,62.5 + rot: 3.141592653589793 rad + pos: 23.5,-89.5 parent: 2 - uid: 11261 components: - type: Transform - pos: 9.5,62.5 + pos: 36.5,23.5 parent: 2 - uid: 11262 components: - type: Transform - pos: 8.5,62.5 + pos: 37.5,23.5 parent: 2 - uid: 11263 components: - type: Transform - pos: 7.5,62.5 + pos: 38.5,23.5 parent: 2 - uid: 11264 components: - type: Transform - pos: 7.5,63.5 + pos: 39.5,23.5 parent: 2 - uid: 11265 components: - type: Transform - pos: 7.5,64.5 + pos: 40.5,23.5 parent: 2 - uid: 11266 components: - type: Transform - pos: 7.5,65.5 + pos: 41.5,23.5 parent: 2 - uid: 11267 components: - type: Transform - pos: 7.5,66.5 + pos: 42.5,23.5 parent: 2 - uid: 11268 components: - type: Transform - pos: 7.5,67.5 + pos: 35.5,23.5 parent: 2 - uid: 11269 components: - type: Transform - pos: 7.5,68.5 + pos: 43.5,23.5 parent: 2 - uid: 11270 components: - type: Transform - pos: 7.5,69.5 + pos: 46.5,26.5 parent: 2 - uid: 11271 components: - type: Transform - pos: 7.5,70.5 + pos: 47.5,26.5 parent: 2 - uid: 11272 components: - type: Transform - pos: 7.5,71.5 + pos: 48.5,26.5 parent: 2 - uid: 11273 components: - type: Transform - pos: 7.5,72.5 + pos: 11.5,-97.5 parent: 2 - uid: 11274 components: - type: Transform - pos: 7.5,73.5 + pos: 11.5,-93.5 parent: 2 - uid: 11275 components: - type: Transform - pos: 7.5,74.5 + pos: 11.5,-94.5 parent: 2 - uid: 11276 components: - type: Transform - pos: 7.5,75.5 + pos: 11.5,-95.5 parent: 2 - uid: 11277 components: - type: Transform - pos: 6.5,75.5 + pos: 11.5,-98.5 parent: 2 - uid: 11278 components: - type: Transform - pos: 5.5,75.5 + pos: 11.5,-96.5 parent: 2 - uid: 11279 components: - type: Transform - pos: 4.5,75.5 + pos: 11.5,-104.5 parent: 2 - uid: 11280 components: - type: Transform - pos: 3.5,75.5 + pos: 11.5,-103.5 parent: 2 - uid: 11281 components: - type: Transform - pos: 2.5,75.5 + pos: 11.5,-102.5 parent: 2 - uid: 11282 components: - type: Transform - pos: 1.5,75.5 + pos: 11.5,-101.5 parent: 2 - uid: 11283 components: - type: Transform - pos: 0.5,75.5 + rot: 3.141592653589793 rad + pos: 19.5,-53.5 parent: 2 - uid: 11284 components: - type: Transform - pos: -0.5,75.5 + rot: 3.141592653589793 rad + pos: 18.5,-53.5 parent: 2 - uid: 11285 components: - type: Transform - pos: -1.5,75.5 + rot: 3.141592653589793 rad + pos: 22.5,-53.5 parent: 2 - uid: 11286 components: - type: Transform - pos: -2.5,75.5 + pos: -79.5,-27.5 parent: 2 - uid: 11287 components: - type: Transform - pos: -3.5,75.5 + pos: -79.5,-28.5 parent: 2 - uid: 11288 components: - type: Transform - pos: -4.5,75.5 + pos: -79.5,-29.5 parent: 2 - uid: 11289 components: - type: Transform - pos: -5.5,75.5 + pos: -79.5,-30.5 parent: 2 - uid: 11290 components: - type: Transform - pos: -6.5,75.5 + pos: -79.5,-31.5 parent: 2 - uid: 11291 components: - type: Transform - pos: -7.5,75.5 + pos: -61.5,-55.5 parent: 2 - uid: 11292 components: - type: Transform - pos: -8.5,75.5 + rot: -1.5707963267948966 rad + pos: 14.5,-60.5 parent: 2 - uid: 11293 components: - type: Transform - pos: -9.5,75.5 + rot: -1.5707963267948966 rad + pos: 14.5,-61.5 parent: 2 - uid: 11294 components: - type: Transform - pos: -10.5,75.5 + rot: -1.5707963267948966 rad + pos: 14.5,-62.5 parent: 2 - uid: 11295 components: - type: Transform - pos: 1.5,-92.5 + rot: -1.5707963267948966 rad + pos: 14.5,-63.5 parent: 2 - uid: 11296 components: - type: Transform - pos: 0.5,-92.5 + rot: -1.5707963267948966 rad + pos: 14.5,-64.5 parent: 2 - uid: 11297 components: - type: Transform - pos: -0.5,-92.5 + rot: -1.5707963267948966 rad + pos: 8.5,-67.5 parent: 2 - uid: 11298 components: - type: Transform - pos: -0.5,-93.5 + rot: -1.5707963267948966 rad + pos: 9.5,-67.5 parent: 2 - uid: 11299 components: - type: Transform - pos: -0.5,-94.5 + rot: -1.5707963267948966 rad + pos: 10.5,-67.5 parent: 2 - uid: 11300 components: - type: Transform - pos: -0.5,-95.5 + rot: -1.5707963267948966 rad + pos: 11.5,-67.5 parent: 2 - uid: 11301 components: - type: Transform - pos: -0.5,-96.5 + rot: -1.5707963267948966 rad + pos: 12.5,-67.5 parent: 2 - uid: 11302 components: - type: Transform - pos: -0.5,-97.5 + rot: -1.5707963267948966 rad + pos: 13.5,-67.5 parent: 2 - uid: 11303 components: - type: Transform - pos: -0.5,-98.5 + rot: -1.5707963267948966 rad + pos: 14.5,-67.5 parent: 2 - uid: 11304 components: - type: Transform - pos: -0.5,-99.5 + rot: 1.5707963267948966 rad + pos: 42.5,-13.5 parent: 2 - uid: 11305 components: - type: Transform - pos: -0.5,-100.5 + rot: 1.5707963267948966 rad + pos: 43.5,-13.5 parent: 2 - uid: 11306 components: - type: Transform - pos: -0.5,-101.5 + rot: 1.5707963267948966 rad + pos: 44.5,-13.5 parent: 2 - uid: 11307 components: - type: Transform - pos: -0.5,-102.5 + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 parent: 2 - uid: 11308 components: - type: Transform - pos: -0.5,-103.5 + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 parent: 2 - uid: 11309 components: - type: Transform - pos: -0.5,-104.5 + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 parent: 2 - uid: 11310 components: - type: Transform - pos: -0.5,-105.5 + rot: 1.5707963267948966 rad + pos: 48.5,-13.5 parent: 2 - uid: 11311 components: - type: Transform - pos: -28.5,-105.5 + pos: 49.5,26.5 parent: 2 - uid: 11312 components: - type: Transform - pos: -29.5,-105.5 + pos: 50.5,26.5 parent: 2 - uid: 11313 components: - type: Transform - pos: -30.5,-105.5 + pos: 51.5,26.5 parent: 2 - uid: 11314 components: - type: Transform - pos: -31.5,-105.5 + pos: 52.5,26.5 parent: 2 - uid: 11315 components: - type: Transform - pos: -32.5,-105.5 + pos: 53.5,26.5 parent: 2 - uid: 11316 components: - type: Transform - pos: -33.5,-105.5 + rot: 3.141592653589793 rad + pos: 49.5,38.5 parent: 2 - uid: 11317 components: - type: Transform - pos: -34.5,-105.5 + rot: 3.141592653589793 rad + pos: 49.5,37.5 parent: 2 - uid: 11318 components: - type: Transform - pos: -35.5,-105.5 + rot: 3.141592653589793 rad + pos: 49.5,36.5 parent: 2 - uid: 11319 components: - type: Transform - pos: -1.5,-105.5 + rot: 3.141592653589793 rad + pos: 49.5,35.5 parent: 2 - uid: 11320 components: - type: Transform - pos: -2.5,-105.5 + rot: 3.141592653589793 rad + pos: 48.5,35.5 parent: 2 - uid: 11321 components: - type: Transform - pos: -3.5,-105.5 + rot: 3.141592653589793 rad + pos: 47.5,35.5 parent: 2 - uid: 11322 components: - type: Transform - pos: -4.5,-105.5 + rot: 3.141592653589793 rad + pos: 52.5,31.5 parent: 2 - uid: 11323 components: - type: Transform - pos: -5.5,-105.5 + rot: 3.141592653589793 rad + pos: 52.5,32.5 parent: 2 - uid: 11324 components: - type: Transform - pos: -6.5,-105.5 + rot: 3.141592653589793 rad + pos: 52.5,33.5 parent: 2 - uid: 11325 components: - type: Transform - pos: -7.5,-105.5 + pos: 81.5,36.5 parent: 2 - uid: 11326 components: - type: Transform - pos: -8.5,-105.5 + pos: 80.5,36.5 parent: 2 - uid: 11327 components: - type: Transform - pos: -9.5,-105.5 + pos: 86.5,36.5 parent: 2 - uid: 11328 components: - type: Transform - pos: -10.5,-105.5 + pos: 87.5,36.5 parent: 2 - uid: 11329 components: - type: Transform - pos: -11.5,-105.5 + pos: 79.5,36.5 parent: 2 - uid: 11330 components: - type: Transform - pos: -12.5,-105.5 + pos: 78.5,36.5 parent: 2 - uid: 11331 components: - type: Transform - pos: -13.5,-105.5 + pos: 88.5,36.5 parent: 2 - uid: 11332 components: - type: Transform - pos: -14.5,-105.5 + pos: 82.5,36.5 parent: 2 - uid: 11333 components: - type: Transform - pos: -15.5,-105.5 + pos: -24.5,47.5 parent: 2 - uid: 11334 components: - type: Transform - pos: -16.5,-105.5 + pos: -24.5,46.5 parent: 2 - uid: 11335 components: - type: Transform - pos: -17.5,-105.5 + pos: -24.5,45.5 parent: 2 - uid: 11336 components: - type: Transform - pos: -18.5,-105.5 + pos: -24.5,44.5 parent: 2 - uid: 11337 components: - type: Transform - pos: -19.5,-105.5 + pos: -24.5,43.5 parent: 2 - uid: 11338 components: - type: Transform - pos: -20.5,-105.5 + pos: -24.5,42.5 parent: 2 - uid: 11339 components: - type: Transform - pos: -21.5,-105.5 + pos: -24.5,41.5 parent: 2 - uid: 11340 components: - type: Transform - pos: -22.5,-105.5 + pos: -24.5,40.5 parent: 2 - uid: 11341 components: - type: Transform - pos: -23.5,-105.5 + pos: -24.5,39.5 parent: 2 - uid: 11342 components: - type: Transform - pos: -24.5,-105.5 + pos: -24.5,38.5 parent: 2 - uid: 11343 components: - type: Transform - pos: -25.5,-105.5 + pos: -31.5,39.5 parent: 2 - uid: 11344 components: - type: Transform - pos: -26.5,-105.5 + pos: -32.5,39.5 parent: 2 - uid: 11345 components: - type: Transform - pos: -27.5,-105.5 + pos: -33.5,39.5 parent: 2 - uid: 11346 components: - type: Transform - pos: -35.5,-104.5 + pos: -34.5,39.5 parent: 2 - uid: 11347 components: - type: Transform - pos: -35.5,-103.5 + pos: -35.5,39.5 parent: 2 - uid: 11348 components: - type: Transform - pos: -35.5,-102.5 + pos: -36.5,39.5 parent: 2 - uid: 11349 components: - type: Transform - pos: 67.5,-17.5 + pos: -39.5,39.5 parent: 2 - uid: 11350 components: - type: Transform - pos: -79.5,-32.5 + pos: -40.5,39.5 parent: 2 - uid: 11351 components: - type: Transform - pos: -78.5,-31.5 + pos: -41.5,39.5 parent: 2 - uid: 11352 components: - type: Transform - pos: -74.5,-48.5 + pos: -42.5,39.5 parent: 2 - uid: 11353 components: - type: Transform - pos: -73.5,-48.5 + pos: -43.5,39.5 parent: 2 - uid: 11354 components: - type: Transform - pos: -72.5,-48.5 + pos: -2.5,28.5 parent: 2 - uid: 11355 components: - type: Transform - pos: -71.5,-48.5 + pos: -2.5,27.5 parent: 2 - uid: 11356 components: - type: Transform - pos: -70.5,-48.5 + pos: -2.5,26.5 parent: 2 - uid: 11357 components: - type: Transform - pos: -69.5,-48.5 + pos: -2.5,25.5 parent: 2 - uid: 11358 components: - type: Transform - pos: -68.5,-48.5 + pos: -12.5,26.5 parent: 2 - uid: 11359 components: - type: Transform - pos: -67.5,-48.5 + pos: -11.5,26.5 parent: 2 - uid: 11360 components: - type: Transform - pos: -66.5,-48.5 + pos: -10.5,26.5 parent: 2 - uid: 11361 components: - type: Transform - pos: -65.5,-48.5 + pos: -10.5,24.5 parent: 2 - uid: 11362 components: - type: Transform - pos: -64.5,-48.5 + pos: -37.5,45.5 parent: 2 - uid: 11363 components: - type: Transform - pos: -63.5,-48.5 + pos: -37.5,44.5 parent: 2 - uid: 11364 components: - type: Transform - pos: -62.5,-48.5 + pos: -17.5,58.5 parent: 2 - uid: 11365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-74.5 + pos: -17.5,57.5 parent: 2 - uid: 11366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-27.5 + pos: -17.5,56.5 parent: 2 - uid: 11367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-28.5 + pos: -17.5,55.5 parent: 2 - uid: 11368 components: - type: Transform - pos: 79.5,-29.5 + pos: -17.5,54.5 parent: 2 - uid: 11369 components: - type: Transform - pos: 79.5,-30.5 + pos: -17.5,53.5 parent: 2 - uid: 11370 components: - type: Transform - pos: 79.5,-31.5 + rot: 1.5707963267948966 rad + pos: -11.5,24.5 parent: 2 - uid: 11371 components: - type: Transform - pos: 79.5,-40.5 + rot: 3.141592653589793 rad + pos: 66.5,36.5 parent: 2 - uid: 11372 components: - type: Transform - pos: 79.5,-39.5 + rot: 3.141592653589793 rad + pos: 65.5,36.5 parent: 2 - uid: 11373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-56.5 + rot: 3.141592653589793 rad + pos: 64.5,36.5 parent: 2 - uid: 11374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-57.5 + rot: 3.141592653589793 rad + pos: 63.5,36.5 parent: 2 - uid: 11375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-57.5 + rot: 3.141592653589793 rad + pos: 63.5,35.5 parent: 2 - uid: 11376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-57.5 + rot: 3.141592653589793 rad + pos: 63.5,34.5 parent: 2 - uid: 11377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-58.5 + rot: 3.141592653589793 rad + pos: 63.5,33.5 parent: 2 - uid: 11378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-59.5 + pos: 83.5,36.5 parent: 2 - uid: 11379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-60.5 + pos: 84.5,36.5 parent: 2 - uid: 11380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-61.5 + pos: 85.5,36.5 parent: 2 - uid: 11381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-62.5 + pos: 89.5,36.5 parent: 2 - uid: 11382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-63.5 + pos: 90.5,36.5 parent: 2 - uid: 11383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-64.5 + pos: -22.5,27.5 parent: 2 - uid: 11384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-65.5 + pos: -23.5,27.5 parent: 2 - uid: 11385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-66.5 + pos: -24.5,27.5 parent: 2 - uid: 11386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-67.5 + pos: -25.5,27.5 parent: 2 - uid: 11387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-68.5 + pos: -26.5,27.5 parent: 2 - uid: 11388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-69.5 + pos: -27.5,27.5 parent: 2 - uid: 11389 components: - type: Transform - pos: 8.5,-35.5 + pos: -28.5,27.5 parent: 2 - uid: 11390 components: - type: Transform - pos: 8.5,-34.5 + pos: 29.5,55.5 parent: 2 - uid: 11391 components: - type: Transform - pos: 8.5,-32.5 + pos: 29.5,56.5 parent: 2 - uid: 11392 components: - type: Transform - pos: 8.5,-33.5 + pos: 29.5,57.5 parent: 2 - uid: 11393 components: - type: Transform - pos: 46.5,-33.5 + pos: 29.5,58.5 parent: 2 - uid: 11394 components: - type: Transform - pos: 45.5,-33.5 + pos: 29.5,59.5 parent: 2 - uid: 11395 components: - type: Transform - pos: 44.5,-33.5 + pos: 29.5,60.5 parent: 2 - uid: 11396 components: - type: Transform - pos: 8.5,-31.5 + pos: 29.5,61.5 parent: 2 - uid: 11397 components: - type: Transform - pos: 8.5,-30.5 + pos: 29.5,62.5 parent: 2 - uid: 11398 components: - type: Transform - pos: 68.5,-70.5 + pos: 28.5,62.5 parent: 2 - uid: 11399 components: - type: Transform - pos: 69.5,-71.5 + pos: 27.5,62.5 parent: 2 - uid: 11400 components: - type: Transform - pos: 70.5,-71.5 + pos: 26.5,62.5 parent: 2 - uid: 11401 components: - type: Transform - pos: 71.5,-71.5 + pos: 25.5,62.5 parent: 2 - uid: 11402 components: - type: Transform - pos: 71.5,-71.5 + pos: 24.5,62.5 parent: 2 - uid: 11403 components: - type: Transform - pos: 71.5,-70.5 + pos: 23.5,62.5 parent: 2 - uid: 11404 components: - type: Transform - pos: 72.5,-70.5 + pos: 22.5,62.5 parent: 2 - uid: 11405 components: - type: Transform - pos: 72.5,-69.5 + pos: 21.5,62.5 parent: 2 - uid: 11406 components: - type: Transform - pos: 73.5,-69.5 + pos: 20.5,62.5 parent: 2 - uid: 11407 components: - type: Transform - pos: 74.5,-69.5 + pos: 19.5,62.5 parent: 2 - uid: 11408 components: - type: Transform - pos: 74.5,-68.5 + pos: 18.5,62.5 parent: 2 - uid: 11409 components: - type: Transform - pos: 74.5,-67.5 + pos: 17.5,62.5 parent: 2 - uid: 11410 components: - type: Transform - pos: 74.5,-66.5 + pos: 16.5,62.5 parent: 2 - uid: 11411 components: - type: Transform - pos: 74.5,-65.5 + pos: 15.5,62.5 parent: 2 - uid: 11412 components: - type: Transform - pos: 74.5,-64.5 + pos: 14.5,62.5 parent: 2 - uid: 11413 components: - type: Transform - pos: 74.5,-63.5 + pos: 13.5,62.5 parent: 2 - uid: 11414 components: - type: Transform - pos: 75.5,-63.5 + pos: 12.5,62.5 parent: 2 - uid: 11415 components: - type: Transform - pos: 76.5,-63.5 + pos: 11.5,62.5 parent: 2 - uid: 11416 components: - type: Transform - pos: 77.5,-63.5 + pos: 10.5,62.5 parent: 2 - uid: 11417 components: - type: Transform - pos: 78.5,-63.5 + pos: 9.5,62.5 parent: 2 - uid: 11418 components: - type: Transform - pos: 79.5,-63.5 + pos: 8.5,62.5 parent: 2 - uid: 11419 components: - type: Transform - pos: 79.5,-51.5 + pos: 7.5,62.5 parent: 2 - uid: 11420 components: - type: Transform - pos: 79.5,-52.5 + pos: 7.5,63.5 parent: 2 - uid: 11421 components: - type: Transform - pos: 79.5,-53.5 + pos: 7.5,64.5 parent: 2 - uid: 11422 components: - type: Transform - pos: 79.5,-54.5 + pos: 7.5,65.5 parent: 2 - uid: 11423 components: - type: Transform - pos: 79.5,-55.5 + pos: 7.5,66.5 parent: 2 - uid: 11424 components: - type: Transform - pos: 79.5,-56.5 + pos: 7.5,67.5 parent: 2 - uid: 11425 components: - type: Transform - pos: 79.5,-57.5 + pos: 7.5,68.5 parent: 2 - uid: 11426 components: - type: Transform - pos: 79.5,-58.5 + pos: 7.5,69.5 parent: 2 - uid: 11427 components: - type: Transform - pos: 79.5,-59.5 + pos: 7.5,70.5 parent: 2 - uid: 11428 components: - type: Transform - pos: 79.5,-60.5 + pos: 7.5,71.5 parent: 2 - uid: 11429 components: - type: Transform - pos: 79.5,-61.5 + pos: 7.5,72.5 parent: 2 - uid: 11430 components: - type: Transform - pos: 79.5,-62.5 + pos: 7.5,73.5 parent: 2 - uid: 11431 components: - type: Transform - pos: 72.5,-71.5 + pos: 7.5,74.5 parent: 2 - uid: 11432 components: - type: Transform - pos: 71.5,-69.5 + pos: 7.5,75.5 parent: 2 - uid: 11433 components: - type: Transform - pos: 55.5,-32.5 + pos: 6.5,75.5 parent: 2 - uid: 11434 components: - type: Transform - pos: 54.5,-32.5 + pos: 5.5,75.5 parent: 2 - uid: 11435 components: - type: Transform - pos: 53.5,-32.5 + pos: 4.5,75.5 parent: 2 - uid: 11436 components: - type: Transform - pos: 67.5,-74.5 + pos: 3.5,75.5 parent: 2 - uid: 11437 components: - type: Transform - pos: 66.5,-74.5 + pos: 2.5,75.5 parent: 2 - uid: 11438 components: - type: Transform - pos: 65.5,-74.5 + pos: 1.5,75.5 parent: 2 - uid: 11439 components: - type: Transform - pos: 64.5,-74.5 + pos: 0.5,75.5 parent: 2 - uid: 11440 components: - type: Transform - pos: 63.5,-74.5 + pos: -0.5,75.5 parent: 2 - uid: 11441 components: - type: Transform - pos: 62.5,-74.5 + pos: -1.5,75.5 parent: 2 - uid: 11442 components: - type: Transform - pos: 61.5,-74.5 + pos: -2.5,75.5 parent: 2 - uid: 11443 components: - type: Transform - pos: 60.5,-74.5 + pos: -3.5,75.5 parent: 2 - uid: 11444 components: - type: Transform - pos: 59.5,-74.5 + pos: -4.5,75.5 parent: 2 - uid: 11445 components: - type: Transform - pos: 58.5,-74.5 + pos: -5.5,75.5 parent: 2 - uid: 11446 components: - type: Transform - pos: 55.5,-30.5 + pos: -6.5,75.5 parent: 2 - uid: 11447 components: - type: Transform - pos: 55.5,-31.5 + pos: -7.5,75.5 parent: 2 - uid: 11448 components: - type: Transform - pos: 59.5,-22.5 + pos: -8.5,75.5 parent: 2 - uid: 11449 components: - type: Transform - pos: 59.5,-41.5 + pos: -9.5,75.5 parent: 2 - uid: 11450 components: - type: Transform - pos: 59.5,-40.5 + pos: -10.5,75.5 parent: 2 - uid: 11451 components: - type: Transform - pos: 59.5,-39.5 + pos: 1.5,-92.5 parent: 2 - uid: 11452 components: - type: Transform - pos: 59.5,-38.5 + pos: 0.5,-92.5 parent: 2 - uid: 11453 components: - type: Transform - pos: 57.5,-38.5 + pos: -0.5,-92.5 parent: 2 - uid: 11454 components: - type: Transform - pos: 56.5,-38.5 + pos: -0.5,-93.5 parent: 2 - uid: 11455 components: - type: Transform - pos: 59.5,-23.5 + pos: -0.5,-94.5 parent: 2 - uid: 11456 components: - type: Transform - pos: 59.5,-24.5 + pos: -0.5,-95.5 parent: 2 - uid: 11457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-20.5 + pos: -0.5,-96.5 parent: 2 - uid: 11458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-19.5 + pos: -0.5,-97.5 parent: 2 - uid: 11459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-18.5 + pos: -0.5,-98.5 parent: 2 - uid: 11460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-18.5 + pos: -0.5,-99.5 parent: 2 - uid: 11461 components: - type: Transform - pos: 75.5,-51.5 + pos: -0.5,-100.5 parent: 2 - uid: 11462 components: - type: Transform - pos: 75.5,-52.5 + pos: -0.5,-101.5 parent: 2 - uid: 11463 components: - type: Transform - pos: 75.5,-53.5 + pos: -0.5,-102.5 parent: 2 - uid: 11464 components: - type: Transform - pos: 75.5,-54.5 + pos: -0.5,-103.5 parent: 2 - uid: 11465 components: - type: Transform - pos: 75.5,-55.5 + pos: -0.5,-104.5 parent: 2 - uid: 11466 components: - type: Transform - pos: 75.5,-56.5 + pos: -0.5,-105.5 parent: 2 - uid: 11467 components: - type: Transform - pos: 60.5,-26.5 + pos: -28.5,-105.5 parent: 2 - uid: 11468 components: - type: Transform - pos: 59.5,-26.5 + pos: -29.5,-105.5 parent: 2 - uid: 11469 components: - type: Transform - pos: 58.5,-26.5 + pos: -30.5,-105.5 parent: 2 - uid: 11470 components: - type: Transform - pos: 57.5,-26.5 + pos: -31.5,-105.5 parent: 2 - uid: 11471 components: - type: Transform - pos: 56.5,-26.5 + pos: -32.5,-105.5 parent: 2 - uid: 11472 components: - type: Transform - pos: 64.5,-58.5 + pos: -33.5,-105.5 parent: 2 - uid: 11473 components: - type: Transform - pos: 71.5,-57.5 + pos: -34.5,-105.5 parent: 2 - uid: 11474 components: - type: Transform - pos: 71.5,-58.5 + pos: -35.5,-105.5 parent: 2 - uid: 11475 components: - type: Transform - pos: 71.5,-59.5 + pos: -1.5,-105.5 parent: 2 - uid: 11476 components: - type: Transform - pos: 71.5,-60.5 + pos: -2.5,-105.5 parent: 2 - uid: 11477 components: - type: Transform - pos: 71.5,-61.5 + pos: -3.5,-105.5 parent: 2 - uid: 11478 components: - type: Transform - pos: 47.5,-65.5 + pos: -4.5,-105.5 parent: 2 - uid: 11479 components: - type: Transform - pos: 48.5,-65.5 + pos: -5.5,-105.5 parent: 2 - uid: 11480 components: - type: Transform - pos: 49.5,-65.5 + pos: -6.5,-105.5 parent: 2 - uid: 11481 components: - type: Transform - pos: 50.5,-65.5 + pos: -7.5,-105.5 parent: 2 - uid: 11482 components: - type: Transform - pos: 52.5,-66.5 + pos: -8.5,-105.5 parent: 2 - uid: 11483 components: - type: Transform - pos: 69.5,-63.5 + pos: -9.5,-105.5 parent: 2 - uid: 11484 components: - type: Transform - pos: 67.5,-66.5 + pos: -10.5,-105.5 parent: 2 - uid: 11485 components: - type: Transform - pos: 11.5,-89.5 + pos: -11.5,-105.5 parent: 2 - uid: 11486 components: - type: Transform - pos: 12.5,-89.5 + pos: -12.5,-105.5 parent: 2 - uid: 11487 components: - type: Transform - pos: 12.5,-90.5 + pos: -13.5,-105.5 parent: 2 - uid: 11488 components: - type: Transform - pos: 12.5,-91.5 + pos: -14.5,-105.5 parent: 2 - uid: 11489 components: - type: Transform - pos: 5.5,-89.5 + pos: -15.5,-105.5 parent: 2 - uid: 11490 components: - type: Transform - pos: 6.5,-89.5 + pos: -16.5,-105.5 parent: 2 - uid: 11491 components: - type: Transform - pos: 7.5,-89.5 + pos: -17.5,-105.5 parent: 2 - uid: 11492 components: - type: Transform - pos: 8.5,-89.5 + pos: -18.5,-105.5 parent: 2 - uid: 11493 components: - type: Transform - pos: 9.5,-89.5 + pos: -19.5,-105.5 parent: 2 - uid: 11494 components: - type: Transform - pos: 10.5,-89.5 + pos: -20.5,-105.5 parent: 2 - uid: 11495 components: - type: Transform - pos: 3.5,-89.5 + pos: -21.5,-105.5 parent: 2 - uid: 11496 components: - type: Transform - pos: 70.5,-25.5 + pos: -22.5,-105.5 parent: 2 - uid: 11497 components: - type: Transform - pos: 69.5,-25.5 + pos: -23.5,-105.5 parent: 2 - uid: 11498 components: - type: Transform - pos: 68.5,-25.5 + pos: -24.5,-105.5 parent: 2 - uid: 11499 components: - type: Transform - pos: 66.5,-25.5 + pos: -25.5,-105.5 parent: 2 - uid: 11500 components: - type: Transform - pos: 67.5,-25.5 + pos: -26.5,-105.5 parent: 2 - uid: 11501 components: - type: Transform - pos: 71.5,-26.5 + pos: -27.5,-105.5 parent: 2 - uid: 11502 components: - type: Transform - pos: 72.5,-26.5 + pos: -35.5,-104.5 parent: 2 - uid: 11503 components: - type: Transform - pos: 73.5,-26.5 + pos: -35.5,-103.5 parent: 2 - uid: 11504 components: - type: Transform - pos: 74.5,-26.5 + pos: -35.5,-102.5 parent: 2 - uid: 11505 components: - type: Transform - pos: 75.5,-26.5 + pos: 67.5,-17.5 parent: 2 - uid: 11506 components: - type: Transform - pos: 76.5,-26.5 + pos: -79.5,-32.5 parent: 2 - uid: 11507 components: - type: Transform - pos: 77.5,-26.5 + pos: -78.5,-31.5 parent: 2 - uid: 11508 components: - type: Transform - pos: 78.5,-26.5 + pos: -74.5,-48.5 parent: 2 - uid: 11509 components: - type: Transform - pos: -46.5,-53.5 + pos: -73.5,-48.5 parent: 2 - uid: 11510 components: - type: Transform - pos: -46.5,-54.5 + pos: -72.5,-48.5 parent: 2 - uid: 11511 components: - type: Transform - pos: 6.5,-88.5 + pos: -71.5,-48.5 parent: 2 - uid: 11512 components: - type: Transform - pos: 6.5,-87.5 + pos: -70.5,-48.5 parent: 2 - uid: 11513 components: - type: Transform - pos: 8.5,-75.5 + pos: -69.5,-48.5 parent: 2 - uid: 11514 components: - type: Transform - pos: 9.5,-75.5 + pos: -68.5,-48.5 parent: 2 - uid: 11515 components: - type: Transform - pos: 10.5,-75.5 + pos: -67.5,-48.5 parent: 2 - uid: 11516 components: - type: Transform - pos: 11.5,-75.5 + pos: -66.5,-48.5 parent: 2 - uid: 11517 components: - type: Transform - pos: 12.5,-75.5 + pos: -65.5,-48.5 parent: 2 - uid: 11518 components: - type: Transform - pos: 13.5,-75.5 + pos: -64.5,-48.5 parent: 2 - uid: 11519 components: - type: Transform - pos: 14.5,-75.5 + pos: -63.5,-48.5 parent: 2 - uid: 11520 components: - type: Transform - pos: 15.5,-75.5 + pos: -62.5,-48.5 parent: 2 - uid: 11521 components: - type: Transform - pos: 16.5,-75.5 + rot: 3.141592653589793 rad + pos: 55.5,-74.5 parent: 2 - uid: 11522 components: - type: Transform - pos: 17.5,-75.5 + rot: 3.141592653589793 rad + pos: 79.5,-27.5 parent: 2 - uid: 11523 components: - type: Transform - pos: 18.5,-75.5 + rot: 3.141592653589793 rad + pos: 79.5,-28.5 parent: 2 - uid: 11524 components: - type: Transform - pos: 19.5,-75.5 + pos: 79.5,-29.5 parent: 2 - uid: 11525 components: - type: Transform - pos: 20.5,-75.5 + pos: 79.5,-30.5 parent: 2 - uid: 11526 components: - type: Transform - pos: 21.5,-75.5 + pos: 79.5,-31.5 parent: 2 - uid: 11527 components: - type: Transform - pos: 69.5,4.5 + pos: 79.5,-40.5 parent: 2 - uid: 11528 components: - type: Transform - pos: 69.5,2.5 + pos: 79.5,-39.5 parent: 2 - uid: 11529 components: - type: Transform - pos: 69.5,1.5 + rot: 1.5707963267948966 rad + pos: -61.5,-56.5 parent: 2 - uid: 11530 components: - type: Transform - pos: 69.5,0.5 + rot: 1.5707963267948966 rad + pos: -61.5,-57.5 parent: 2 - uid: 11531 components: - type: Transform - pos: 69.5,-0.5 + rot: 1.5707963267948966 rad + pos: -60.5,-57.5 parent: 2 - uid: 11532 components: - type: Transform - pos: 69.5,-1.5 + rot: 1.5707963267948966 rad + pos: -59.5,-57.5 parent: 2 - uid: 11533 components: - type: Transform - pos: 69.5,31.5 + rot: 1.5707963267948966 rad + pos: -59.5,-58.5 parent: 2 - uid: 11534 components: - type: Transform - pos: 69.5,30.5 + rot: 1.5707963267948966 rad + pos: -59.5,-59.5 parent: 2 - uid: 11535 components: - type: Transform - pos: 69.5,29.5 + rot: 1.5707963267948966 rad + pos: -59.5,-60.5 parent: 2 - uid: 11536 components: - type: Transform - pos: 69.5,28.5 + rot: 1.5707963267948966 rad + pos: -59.5,-61.5 parent: 2 - uid: 11537 components: - type: Transform - pos: 69.5,27.5 + rot: 1.5707963267948966 rad + pos: -59.5,-62.5 parent: 2 - uid: 11538 components: - type: Transform - pos: 69.5,26.5 + rot: 1.5707963267948966 rad + pos: -59.5,-63.5 parent: 2 - uid: 11539 components: - type: Transform - pos: 69.5,25.5 + rot: 1.5707963267948966 rad + pos: -59.5,-64.5 parent: 2 - uid: 11540 components: - type: Transform - pos: 69.5,24.5 + rot: 1.5707963267948966 rad + pos: -59.5,-65.5 parent: 2 - uid: 11541 components: - type: Transform - pos: 69.5,23.5 + rot: 1.5707963267948966 rad + pos: -59.5,-66.5 parent: 2 - uid: 11542 components: - type: Transform - pos: 69.5,22.5 + rot: 1.5707963267948966 rad + pos: -59.5,-67.5 parent: 2 - uid: 11543 components: - type: Transform - pos: 69.5,21.5 + rot: 1.5707963267948966 rad + pos: -59.5,-68.5 parent: 2 - uid: 11544 components: - type: Transform - pos: 69.5,20.5 + rot: 1.5707963267948966 rad + pos: -59.5,-69.5 parent: 2 - uid: 11545 components: - type: Transform - pos: 69.5,19.5 + pos: 8.5,-35.5 parent: 2 - uid: 11546 components: - type: Transform - pos: 69.5,18.5 + pos: 8.5,-34.5 parent: 2 - uid: 11547 components: - type: Transform - pos: 69.5,17.5 + pos: 8.5,-32.5 parent: 2 - uid: 11548 components: - type: Transform - pos: 69.5,16.5 + pos: 8.5,-33.5 parent: 2 - uid: 11549 components: - type: Transform - pos: 69.5,15.5 + pos: 46.5,-33.5 parent: 2 - uid: 11550 components: - type: Transform - pos: 69.5,14.5 + pos: 45.5,-33.5 parent: 2 - uid: 11551 components: - type: Transform - pos: 69.5,13.5 + pos: 44.5,-33.5 parent: 2 - uid: 11552 components: - type: Transform - pos: 69.5,12.5 + pos: 8.5,-31.5 parent: 2 - uid: 11553 components: - type: Transform - pos: 69.5,11.5 + pos: 8.5,-30.5 parent: 2 - uid: 11554 components: - type: Transform - pos: 69.5,10.5 + pos: 68.5,-70.5 parent: 2 - uid: 11555 components: - type: Transform - pos: 69.5,9.5 + pos: 69.5,-71.5 parent: 2 - uid: 11556 components: - type: Transform - pos: 69.5,8.5 + pos: 70.5,-71.5 parent: 2 - uid: 11557 components: - type: Transform - pos: 69.5,7.5 + pos: 71.5,-71.5 parent: 2 - uid: 11558 components: - type: Transform - pos: 69.5,6.5 + pos: 71.5,-71.5 parent: 2 - uid: 11559 components: - type: Transform - pos: 69.5,5.5 + pos: 71.5,-70.5 parent: 2 - uid: 11560 components: - type: Transform - pos: 75.5,43.5 + pos: 72.5,-70.5 parent: 2 - uid: 11561 components: - type: Transform - pos: 63.5,37.5 + pos: 72.5,-69.5 parent: 2 - uid: 11562 components: - type: Transform - pos: 63.5,38.5 + pos: 73.5,-69.5 parent: 2 - uid: 11563 components: - type: Transform - pos: 63.5,39.5 + pos: 74.5,-69.5 parent: 2 - uid: 11564 components: - type: Transform - pos: 64.5,39.5 + pos: 74.5,-68.5 parent: 2 - uid: 11565 components: - type: Transform - pos: 65.5,39.5 + pos: 74.5,-67.5 parent: 2 - uid: 11566 components: - type: Transform - pos: 66.5,39.5 + pos: 74.5,-66.5 parent: 2 - uid: 11567 components: - type: Transform - pos: 67.5,39.5 + pos: 74.5,-65.5 parent: 2 - uid: 11568 components: - type: Transform - pos: 67.5,40.5 + pos: 74.5,-64.5 parent: 2 - uid: 11569 components: - type: Transform - pos: 67.5,41.5 + pos: 74.5,-63.5 parent: 2 - uid: 11570 components: - type: Transform - pos: 68.5,41.5 + pos: 75.5,-63.5 parent: 2 - uid: 11571 components: - type: Transform - pos: 69.5,41.5 + pos: 76.5,-63.5 parent: 2 - uid: 11572 components: - type: Transform - pos: 70.5,41.5 + pos: 77.5,-63.5 parent: 2 - uid: 11573 components: - type: Transform - pos: 71.5,41.5 + pos: 78.5,-63.5 parent: 2 - uid: 11574 components: - type: Transform - pos: 72.5,41.5 + pos: 79.5,-63.5 parent: 2 - uid: 11575 components: - type: Transform - pos: 72.5,42.5 + pos: 79.5,-51.5 parent: 2 - uid: 11576 components: - type: Transform - pos: 73.5,42.5 + pos: 79.5,-52.5 parent: 2 - uid: 11577 components: - type: Transform - pos: 74.5,42.5 + pos: 79.5,-53.5 parent: 2 - uid: 11578 components: - type: Transform - pos: 75.5,42.5 + pos: 79.5,-54.5 parent: 2 - uid: 11579 components: - type: Transform - pos: 75.5,44.5 + pos: 79.5,-55.5 parent: 2 - uid: 11580 components: - type: Transform - pos: 75.5,45.5 + pos: 79.5,-56.5 parent: 2 - uid: 11581 components: - type: Transform - pos: 75.5,46.5 + pos: 79.5,-57.5 parent: 2 - uid: 11582 components: - type: Transform - pos: 74.5,46.5 + pos: 79.5,-58.5 parent: 2 - uid: 11583 components: - type: Transform - pos: 74.5,47.5 + pos: 79.5,-59.5 parent: 2 - uid: 11584 components: - type: Transform - pos: 74.5,48.5 + pos: 79.5,-60.5 parent: 2 - uid: 11585 components: - type: Transform - pos: 74.5,49.5 + pos: 79.5,-61.5 parent: 2 - uid: 11586 components: - type: Transform - pos: 74.5,50.5 + pos: 79.5,-62.5 parent: 2 - uid: 11587 components: - type: Transform - pos: 74.5,51.5 + pos: 72.5,-71.5 parent: 2 - uid: 11588 components: - type: Transform - pos: 74.5,52.5 + pos: 71.5,-69.5 parent: 2 - uid: 11589 components: - type: Transform - pos: 74.5,53.5 + pos: 55.5,-32.5 parent: 2 - uid: 11590 components: - type: Transform - pos: 74.5,54.5 + pos: 54.5,-32.5 parent: 2 - uid: 11591 components: - type: Transform - pos: 74.5,55.5 + pos: 53.5,-32.5 parent: 2 - uid: 11592 components: - type: Transform - pos: 74.5,56.5 + pos: 67.5,-74.5 parent: 2 - uid: 11593 components: - type: Transform - pos: 74.5,57.5 + pos: 66.5,-74.5 parent: 2 - uid: 11594 components: - type: Transform - pos: 60.5,58.5 + pos: 65.5,-74.5 parent: 2 - uid: 11595 components: - type: Transform - pos: 73.5,57.5 + pos: 64.5,-74.5 parent: 2 - uid: 11596 components: - type: Transform - pos: 72.5,57.5 + pos: 63.5,-74.5 parent: 2 - uid: 11597 components: - type: Transform - pos: 71.5,57.5 + pos: 62.5,-74.5 parent: 2 - uid: 11598 components: - type: Transform - pos: 70.5,57.5 + pos: 61.5,-74.5 parent: 2 - uid: 11599 components: - type: Transform - pos: 69.5,57.5 + pos: 60.5,-74.5 parent: 2 - uid: 11600 components: - type: Transform - pos: 68.5,57.5 + pos: 59.5,-74.5 parent: 2 - uid: 11601 components: - type: Transform - pos: 67.5,57.5 + pos: 58.5,-74.5 parent: 2 - uid: 11602 components: - type: Transform - pos: 66.5,57.5 + pos: 55.5,-30.5 parent: 2 - uid: 11603 components: - type: Transform - pos: 65.5,57.5 + pos: 55.5,-31.5 parent: 2 - uid: 11604 components: - type: Transform - pos: 64.5,57.5 + pos: 59.5,-22.5 parent: 2 - uid: 11605 components: - type: Transform - pos: 63.5,57.5 + pos: 59.5,-41.5 parent: 2 - uid: 11606 components: - type: Transform - pos: 62.5,57.5 + pos: 59.5,-40.5 parent: 2 - uid: 11607 components: - type: Transform - pos: 61.5,57.5 + pos: 59.5,-39.5 parent: 2 - uid: 11608 components: - type: Transform - pos: 60.5,57.5 + pos: 59.5,-38.5 parent: 2 - uid: 11609 components: - type: Transform - pos: 60.5,59.5 + pos: 57.5,-38.5 parent: 2 - uid: 11610 components: - type: Transform - pos: 60.5,60.5 + pos: 56.5,-38.5 parent: 2 - uid: 11611 components: - type: Transform - pos: 60.5,61.5 + pos: 59.5,-23.5 parent: 2 - uid: 11612 components: - type: Transform - pos: 60.5,62.5 + pos: 59.5,-24.5 parent: 2 - uid: 11613 components: - type: Transform - pos: 60.5,63.5 + rot: 3.141592653589793 rad + pos: 65.5,-20.5 parent: 2 - uid: 11614 components: - type: Transform - pos: 47.5,55.5 + rot: 3.141592653589793 rad + pos: 65.5,-19.5 parent: 2 - uid: 11615 components: - type: Transform - pos: 59.5,63.5 + rot: 3.141592653589793 rad + pos: 65.5,-18.5 parent: 2 - uid: 11616 components: - type: Transform - pos: 58.5,63.5 + rot: 3.141592653589793 rad + pos: 66.5,-18.5 parent: 2 - uid: 11617 components: - type: Transform - pos: 57.5,63.5 + pos: 75.5,-51.5 parent: 2 - uid: 11618 components: - type: Transform - pos: 56.5,63.5 + pos: 75.5,-52.5 parent: 2 - uid: 11619 components: - type: Transform - pos: 55.5,63.5 + pos: 75.5,-53.5 parent: 2 - uid: 11620 components: - type: Transform - pos: 54.5,63.5 + pos: 75.5,-54.5 parent: 2 - uid: 11621 components: - type: Transform - pos: 53.5,63.5 + pos: 75.5,-55.5 parent: 2 - uid: 11622 components: - type: Transform - pos: 52.5,63.5 + pos: 75.5,-56.5 parent: 2 - uid: 11623 components: - type: Transform - pos: 51.5,63.5 + pos: 60.5,-26.5 parent: 2 - uid: 11624 components: - type: Transform - pos: 50.5,63.5 + pos: 59.5,-26.5 parent: 2 - uid: 11625 components: - type: Transform - pos: 49.5,63.5 + pos: 58.5,-26.5 parent: 2 - uid: 11626 components: - type: Transform - pos: 48.5,63.5 + pos: 57.5,-26.5 parent: 2 - uid: 11627 components: - type: Transform - pos: 48.5,62.5 + pos: 56.5,-26.5 parent: 2 - uid: 11628 components: - type: Transform - pos: 48.5,61.5 + pos: 64.5,-58.5 parent: 2 - uid: 11629 components: - type: Transform - pos: 48.5,60.5 + pos: 71.5,-57.5 parent: 2 - uid: 11630 components: - type: Transform - pos: 48.5,59.5 + pos: 71.5,-58.5 parent: 2 - uid: 11631 components: - type: Transform - pos: 48.5,58.5 + pos: 71.5,-59.5 parent: 2 - uid: 11632 components: - type: Transform - pos: 48.5,57.5 + pos: 71.5,-60.5 parent: 2 - uid: 11633 components: - type: Transform - pos: 48.5,56.5 + pos: 71.5,-61.5 parent: 2 - uid: 11634 components: - type: Transform - pos: 48.5,55.5 + pos: 47.5,-65.5 parent: 2 - uid: 11635 components: - type: Transform - pos: 46.5,55.5 + pos: 48.5,-65.5 parent: 2 - uid: 11636 components: - type: Transform - pos: 45.5,55.5 + pos: 49.5,-65.5 parent: 2 - uid: 11637 components: - type: Transform - pos: 44.5,55.5 + pos: 50.5,-65.5 parent: 2 - uid: 11638 components: - type: Transform - pos: 43.5,55.5 + pos: 52.5,-66.5 parent: 2 - uid: 11639 components: - type: Transform - pos: 42.5,55.5 + pos: 69.5,-63.5 parent: 2 - uid: 11640 components: - type: Transform - pos: 41.5,55.5 + pos: 67.5,-66.5 parent: 2 - uid: 11641 components: - type: Transform - pos: 40.5,55.5 + pos: 11.5,-89.5 parent: 2 - uid: 11642 components: - type: Transform - pos: 37.5,55.5 + pos: 12.5,-89.5 parent: 2 - uid: 11643 components: - type: Transform - pos: 36.5,55.5 + pos: 12.5,-90.5 parent: 2 - uid: 11644 components: - type: Transform - pos: 35.5,55.5 + pos: 12.5,-91.5 parent: 2 - uid: 11645 components: - type: Transform - pos: 34.5,55.5 + pos: 5.5,-89.5 parent: 2 - uid: 11646 components: - type: Transform - pos: 33.5,55.5 + pos: 6.5,-89.5 parent: 2 - uid: 11647 components: - type: Transform - pos: 32.5,55.5 + pos: 7.5,-89.5 parent: 2 - uid: 11648 components: - type: Transform - pos: 31.5,55.5 + pos: 8.5,-89.5 parent: 2 - uid: 11649 components: - type: Transform - pos: 30.5,55.5 + pos: 9.5,-89.5 parent: 2 - uid: 11650 components: - type: Transform - pos: 66.5,35.5 + pos: 10.5,-89.5 parent: 2 - uid: 11651 components: - type: Transform - pos: 66.5,34.5 + pos: 3.5,-89.5 parent: 2 - uid: 11652 components: - type: Transform - pos: 66.5,33.5 + pos: 70.5,-25.5 parent: 2 - uid: 11653 components: - type: Transform - pos: 66.5,32.5 + pos: 69.5,-25.5 parent: 2 - uid: 11654 components: - type: Transform - pos: 66.5,31.5 + pos: 68.5,-25.5 parent: 2 - uid: 11655 components: - type: Transform - pos: 67.5,31.5 + pos: 66.5,-25.5 parent: 2 - uid: 11656 components: - type: Transform - pos: 68.5,31.5 + pos: 67.5,-25.5 parent: 2 - uid: 11657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-90.5 + pos: 71.5,-26.5 parent: 2 - uid: 11658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-89.5 + pos: 72.5,-26.5 parent: 2 - uid: 11659 components: - type: Transform - pos: -7.5,-9.5 + pos: 73.5,-26.5 parent: 2 - uid: 11660 components: - type: Transform - pos: -8.5,-9.5 + pos: 74.5,-26.5 parent: 2 - uid: 11661 components: - type: Transform - pos: -9.5,-9.5 + pos: 75.5,-26.5 parent: 2 - uid: 11662 components: - type: Transform - pos: -10.5,-9.5 + pos: 76.5,-26.5 parent: 2 - uid: 11663 components: - type: Transform - pos: -11.5,-9.5 + pos: 77.5,-26.5 parent: 2 - uid: 11664 components: - type: Transform - pos: -12.5,-9.5 + pos: 78.5,-26.5 parent: 2 - uid: 11665 components: - type: Transform - pos: -13.5,-9.5 + pos: -46.5,-53.5 parent: 2 - uid: 11666 components: - type: Transform - pos: -15.5,-14.5 + pos: -46.5,-54.5 parent: 2 - uid: 11667 components: - type: Transform - pos: -46.5,52.5 + pos: 6.5,-88.5 parent: 2 - uid: 11668 components: - type: Transform - pos: -46.5,51.5 + pos: 6.5,-87.5 parent: 2 - uid: 11669 components: - type: Transform - pos: -46.5,50.5 + pos: 8.5,-75.5 parent: 2 - uid: 11670 components: - type: Transform - pos: -46.5,49.5 + pos: 9.5,-75.5 parent: 2 - uid: 11671 components: - type: Transform - pos: -46.5,-56.5 + pos: 10.5,-75.5 parent: 2 - uid: 11672 components: - type: Transform - pos: -46.5,-57.5 + pos: 11.5,-75.5 parent: 2 - uid: 11673 components: - type: Transform - pos: -46.5,-58.5 + pos: 12.5,-75.5 parent: 2 - uid: 11674 components: - type: Transform - pos: -47.5,-58.5 + pos: 13.5,-75.5 parent: 2 - uid: 11675 components: - type: Transform - pos: -48.5,-58.5 + pos: 14.5,-75.5 parent: 2 - uid: 11676 components: - type: Transform - pos: -49.5,-58.5 + pos: 15.5,-75.5 parent: 2 - uid: 11677 components: - type: Transform - pos: -29.5,-19.5 + pos: 16.5,-75.5 parent: 2 - uid: 11678 components: - type: Transform - pos: -29.5,-20.5 + pos: 17.5,-75.5 parent: 2 - uid: 11679 components: - type: Transform - pos: -29.5,-21.5 + pos: 18.5,-75.5 parent: 2 - uid: 11680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-60.5 + pos: 19.5,-75.5 parent: 2 - uid: 11681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-60.5 + pos: 20.5,-75.5 parent: 2 - uid: 11682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-60.5 + pos: 21.5,-75.5 parent: 2 - uid: 11683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 + pos: 69.5,4.5 parent: 2 - uid: 11684 components: - type: Transform - pos: 63.5,2.5 + pos: 69.5,2.5 parent: 2 - uid: 11685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-93.5 + pos: 69.5,1.5 parent: 2 - uid: 11686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-80.5 + pos: 69.5,0.5 parent: 2 - uid: 11687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-76.5 + pos: 69.5,-0.5 parent: 2 - uid: 11688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-95.5 + pos: 69.5,-1.5 parent: 2 - uid: 11689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-95.5 + pos: 69.5,31.5 parent: 2 - uid: 11690 components: - type: Transform - pos: 6.5,-73.5 + pos: 69.5,30.5 parent: 2 - uid: 11691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-95.5 + pos: 69.5,29.5 parent: 2 - uid: 11692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-75.5 + pos: 69.5,28.5 parent: 2 - uid: 11693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-74.5 + pos: 69.5,27.5 parent: 2 - uid: 11694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-74.5 + pos: 69.5,26.5 parent: 2 - uid: 11695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-74.5 + pos: 69.5,25.5 parent: 2 - uid: 11696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 + pos: 69.5,24.5 parent: 2 - uid: 11697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-49.5 + pos: 69.5,23.5 parent: 2 - uid: 11698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-19.5 + pos: 69.5,22.5 parent: 2 - uid: 11699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-20.5 + pos: 69.5,21.5 parent: 2 - uid: 11700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-21.5 + pos: 69.5,20.5 parent: 2 - uid: 11701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-22.5 + pos: 69.5,19.5 parent: 2 - uid: 11702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-16.5 + pos: 69.5,18.5 parent: 2 - uid: 11703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 + pos: 69.5,17.5 parent: 2 - uid: 11704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-14.5 + pos: 69.5,16.5 parent: 2 - uid: 11705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-14.5 + pos: 69.5,15.5 parent: 2 - uid: 11706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 + pos: 69.5,14.5 parent: 2 - uid: 11707 components: - type: Transform - pos: 6.5,-74.5 + pos: 69.5,13.5 parent: 2 - uid: 11708 components: - type: Transform - pos: 6.5,-75.5 + pos: 69.5,12.5 parent: 2 - uid: 11709 components: - type: Transform - pos: 6.5,-76.5 + pos: 69.5,11.5 parent: 2 - uid: 11710 components: - type: Transform - pos: 6.5,-77.5 + pos: 69.5,10.5 parent: 2 - uid: 11711 components: - type: Transform - pos: 6.5,-78.5 + pos: 69.5,9.5 parent: 2 - uid: 11712 components: - type: Transform - pos: 6.5,-79.5 + pos: 69.5,8.5 parent: 2 - uid: 11713 components: - type: Transform - pos: 6.5,-80.5 + pos: 69.5,7.5 parent: 2 - uid: 11714 components: - type: Transform - pos: 6.5,-81.5 + pos: 69.5,6.5 parent: 2 - uid: 11715 components: - type: Transform - pos: 6.5,-82.5 + pos: 69.5,5.5 parent: 2 - uid: 11716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,49.5 + pos: 75.5,43.5 parent: 2 - uid: 11717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,49.5 + pos: 63.5,37.5 parent: 2 - uid: 11718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,49.5 + pos: 63.5,38.5 parent: 2 - uid: 11719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,48.5 + pos: 63.5,39.5 parent: 2 - uid: 11720 components: - type: Transform - pos: 71.5,-25.5 + pos: 64.5,39.5 parent: 2 - uid: 11721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-58.5 + pos: 65.5,39.5 parent: 2 - uid: 11722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-59.5 + pos: 66.5,39.5 parent: 2 - uid: 11723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-59.5 + pos: 67.5,39.5 parent: 2 - uid: 11724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-59.5 + pos: 67.5,40.5 parent: 2 - uid: 11725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-59.5 + pos: 67.5,41.5 parent: 2 - uid: 11726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-59.5 + pos: 68.5,41.5 parent: 2 - uid: 11727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-59.5 + pos: 69.5,41.5 parent: 2 - uid: 11728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-59.5 + pos: 70.5,41.5 parent: 2 - uid: 11729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-59.5 + pos: 71.5,41.5 parent: 2 - uid: 11730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-59.5 + pos: 72.5,41.5 parent: 2 - uid: 11731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-59.5 + pos: 72.5,42.5 parent: 2 - uid: 11732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-59.5 + pos: 73.5,42.5 parent: 2 - uid: 11733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-59.5 + pos: 74.5,42.5 parent: 2 - uid: 11734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-59.5 + pos: 75.5,42.5 parent: 2 - uid: 11735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-59.5 + pos: 75.5,44.5 parent: 2 - uid: 11736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-80.5 + pos: 75.5,45.5 parent: 2 - uid: 11737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-79.5 + pos: 75.5,46.5 parent: 2 - uid: 11738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-91.5 + pos: 74.5,46.5 parent: 2 - uid: 11739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-91.5 + pos: 74.5,47.5 parent: 2 - uid: 11740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-92.5 + pos: 74.5,48.5 parent: 2 - uid: 11741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-93.5 + pos: 74.5,49.5 parent: 2 - uid: 11742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-92.5 + pos: 74.5,50.5 parent: 2 - uid: 11743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-93.5 + pos: 74.5,51.5 parent: 2 - uid: 11744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-78.5 + pos: 74.5,52.5 parent: 2 - uid: 11745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-77.5 + pos: 74.5,53.5 parent: 2 - uid: 11746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-76.5 + pos: 74.5,54.5 parent: 2 - uid: 11747 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-75.5 + pos: 74.5,55.5 parent: 2 - uid: 11748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-80.5 + pos: 74.5,56.5 parent: 2 - uid: 11749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-79.5 + pos: 74.5,57.5 parent: 2 - uid: 11750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-78.5 + pos: 60.5,58.5 parent: 2 - uid: 11751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-77.5 + pos: 73.5,57.5 parent: 2 - uid: 11752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-76.5 + pos: 72.5,57.5 parent: 2 - uid: 11753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-75.5 + pos: 71.5,57.5 parent: 2 - uid: 11754 components: - type: Transform - pos: -79.5,-33.5 + pos: 70.5,57.5 parent: 2 - uid: 11755 components: - type: Transform - pos: -79.5,-39.5 + pos: 69.5,57.5 parent: 2 - uid: 11756 components: - type: Transform - pos: -79.5,-38.5 + pos: 68.5,57.5 parent: 2 - uid: 11757 components: - type: Transform - pos: -79.5,-34.5 + pos: 67.5,57.5 parent: 2 - uid: 11758 components: - type: Transform - pos: -79.5,-36.5 + pos: 66.5,57.5 parent: 2 - uid: 11759 components: - type: Transform - pos: -79.5,-43.5 + pos: 65.5,57.5 parent: 2 - uid: 11760 components: - type: Transform - pos: -79.5,-37.5 + pos: 64.5,57.5 parent: 2 - uid: 11761 components: - type: Transform - pos: -79.5,-42.5 + pos: 63.5,57.5 parent: 2 - uid: 11762 components: - type: Transform - pos: -79.5,-35.5 + pos: 62.5,57.5 parent: 2 - uid: 11763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-44.5 + pos: 61.5,57.5 parent: 2 - uid: 11764 components: - type: Transform - pos: -70.5,-37.5 + pos: 60.5,57.5 parent: 2 - uid: 11765 components: - type: Transform - pos: -69.5,-37.5 + pos: 60.5,59.5 parent: 2 - uid: 11766 components: - type: Transform - pos: -68.5,-37.5 + pos: 60.5,60.5 parent: 2 - uid: 11767 components: - type: Transform - pos: -67.5,-37.5 + pos: 60.5,61.5 parent: 2 - uid: 11768 components: - type: Transform - pos: -66.5,-37.5 + pos: 60.5,62.5 parent: 2 - uid: 11769 components: - type: Transform - pos: -65.5,-37.5 + pos: 60.5,63.5 parent: 2 - uid: 11770 components: - type: Transform - pos: -65.5,-38.5 + pos: 47.5,55.5 parent: 2 - uid: 11771 components: - type: Transform - pos: -65.5,-39.5 + pos: 59.5,63.5 parent: 2 - uid: 11772 components: - type: Transform - pos: -65.5,-40.5 + pos: 58.5,63.5 parent: 2 - uid: 11773 components: - type: Transform - pos: -65.5,-41.5 + pos: 57.5,63.5 parent: 2 - uid: 11774 components: - type: Transform - pos: -65.5,-42.5 + pos: 56.5,63.5 parent: 2 - uid: 11775 components: - type: Transform - pos: -65.5,-43.5 + pos: 55.5,63.5 parent: 2 - uid: 11776 components: - type: Transform - pos: -65.5,-45.5 + pos: 54.5,63.5 parent: 2 - uid: 11777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-45.5 + pos: 53.5,63.5 parent: 2 - uid: 11778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-46.5 + pos: 52.5,63.5 parent: 2 - uid: 11779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-47.5 + pos: 51.5,63.5 parent: 2 - uid: 11780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-48.5 + pos: 50.5,63.5 parent: 2 - uid: 11781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-48.5 + pos: 49.5,63.5 parent: 2 - uid: 11782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-48.5 + pos: 48.5,63.5 parent: 2 - uid: 11783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-48.5 + pos: 48.5,62.5 parent: 2 - uid: 11784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-48.5 + pos: 48.5,61.5 parent: 2 - uid: 11785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-44.5 + pos: 48.5,60.5 parent: 2 - uid: 11786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-47.5 + pos: 48.5,59.5 parent: 2 - uid: 11787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-46.5 + pos: 48.5,58.5 parent: 2 - uid: 11788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-45.5 + pos: 48.5,57.5 parent: 2 - uid: 11789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-38.5 + pos: 48.5,56.5 parent: 2 - uid: 11790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 + pos: 48.5,55.5 parent: 2 - uid: 11791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-38.5 + pos: 46.5,55.5 parent: 2 - uid: 11792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-38.5 + pos: 45.5,55.5 parent: 2 - uid: 11793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-33.5 + pos: 44.5,55.5 parent: 2 - uid: 11794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-38.5 + pos: 43.5,55.5 parent: 2 - uid: 11795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-39.5 + pos: 42.5,55.5 parent: 2 - uid: 11796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-40.5 + pos: 41.5,55.5 parent: 2 - uid: 11797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-32.5 + pos: 40.5,55.5 parent: 2 - uid: 11798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-32.5 + pos: 37.5,55.5 parent: 2 - uid: 11799 components: - type: Transform - pos: 12.5,25.5 + pos: 36.5,55.5 parent: 2 - uid: 11800 components: - type: Transform - pos: 11.5,25.5 + pos: 35.5,55.5 parent: 2 - uid: 11801 components: - type: Transform - pos: 10.5,25.5 + pos: 34.5,55.5 parent: 2 - uid: 11802 components: - type: Transform - pos: 9.5,25.5 + pos: 33.5,55.5 parent: 2 - uid: 11803 components: - type: Transform - pos: 8.5,25.5 + pos: 32.5,55.5 parent: 2 - uid: 11804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,58.5 + pos: 31.5,55.5 parent: 2 - uid: 11805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,57.5 + pos: 30.5,55.5 parent: 2 - uid: 11806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,56.5 + pos: 66.5,35.5 parent: 2 - uid: 11807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,55.5 + pos: 66.5,34.5 parent: 2 - uid: 11808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,55.5 + pos: 66.5,33.5 parent: 2 - uid: 11809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-45.5 + pos: 66.5,32.5 parent: 2 - uid: 11810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-47.5 + pos: 66.5,31.5 parent: 2 - uid: 11811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-46.5 + pos: 67.5,31.5 parent: 2 - uid: 11812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,24.5 + pos: 68.5,31.5 parent: 2 -- proto: Cautery - entities: - uid: 11813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5414771,-66.9678 + rot: 3.141592653589793 rad + pos: 27.5,-90.5 parent: 2 - uid: 11814 components: - type: Transform - pos: 73.52661,-47.78304 + rot: 3.141592653589793 rad + pos: 13.5,-89.5 parent: 2 -- proto: Chair - entities: - uid: 11815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 + pos: -7.5,-9.5 parent: 2 - uid: 11816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,58.5 + pos: -8.5,-9.5 parent: 2 - uid: 11817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-72.5 + pos: -9.5,-9.5 parent: 2 - uid: 11818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-75.5 + pos: -10.5,-9.5 parent: 2 - uid: 11819 components: - type: Transform - pos: 14.5,-72.5 + pos: -11.5,-9.5 parent: 2 - uid: 11820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-79.5 + pos: -12.5,-9.5 parent: 2 - uid: 11821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-78.5 + pos: -13.5,-9.5 parent: 2 - uid: 11822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-77.5 + pos: -15.5,-14.5 parent: 2 - uid: 11823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-74.5 + pos: -46.5,52.5 parent: 2 - uid: 11824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-73.5 + pos: -46.5,51.5 parent: 2 - uid: 11825 components: - type: Transform - pos: -23.5,-38.5 + pos: -46.5,50.5 parent: 2 - uid: 11826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 + pos: -46.5,49.5 parent: 2 - uid: 11827 components: - type: Transform - pos: -2.5,-32.5 + pos: -46.5,-56.5 parent: 2 - uid: 11828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-65.5 + pos: -46.5,-57.5 parent: 2 - uid: 11829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-66.5 + pos: -46.5,-58.5 parent: 2 - uid: 11830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 + pos: -47.5,-58.5 parent: 2 - uid: 11831 components: - type: Transform - pos: 16.5,-67.5 + pos: -48.5,-58.5 parent: 2 - uid: 11832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,2.5 + pos: -49.5,-58.5 parent: 2 - uid: 11833 components: - type: Transform - pos: 27.5,6.5 + pos: -29.5,-19.5 parent: 2 - uid: 11834 components: - type: Transform - pos: 26.5,6.5 + pos: -29.5,-20.5 parent: 2 - uid: 11835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,13.5 + pos: -29.5,-21.5 parent: 2 - uid: 11836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,14.5 + pos: 63.5,2.5 parent: 2 - uid: 11837 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-4.5 + pos: 52.5,-93.5 parent: 2 - uid: 11838 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-4.5 + pos: 52.5,-80.5 parent: 2 - uid: 11839 components: - type: Transform - pos: 22.5,6.5 + rot: 3.141592653589793 rad + pos: 52.5,-76.5 parent: 2 - uid: 11840 components: - type: Transform - pos: 25.5,6.5 + rot: 3.141592653589793 rad + pos: 51.5,-95.5 parent: 2 - uid: 11841 components: - type: Transform - pos: 21.5,6.5 + rot: 3.141592653589793 rad + pos: 52.5,-95.5 parent: 2 - uid: 11842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-34.5 + pos: 6.5,-73.5 parent: 2 - uid: 11843 components: - type: Transform - pos: 15.5,-67.5 + rot: 3.141592653589793 rad + pos: 50.5,-95.5 parent: 2 - uid: 11844 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-4.5 + pos: 52.5,-75.5 parent: 2 - uid: 11845 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-4.5 + pos: 52.5,-74.5 parent: 2 - uid: 11846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 + rot: 3.141592653589793 rad + pos: 54.5,-74.5 parent: 2 - uid: 11847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + rot: 3.141592653589793 rad + pos: 53.5,-74.5 parent: 2 - uid: 11848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 + rot: 1.5707963267948966 rad + pos: -19.5,-48.5 parent: 2 - uid: 11849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 + rot: 1.5707963267948966 rad + pos: -19.5,-49.5 parent: 2 - uid: 11850 components: - type: Transform - pos: 17.5,23.5 + rot: 3.141592653589793 rad + pos: 5.5,-19.5 parent: 2 - uid: 11851 components: - type: Transform - pos: 15.5,23.5 + rot: 3.141592653589793 rad + pos: 5.5,-20.5 parent: 2 - uid: 11852 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,20.5 + pos: 5.5,-22.5 parent: 2 - uid: 11853 components: - type: Transform - pos: 35.5,19.5 + rot: 3.141592653589793 rad + pos: 4.5,-16.5 parent: 2 - uid: 11854 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,17.5 + pos: 6.5,-14.5 parent: 2 - uid: 11855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,29.5 + rot: 3.141592653589793 rad + pos: 5.5,-14.5 parent: 2 - uid: 11856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,28.5 + rot: 3.141592653589793 rad + pos: 4.5,-14.5 parent: 2 - uid: 11857 components: - type: Transform - pos: 48.5,19.5 + rot: 1.5707963267948966 rad + pos: -20.5,-49.5 parent: 2 - uid: 11858 components: - type: Transform - pos: 52.5,8.5 + pos: 6.5,-74.5 parent: 2 - uid: 11859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,5.5 + pos: 6.5,-75.5 parent: 2 - uid: 11860 components: - type: Transform - pos: 51.5,8.5 + pos: 6.5,-76.5 parent: 2 - uid: 11861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,5.5 + pos: 6.5,-77.5 parent: 2 - uid: 11862 components: - type: Transform - pos: 58.5,21.5 + pos: 6.5,-78.5 parent: 2 - uid: 11863 components: - type: Transform - pos: 57.5,21.5 + pos: 6.5,-79.5 parent: 2 - uid: 11864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,18.5 + pos: 6.5,-80.5 parent: 2 - uid: 11865 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,18.5 + pos: 6.5,-81.5 parent: 2 - uid: 11866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 + pos: 6.5,-82.5 parent: 2 - uid: 11867 components: - type: Transform - pos: 59.5,-10.5 + rot: -1.5707963267948966 rad + pos: -47.5,49.5 parent: 2 - uid: 11868 components: - type: Transform - pos: 58.5,-10.5 + rot: -1.5707963267948966 rad + pos: -48.5,49.5 parent: 2 - uid: 11869 components: - type: Transform - pos: 57.5,-10.5 + rot: -1.5707963267948966 rad + pos: -49.5,49.5 parent: 2 - uid: 11870 components: - type: Transform - pos: 56.5,-10.5 + rot: -1.5707963267948966 rad + pos: -49.5,48.5 parent: 2 - uid: 11871 components: - type: Transform - pos: 55.5,-10.5 + pos: 71.5,-25.5 parent: 2 - uid: 11872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-6.5 + rot: 1.5707963267948966 rad + pos: -61.5,-58.5 parent: 2 - uid: 11873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 + rot: 1.5707963267948966 rad + pos: -61.5,-59.5 parent: 2 - uid: 11874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-6.5 + rot: 1.5707963267948966 rad + pos: -62.5,-59.5 parent: 2 - uid: 11875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-6.5 + rot: 1.5707963267948966 rad + pos: -63.5,-59.5 parent: 2 - uid: 11876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-6.5 + rot: 1.5707963267948966 rad + pos: -64.5,-59.5 parent: 2 - uid: 11877 components: - type: Transform - pos: 55.5,-14.5 + rot: 1.5707963267948966 rad + pos: -65.5,-59.5 parent: 2 - uid: 11878 components: - type: Transform - pos: 56.5,-14.5 + rot: 1.5707963267948966 rad + pos: -66.5,-59.5 parent: 2 - uid: 11879 components: - type: Transform - pos: 59.5,-14.5 + rot: 1.5707963267948966 rad + pos: -67.5,-59.5 parent: 2 - uid: 11880 components: - type: Transform - pos: 58.5,-14.5 + rot: 1.5707963267948966 rad + pos: -68.5,-59.5 parent: 2 - uid: 11881 components: - type: Transform - pos: 61.5,-10.5 + rot: 1.5707963267948966 rad + pos: -69.5,-59.5 parent: 2 - uid: 11882 components: - type: Transform - pos: 60.5,-10.5 + rot: 1.5707963267948966 rad + pos: -70.5,-59.5 parent: 2 - uid: 11883 components: - type: Transform - pos: 44.5,-48.5 + rot: 1.5707963267948966 rad + pos: -71.5,-59.5 parent: 2 - uid: 11884 components: - type: Transform - pos: 46.5,-48.5 + rot: 1.5707963267948966 rad + pos: -72.5,-59.5 parent: 2 - uid: 11885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-55.5 + rot: 1.5707963267948966 rad + pos: -73.5,-59.5 parent: 2 - uid: 11886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-55.5 + rot: 1.5707963267948966 rad + pos: -74.5,-59.5 parent: 2 - uid: 11887 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-55.5 + pos: 45.5,-80.5 parent: 2 - uid: 11888 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-54.5 + pos: 45.5,-79.5 parent: 2 - uid: 11889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-54.5 + rot: 1.5707963267948966 rad + pos: 33.5,-91.5 parent: 2 - uid: 11890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-54.5 + rot: 1.5707963267948966 rad + pos: 45.5,-91.5 parent: 2 - uid: 11891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-54.5 + rot: 1.5707963267948966 rad + pos: 45.5,-92.5 parent: 2 - uid: 11892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-54.5 + rot: 1.5707963267948966 rad + pos: 45.5,-93.5 parent: 2 - uid: 11893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-54.5 + rot: 1.5707963267948966 rad + pos: 33.5,-92.5 parent: 2 - uid: 11894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-55.5 + rot: 1.5707963267948966 rad + pos: 33.5,-93.5 parent: 2 - uid: 11895 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-55.5 + pos: 45.5,-78.5 parent: 2 - uid: 11896 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-55.5 + pos: 45.5,-77.5 parent: 2 - uid: 11897 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-53.5 + pos: 45.5,-76.5 parent: 2 - uid: 11898 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-53.5 + pos: 45.5,-75.5 parent: 2 - uid: 11899 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-53.5 + pos: 33.5,-80.5 parent: 2 - uid: 11900 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-53.5 + pos: 33.5,-79.5 parent: 2 - uid: 11901 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-53.5 + pos: 33.5,-78.5 parent: 2 - uid: 11902 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-53.5 + pos: 33.5,-77.5 parent: 2 - uid: 11903 components: - type: Transform - pos: 33.5,-48.5 + rot: 3.141592653589793 rad + pos: 33.5,-76.5 parent: 2 - uid: 11904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-48.5 + rot: 3.141592653589793 rad + pos: 33.5,-75.5 parent: 2 - uid: 11905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 + pos: -79.5,-33.5 parent: 2 - uid: 11906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 + pos: -79.5,-39.5 parent: 2 - uid: 11907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: -79.5,-38.5 parent: 2 - uid: 11908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: -79.5,-34.5 parent: 2 - uid: 11909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,10.5 + pos: -79.5,-36.5 parent: 2 - uid: 11910 components: - type: Transform - pos: 44.5,-70.5 + pos: -79.5,-43.5 parent: 2 - uid: 11911 components: - type: Transform - pos: 43.5,-70.5 + pos: -79.5,-37.5 parent: 2 - uid: 11912 components: - type: Transform - pos: 42.5,-70.5 + pos: -79.5,-42.5 parent: 2 - uid: 11913 components: - type: Transform - pos: 41.5,-70.5 + pos: -79.5,-35.5 parent: 2 - uid: 11914 components: - type: Transform - pos: 37.5,-70.5 + rot: 3.141592653589793 rad + pos: -79.5,-44.5 parent: 2 - uid: 11915 components: - type: Transform - pos: 36.5,-70.5 + pos: -70.5,-37.5 parent: 2 - uid: 11916 components: - type: Transform - pos: 35.5,-70.5 + pos: -69.5,-37.5 parent: 2 - uid: 11917 components: - type: Transform - pos: 34.5,-70.5 + pos: -68.5,-37.5 parent: 2 - uid: 11918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,10.5 + pos: -67.5,-37.5 parent: 2 - uid: 11919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,16.5 + pos: -66.5,-37.5 parent: 2 - uid: 11920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-75.5 + pos: -65.5,-37.5 parent: 2 - uid: 11921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-76.5 + pos: -65.5,-38.5 parent: 2 - uid: 11922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-77.5 + pos: -65.5,-39.5 parent: 2 - uid: 11923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-82.5 + pos: -65.5,-40.5 parent: 2 - uid: 11924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-82.5 + pos: -65.5,-41.5 parent: 2 - uid: 11925 components: - type: Transform - pos: -53.5,-70.5 + pos: -65.5,-42.5 parent: 2 - uid: 11926 components: - type: Transform - pos: -54.5,-70.5 + pos: -65.5,-43.5 parent: 2 - uid: 11927 components: - type: Transform - pos: -55.5,-70.5 + pos: -65.5,-45.5 parent: 2 - uid: 11928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-81.5 + rot: 3.141592653589793 rad + pos: -79.5,-45.5 parent: 2 - uid: 11929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-82.5 + rot: 3.141592653589793 rad + pos: -79.5,-46.5 parent: 2 - uid: 11930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-83.5 + rot: 3.141592653589793 rad + pos: -79.5,-47.5 parent: 2 - uid: 11931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-81.5 + rot: 3.141592653589793 rad + pos: -79.5,-48.5 parent: 2 - uid: 11932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-82.5 + rot: 3.141592653589793 rad + pos: -78.5,-48.5 parent: 2 - uid: 11933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-83.5 + rot: 3.141592653589793 rad + pos: -77.5,-48.5 parent: 2 - uid: 11934 components: - type: Transform - pos: -54.5,-58.5 + rot: 3.141592653589793 rad + pos: -76.5,-48.5 parent: 2 - uid: 11935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-56.5 + rot: 3.141592653589793 rad + pos: -75.5,-48.5 parent: 2 - uid: 11936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-36.5 + rot: -1.5707963267948966 rad + pos: -65.5,-44.5 parent: 2 - uid: 11937 components: - type: Transform - pos: 70.5,-55.5 + rot: -1.5707963267948966 rad + pos: -61.5,-47.5 parent: 2 - uid: 11938 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-51.5 + pos: -61.5,-46.5 parent: 2 - uid: 11939 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-52.5 + pos: -61.5,-45.5 parent: 2 - uid: 11940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,24.5 + rot: 3.141592653589793 rad + pos: -78.5,-38.5 parent: 2 - uid: 11941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,23.5 + rot: 1.5707963267948966 rad + pos: -15.5,15.5 parent: 2 - uid: 11942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,22.5 + rot: 3.141592653589793 rad + pos: -77.5,-38.5 parent: 2 - uid: 11943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,19.5 + rot: 3.141592653589793 rad + pos: -75.5,-38.5 parent: 2 - uid: 11944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,18.5 + rot: 3.141592653589793 rad + pos: -52.5,-33.5 parent: 2 - uid: 11945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,34.5 + rot: -1.5707963267948966 rad + pos: -43.5,-38.5 parent: 2 - uid: 11946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,34.5 + rot: -1.5707963267948966 rad + pos: -43.5,-39.5 parent: 2 - uid: 11947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,34.5 + rot: -1.5707963267948966 rad + pos: -43.5,-40.5 parent: 2 - uid: 11948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-7.5 + rot: 3.141592653589793 rad + pos: 23.5,-32.5 parent: 2 - uid: 11949 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-6.5 + pos: 26.5,-32.5 parent: 2 - uid: 11950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-6.5 + pos: 12.5,25.5 parent: 2 - uid: 11951 components: - type: Transform - pos: 31.5,-60.5 + pos: 11.5,25.5 parent: 2 - uid: 11952 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-62.5 + pos: 10.5,25.5 parent: 2 - uid: 11953 components: - type: Transform - pos: 30.5,-60.5 + pos: 9.5,25.5 parent: 2 - uid: 11954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-8.5 + pos: 8.5,25.5 parent: 2 - uid: 11955 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,10.5 + pos: 39.5,58.5 parent: 2 - uid: 11956 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-4.5 + pos: 39.5,57.5 parent: 2 - uid: 11957 components: - type: Transform - pos: 71.5,-55.5 + rot: 3.141592653589793 rad + pos: 39.5,56.5 parent: 2 - uid: 11958 components: - type: Transform - pos: 23.5,6.5 + rot: 1.5707963267948966 rad + pos: 39.5,55.5 parent: 2 - uid: 11959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-16.5 + rot: 1.5707963267948966 rad + pos: 38.5,55.5 parent: 2 - uid: 11960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-43.5 + rot: 1.5707963267948966 rad + pos: 15.5,-45.5 parent: 2 - uid: 11961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-43.5 + rot: -1.5707963267948966 rad + pos: 1.5,24.5 parent: 2 - uid: 11962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-43.5 + rot: 1.5707963267948966 rad + pos: 4.5,-58.5 parent: 2 - uid: 11963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-43.5 + rot: 1.5707963267948966 rad + pos: 3.5,-58.5 parent: 2 - uid: 11964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-43.5 + rot: 1.5707963267948966 rad + pos: 2.5,-58.5 parent: 2 - uid: 11965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-43.5 + rot: 1.5707963267948966 rad + pos: 3.5,-61.5 parent: 2 - uid: 11966 components: - type: Transform - pos: 34.5,-34.5 + rot: 1.5707963267948966 rad + pos: 4.5,-61.5 parent: 2 - uid: 11967 components: - type: Transform - pos: 3.5,-40.5 + rot: 1.5707963267948966 rad + pos: 1.5,-59.5 parent: 2 - uid: 11968 components: - type: Transform - pos: -14.5,8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-60.5 parent: 2 - uid: 11969 components: - type: Transform - pos: -15.5,8.5 + rot: 1.5707963267948966 rad + pos: 5.5,-59.5 parent: 2 - uid: 11970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 5.5,-60.5 parent: 2 - uid: 11971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-0.5 + pos: 8.5,-52.5 parent: 2 - uid: 11972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-0.5 + pos: 10.5,-52.5 parent: 2 - uid: 11973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-0.5 + pos: 10.5,-51.5 parent: 2 - uid: 11974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-0.5 + pos: 5.5,-21.5 parent: 2 - uid: 11975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-0.5 + pos: 9.5,-17.5 parent: 2 - uid: 11976 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-70.5 + pos: 2.5,-61.5 parent: 2 +- proto: Cautery + entities: - uid: 11977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-71.5 + pos: 73.52661,-47.78304 parent: 2 - uid: 11978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-62.5 + pos: -15.480821,-55.39353 parent: 2 +- proto: Chair + entities: - uid: 11979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-34.5 + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 parent: 2 - uid: 11980 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-33.5 + pos: 58.5,58.5 parent: 2 - uid: 11981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-32.5 + pos: 18.5,-72.5 parent: 2 - uid: 11982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-67.5 + rot: -1.5707963267948966 rad + pos: -51.5,-75.5 parent: 2 - uid: 11983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,16.5 + pos: 14.5,-72.5 parent: 2 - uid: 11984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,16.5 + rot: -1.5707963267948966 rad + pos: -51.5,-79.5 parent: 2 - uid: 11985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-18.5 + rot: -1.5707963267948966 rad + pos: -51.5,-78.5 parent: 2 - uid: 11986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-18.5 + rot: -1.5707963267948966 rad + pos: -51.5,-77.5 parent: 2 - uid: 11987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-18.5 + rot: -1.5707963267948966 rad + pos: -51.5,-74.5 parent: 2 - uid: 11988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-18.5 + rot: -1.5707963267948966 rad + pos: -51.5,-73.5 parent: 2 - uid: 11989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-18.5 + pos: -23.5,-38.5 parent: 2 - uid: 11990 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-18.5 + pos: 27.5,-4.5 parent: 2 - uid: 11991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,1.5 + pos: -2.5,-32.5 parent: 2 - uid: 11992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,0.5 + pos: 17.5,-65.5 parent: 2 - uid: 11993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,56.5 + pos: 17.5,-66.5 parent: 2 - uid: 11994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,57.5 + pos: 18.5,-0.5 parent: 2 - uid: 11995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,58.5 + pos: 16.5,-67.5 parent: 2 - uid: 11996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,29.5 + rot: 1.5707963267948966 rad + pos: 18.5,2.5 parent: 2 - uid: 11997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,28.5 + pos: 27.5,6.5 parent: 2 - uid: 11998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 26.5,6.5 parent: 2 - uid: 11999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,28.5 + pos: 7.5,13.5 parent: 2 - uid: 12000 components: - type: Transform - pos: -18.5,67.5 + rot: 1.5707963267948966 rad + pos: 7.5,14.5 parent: 2 - uid: 12001 components: - type: Transform - pos: -16.5,67.5 + rot: 3.141592653589793 rad + pos: 23.5,-4.5 parent: 2 - uid: 12002 components: - type: Transform - pos: 6.5,34.5 + rot: 3.141592653589793 rad + pos: 26.5,-4.5 parent: 2 - uid: 12003 components: - type: Transform - pos: 10.5,34.5 + pos: 22.5,6.5 parent: 2 - uid: 12004 components: - type: Transform - pos: -1.5,43.5 + pos: 25.5,6.5 parent: 2 - uid: 12005 components: - type: Transform - pos: -3.5,43.5 + pos: 21.5,6.5 parent: 2 - uid: 12006 components: - type: Transform - pos: -16.5,63.5 + rot: 3.141592653589793 rad + pos: -2.5,-34.5 parent: 2 - uid: 12007 components: - type: Transform - pos: -17.5,63.5 + pos: 15.5,-67.5 parent: 2 - uid: 12008 components: - type: Transform - pos: -18.5,63.5 + rot: 3.141592653589793 rad + pos: 22.5,-4.5 parent: 2 - uid: 12009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,62.5 + rot: 3.141592653589793 rad + pos: 21.5,-4.5 parent: 2 - uid: 12010 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,61.5 + pos: 65.5,-9.5 parent: 2 - uid: 12011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,62.5 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - uid: 12012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,61.5 + rot: -1.5707963267948966 rad + pos: -7.5,-37.5 parent: 2 - uid: 12013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,60.5 + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 - uid: 12014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,60.5 + pos: 17.5,23.5 parent: 2 - uid: 12015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,60.5 + pos: 15.5,23.5 parent: 2 - uid: 12016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-90.5 + rot: 3.141592653589793 rad + pos: 16.5,20.5 parent: 2 - uid: 12017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-89.5 + pos: 35.5,19.5 parent: 2 - uid: 12018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-89.5 + rot: 3.141592653589793 rad + pos: 35.5,17.5 parent: 2 - uid: 12019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-90.5 + rot: -1.5707963267948966 rad + pos: 18.5,29.5 parent: 2 - uid: 12020 components: - type: Transform - pos: -42.5,-97.5 + rot: -1.5707963267948966 rad + pos: 18.5,28.5 parent: 2 - uid: 12021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-99.5 + pos: 48.5,19.5 parent: 2 - uid: 12022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-7.5 + pos: 52.5,8.5 parent: 2 - uid: 12023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-8.5 + rot: 3.141592653589793 rad + pos: 52.5,5.5 parent: 2 - uid: 12024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-9.5 + pos: 51.5,8.5 parent: 2 - uid: 12025 components: - type: Transform - pos: 2.5,-40.5 + rot: 3.141592653589793 rad + pos: 51.5,5.5 parent: 2 - uid: 12026 components: - type: Transform - pos: 60.5,-64.5 + pos: 58.5,21.5 parent: 2 - uid: 12027 components: - type: Transform - pos: 64.5,-66.5 + pos: 57.5,21.5 parent: 2 - uid: 12028 components: - type: Transform - pos: 64.5,-64.5 + rot: 3.141592653589793 rad + pos: 58.5,18.5 parent: 2 - uid: 12029 components: - type: Transform - pos: 62.5,-66.5 + rot: 3.141592653589793 rad + pos: 57.5,18.5 parent: 2 - uid: 12030 components: - type: Transform - pos: 63.5,-66.5 + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 parent: 2 - uid: 12031 components: - type: Transform - pos: 59.5,-66.5 + pos: 59.5,-10.5 parent: 2 - uid: 12032 components: - type: Transform - pos: 58.5,-66.5 + pos: 58.5,-10.5 parent: 2 - uid: 12033 components: - type: Transform - pos: 62.5,-62.5 + pos: 57.5,-10.5 parent: 2 - uid: 12034 components: - type: Transform - pos: 63.5,-62.5 + pos: 56.5,-10.5 parent: 2 - uid: 12035 components: - type: Transform - pos: 59.5,-62.5 + pos: 55.5,-10.5 parent: 2 - uid: 12036 components: - type: Transform - pos: 58.5,-62.5 + rot: 3.141592653589793 rad + pos: 55.5,-6.5 parent: 2 - uid: 12037 components: - type: Transform - pos: 58.5,-64.5 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 parent: 2 - uid: 12038 components: - type: Transform - pos: 59.5,-64.5 + rot: 3.141592653589793 rad + pos: 57.5,-6.5 parent: 2 - uid: 12039 components: - type: Transform - pos: 62.5,-64.5 + rot: 3.141592653589793 rad + pos: 58.5,-6.5 parent: 2 - uid: 12040 components: - type: Transform - pos: 63.5,-64.5 + rot: 3.141592653589793 rad + pos: 59.5,-6.5 parent: 2 - uid: 12041 components: - type: Transform - pos: 64.5,-62.5 + pos: 55.5,-14.5 parent: 2 - uid: 12042 components: - type: Transform - pos: 60.5,-62.5 + pos: 56.5,-14.5 parent: 2 - uid: 12043 components: - type: Transform - pos: 50.5,-32.5 + pos: 59.5,-14.5 parent: 2 - uid: 12044 components: - type: Transform - pos: 60.5,-66.5 + pos: 58.5,-14.5 parent: 2 - uid: 12045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-57.5 + pos: 61.5,-10.5 parent: 2 - uid: 12046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-67.5 + pos: 60.5,-10.5 parent: 2 - uid: 12047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-67.5 + pos: 44.5,-48.5 parent: 2 - uid: 12048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-43.5 + pos: 46.5,-48.5 parent: 2 - uid: 12049 components: - type: Transform - pos: -5.5,-14.5 + pos: 33.5,-48.5 parent: 2 - uid: 12050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-69.5 + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 parent: 2 - uid: 12051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-69.5 + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 parent: 2 - uid: 12052 components: - type: Transform - pos: 50.5,-71.5 + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 parent: 2 - uid: 12053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-73.5 + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 parent: 2 - uid: 12054 components: - type: Transform - pos: -37.5,-45.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 2 - uid: 12055 components: - type: Transform - pos: -36.5,-45.5 + rot: 3.141592653589793 rad + pos: -48.5,10.5 parent: 2 - uid: 12056 components: - type: Transform - pos: -71.5,-54.5 + pos: 44.5,-70.5 parent: 2 - uid: 12057 components: - type: Transform - pos: -72.5,-54.5 + pos: 43.5,-70.5 parent: 2 - uid: 12058 components: - type: Transform - pos: -73.5,-54.5 + pos: 42.5,-70.5 parent: 2 - uid: 12059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-53.5 + pos: 41.5,-70.5 parent: 2 - uid: 12060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-53.5 + pos: 37.5,-70.5 parent: 2 - uid: 12061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-53.5 + pos: 36.5,-70.5 parent: 2 - uid: 12062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-53.5 + pos: 35.5,-70.5 parent: 2 - uid: 12063 components: - type: Transform - pos: -70.5,-54.5 + pos: 34.5,-70.5 parent: 2 - uid: 12064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,57.5 + rot: 3.141592653589793 rad + pos: -49.5,10.5 parent: 2 - uid: 12065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,56.5 + rot: 1.5707963267948966 rad + pos: -56.5,-75.5 parent: 2 - uid: 12066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-43.5 + rot: 1.5707963267948966 rad + pos: -56.5,-76.5 parent: 2 - uid: 12067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-43.5 + rot: 1.5707963267948966 rad + pos: -56.5,-77.5 parent: 2 - uid: 12068 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-43.5 + pos: -53.5,-82.5 parent: 2 - uid: 12069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + rot: 3.141592653589793 rad + pos: -55.5,-82.5 parent: 2 - uid: 12070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-39.5 + pos: -53.5,-70.5 parent: 2 -- proto: ChairFolding - entities: - uid: 12071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,1.5 + pos: -54.5,-70.5 parent: 2 - uid: 12072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,3.5 + pos: -55.5,-70.5 parent: 2 - uid: 12073 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,1.5 + pos: -36.5,-81.5 parent: 2 - uid: 12074 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,2.5 + pos: -36.5,-82.5 parent: 2 - uid: 12075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-0.5 + pos: -36.5,-83.5 parent: 2 - uid: 12076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 + rot: 1.5707963267948966 rad + pos: -47.5,-81.5 parent: 2 - uid: 12077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,0.5 + rot: 1.5707963267948966 rad + pos: -47.5,-82.5 parent: 2 - uid: 12078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,0.5 + rot: 1.5707963267948966 rad + pos: -47.5,-83.5 parent: 2 - uid: 12079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-1.5 + pos: -54.5,-58.5 parent: 2 - uid: 12080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,2.5 + rot: 1.5707963267948966 rad + pos: 69.5,-56.5 parent: 2 - uid: 12081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,26.5 + rot: 3.141592653589793 rad + pos: 34.5,-36.5 parent: 2 - uid: 12082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,53.5 + pos: 70.5,-55.5 parent: 2 - uid: 12083 components: - type: Transform - pos: -27.5,-28.5 + rot: -1.5707963267948966 rad + pos: -57.5,-51.5 parent: 2 - uid: 12084 components: - type: Transform - pos: -34.5,-69.5 + rot: -1.5707963267948966 rad + pos: -57.5,-52.5 parent: 2 - uid: 12085 components: - type: Transform - pos: -24.5,-95.5 + rot: -1.5707963267948966 rad + pos: -22.5,24.5 parent: 2 - uid: 12086 components: - type: Transform - pos: -25.5,-95.5 + rot: -1.5707963267948966 rad + pos: -22.5,23.5 parent: 2 - uid: 12087 components: - type: Transform - pos: -19.5,-95.5 + rot: -1.5707963267948966 rad + pos: -22.5,22.5 parent: 2 - uid: 12088 components: - type: Transform - pos: -29.5,-28.5 + rot: -1.5707963267948966 rad + pos: -22.5,19.5 parent: 2 -- proto: ChairGreyscale - entities: - uid: 12089 components: - type: Transform - pos: 2.5,-52.5 + rot: -1.5707963267948966 rad + pos: -22.5,18.5 parent: 2 - uid: 12090 components: - type: Transform - pos: -3.5,-45.5 + rot: 3.141592653589793 rad + pos: -0.5,34.5 parent: 2 - uid: 12091 components: - type: Transform - pos: -11.5,-52.5 + rot: 3.141592653589793 rad + pos: -1.5,34.5 parent: 2 - uid: 12092 components: - type: Transform - pos: 4.5,-52.5 + rot: 3.141592653589793 rad + pos: -2.5,34.5 parent: 2 - uid: 12093 components: - type: Transform - pos: -12.5,-52.5 + rot: -1.5707963267948966 rad + pos: 65.5,-7.5 parent: 2 - uid: 12094 components: - type: Transform - pos: -14.5,-52.5 + rot: 3.141592653589793 rad + pos: 61.5,-6.5 parent: 2 - uid: 12095 components: - type: Transform - pos: -4.5,-45.5 + rot: 3.141592653589793 rad + pos: 60.5,-6.5 parent: 2 - uid: 12096 components: - type: Transform - pos: -5.5,-45.5 + pos: 31.5,-60.5 parent: 2 - uid: 12097 components: - type: Transform - pos: 1.5,-52.5 + rot: 3.141592653589793 rad + pos: 30.5,-62.5 parent: 2 -- proto: ChairOfficeDark - entities: - uid: 12098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + pos: 30.5,-60.5 parent: 2 - uid: 12099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,54.5 + rot: -1.5707963267948966 rad + pos: 65.5,-8.5 parent: 2 - uid: 12100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 + rot: 3.141592653589793 rad + pos: -50.5,10.5 parent: 2 - uid: 12101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-4.5 + rot: 3.141592653589793 rad + pos: 25.5,-4.5 parent: 2 - uid: 12102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-36.5 + pos: 71.5,-55.5 parent: 2 - uid: 12103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-44.5 + pos: 23.5,6.5 parent: 2 - uid: 12104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 + rot: 3.141592653589793 rad + pos: -5.5,-16.5 parent: 2 - uid: 12105 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-53.5 + pos: 44.5,-43.5 parent: 2 - uid: 12106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 + rot: 3.141592653589793 rad + pos: 43.5,-43.5 parent: 2 - uid: 12107 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-45.5 + pos: 42.5,-43.5 parent: 2 - uid: 12108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 + pos: 34.5,-34.5 parent: 2 - uid: 12109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,22.5 + pos: 3.5,-40.5 parent: 2 - uid: 12110 components: - type: Transform - pos: -32.5,30.5 + pos: -14.5,8.5 parent: 2 - uid: 12111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,20.5 + pos: -15.5,8.5 parent: 2 - uid: 12112 components: - type: Transform - pos: -33.5,-69.5 + rot: 3.141592653589793 rad + pos: -40.5,-0.5 parent: 2 - uid: 12113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,37.5 + rot: 3.141592653589793 rad + pos: -39.5,-0.5 parent: 2 - uid: 12114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-97.5 + rot: 3.141592653589793 rad + pos: -38.5,-0.5 parent: 2 - uid: 12115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 + rot: 3.141592653589793 rad + pos: -36.5,-0.5 parent: 2 - uid: 12116 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-31.5 + pos: -35.5,-0.5 parent: 2 - uid: 12117 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-32.5 + pos: -34.5,-0.5 parent: 2 - uid: 12118 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-22.5 + pos: -17.5,-70.5 parent: 2 - uid: 12119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 2 - - uid: 31662 - components: - - type: Transform - pos: 22.5,-38.5 + rot: -1.5707963267948966 rad + pos: -17.5,-71.5 parent: 2 -- proto: ChairOfficeLight - entities: - uid: 12120 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-22.5 + pos: 31.5,-62.5 parent: 2 - uid: 12121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-22.5 + rot: -1.5707963267948966 rad + pos: -18.5,-34.5 parent: 2 - uid: 12122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-22.5 + rot: -1.5707963267948966 rad + pos: -18.5,-33.5 parent: 2 - uid: 12123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-22.5 + rot: -1.5707963267948966 rad + pos: -18.5,-32.5 parent: 2 - uid: 12124 components: - type: Transform - pos: -23.5,-70.5 + rot: 1.5707963267948966 rad + pos: -34.5,-67.5 parent: 2 - uid: 12125 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-49.5 + pos: 32.5,-18.5 parent: 2 - uid: 12126 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-25.5 + pos: 31.5,-18.5 parent: 2 - uid: 12127 components: - type: Transform - pos: -10.5,-36.5 + rot: 3.141592653589793 rad + pos: 30.5,-18.5 parent: 2 - uid: 12128 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,20.5 + pos: 20.5,-18.5 parent: 2 - uid: 12129 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,12.5 + pos: 19.5,-18.5 parent: 2 - uid: 12130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-41.5 + rot: 3.141592653589793 rad + pos: 18.5,-18.5 parent: 2 - uid: 12131 components: - type: Transform - pos: 42.5,-39.5 + rot: 1.5707963267948966 rad + pos: 18.5,1.5 parent: 2 - uid: 12132 components: - type: Transform - pos: -26.5,15.5 + rot: 1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 - uid: 12133 components: - type: Transform - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 50.5,56.5 parent: 2 - uid: 12134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,6.5 + pos: 50.5,57.5 parent: 2 - uid: 12135 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-49.5 + pos: 50.5,58.5 parent: 2 -- proto: ChairPilotSeat - entities: - uid: 12136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-22.5 + rot: -1.5707963267948966 rad + pos: 55.5,29.5 parent: 2 - uid: 12137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,23.5 + rot: -1.5707963267948966 rad + pos: 55.5,28.5 parent: 2 - uid: 12138 components: - type: Transform - pos: 25.5,20.5 + rot: 1.5707963267948966 rad + pos: 52.5,29.5 parent: 2 - uid: 12139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-54.5 + rot: 1.5707963267948966 rad + pos: 52.5,28.5 parent: 2 - uid: 12140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-47.5 + pos: -18.5,67.5 parent: 2 - uid: 12141 components: - type: Transform - pos: 62.5,-0.5 + pos: -16.5,67.5 parent: 2 - uid: 12142 components: - type: Transform - pos: 59.5,-0.5 + pos: 6.5,34.5 parent: 2 - uid: 12143 components: - type: Transform - pos: 61.5,-0.5 + pos: 10.5,34.5 parent: 2 - uid: 12144 components: - type: Transform - pos: 60.5,-0.5 + pos: -1.5,43.5 parent: 2 - uid: 12145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-13.5 + pos: -3.5,43.5 parent: 2 - uid: 12146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-28.5 + pos: -16.5,63.5 parent: 2 - uid: 12147 components: - type: Transform - pos: 54.5,57.5 + pos: -17.5,63.5 parent: 2 - uid: 12148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-87.5 + pos: -18.5,63.5 parent: 2 - uid: 12149 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-53.5 + pos: -15.5,62.5 parent: 2 - uid: 12150 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-54.5 + pos: -15.5,61.5 parent: 2 - uid: 12151 components: - - type: MetaData - name: barber's chair - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-38.5 + pos: -19.5,62.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,61.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,60.5 parent: 2 -- proto: ChairWood - entities: - uid: 12154 components: - type: Transform - pos: 9.5,-5.5 + rot: 3.141592653589793 rad + pos: -17.5,60.5 parent: 2 - uid: 12155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 + rot: 3.141592653589793 rad + pos: -16.5,60.5 parent: 2 - uid: 12156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 + rot: -1.5707963267948966 rad + pos: -40.5,-90.5 parent: 2 - uid: 12157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,1.5 + pos: -40.5,-89.5 parent: 2 - uid: 12158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: -43.5,-89.5 parent: 2 - uid: 12159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 + rot: 1.5707963267948966 rad + pos: -43.5,-90.5 parent: 2 - uid: 12160 components: - type: Transform - pos: 10.5,-5.5 + pos: -42.5,-97.5 parent: 2 - uid: 12161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 + rot: -1.5707963267948966 rad + pos: -4.5,-99.5 parent: 2 - uid: 12162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,7.5 + pos: 62.5,-7.5 parent: 2 - uid: 12163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-8.5 + rot: 1.5707963267948966 rad + pos: 62.5,-8.5 parent: 2 - uid: 12164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + rot: 1.5707963267948966 rad + pos: 62.5,-9.5 parent: 2 - uid: 12165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 2.5,-40.5 parent: 2 - uid: 12166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 + pos: 60.5,-64.5 parent: 2 - uid: 12167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,8.5 + pos: 64.5,-66.5 parent: 2 - uid: 12168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + pos: 64.5,-64.5 parent: 2 - uid: 12169 components: - type: Transform - pos: -1.5,-16.5 + pos: 62.5,-66.5 parent: 2 - uid: 12170 components: - type: Transform - pos: 11.5,12.5 + pos: 63.5,-66.5 parent: 2 - uid: 12171 components: - type: Transform - pos: 12.5,12.5 + pos: 59.5,-66.5 parent: 2 - uid: 12172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 + pos: 58.5,-66.5 parent: 2 - uid: 12173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 + pos: 62.5,-62.5 parent: 2 - uid: 12174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,10.5 + pos: 63.5,-62.5 parent: 2 - uid: 12175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,1.5 + pos: 59.5,-62.5 parent: 2 - uid: 12176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 + pos: 58.5,-62.5 parent: 2 - uid: 12177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,8.5 + pos: 58.5,-64.5 parent: 2 - uid: 12178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-26.5 + pos: 59.5,-64.5 parent: 2 - uid: 12179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-67.5 + pos: 62.5,-64.5 parent: 2 - uid: 12180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,9.5 + pos: 63.5,-64.5 parent: 2 - uid: 12181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,9.5 + pos: 64.5,-62.5 parent: 2 - uid: 12182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,10.5 + pos: 60.5,-62.5 parent: 2 - uid: 12183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 + pos: 50.5,-32.5 parent: 2 - uid: 12184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,11.5 + pos: 60.5,-66.5 parent: 2 - uid: 12185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,11.5 + rot: 1.5707963267948966 rad + pos: 69.5,-57.5 parent: 2 - uid: 12186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,12.5 + rot: -1.5707963267948966 rad + pos: 56.5,-67.5 parent: 2 - uid: 12187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: 54.5,-67.5 parent: 2 - uid: 12188 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,12.5 + pos: 45.5,-43.5 parent: 2 - uid: 12189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,11.5 + pos: -5.5,-14.5 parent: 2 - uid: 12190 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,11.5 + pos: 25.5,-69.5 parent: 2 - uid: 12191 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,10.5 + pos: 26.5,-69.5 parent: 2 - uid: 12192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,10.5 + pos: 50.5,-71.5 parent: 2 - uid: 12193 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,9.5 + pos: 50.5,-73.5 parent: 2 - uid: 12194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,9.5 + pos: -37.5,-45.5 parent: 2 - uid: 12195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,12.5 + pos: -36.5,-45.5 parent: 2 - uid: 12196 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,51.5 + pos: -71.5,-54.5 parent: 2 - uid: 12197 components: - type: Transform - pos: -3.5,53.5 + pos: -72.5,-54.5 parent: 2 - uid: 12198 components: - type: Transform - pos: -17.5,43.5 + pos: -73.5,-54.5 parent: 2 - uid: 12199 components: - type: Transform - pos: -16.5,43.5 + rot: 3.141592653589793 rad + pos: -73.5,-53.5 parent: 2 - uid: 12200 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,40.5 + pos: -72.5,-53.5 parent: 2 - uid: 12201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 + rot: 3.141592653589793 rad + pos: -71.5,-53.5 parent: 2 - uid: 12202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + rot: 3.141592653589793 rad + pos: -70.5,-53.5 parent: 2 - uid: 12203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,1.5 + pos: -70.5,-54.5 parent: 2 - uid: 12204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 58.5,57.5 parent: 2 - uid: 12205 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,1.5 + pos: 58.5,56.5 parent: 2 - uid: 12206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 parent: 2 - uid: 12207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,40.5 + rot: 1.5707963267948966 rad + pos: 10.5,-39.5 parent: 2 +- proto: ChairFolding + entities: - uid: 12208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,47.5 + rot: -1.5707963267948966 rad + pos: 28.5,1.5 parent: 2 - uid: 12209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-16.5 + pos: 28.5,3.5 parent: 2 - uid: 12210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,32.5 + pos: 29.5,1.5 parent: 2 - uid: 12211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,32.5 + rot: -1.5707963267948966 rad + pos: 29.5,2.5 parent: 2 - uid: 12212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,34.5 + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 parent: 2 - uid: 12213 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,43.5 + pos: 28.5,-0.5 parent: 2 - uid: 12214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,46.5 + pos: 28.5,0.5 parent: 2 - uid: 12215 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,45.5 + pos: 29.5,0.5 parent: 2 - uid: 12216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,46.5 + rot: -1.5707963267948966 rad + pos: 28.5,-1.5 parent: 2 - uid: 12217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,45.5 + rot: -1.5707963267948966 rad + pos: 28.5,2.5 parent: 2 - uid: 12218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,47.5 + rot: -1.5707963267948966 rad + pos: 18.5,26.5 parent: 2 - uid: 12219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,47.5 + rot: 1.5707963267948966 rad + pos: -25.5,53.5 parent: 2 - uid: 12220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,47.5 + pos: -27.5,-28.5 parent: 2 - uid: 12221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,46.5 + pos: -34.5,-69.5 parent: 2 - uid: 12222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,44.5 + pos: -24.5,-95.5 parent: 2 - uid: 12223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,44.5 + pos: -25.5,-95.5 parent: 2 - uid: 12224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,43.5 + pos: -19.5,-95.5 parent: 2 - uid: 12225 components: - type: Transform - pos: -41.5,-97.5 + pos: -29.5,-28.5 parent: 2 +- proto: ChairOfficeDark + entities: - uid: 12226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-35.5 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 parent: 2 - uid: 12227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-35.5 + pos: -25.5,54.5 parent: 2 - uid: 12228 components: - type: Transform - pos: -23.5,30.5 + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 parent: 2 - - uid: 12233 + - uid: 12229 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-39.5 + pos: 38.5,-4.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-36.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-44.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-53.5 parent: 2 - uid: 12234 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-39.5 + pos: -22.5,-34.5 parent: 2 - uid: 12235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-45.5 + parent: 2 + - uid: 12236 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -16.5,25.5 parent: 2 -- proto: CheapLighter - entities: - uid: 12237 components: - type: Transform - parent: 12236 - - type: Physics - canCollide: False + rot: -1.5707963267948966 rad + pos: -27.5,22.5 + parent: 2 - uid: 12238 components: - type: Transform - pos: 1.9080955,23.554485 + pos: -32.5,30.5 parent: 2 -- proto: CheapRollerBed - entities: - uid: 12239 components: - type: Transform - pos: -9.460541,-47.24853 + rot: 1.5707963267948966 rad + pos: 1.5,20.5 parent: 2 - uid: 12240 components: - type: Transform - pos: -9.476166,-48.27978 + pos: -33.5,-69.5 parent: 2 -- proto: chem_master - entities: - uid: 12241 components: - type: Transform - pos: 2.5,-45.5 + rot: 1.5707963267948966 rad + pos: 72.5,37.5 parent: 2 - uid: 12242 components: - type: Transform - pos: 2.5,-50.5 + rot: -1.5707963267948966 rad + pos: -4.5,-97.5 parent: 2 - uid: 12243 components: - type: Transform - pos: 2.5,-47.5 + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 parent: 2 -- proto: ChemDispenser - entities: - uid: 12244 components: - type: Transform - pos: 4.5,-45.5 + rot: 3.141592653589793 rad + pos: 62.5,-31.5 parent: 2 - uid: 12245 components: - type: Transform - pos: 4.5,-47.5 + rot: 3.141592653589793 rad + pos: 73.5,-32.5 parent: 2 - uid: 12246 components: - type: Transform - pos: 2.5,-49.5 + rot: -1.5707963267948966 rad + pos: -16.5,-22.5 parent: 2 -- proto: ChemistryHotplate - entities: - uid: 12247 components: - type: Transform - pos: 4.5,-50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 parent: 2 -- proto: ChessBoard - entities: - uid: 12248 components: - type: Transform - pos: 52.446415,7.1683345 + rot: -1.5707963267948966 rad + pos: -0.5,-65.5 parent: 2 - uid: 12249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.516274,32.607613 + pos: 31.5,17.5 parent: 2 +- proto: ChairOfficeLight + entities: - uid: 12250 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.4812293,52.59116 + pos: 27.5,-22.5 parent: 2 - uid: 12251 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.48214,-72.40164 + pos: 29.5,-22.5 parent: 2 -- proto: ChurchOrganInstrument - entities: - uid: 12252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,13.5 + rot: 3.141592653589793 rad + pos: 23.5,-22.5 parent: 2 -- proto: Cigar - entities: - uid: 12253 components: - type: Transform - pos: 13.506795,-34.413578 + rot: 3.141592653589793 rad + pos: 21.5,-22.5 parent: 2 - uid: 12254 components: - type: Transform - pos: 13.55367,-32.429203 + pos: -23.5,-70.5 parent: 2 - uid: 12255 components: - type: Transform - pos: 13.49117,-32.382328 + rot: 3.141592653589793 rad + pos: -4.5,-49.5 parent: 2 - uid: 12256 components: - type: Transform - pos: 13.444295,-34.351078 + rot: 3.141592653589793 rad + pos: 25.5,-25.5 parent: 2 -- proto: CigarCase - entities: - uid: 12257 components: - type: Transform - pos: -12.420865,-35.409706 + pos: -10.5,-36.5 parent: 2 - uid: 12258 components: - type: Transform - pos: 15.66736,-87.50202 + rot: 3.141592653589793 rad + pos: 53.5,12.5 parent: 2 -- proto: Cigarette - entities: - uid: 12259 components: - type: Transform - pos: 15.438844,-64.32231 + rot: -1.5707963267948966 rad + pos: 52.5,-41.5 parent: 2 - uid: 12260 components: - type: Transform - pos: 63.44384,24.664883 + pos: 42.5,-39.5 parent: 2 - uid: 12261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.361197,23.616985 + pos: -26.5,15.5 parent: 2 -- proto: CigarGold - entities: - uid: 12262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.625916,-26.476032 + pos: -23.5,12.5 parent: 2 - uid: 12263 components: - type: Transform - pos: 65.5063,-0.5499393 + rot: 1.5707963267948966 rad + pos: 47.5,6.5 parent: 2 -- proto: CigarGoldCase - entities: - uid: 12264 components: - type: Transform - pos: 61.545517,-1.3427625 + rot: 1.5707963267948966 rad + pos: -12.5,-49.5 parent: 2 -- proto: CigPackBlack - entities: - uid: 12265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-48.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 12269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-54.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-47.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-28.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-87.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-53.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-54.5 + parent: 2 + - uid: 12284 + components: + - type: MetaData + name: barber's chair + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 12285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-36.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-26.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-67.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,51.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,47.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-16.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,34.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,43.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,46.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,45.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,46.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,45.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,47.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,47.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,47.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,46.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,44.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,44.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,43.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + pos: -41.5,-97.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-39.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 12350 + components: + - type: Transform + parent: 12349 + - type: Physics + canCollide: False + - uid: 12351 + components: + - type: Transform + pos: 1.9080955,23.554485 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 12352 + components: + - type: Transform + pos: -9.460541,-47.24853 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: -9.476166,-48.27978 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 12357 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 12360 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 12354 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 12361 + components: + - type: Transform + pos: 52.446415,7.1683345 + parent: 2 + - uid: 12362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.516274,32.607613 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.4812293,52.59116 + parent: 2 + - uid: 12364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.48214,-72.40164 + parent: 2 + - uid: 12365 + components: + - type: Transform + pos: -5.519873,-15.44043 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 12366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 +- proto: Cigar + entities: + - uid: 12367 + components: + - type: Transform + pos: 13.506795,-34.413578 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: 13.55367,-32.429203 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: 13.49117,-32.382328 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: 13.444295,-34.351078 + parent: 2 +- proto: CigarCase + entities: + - uid: 12371 + components: + - type: Transform + pos: -12.420865,-35.409706 + parent: 2 + - uid: 12372 + components: + - type: Transform + pos: 15.66736,-87.50202 + parent: 2 +- proto: Cigarette + entities: + - uid: 12373 + components: + - type: Transform + pos: 15.438844,-64.32231 + parent: 2 + - uid: 12374 + components: + - type: Transform + pos: 63.44384,24.664883 + parent: 2 + - uid: 12375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.361197,23.616985 + parent: 2 +- proto: CigarGold + entities: + - uid: 12376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.625916,-26.476032 + parent: 2 + - uid: 12377 + components: + - type: Transform + pos: 65.5063,-0.5499393 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 12378 + components: + - type: Transform + pos: 61.545517,-1.3427625 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 12379 components: - type: Transform pos: 37.5,46.5 parent: 2 - proto: CigPackBlue entities: - - uid: 12266 + - uid: 12380 components: - type: Transform pos: 47.844124,50.55344 parent: 2 - proto: CigPackMixedMedical entities: - - uid: 12267 + - uid: 12381 components: - type: Transform pos: -16.642096,-35.41203 parent: 2 - proto: CircuitImprinter entities: - - uid: 12268 + - uid: 12382 components: - type: Transform pos: 44.5,-35.5 @@ -75592,50 +76217,50 @@ entities: - Gold - proto: CleanerDispenser entities: - - uid: 12269 + - uid: 12383 components: - type: Transform pos: -12.5,-20.5 parent: 2 - proto: ClockworkShield entities: - - uid: 12270 + - uid: 12384 components: - type: Transform pos: 57.48767,32.508053 parent: 2 - proto: ClosetBombFilled entities: - - uid: 12271 + - uid: 12385 components: - type: Transform pos: 51.5,-49.5 parent: 2 - - uid: 12272 + - uid: 12386 components: - type: Transform pos: 67.5,-31.5 parent: 2 - - uid: 12273 + - uid: 12387 components: - type: Transform pos: 12.5,23.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 12274 + - uid: 12388 components: - type: Transform pos: -5.5,14.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 12275 + - uid: 12389 components: - type: Transform pos: 69.5,-63.5 parent: 2 - - uid: 12276 + - uid: 12390 components: - type: Transform pos: -52.5,-80.5 @@ -75658,15 +76283,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12277 + - uid: 12391 components: - type: Transform pos: -12.5,10.5 @@ -75689,46 +76306,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12278 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12279 + - uid: 12392 components: - type: Transform pos: 21.5,-52.5 @@ -75751,15 +76329,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12280 + - uid: 12393 components: - type: Transform pos: 24.5,-56.5 @@ -75782,46 +76352,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12281 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12282 + - uid: 12394 components: - type: Transform pos: 38.5,-32.5 @@ -75844,15 +76375,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12283 + - uid: 12395 components: - type: Transform pos: -25.5,52.5 @@ -75875,46 +76398,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12284 - components: - - type: Transform - pos: 5.5,-69.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12285 + - uid: 12396 components: - type: Transform pos: 57.5,-14.5 @@ -75937,15 +76421,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12286 + - uid: 12397 components: - type: Transform pos: 52.5,-50.5 @@ -75968,15 +76444,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12287 + - uid: 12398 components: - type: Transform pos: -2.5,-11.5 @@ -75999,20 +76467,12 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12288 + - uid: 12399 components: - type: Transform pos: 43.5,-74.5 parent: 2 - - uid: 12289 + - uid: 12400 components: - type: Transform pos: 11.5,-69.5 @@ -76035,20 +76495,12 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12290 + - uid: 12401 components: - type: Transform pos: 27.5,-80.5 parent: 2 - - uid: 12291 + - uid: 12402 components: - type: Transform pos: -23.5,-31.5 @@ -76071,20 +76523,12 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12292 + - uid: 12403 components: - type: Transform pos: 47.5,-92.5 parent: 2 - - uid: 12293 + - uid: 12404 components: - type: Transform pos: -54.5,-5.5 @@ -76107,20 +76551,12 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12294 + - uid: 12405 components: - type: Transform pos: 31.5,-92.5 parent: 2 - - uid: 12295 + - uid: 12406 components: - type: Transform pos: -57.5,-32.5 @@ -76143,15 +76579,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12296 + - uid: 12407 components: - type: Transform pos: 17.5,34.5 @@ -76174,15 +76602,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12297 + - uid: 12408 components: - type: Transform pos: 63.5,-5.5 @@ -76205,15 +76625,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12298 + - uid: 12409 components: - type: Transform pos: 18.5,-39.5 @@ -76236,15 +76648,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12299 + - uid: 12410 components: - type: Transform pos: 3.5,-25.5 @@ -76267,15 +76671,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12300 + - uid: 12411 components: - type: Transform pos: 47.5,-15.5 @@ -76298,15 +76694,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12301 + - uid: 12412 components: - type: Transform pos: 16.5,-5.5 @@ -76329,15 +76717,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12302 + - uid: 12413 components: - type: Transform pos: -31.5,-0.5 @@ -76360,15 +76740,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12303 + - uid: 12414 components: - type: Transform pos: -17.5,38.5 @@ -76391,15 +76763,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12304 + - uid: 12415 components: - type: Transform pos: -12.5,47.5 @@ -76422,15 +76786,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12305 + - uid: 12416 components: - type: Transform pos: 50.5,40.5 @@ -76453,15 +76809,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12306 + - uid: 12417 components: - type: Transform pos: 65.5,1.5 @@ -76484,25 +76832,17 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12307 + - uid: 12418 components: - type: Transform pos: -15.5,67.5 parent: 2 - - uid: 12308 + - uid: 12419 components: - type: Transform pos: -19.5,67.5 parent: 2 - - uid: 12309 + - uid: 12420 components: - type: Transform pos: -12.5,49.5 @@ -76525,15 +76865,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12310 + - uid: 12421 components: - type: Transform pos: -26.5,28.5 @@ -76556,15 +76888,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12311 + - uid: 12422 components: - type: Transform pos: -36.5,-93.5 @@ -76587,15 +76911,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12312 + - uid: 12423 components: - type: Transform pos: 74.5,-51.5 @@ -76618,15 +76934,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12313 + - uid: 12424 components: - type: Transform pos: 42.5,-62.5 @@ -76649,15 +76957,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12314 + - uid: 12425 components: - type: Transform pos: -10.5,-8.5 @@ -76680,15 +76980,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12315 + - uid: 12426 components: - type: Transform pos: 41.5,-27.5 @@ -76711,37 +77003,34 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12316 + - uid: 12427 components: - type: Transform pos: 20.5,-21.5 parent: 2 - - uid: 12317 + - uid: 12428 components: - type: Transform pos: -47.5,41.5 parent: 2 - - uid: 12318 + - uid: 12429 components: - type: Transform pos: -10.5,-30.5 parent: 2 - - uid: 12319 + - uid: 12430 components: - type: Transform pos: -23.5,-6.5 parent: 2 + - uid: 12431 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 2 - proto: ClosetFireFilled entities: - - uid: 12320 + - uid: 12432 components: - type: Transform pos: -11.5,-45.5 @@ -76764,15 +77053,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12321 + - uid: 12433 components: - type: Transform pos: -11.5,-73.5 @@ -76795,15 +77076,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12322 + - uid: 12434 components: - type: Transform pos: 22.5,-52.5 @@ -76826,15 +77099,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12323 + - uid: 12435 components: - type: Transform pos: 24.5,-55.5 @@ -76857,15 +77122,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12324 + - uid: 12436 components: - type: Transform pos: -25.5,51.5 @@ -76888,15 +77145,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12325 + - uid: 12437 components: - type: Transform pos: -12.5,-30.5 @@ -76919,15 +77168,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12326 + - uid: 12438 components: - type: Transform pos: -2.5,-12.5 @@ -76950,15 +77191,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12327 + - uid: 12439 components: - type: Transform pos: -52.5,-72.5 @@ -76981,15 +77214,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12328 + - uid: 12440 components: - type: Transform pos: -23.5,-41.5 @@ -77012,15 +77237,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12329 + - uid: 12441 components: - type: Transform pos: 22.5,-8.5 @@ -77043,15 +77260,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12330 + - uid: 12442 components: - type: Transform pos: 62.5,-5.5 @@ -77074,15 +77283,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12331 + - uid: 12443 components: - type: Transform pos: 19.5,-39.5 @@ -77105,15 +77306,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12332 + - uid: 12444 components: - type: Transform pos: 16.5,-6.5 @@ -77136,15 +77329,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12333 + - uid: 12445 components: - type: Transform pos: -32.5,-0.5 @@ -77167,15 +77352,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12334 + - uid: 12446 components: - type: Transform pos: 2.5,-25.5 @@ -77198,15 +77375,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12335 + - uid: 12447 components: - type: Transform pos: -11.5,47.5 @@ -77229,15 +77398,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12336 + - uid: 12448 components: - type: Transform pos: 49.5,40.5 @@ -77260,15 +77421,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12337 + - uid: 12449 components: - type: Transform pos: -43.5,37.5 @@ -77291,15 +77444,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12338 + - uid: 12450 components: - type: Transform pos: -31.5,-41.5 @@ -77322,15 +77467,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12339 + - uid: 12451 components: - type: Transform pos: -27.5,28.5 @@ -77353,15 +77490,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12340 + - uid: 12452 components: - type: Transform pos: -35.5,-93.5 @@ -77384,15 +77513,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12341 + - uid: 12453 components: - type: Transform pos: 74.5,-52.5 @@ -77415,15 +77536,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12342 + - uid: 12454 components: - type: Transform pos: 64.5,-31.5 @@ -77446,15 +77559,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12343 + - uid: 12455 components: - type: Transform pos: 35.5,-74.5 @@ -77477,74 +77582,51 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12344 + - uid: 12456 components: - type: Transform pos: 29.5,-92.5 parent: 2 - - uid: 12345 + - uid: 12457 components: - type: Transform pos: 49.5,-92.5 parent: 2 - - uid: 12346 + - uid: 12458 components: - type: Transform pos: 28.5,-80.5 parent: 2 - - uid: 12347 + - uid: 12459 components: - type: Transform pos: -24.5,-6.5 parent: 2 - - uid: 12348 + - uid: 12460 components: - type: Transform pos: -74.5,-32.5 parent: 2 - - uid: 12349 + - uid: 12461 components: - type: Transform pos: -57.5,-56.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 12350 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 2 -- proto: ClosetL3VirologyFilled +- proto: ClosetJanitorFilled entities: - - uid: 12351 + - uid: 12462 components: - type: Transform - pos: -18.5,-63.5 + pos: -8.5,-17.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14957 + temperature: 293.14673 moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -77555,7 +77637,16 @@ entities: - 0 - 0 - 0 - - uid: 12352 +- proto: ClosetL3JanitorFilled + entities: + - uid: 12463 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 12464 components: - type: Transform pos: -22.5,-79.5 @@ -77578,17 +77669,14 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - uid: 12465 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 2 - proto: ClosetMaintenance entities: - - uid: 12353 + - uid: 12466 components: - type: Transform pos: -22.5,-38.5 @@ -77611,15 +77699,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12354 + - uid: 12467 components: - type: Transform pos: -44.5,-31.5 @@ -77642,15 +77722,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12355 + - uid: 12468 components: - type: Transform pos: -41.5,-30.5 @@ -77673,15 +77745,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12356 + - uid: 12469 components: - type: Transform pos: 14.5,39.5 @@ -77704,15 +77768,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12357 + - uid: 12470 components: - type: Transform pos: -19.5,56.5 @@ -77735,22 +77791,14 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 12358 + - uid: 12471 components: - type: Transform pos: -42.5,-32.5 parent: 2 - - uid: 12359 + - uid: 12472 components: - type: Transform pos: 12.5,-51.5 @@ -77773,15 +77821,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12360 + - uid: 12473 components: - type: Transform pos: -5.5,-73.5 @@ -77804,15 +77844,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12361 + - uid: 12474 components: - type: Transform pos: -19.5,58.5 @@ -77835,15 +77867,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12362 + - uid: 12475 components: - type: Transform pos: 16.5,-72.5 @@ -77866,15 +77890,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12363 + - uid: 12476 components: - type: Transform pos: -15.5,-12.5 @@ -77897,46 +77913,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12364 - components: - - type: Transform - pos: -37.5,-67.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12365 + - uid: 12477 components: - type: Transform pos: -29.5,-57.5 @@ -77959,15 +77936,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12366 + - uid: 12478 components: - type: Transform pos: -29.5,-39.5 @@ -77990,15 +77959,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12367 + - uid: 12479 components: - type: Transform pos: -28.5,-67.5 @@ -78021,15 +77982,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12368 + - uid: 12480 components: - type: Transform pos: -56.5,-32.5 @@ -78052,15 +78005,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12369 + - uid: 12481 components: - type: Transform pos: 36.5,-12.5 @@ -78083,15 +78028,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12370 + - uid: 12482 components: - type: Transform pos: -22.5,-28.5 @@ -78114,15 +78051,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12371 + - uid: 12483 components: - type: Transform pos: 0.5,34.5 @@ -78145,15 +78074,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12372 + - uid: 12484 components: - type: Transform pos: 55.5,-3.5 @@ -78176,15 +78097,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12373 + - uid: 12485 components: - type: Transform pos: -27.5,-67.5 @@ -78207,15 +78120,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12374 + - uid: 12486 components: - type: Transform pos: 39.5,-15.5 @@ -78238,15 +78143,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12375 + - uid: 12487 components: - type: Transform pos: 58.5,29.5 @@ -78269,15 +78166,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12376 + - uid: 12488 components: - type: Transform pos: -31.5,38.5 @@ -78300,15 +78189,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12377 + - uid: 12489 components: - type: Transform pos: -12.5,29.5 @@ -78331,15 +78212,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12378 + - uid: 12490 components: - type: Transform pos: -43.5,-94.5 @@ -78362,15 +78235,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12379 + - uid: 12491 components: - type: Transform pos: 48.5,-35.5 @@ -78393,15 +78258,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12380 + - uid: 12492 components: - type: Transform pos: 72.5,-55.5 @@ -78424,15 +78281,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12381 + - uid: 12493 components: - type: Transform pos: -9.5,-8.5 @@ -78455,27 +78304,24 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12382 + - uid: 12494 components: - type: Transform pos: 7.5,-78.5 parent: 2 - - uid: 12383 + - uid: 12495 components: - type: Transform pos: 8.5,26.5 parent: 2 + - uid: 12496 + components: + - type: Transform + pos: -37.5,-67.5 + parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 12384 + - uid: 12497 components: - type: Transform pos: -59.5,-23.5 @@ -78498,15 +78344,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12385 + - uid: 12498 components: - type: Transform pos: -60.5,-23.5 @@ -78529,15 +78367,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12386 + - uid: 12499 components: - type: Transform pos: 70.5,-35.5 @@ -78560,17 +78390,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetToolFilled entities: - - uid: 12387 + - uid: 12500 components: - type: Transform pos: -26.5,-21.5 @@ -78593,15 +78415,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12388 + - uid: 12501 components: - type: Transform pos: -22.5,-31.5 @@ -78611,14 +78425,14 @@ entities: removedMasks: 20 - proto: ClosetWall entities: - - uid: 12389 + - uid: 12502 components: - type: Transform pos: 45.5,-32.5 parent: 2 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12390 + - uid: 12503 components: - type: Transform pos: 53.5,-33.5 @@ -78641,20 +78455,12 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12391 + - uid: 12504 components: - type: Transform pos: 47.5,-64.5 parent: 2 - - uid: 12392 + - uid: 12505 components: - type: Transform pos: -52.5,-26.5 @@ -78677,72 +78483,59 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12393 + - uid: 12506 components: - type: Transform pos: 2.5,-12.5 parent: 2 - proto: ClothingBackpack entities: - - uid: 12394 + - uid: 12507 components: - type: Transform pos: -56.640278,-27.45032 parent: 2 - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12395 + - uid: 12508 components: - type: Transform pos: 30.440884,-27.760664 parent: 2 - proto: ClothingBackpackDuffelClown entities: - - uid: 12396 + - uid: 12509 components: - type: Transform pos: 53.57669,61.550056 parent: 2 - proto: ClothingBackpackDuffelMedical entities: - - uid: 12397 + - uid: 12510 components: - type: Transform pos: -2.4848266,-48.830677 parent: 2 - - uid: 12398 + - uid: 12511 components: - type: Transform pos: -16.552103,-49.311478 parent: 2 - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12399 + - uid: 12512 components: - type: Transform pos: 5.4199524,15.682768 parent: 2 - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 12400 + - uid: 12513 components: - type: Transform pos: -6.4692874,-100.35278 parent: 2 - - uid: 12401 - components: - - type: Transform - pos: -3.4849787,-66.40156 - parent: 2 - - uid: 12402 + - uid: 12514 components: - type: Transform rot: 1.5707963267948966 rad @@ -78750,880 +78543,844 @@ entities: parent: 2 - proto: ClothingBackpackDuffelSyndicate entities: - - uid: 12403 + - uid: 12515 components: - type: Transform pos: -46.5,62.5 parent: 2 -- proto: ClothingBackpackMedical - entities: - - uid: 12404 - components: - - type: Transform - pos: 0.5470823,-61.419598 - parent: 2 - proto: ClothingBackpackSatchel entities: - - uid: 12405 + - uid: 12516 components: - type: Transform pos: -48.296333,5.808547 parent: 2 - proto: ClothingBackpackSatchelMedical entities: - - uid: 12406 + - uid: 12517 components: - type: Transform pos: -11.364604,-50.389603 parent: 2 - proto: ClothingBackpackVirology entities: - - uid: 12407 + - uid: 12518 components: - type: Transform pos: -31.439095,-73.39239 parent: 2 - proto: ClothingBeltAssault entities: - - uid: 12409 + - uid: 12520 components: - type: Transform - parent: 12408 + parent: 12519 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltMedicalFilled entities: - - uid: 12411 + - uid: 12522 components: - type: Transform pos: -11.470623,-49.143177 parent: 2 - proto: ClothingBeltUtility entities: - - uid: 12412 + - uid: 12523 components: - type: Transform pos: -39.52201,-20.517406 parent: 2 - - uid: 12413 + - uid: 12524 components: - type: Transform pos: 47.423275,49.588562 parent: 2 - - uid: 12414 + - uid: 12525 components: - type: Transform pos: -3.42201,34.480587 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 12415 + - uid: 12526 components: - type: Transform pos: 41.37638,-39.3584 parent: 2 - - uid: 12416 + - uid: 12527 components: - type: Transform pos: -30.494818,-37.432365 parent: 2 - - uid: 12417 + - uid: 12528 components: - type: Transform pos: -21.644775,-100.24527 parent: 2 - - uid: 12418 + - uid: 12529 components: - type: Transform pos: -34.48208,26.5042 parent: 2 - - uid: 12419 + - uid: 12530 components: - type: Transform pos: -26.513802,-20.343254 parent: 2 - proto: ClothingEyesGlasses entities: - - uid: 12420 + - uid: 12531 components: - type: Transform pos: -57.484028,-27.38782 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 12421 + - uid: 12532 components: - type: Transform pos: -52.538578,-12.210998 parent: 2 - - uid: 12422 + - uid: 12533 components: - type: Transform pos: -56.32557,-25.518402 parent: 2 - - uid: 12423 + - uid: 12534 components: - type: Transform pos: 2.454368,-75.40744 parent: 2 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 12424 - components: - - type: Transform - pos: 22.490807,-47.25673 - parent: 2 - proto: ClothingEyesHudBeer entities: - - uid: 12425 + - uid: 12535 components: - type: Transform pos: -41.966873,-78.417305 parent: 2 - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12426 + - uid: 12536 components: - type: Transform pos: 21.737816,3.36442 parent: 2 - - uid: 12427 + - uid: 12537 components: - type: Transform pos: -40.008175,-83.602425 parent: 2 - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12428 + - uid: 12538 components: - type: Transform pos: 30.201283,4.7139225 parent: 2 - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12429 + - uid: 12539 components: - type: Transform pos: 26.335562,-1.3744954 parent: 2 - - uid: 12430 + - uid: 12540 components: - type: Transform pos: -44.121326,-80.72781 parent: 2 - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12431 + - uid: 12541 components: - type: Transform pos: 30.232533,4.5889225 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12432 + - uid: 12542 components: - type: Transform pos: -47.515083,6.5429225 parent: 2 - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12433 + - uid: 12543 components: - type: Transform pos: -57.515278,-30.528444 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12434 + - uid: 12544 components: - type: Transform pos: -28.54305,-20.538445 parent: 2 - - uid: 12435 + - uid: 12545 components: - type: Transform pos: -56.97646,-35.48593 parent: 2 - proto: ClothingHandsGlovesCombat entities: - - uid: 12436 + - uid: 12546 components: - type: Transform pos: -37.5,-32.5 parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 12437 + - uid: 12547 components: - type: Transform pos: -19.466316,-85.552505 parent: 2 - - uid: 12438 + - uid: 12548 components: - type: Transform pos: -5.563123,-96.94655 parent: 2 - proto: ClothingHeadFishCap entities: - - uid: 12439 + - uid: 12549 components: - type: Transform pos: -24.484636,34.673782 parent: 2 - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12440 + - uid: 12550 components: - type: Transform pos: -51.4974,8.551356 parent: 2 - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12441 + - uid: 12551 components: - type: Transform pos: -48.252262,60.451523 parent: 2 - proto: ClothingHeadHatBeaverHat entities: - - uid: 12442 + - uid: 12552 components: - type: Transform pos: 22.537655,11.563517 parent: 2 - proto: ClothingHeadHatBunny entities: - - uid: 12443 + - uid: 12553 components: - type: Transform pos: 57.503056,-8.485766 parent: 2 - proto: ClothingHeadHatCake entities: - - uid: 12444 + - uid: 12554 components: - type: Transform pos: -23.42545,-67.41026 parent: 2 - proto: ClothingHeadHatCardborg entities: - - uid: 12445 + - uid: 12555 components: - type: Transform pos: 72.844894,-43.422203 parent: 2 - proto: ClothingHeadHatCasa entities: - - uid: 12446 + - uid: 12556 components: - type: Transform pos: -22.35962,44.65524 parent: 2 - - uid: 12447 + - uid: 12557 components: - type: Transform pos: -22.60962,44.452114 parent: 2 - - uid: 12448 + - uid: 12558 components: - type: Transform pos: -22.218994,44.34274 parent: 2 - proto: ClothingHeadHatChickenhead entities: - - uid: 12449 + - uid: 12559 components: - type: Transform pos: -38.364468,56.565044 parent: 2 - - uid: 12450 + - uid: 12560 components: - type: Transform pos: 69.487785,-66.37648 parent: 2 - proto: ClothingHeadHatCone entities: - - uid: 12451 + - uid: 12561 components: - type: Transform pos: 20.465803,-52.422585 parent: 2 - - uid: 12452 + - uid: 12562 components: - type: Transform pos: -40.213425,-17.545645 parent: 2 - - uid: 12453 + - uid: 12563 components: - type: Transform pos: -28.525217,-54.052208 parent: 2 - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12454 + - uid: 12564 components: - type: Transform pos: -42.4974,8.520106 parent: 2 + - uid: 12565 + components: + - type: Transform + pos: -1.5497928,-64.38667 + parent: 2 - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12455 + - uid: 12566 components: - type: Transform pos: -22.922485,11.607702 parent: 2 - proto: ClothingHeadHatFez entities: - - uid: 12456 + - uid: 12567 components: - type: Transform pos: 20.326727,12.833071 parent: 2 - proto: ClothingHeadHatGreensoft entities: - - uid: 12457 + - uid: 12568 components: - type: Transform pos: 31.51696,-61.276703 parent: 2 -- proto: ClothingHeadHatHairflower - entities: - - uid: 12458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.635506,-36.53619 - parent: 2 - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12459 + - uid: 12570 components: - type: Transform pos: 15.782594,-64.08794 parent: 2 - proto: ClothingHeadHatHetmanHat entities: - - uid: 12460 + - uid: 12571 components: - type: Transform pos: -40.407463,-78.02446 parent: 2 - proto: ClothingHeadHatHoodMoth entities: - - uid: 12461 + - uid: 12572 components: - type: Transform pos: -14.455677,-96.43048 parent: 2 - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12462 + - uid: 12573 components: - type: Transform pos: -38.629223,16.497232 parent: 2 - proto: ClothingHeadHatJesterAlt entities: - - uid: 12463 + - uid: 12574 components: - type: Transform pos: -15.170754,12.526345 parent: 2 - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12464 + - uid: 12575 components: - type: Transform pos: -31.265268,5.276951 parent: 2 - proto: ClothingHeadHatPumpkin entities: - - uid: 12465 + - uid: 12576 components: - type: Transform pos: -6.603641,4.509495 parent: 2 - proto: ClothingHeadHatRichard entities: - - uid: 12466 + - uid: 12577 components: - type: Transform pos: -16.484713,20.572138 parent: 2 - proto: ClothingHeadHatSantahat entities: - - uid: 12467 + - uid: 12578 components: - type: Transform pos: 70.456535,-65.50148 parent: 2 - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12468 + - uid: 12579 components: - type: Transform pos: 73.5263,-65.23457 parent: 2 - proto: ClothingHeadHatSquid entities: - - uid: 12469 + - uid: 12580 components: - type: Transform pos: 9.466757,-12.457433 parent: 2 - proto: ClothingHeadHatTophat entities: - - uid: 12470 + - uid: 12581 components: - type: Transform pos: 22.506405,10.969767 parent: 2 - - uid: 12471 + - uid: 12582 components: - type: Transform pos: -19.575691,-87.365005 parent: 2 - proto: ClothingHeadHatTrucker entities: - - uid: 12472 + - uid: 12583 components: - type: Transform pos: -35.471638,-48.0912 parent: 2 - proto: ClothingHeadHatUshanka entities: - - uid: 12473 + - uid: 12584 components: - type: Transform pos: 20.592352,12.520571 parent: 2 - - uid: 12474 + - uid: 12585 components: - type: Transform pos: 63.56368,11.408342 parent: 2 - - uid: 12475 + - uid: 12586 components: - type: Transform pos: -39.523006,-76.44785 parent: 2 - - uid: 12476 + - uid: 12587 components: - type: Transform pos: -43.43965,-78.05615 parent: 2 - proto: ClothingHeadHatVioletwizard entities: - - uid: 12477 + - uid: 12588 components: - type: Transform pos: 18.520521,50.50226 parent: 2 - proto: ClothingHeadHatWelding entities: - - uid: 12478 + - uid: 12589 components: - type: Transform pos: -35.502888,-47.3412 parent: 2 - - uid: 12479 + - uid: 12590 components: - type: Transform pos: -12.456746,17.595669 parent: 2 - - uid: 12480 + - uid: 12591 components: - type: Transform pos: 42.55075,-32.360874 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12481 + - uid: 12592 components: - type: Transform pos: 0.64530456,23.439005 parent: 2 - - uid: 12482 +- proto: ClothingHeadHatWizard + entities: + - uid: 12593 components: - type: Transform - pos: -20.443554,-51.52769 + pos: -27.578125,55.49253 parent: 2 -- proto: ClothingHeadHatWizard +- proto: ClothingHeadHelmetBasic entities: - - uid: 12483 + - uid: 12597 components: - type: Transform - pos: -27.578125,55.49253 + pos: -31.458502,-43.474 parent: 2 - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12484 + - uid: 12594 components: - type: Transform pos: -31.517996,-64.46434 parent: 2 - - uid: 12485 + - uid: 12595 components: - type: Transform pos: -37.48917,27.661566 parent: 2 - proto: ClothingHeadHelmetEVA entities: - - uid: 12486 + - uid: 12596 components: - type: Transform pos: -71.04211,-26.39878 parent: 2 -- proto: ClothingHeadHelmetScaf - entities: - - uid: 12487 - components: - - type: Transform - pos: -31.458502,-43.474 - parent: 2 - proto: ClothingHeadHelmetTemplar entities: - - uid: 12488 + - uid: 12598 components: - type: Transform pos: 38.423565,-15.642361 parent: 2 -- proto: ClothingHeadNurseHat - entities: - - uid: 12489 - components: - - type: Transform - pos: 2.5095897,-65.392746 - parent: 2 - proto: ClothingHeadSafari entities: - - uid: 12490 + - uid: 12599 components: - type: Transform pos: -3.5832248,52.757553 parent: 2 - proto: ClothingMaskBat entities: - - uid: 12491 + - uid: 12600 components: - type: Transform pos: -28.497562,8.541992 parent: 2 - proto: ClothingMaskBear entities: - - uid: 12492 + - uid: 12601 components: - type: Transform pos: -38.62821,28.538465 parent: 2 - proto: ClothingMaskBee entities: - - uid: 12493 + - uid: 12602 components: - type: Transform pos: -3.4901123,53.561974 parent: 2 - proto: ClothingMaskBreathMedical entities: - - uid: 12494 + - uid: 12603 components: - type: Transform pos: -16.243101,-35.3368 parent: 2 - proto: ClothingMaskFox entities: - - uid: 12495 + - uid: 12604 components: - type: Transform pos: 30.331896,-28.644527 parent: 2 - proto: ClothingMaskGas entities: - - uid: 12496 + - uid: 12605 components: - type: Transform pos: -25.389828,-6.471097 parent: 2 - - uid: 12497 + - uid: 12606 components: - type: Transform pos: -70.49962,-26.436932 parent: 2 - - uid: 12498 + - uid: 12607 components: - type: Transform pos: -8.705846,-15.426237 parent: 2 - proto: ClothingMaskGasAtmos entities: - - uid: 12499 + - uid: 12608 components: - type: Transform pos: 3.1338544,-75.35811 parent: 2 - proto: ClothingMaskJackal entities: - - uid: 12500 + - uid: 12609 components: - type: Transform pos: 16.67739,21.87369 parent: 2 - proto: ClothingMaskMuzzle entities: - - uid: 12501 + - uid: 12610 components: - type: Transform pos: -15.336851,-35.602425 parent: 2 - proto: ClothingMaskNeckGaiter entities: - - uid: 12410 + - uid: 12521 components: - type: Transform - parent: 12408 + parent: 12519 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskPlague entities: - - uid: 12502 + - uid: 12611 components: - type: Transform pos: -31.093393,5.386326 parent: 2 - proto: ClothingMaskRat entities: - - uid: 12503 + - uid: 12612 components: - type: Transform pos: -9.217388,-10.5028515 parent: 2 - proto: ClothingMaskRaven entities: - - uid: 12504 + - uid: 12613 components: - type: Transform pos: 12.510361,-6.449043 parent: 2 - proto: ClothingNeckAromanticPin entities: - - uid: 12505 + - uid: 12614 components: - type: Transform pos: -16.507944,41.79273 parent: 2 - proto: ClothingNeckAsexualPin entities: - - uid: 12506 + - uid: 12615 components: - type: Transform pos: -16.289194,41.51148 parent: 2 - proto: ClothingNeckBisexualPin entities: - - uid: 12507 + - uid: 12616 components: - type: Transform pos: -42.7372,8.687558 parent: 2 - proto: ClothingNeckBling entities: - - uid: 12508 + - uid: 12617 components: - type: Transform pos: 48.258717,-21.370115 parent: 2 - proto: ClothingNeckCloakMoth entities: - - uid: 12509 + - uid: 12618 components: - type: Transform pos: -8.662971,-82.55483 parent: 2 - proto: ClothingNeckCloakTrans entities: - - uid: 12510 + - uid: 12619 components: - type: Transform pos: -9.4988165,23.574131 parent: 2 - proto: ClothingNeckIntersexPin entities: - - uid: 12511 + - uid: 12620 components: - type: Transform pos: -12.691556,31.94308 parent: 2 - proto: ClothingNeckLawyerbadge entities: - - uid: 12512 + - uid: 12621 components: - type: Transform pos: 43.39902,-3.8456278 parent: 2 - proto: ClothingNeckLesbianPin entities: - - uid: 12513 + - uid: 12622 components: - type: Transform pos: -51.700592,8.465523 parent: 2 - proto: ClothingNeckLGBTPin entities: - - uid: 12514 + - uid: 12623 components: - type: Transform pos: -10.776614,43.48699 parent: 2 - proto: ClothingNeckMantleCE entities: - - uid: 12515 + - uid: 12624 components: - type: Transform pos: -35.58501,-17.148493 parent: 2 -- proto: ClothingNeckMantleCMO - entities: - - uid: 12516 - components: - - type: Transform - pos: -20.144634,-56.34305 - parent: 2 - proto: ClothingNeckMantleHOS entities: - - uid: 12517 + - uid: 12625 components: - type: Transform pos: 5.905226,20.807451 parent: 2 - proto: ClothingNeckMantleRD entities: - - uid: 12518 + - uid: 12626 components: - type: Transform pos: 63.464256,-53.431217 parent: 2 - proto: ClothingNeckNonBinaryPin entities: - - uid: 12519 + - uid: 12627 components: - type: Transform pos: -21.722902,35.752502 parent: 2 - - uid: 12520 + - uid: 12628 components: - type: Transform pos: -47.78141,6.181047 parent: 2 - proto: ClothingNeckPansexualPin entities: - - uid: 12521 + - uid: 12629 components: - type: Transform pos: -1.5377516,30.493696 parent: 2 - proto: ClothingNeckScarfStripedCentcom entities: - - uid: 12522 + - uid: 12630 components: - type: Transform pos: 77.62025,-67.25297 parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12523 + - uid: 12631 components: - type: Transform pos: -28.25746,44.644928 parent: 2 - proto: ClothingNeckTransPin entities: - - uid: 12524 + - uid: 12632 components: - type: Transform pos: 65.36391,-1.4805084 parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 12525 + - uid: 12633 components: - type: Transform pos: 32.367626,30.579184 parent: 2 - - uid: 12526 + - uid: 12634 components: - type: Transform pos: 31.015066,32.43679 parent: 2 - - uid: 12527 + - uid: 12635 components: - type: Transform pos: 31.015066,32.43679 parent: 2 - - uid: 12528 + - uid: 12636 components: - type: Transform pos: 31.015066,32.43679 parent: 2 - - uid: 12529 + - uid: 12637 components: - type: Transform pos: 31.015066,32.43679 parent: 2 - - uid: 12530 + - uid: 12638 components: - type: Transform pos: 32.398876,30.266684 parent: 2 - - uid: 12531 + - uid: 12639 components: - type: Transform pos: 32.617626,30.485434 parent: 2 - - uid: 12532 + - uid: 12640 components: - type: Transform pos: 32.648876,30.157309 parent: 2 - proto: ClothingOuterArmorReflective entities: - - uid: 12533 + - uid: 12641 components: - type: Transform pos: 32.477,29.610434 parent: 2 - proto: ClothingOuterCardborg entities: - - uid: 12534 + - uid: 12642 components: - type: Transform pos: 73.548645,-43.410946 parent: 2 - proto: ClothingOuterCoatBomber entities: - - uid: 12535 + - uid: 12643 components: - type: Transform pos: 15.5274105,-50.516087 parent: 2 - proto: ClothingOuterCoatDetective entities: - - uid: 12536 + - uid: 12644 components: - type: Transform pos: -32.515205,-59.44035 parent: 2 - proto: ClothingOuterCoatGentle entities: - - uid: 12537 + - uid: 12645 components: - type: Transform pos: 59.512882,24.492107 parent: 2 - proto: ClothingOuterCoatJensen entities: - - uid: 12236 + - uid: 12349 components: - type: Transform pos: 62.5886,15.642659 @@ -79634,342 +79391,334 @@ entities: showEnts: False occludes: True ents: - - 12237 + - 12350 toggleable-clothing: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClothingOuterDameDane entities: - - uid: 12538 + - uid: 12646 components: - type: Transform pos: -30.207304,-98.49032 parent: 2 - proto: ClothingOuterHardsuitEVA entities: - - uid: 12539 + - uid: 12647 components: - type: Transform pos: -71.62023,-26.30503 parent: 2 - proto: ClothingOuterHoodieChaplain entities: - - uid: 12540 + - uid: 12648 components: - type: Transform pos: -39.238598,16.669107 parent: 2 - proto: ClothingOuterPlagueSuit entities: - - uid: 12541 + - uid: 12649 components: - type: Transform pos: -31.046518,5.058201 parent: 2 - proto: ClothingOuterStraightjacket entities: - - uid: 2273 + - uid: 12650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.55153,4.3321314 + pos: -15.008726,-35.30555 parent: 2 - - uid: 12542 + - uid: 12651 components: - type: Transform - pos: -15.008726,-35.30555 + pos: -26.52164,-58.26426 parent: 2 - - uid: 12543 + - uid: 12652 components: - type: Transform - pos: 6.437404,-57.306335 + pos: 44.453926,8.619596 parent: 2 - proto: ClothingOuterSuitChicken entities: - - uid: 12544 + - uid: 12653 components: - type: Transform pos: -41.535904,57.643673 parent: 2 - proto: ClothingOuterSuitMonkey entities: - - uid: 12545 + - uid: 12654 components: - type: Transform pos: -23.4853,-87.30585 parent: 2 - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12546 + - uid: 12655 components: - type: Transform pos: -40.497574,63.50408 parent: 2 - - uid: 12547 + - uid: 12656 components: - type: Transform pos: 73.55755,-64.51582 parent: 2 - proto: ClothingOuterWinterRobo entities: - - uid: 12548 + - uid: 12657 components: - type: Transform pos: 77.51138,-47.408936 parent: 2 - proto: ClothingOuterWinterViro entities: - - uid: 12549 + - uid: 12658 components: - type: Transform pos: -31.470345,-74.22051 parent: 2 - proto: ClothingOuterWizard entities: - - uid: 12550 + - uid: 12659 components: - type: Transform pos: -41.58894,41.559685 parent: 2 - proto: ClothingOuterWizardRed entities: - - uid: 12551 + - uid: 12660 components: - type: Transform pos: -59.983215,-45.447025 parent: 2 - proto: ClothingOuterWizardViolet entities: - - uid: 12552 + - uid: 12661 components: - type: Transform pos: 19.504896,49.611633 parent: 2 - proto: ClothingShoesBling entities: - - uid: 12553 + - uid: 12662 components: - type: Transform pos: 47.782166,-25.351032 parent: 2 - proto: ClothingShoesBootsJack entities: - - uid: 12554 + - uid: 12663 components: - type: Transform pos: -1.4635531,17.609518 parent: 2 - proto: ClothingShoesBootsLaceup entities: - - uid: 12555 + - uid: 12664 components: - type: Transform pos: 45.797165,49.377663 parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 12556 + - uid: 12665 components: - type: Transform pos: -34.59344,-13.376695 parent: 2 - - uid: 12557 + - uid: 12666 components: - type: Transform pos: -47.52257,38.626587 parent: 2 - - uid: 12558 + - uid: 12667 components: - type: Transform pos: 33.46236,-13.4915285 parent: 2 - - uid: 12559 + - uid: 12668 components: - type: Transform pos: 27.527689,27.317041 parent: 2 - - uid: 12560 + - uid: 12669 components: - type: Transform pos: 31.527689,27.285791 parent: 2 - - uid: 12561 + - uid: 12670 components: - type: Transform pos: 31.516712,-13.514931 parent: 2 - - uid: 12562 + - uid: 12671 components: - type: Transform pos: 31.501087,-11.577431 parent: 2 - - uid: 12563 + - uid: 12672 components: - type: Transform pos: 33.563587,-11.530556 parent: 2 - - uid: 12564 + - uid: 12673 components: - type: Transform pos: 29.610462,-11.499306 parent: 2 - - uid: 12565 + - uid: 12674 components: - type: Transform pos: 29.532337,-13.577431 parent: 2 - - uid: 12566 + - uid: 12675 components: - type: Transform pos: 26.669048,29.395418 parent: 2 - proto: ClothingShoesColorWhite entities: - - uid: 12567 + - uid: 12676 components: - type: Transform pos: -16.54276,-45.461185 parent: 2 - proto: ClothingShoesDameDane entities: - - uid: 12568 + - uid: 12677 components: - type: Transform pos: -22.591383,-96.25594 parent: 2 - proto: ClothingShoesFlippers entities: - - uid: 12569 + - uid: 12678 components: - type: Transform pos: -3.5418344,21.579527 parent: 2 - proto: ClothingShoeSlippersDuck entities: - - uid: 12570 + - uid: 12679 components: - type: Transform pos: 15.423054,34.567764 parent: 2 - proto: ClothingShoesSkates entities: - - uid: 12571 + - uid: 12680 components: - type: Transform pos: -34.53309,-20.500399 parent: 2 - proto: ClothingUnderSocksBee entities: - - uid: 12572 + - uid: 12681 components: - type: Transform pos: 62.522377,-58.450882 parent: 2 -- proto: ClothingUniformJumpskirtJanimaidmini - entities: - - uid: 12573 - components: - - type: Transform - pos: -13.518242,-15.499978 - parent: 2 - proto: ClothingUniformJumpskirtOfLife entities: - - uid: 12574 + - uid: 12682 components: - type: Transform pos: 62.5,53.5 parent: 2 - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12575 + - uid: 12683 components: - type: Transform pos: -40.657463,-77.46196 parent: 2 - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12576 + - uid: 12684 components: - type: Transform pos: -15.484091,-96.41976 parent: 2 - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12577 + - uid: 12685 components: - type: Transform pos: -32.383476,8.575315 parent: 2 - - uid: 12578 + - uid: 12686 components: - type: Transform pos: -32.383476,8.575315 parent: 2 - - uid: 12579 + - uid: 12687 components: - type: Transform pos: -32.383476,8.575315 parent: 2 - - uid: 12580 + - uid: 12688 components: - type: Transform pos: -32.383476,8.575315 parent: 2 - - uid: 12581 + - uid: 12689 components: - type: Transform pos: -32.383476,8.575315 parent: 2 - proto: ClothingUniformJumpsuitMonasticRobeLight entities: - - uid: 12582 + - uid: 12690 components: - type: Transform pos: -22.894775,-100.24527 parent: 2 - - uid: 12583 + - uid: 12691 components: - type: Transform pos: -33.11785,8.55969 parent: 2 - - uid: 12584 + - uid: 12692 components: - type: Transform pos: -33.11785,8.55969 parent: 2 - - uid: 12585 + - uid: 12693 components: - type: Transform pos: -33.11785,8.55969 parent: 2 - - uid: 12586 + - uid: 12694 components: - type: Transform pos: -33.11785,8.55969 parent: 2 - - uid: 12587 + - uid: 12695 components: - type: Transform pos: -33.11785,8.55969 parent: 2 - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12588 + - uid: 12696 components: - type: Transform pos: -27.443762,14.534213 parent: 2 - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12589 + - uid: 12697 components: - type: Transform pos: -3.4738498,52.42943 parent: 2 - proto: CluwneHorn entities: - - uid: 12590 + - uid: 12698 components: - type: Transform rot: 1.5707963267948966 rad @@ -79977,377 +79726,371 @@ entities: parent: 2 - proto: Cobweb1 entities: - - uid: 12591 + - uid: 12699 components: - type: Transform pos: -42.5,-20.5 parent: 2 - - uid: 12592 + - uid: 12700 components: - type: Transform pos: -55.5,-66.5 parent: 2 - - uid: 12593 + - uid: 12701 components: - type: Transform pos: -45.5,-71.5 parent: 2 - proto: Cobweb2 entities: - - uid: 12594 + - uid: 12702 components: - type: Transform pos: -48.5,-34.5 parent: 2 - - uid: 12595 + - uid: 12703 components: - type: Transform pos: -53.5,-70.5 parent: 2 - - uid: 12596 + - uid: 12704 components: - type: Transform pos: -38.5,-71.5 parent: 2 - proto: CockroachTimedSpawner entities: - - uid: 12597 + - uid: 12705 components: - type: Transform pos: -11.5,-9.5 parent: 2 - proto: ComfyChair entities: - - uid: 12598 + - uid: 12706 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 12599 + - uid: 12707 components: - type: Transform pos: 20.5,-11.5 parent: 2 - - uid: 12600 + - uid: 12708 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 - - uid: 12601 + - uid: 12709 components: - type: Transform pos: 6.5,21.5 parent: 2 - - uid: 12602 + - uid: 12710 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 - - uid: 12603 + - uid: 12711 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 - - uid: 12604 + - uid: 12712 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 - - uid: 12605 + - uid: 12713 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 12606 + - uid: 12714 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 12607 + - uid: 12715 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 - - uid: 12608 + - uid: 12716 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 - - uid: 12609 + - uid: 12717 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 - - uid: 12610 + - uid: 12718 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 - - uid: 12611 + - uid: 12719 components: - type: Transform pos: 32.5,-47.5 parent: 2 - - uid: 12612 + - uid: 12720 components: - type: Transform pos: 30.5,-47.5 parent: 2 - - uid: 12613 + - uid: 12721 components: - type: Transform pos: 25.5,-81.5 parent: 2 - - uid: 12614 + - uid: 12722 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 - - uid: 12615 + - uid: 12723 components: - type: Transform pos: -48.5,7.5 parent: 2 - - uid: 12616 + - uid: 12724 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 12617 + - uid: 12725 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 - - uid: 12618 + - uid: 12726 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 - - uid: 12619 + - uid: 12727 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 - - uid: 12620 + - uid: 12728 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 - - uid: 12621 + - uid: 12729 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 - - uid: 12622 + - uid: 12730 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 - - uid: 12623 + - uid: 12731 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 - - uid: 12624 + - uid: 12732 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 - - uid: 12625 + - uid: 12733 components: - type: Transform pos: 67.5,11.5 parent: 2 - - uid: 12626 + - uid: 12734 components: - type: Transform pos: 44.5,33.5 parent: 2 - - uid: 12627 + - uid: 12735 components: - type: Transform pos: 43.5,33.5 parent: 2 - - uid: 12628 + - uid: 12736 components: - type: Transform pos: 42.5,33.5 parent: 2 - - uid: 12629 + - uid: 12737 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 - - uid: 12630 + - uid: 12738 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 - - uid: 12631 + - uid: 12739 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 - - uid: 12632 + - uid: 12740 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 - - uid: 12633 + - uid: 12741 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 - - uid: 12634 + - uid: 12742 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 - - uid: 12635 + - uid: 12743 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 - - uid: 12636 + - uid: 12744 components: - type: Transform pos: -55.5,-47.5 parent: 2 - - uid: 12637 + - uid: 12745 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 - - uid: 12638 + - uid: 12746 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 - - uid: 12639 + - uid: 12747 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 - - uid: 12640 + - uid: 12748 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 - - uid: 12641 + - uid: 12749 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 12642 + - uid: 12750 components: - type: Transform pos: 16.5,-79.5 parent: 2 - - uid: 12643 + - uid: 12751 components: - type: Transform pos: 14.5,-79.5 parent: 2 - - uid: 12644 + - uid: 12752 components: - type: Transform pos: 13.5,-79.5 parent: 2 - - uid: 12645 + - uid: 12753 components: - type: Transform pos: 17.5,-79.5 parent: 2 - - uid: 12646 + - uid: 12754 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 - - uid: 12647 + - uid: 12755 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 - - uid: 12648 + - uid: 12756 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 - - uid: 12649 + - uid: 12757 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 - - uid: 12650 + - uid: 12758 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-79.5 parent: 2 - - uid: 12651 + - uid: 12759 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 - - uid: 12652 + - uid: 12760 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 - - uid: 26621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-35.5 - parent: 2 - proto: ComputerAlert entities: - - uid: 12653 + - uid: 12761 components: - type: Transform pos: 27.5,-21.5 parent: 2 - - uid: 12654 + - uid: 12762 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 - - uid: 12655 + - uid: 12763 components: - type: Transform rot: 3.141592653589793 rad @@ -80355,73 +80098,67 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 12656 + - uid: 12764 components: - type: Transform pos: 73.5,-31.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 21504: + 21604: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 12657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-65.5 - parent: 2 - - uid: 12658 + - uid: 12765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-60.5 + rot: 3.141592653589793 rad + pos: 3.5,-63.5 parent: 2 - proto: ComputerBroken entities: - - uid: 12659 + - uid: 12766 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 - - uid: 12660 + - uid: 12767 components: - type: Transform pos: 51.5,36.5 parent: 2 - - uid: 12661 + - uid: 12768 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 - - uid: 12662 + - uid: 12769 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 - - uid: 12663 + - uid: 12770 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 - - uid: 12664 + - uid: 12771 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 - - uid: 12665 + - uid: 12772 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,69.5 parent: 2 - - uid: 12666 + - uid: 12773 components: - type: Transform rot: -1.5707963267948966 rad @@ -80429,36 +80166,36 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: - - uid: 12667 + - uid: 12774 components: - type: Transform pos: -42.5,25.5 parent: 2 - proto: ComputerCargoOrders entities: - - uid: 12668 + - uid: 12775 components: - type: Transform pos: -31.5,31.5 parent: 2 - - uid: 12669 + - uid: 12776 components: - type: Transform pos: 29.5,-21.5 parent: 2 - - uid: 12670 + - uid: 12777 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 12671 + - uid: 12778 components: - type: Transform pos: -44.5,35.5 parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 12672 + - uid: 12779 components: - type: Transform rot: 3.141592653589793 rad @@ -80466,94 +80203,100 @@ entities: parent: 2 - proto: ComputerComms entities: - - uid: 12673 + - uid: 12780 components: - type: Transform pos: 25.5,-21.5 parent: 2 - - uid: 12674 + - uid: 12781 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-30.5 parent: 2 - - uid: 31669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 - parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 12675 + - uid: 12782 components: - type: Transform pos: 23.5,-21.5 parent: 2 - - uid: 12676 + - uid: 12783 components: - type: Transform pos: 54.5,13.5 parent: 2 - - uid: 12697 + - uid: 12784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,5.5 + rot: -1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: -20.5,-54.5 parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 12677 + - uid: 12786 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 - - uid: 12678 + - uid: 12787 components: - type: Transform pos: -16.5,26.5 parent: 2 - - uid: 12679 + - uid: 12788 components: - type: Transform pos: 23.5,23.5 parent: 2 -- proto: ComputerFrame - entities: - - uid: 12680 + - uid: 12789 components: - type: Transform - pos: -8.5,-63.5 + rot: -1.5707963267948966 rad + pos: 32.5,17.5 parent: 2 - - uid: 12681 + - uid: 12790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 12791 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 - - uid: 12682 + - uid: 12792 components: - type: Transform pos: 51.5,35.5 parent: 2 - - uid: 12683 + - uid: 12793 components: - type: Transform pos: -10.5,37.5 parent: 2 - - uid: 12684 + - uid: 12794 components: - type: Transform pos: -29.5,-96.5 parent: 2 - - uid: 12685 + - uid: 12795 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-54.5 parent: 2 - - uid: 12686 + - uid: 12796 components: - type: Transform rot: 1.5707963267948966 rad @@ -80561,48 +80304,50 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 12687 + - uid: 12797 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 - - uid: 12688 + - uid: 12798 components: - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,-53.5 parent: 2 - - uid: 12689 + - uid: 12799 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 - - uid: 12690 + - uid: 12800 components: - type: Transform pos: 25.5,-24.5 parent: 2 - - uid: 12691 + - uid: 12801 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 - - uid: 12692 + - uid: 12802 components: - type: Transform - pos: -19.5,-54.5 + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 parent: 2 - - uid: 12693 + - uid: 12803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 + rot: 3.141592653589793 rad + pos: -20.5,-56.5 parent: 2 - proto: ComputerMassMedia entities: - - uid: 12694 + - uid: 12804 components: - type: Transform rot: -1.5707963267948966 rad @@ -80610,47 +80355,53 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 12695 + - uid: 12805 components: - type: Transform - pos: -20.5,-54.5 + rot: 3.141592653589793 rad + pos: 47.5,5.5 parent: 2 - - uid: 12696 + - uid: 12806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-50.5 + pos: -21.5,-54.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-50.5 parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 12698 + - uid: 12808 components: - type: Transform pos: -46.5,-22.5 parent: 2 - - uid: 12699 + - uid: 12809 components: - type: Transform pos: -72.5,-31.5 parent: 2 - - uid: 12700 + - uid: 12810 components: - type: Transform pos: 21.5,-21.5 parent: 2 - - uid: 12701 + - uid: 12811 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 - - uid: 12702 + - uid: 12812 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 - - uid: 12703 + - uid: 12813 components: - type: Transform rot: 3.141592653589793 rad @@ -80658,7 +80409,7 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 12704 + - uid: 12814 components: - type: Transform rot: 1.5707963267948966 rad @@ -80666,55 +80417,57 @@ entities: parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 12705 + - uid: 12815 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 - - uid: 12706 + - uid: 12816 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 - - uid: 12707 + - uid: 12817 components: - type: Transform pos: 68.5,-43.5 parent: 2 - - uid: 12708 + - uid: 12818 components: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 12709 + - uid: 12819 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 - - uid: 12710 + - uid: 12820 components: - type: Transform pos: 74.5,-31.5 parent: 2 - - uid: 12711 +- proto: ComputerRoboticsControl + entities: + - uid: 31807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-42.5 + rot: 1.5707963267948966 rad + pos: 60.5,-54.5 parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 12712 + - uid: 12821 components: - type: Transform pos: -46.5,44.5 parent: 2 - proto: ComputerShuttleCargo entities: - - uid: 12713 + - uid: 12822 components: - type: Transform rot: 1.5707963267948966 rad @@ -80722,66 +80475,60 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 12714 + - uid: 12823 components: - type: Transform pos: -47.5,44.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 12715 + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 - - uid: 12716 + - uid: 12825 components: - type: Transform pos: 72.5,38.5 parent: 2 - proto: ComputerStationRecords entities: - - uid: 12717 + - uid: 12826 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - - uid: 12718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-57.5 - parent: 2 - - uid: 12719 + - uid: 12827 components: - type: Transform pos: 18.5,-10.5 parent: 2 - - uid: 12720 + - uid: 12828 components: - type: Transform pos: 24.5,-24.5 parent: 2 - - uid: 12721 + - uid: 12829 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 - - uid: 12722 + - uid: 12830 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 12723 + - uid: 12831 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 - - uid: 12724 + - uid: 12832 components: - type: Transform rot: 3.141592653589793 rad @@ -80789,158 +80536,163 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12725 + - uid: 12833 components: - type: Transform pos: 26.5,-24.5 parent: 2 - - uid: 12726 + - uid: 12834 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 - - uid: 12727 + - uid: 12835 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 - - uid: 12728 + - uid: 12836 components: - type: Transform pos: 53.5,13.5 parent: 2 - - uid: 12729 + - uid: 12837 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 - - uid: 12730 + - uid: 12838 components: - type: Transform pos: -23.5,-69.5 parent: 2 - - uid: 12731 + - uid: 12839 components: - type: Transform pos: -11.5,-14.5 parent: 2 - - uid: 12732 + - uid: 12840 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 - - uid: 12733 + - uid: 12841 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 - - uid: 12734 + - uid: 12842 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,15.5 parent: 2 + - uid: 12843 + components: + - type: Transform + pos: -0.5,-64.5 + parent: 2 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12735 + - uid: 12844 components: - type: Transform pos: 56.5,-47.5 parent: 2 - proto: ComputerTelevision entities: - - uid: 12736 + - uid: 12845 components: - type: Transform pos: -6.5,-48.5 parent: 2 - - uid: 12737 + - uid: 12846 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 12738 + - uid: 12847 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 12739 + - uid: 12848 components: - type: Transform pos: -22.5,31.5 parent: 2 - - uid: 12740 + - uid: 12849 components: - type: Transform pos: -18.5,35.5 parent: 2 - - uid: 12741 + - uid: 12850 components: - type: Transform pos: -11.5,35.5 parent: 2 - - uid: 12742 + - uid: 12851 components: - type: Transform pos: -21.5,39.5 parent: 2 - proto: ComputerTelevisionCircuitboard entities: - - uid: 12743 + - uid: 12852 components: - type: Transform pos: 41.546516,-53.695484 parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 12744 + - uid: 12853 components: - type: Transform pos: -70.5,-9.5 parent: 2 - - uid: 12745 + - uid: 12854 components: - type: Transform pos: -62.5,-9.5 parent: 2 - - uid: 12746 + - uid: 12855 components: - type: Transform pos: -62.5,-17.5 parent: 2 - - uid: 12747 + - uid: 12856 components: - type: Transform pos: -70.5,-17.5 parent: 2 - - uid: 12748 + - uid: 12857 components: - type: Transform pos: -74.5,-26.5 parent: 2 - - uid: 12749 + - uid: 12858 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 12750 + - uid: 12859 components: - type: Transform pos: -74.5,-23.5 parent: 2 - - uid: 12751 + - uid: 12860 components: - type: Transform pos: -73.5,-23.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 12752 + - uid: 12861 components: - type: Transform rot: 1.5707963267948966 rad @@ -80948,16 +80700,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12753 + - 26146 + - uid: 12862 components: - type: Transform pos: 18.5,-56.5 parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12754 + - 26146 + - uid: 12863 components: - type: Transform rot: 1.5707963267948966 rad @@ -80965,8 +80717,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12755 + - 26146 + - uid: 12864 components: - type: Transform rot: 1.5707963267948966 rad @@ -80974,16 +80726,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12756 + - 26146 + - uid: 12865 components: - type: Transform pos: 18.5,-55.5 parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12757 + - 26146 + - uid: 12866 components: - type: Transform rot: -1.5707963267948966 rad @@ -80991,24 +80743,24 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26040 - - uid: 12758 + - 26159 + - uid: 12867 components: - type: Transform pos: 15.5,-54.5 parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12759 + - 26146 + - uid: 12868 components: - type: Transform pos: 18.5,-57.5 parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12760 + - 26146 + - uid: 12869 components: - type: Transform rot: -1.5707963267948966 rad @@ -81016,8 +80768,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12761 + - 26146 + - uid: 12870 components: - type: Transform rot: -1.5707963267948966 rad @@ -81025,8 +80777,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12762 + - 26146 + - uid: 12871 components: - type: Transform rot: -1.5707963267948966 rad @@ -81034,8 +80786,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 - - uid: 12763 + - 26146 + - uid: 12872 components: - type: Transform rot: -1.5707963267948966 rad @@ -81043,8 +80795,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26040 - - uid: 12764 + - 26159 + - uid: 12873 components: - type: Transform rot: -1.5707963267948966 rad @@ -81052,8 +80804,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26040 - - uid: 12765 + - 26159 + - uid: 12874 components: - type: Transform rot: 3.141592653589793 rad @@ -81061,8 +80813,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26040 - - uid: 12766 + - 26159 + - uid: 12875 components: - type: Transform rot: 1.5707963267948966 rad @@ -81070,8 +80822,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26028 - - uid: 12767 + - 26147 + - uid: 12876 components: - type: Transform rot: 1.5707963267948966 rad @@ -81079,8 +80831,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26028 - - uid: 12768 + - 26147 + - uid: 12877 components: - type: Transform rot: 1.5707963267948966 rad @@ -81088,8 +80840,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26028 - - uid: 12769 + - 26147 + - uid: 12878 components: - type: Transform rot: 1.5707963267948966 rad @@ -81097,8 +80849,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26028 - - uid: 12770 + - 26147 + - uid: 12879 components: - type: Transform rot: 1.5707963267948966 rad @@ -81106,8 +80858,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26028 - - uid: 12771 + - 26147 + - uid: 12880 components: - type: Transform rot: 1.5707963267948966 rad @@ -81115,8 +80867,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26028 - - uid: 12772 + - 26147 + - uid: 12881 components: - type: Transform rot: 1.5707963267948966 rad @@ -81124,8 +80876,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26032 - - uid: 12773 + - 26151 + - uid: 12882 components: - type: Transform rot: 1.5707963267948966 rad @@ -81133,8 +80885,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26032 - - uid: 12774 + - 26151 + - uid: 12883 components: - type: Transform rot: 1.5707963267948966 rad @@ -81142,8 +80894,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26032 - - uid: 12775 + - 26151 + - uid: 12884 components: - type: Transform rot: 1.5707963267948966 rad @@ -81151,8 +80903,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26032 - - uid: 12776 + - 26151 + - uid: 12885 components: - type: Transform rot: 1.5707963267948966 rad @@ -81160,8 +80912,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26032 - - uid: 12777 + - 26151 + - uid: 12886 components: - type: Transform rot: 1.5707963267948966 rad @@ -81169,8 +80921,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12778 + - 26150 + - uid: 12887 components: - type: Transform rot: 1.5707963267948966 rad @@ -81178,8 +80930,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12779 + - 26150 + - uid: 12888 components: - type: Transform rot: 1.5707963267948966 rad @@ -81187,8 +80939,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12780 + - 26150 + - uid: 12889 components: - type: Transform rot: 1.5707963267948966 rad @@ -81196,8 +80948,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12781 + - 26150 + - uid: 12890 components: - type: Transform rot: 1.5707963267948966 rad @@ -81205,8 +80957,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12782 + - 26149 + - uid: 12891 components: - type: Transform rot: 1.5707963267948966 rad @@ -81214,8 +80966,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12783 + - 26149 + - uid: 12892 components: - type: Transform rot: 1.5707963267948966 rad @@ -81223,8 +80975,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12784 + - 26149 + - uid: 12893 components: - type: Transform rot: 1.5707963267948966 rad @@ -81232,8 +80984,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12785 + - 26149 + - uid: 12894 components: - type: Transform rot: 1.5707963267948966 rad @@ -81241,8 +80993,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12786 + - 26150 + - uid: 12895 components: - type: Transform rot: 1.5707963267948966 rad @@ -81250,8 +81002,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12787 + - 26150 + - uid: 12896 components: - type: Transform rot: 1.5707963267948966 rad @@ -81259,8 +81011,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12788 + - 26150 + - uid: 12897 components: - type: Transform rot: 1.5707963267948966 rad @@ -81268,8 +81020,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26031 - - uid: 12789 + - 26150 + - uid: 12898 components: - type: Transform rot: 1.5707963267948966 rad @@ -81277,8 +81029,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12790 + - 26149 + - uid: 12899 components: - type: Transform rot: 1.5707963267948966 rad @@ -81286,8 +81038,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12791 + - 26149 + - uid: 12900 components: - type: Transform rot: 1.5707963267948966 rad @@ -81295,8 +81047,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12792 + - 26149 + - uid: 12901 components: - type: Transform rot: 1.5707963267948966 rad @@ -81304,8 +81056,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26030 - - uid: 12793 + - 26149 + - uid: 12902 components: - type: Transform rot: 3.141592653589793 rad @@ -81313,8 +81065,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26029 - - uid: 12794 + - 26148 + - uid: 12903 components: - type: Transform rot: 1.5707963267948966 rad @@ -81322,8 +81074,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12795 + - 26153 + - uid: 12904 components: - type: Transform rot: 1.5707963267948966 rad @@ -81331,8 +81083,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12796 + - 26153 + - uid: 12905 components: - type: Transform rot: 1.5707963267948966 rad @@ -81340,8 +81092,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12797 + - 26153 + - uid: 12906 components: - type: Transform rot: 1.5707963267948966 rad @@ -81349,8 +81101,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12798 + - 26153 + - uid: 12907 components: - type: Transform rot: 1.5707963267948966 rad @@ -81358,8 +81110,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12799 + - 26153 + - uid: 12908 components: - type: Transform rot: 1.5707963267948966 rad @@ -81367,8 +81119,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12800 + - 26154 + - uid: 12909 components: - type: Transform rot: 1.5707963267948966 rad @@ -81376,8 +81128,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12801 + - 26154 + - uid: 12910 components: - type: Transform rot: 1.5707963267948966 rad @@ -81385,8 +81137,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12802 + - 26154 + - uid: 12911 components: - type: Transform rot: 1.5707963267948966 rad @@ -81394,8 +81146,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12803 + - 26154 + - uid: 12912 components: - type: Transform rot: 1.5707963267948966 rad @@ -81403,8 +81155,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12804 + - 26154 + - uid: 12913 components: - type: Transform rot: 1.5707963267948966 rad @@ -81412,8 +81164,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12805 + - 26154 + - uid: 12914 components: - type: Transform rot: 1.5707963267948966 rad @@ -81421,8 +81173,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12806 + - 26153 + - uid: 12915 components: - type: Transform rot: 1.5707963267948966 rad @@ -81430,8 +81182,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26035 - - uid: 12807 + - 26154 + - uid: 12916 components: - type: Transform rot: 1.5707963267948966 rad @@ -81439,8 +81191,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26034 - - uid: 12808 + - 26153 + - uid: 12917 components: - type: Transform rot: -1.5707963267948966 rad @@ -81448,16 +81200,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12809 + - 26152 + - uid: 12918 components: - type: Transform pos: -10.5,28.5 parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12810 + - 26152 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad @@ -81465,8 +81217,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12811 + - 26152 + - uid: 12920 components: - type: Transform rot: 3.141592653589793 rad @@ -81474,8 +81226,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26029 - - uid: 12812 + - 26148 + - uid: 12921 components: - type: Transform rot: 3.141592653589793 rad @@ -81483,8 +81235,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26029 - - uid: 12813 + - 26148 + - uid: 12922 components: - type: Transform rot: 3.141592653589793 rad @@ -81492,32 +81244,32 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26029 - - uid: 12814 + - 26148 + - uid: 12923 components: - type: Transform pos: -47.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 26036 - - uid: 12815 + - 26155 + - uid: 12924 components: - type: Transform pos: -47.5,14.5 parent: 2 - type: DeviceLinkSink links: - - 26036 - - uid: 12816 + - 26155 + - uid: 12925 components: - type: Transform pos: -47.5,12.5 parent: 2 - type: DeviceLinkSink links: - - 26036 - - uid: 12817 + - 26155 + - uid: 12926 components: - type: Transform rot: 1.5707963267948966 rad @@ -81525,8 +81277,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12818 + - 26152 + - uid: 12927 components: - type: Transform rot: 1.5707963267948966 rad @@ -81534,8 +81286,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12819 + - 26152 + - uid: 12928 components: - type: Transform rot: 1.5707963267948966 rad @@ -81543,8 +81295,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12820 + - 26152 + - uid: 12929 components: - type: Transform rot: 1.5707963267948966 rad @@ -81552,8 +81304,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12821 + - 26156 + - uid: 12930 components: - type: Transform rot: 1.5707963267948966 rad @@ -81561,8 +81313,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12822 + - 26156 + - uid: 12931 components: - type: Transform rot: 1.5707963267948966 rad @@ -81570,16 +81322,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12823 + - 26156 + - uid: 12932 components: - type: Transform pos: 46.5,37.5 parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12824 + - 26156 + - uid: 12933 components: - type: Transform rot: 1.5707963267948966 rad @@ -81587,8 +81339,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12825 + - 26156 + - uid: 12934 components: - type: Transform rot: 1.5707963267948966 rad @@ -81596,8 +81348,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12826 + - 26156 + - uid: 12935 components: - type: Transform rot: 3.141592653589793 rad @@ -81605,8 +81357,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12827 + - 26156 + - uid: 12936 components: - type: Transform rot: 3.141592653589793 rad @@ -81614,8 +81366,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12828 + - 26156 + - uid: 12937 components: - type: Transform rot: 1.5707963267948966 rad @@ -81623,49 +81375,48 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12829 + - 26152 + - uid: 12938 components: - type: Transform pos: -9.5,27.5 parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12830 + - 26152 + - uid: 12939 components: - type: Transform pos: -9.5,26.5 parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12831 + - 26152 + - uid: 12940 components: - type: Transform pos: -9.5,25.5 parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12832 + - 26152 + - uid: 12941 components: - type: Transform pos: -9.5,24.5 parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12833 + - 26152 + - uid: 12942 components: - type: Transform pos: -9.5,23.5 parent: 2 - type: DeviceLinkSink links: - - 26033 - - type: ActiveConveyor - - uid: 12834 + - 26152 + - uid: 12943 components: - type: Transform rot: 3.141592653589793 rad @@ -81673,8 +81424,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12835 + - 26152 + - uid: 12944 components: - type: Transform rot: 1.5707963267948966 rad @@ -81682,8 +81433,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12836 + - 26152 + - uid: 12945 components: - type: Transform rot: -1.5707963267948966 rad @@ -81691,8 +81442,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12837 + - 26152 + - uid: 12946 components: - type: Transform rot: -1.5707963267948966 rad @@ -81700,8 +81451,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26033 - - uid: 12838 + - 26152 + - uid: 12947 components: - type: Transform rot: 3.141592653589793 rad @@ -81709,8 +81460,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26037 - - uid: 12839 + - 26156 + - uid: 12948 components: - type: Transform rot: 3.141592653589793 rad @@ -81718,9 +81469,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12840 + - 26157 + - 26158 + - uid: 12949 components: - type: Transform rot: 3.141592653589793 rad @@ -81728,9 +81479,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12841 + - 26157 + - 26158 + - uid: 12950 components: - type: Transform rot: 3.141592653589793 rad @@ -81738,9 +81489,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12842 + - 26157 + - 26158 + - uid: 12951 components: - type: Transform rot: 3.141592653589793 rad @@ -81748,9 +81499,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12843 + - 26157 + - 26158 + - uid: 12952 components: - type: Transform rot: 3.141592653589793 rad @@ -81758,9 +81509,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12844 + - 26157 + - 26158 + - uid: 12953 components: - type: Transform rot: 3.141592653589793 rad @@ -81768,9 +81519,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12845 + - 26157 + - 26158 + - uid: 12954 components: - type: Transform rot: 3.141592653589793 rad @@ -81778,9 +81529,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12846 + - 26157 + - 26158 + - uid: 12955 components: - type: Transform rot: -1.5707963267948966 rad @@ -81788,9 +81539,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12847 + - 26157 + - 26158 + - uid: 12956 components: - type: Transform rot: -1.5707963267948966 rad @@ -81798,9 +81549,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12848 + - 26157 + - 26158 + - uid: 12957 components: - type: Transform rot: 3.141592653589793 rad @@ -81808,9 +81559,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12849 + - 26157 + - 26158 + - uid: 12958 components: - type: Transform rot: 1.5707963267948966 rad @@ -81818,9 +81569,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26038 - - 26039 - - uid: 12850 + - 26157 + - 26158 + - uid: 12959 components: - type: Transform rot: 3.141592653589793 rad @@ -81828,8 +81579,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26040 - - uid: 12851 + - 26159 + - uid: 12960 components: - type: Transform rot: 3.141592653589793 rad @@ -81837,8 +81588,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26040 - - uid: 12852 + - 26159 + - uid: 12961 components: - type: Transform rot: 3.141592653589793 rad @@ -81846,8 +81597,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26029 - - uid: 12853 + - 26148 + - uid: 12962 components: - type: Transform pos: -16.5,10.5 @@ -81855,8 +81606,8 @@ entities: - type: DeviceLinkSink invokeCounter: 2 links: - - 26041 - - uid: 12854 + - 26160 + - uid: 12963 components: - type: Transform pos: -16.5,9.5 @@ -81864,8 +81615,8 @@ entities: - type: DeviceLinkSink invokeCounter: 2 links: - - 26041 - - uid: 12855 + - 26160 + - uid: 12964 components: - type: Transform pos: -16.5,8.5 @@ -81873,24 +81624,24 @@ entities: - type: DeviceLinkSink invokeCounter: 2 links: - - 26041 + - 26160 - proto: ConveyorBeltAssembly entities: - - uid: 12856 + - uid: 12965 components: - type: Transform pos: -27.603226,-31.351301 parent: 2 - proto: CounterWoodFrame entities: - - uid: 12857 + - uid: 12966 components: - type: Transform pos: -47.5,-64.5 parent: 2 - proto: CrateAirlockKit entities: - - uid: 12858 + - uid: 12967 components: - type: Transform pos: 44.5,-7.5 @@ -81922,7 +81673,7 @@ entities: isPlaceable: True - proto: CrateArtifactContainer entities: - - uid: 12859 + - uid: 12968 components: - type: Transform pos: 73.5,-36.5 @@ -81945,22 +81696,14 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateCoffin entities: - - uid: 12860 + - uid: 12969 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 12861 + - uid: 12970 components: - type: Transform pos: -32.5,10.5 @@ -81983,15 +81726,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12862 + - uid: 12971 components: - type: Transform pos: -31.5,8.5 @@ -82014,22 +81749,14 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12863 + - uid: 12972 components: - type: Transform pos: -55.5,-67.5 parent: 2 - proto: CrateEmergencyFire entities: - - uid: 12864 + - uid: 12973 components: - type: Transform pos: -39.5,-15.5 @@ -82052,15 +81779,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12865 + - uid: 12974 components: - type: Transform pos: -38.5,23.5 @@ -82103,58 +81822,50 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 open: True removedMasks: 20 - type: PlaceableSurface isPlaceable: True - proto: CrateEmptySpawner entities: - - uid: 12866 + - uid: 12975 components: - type: Transform pos: -43.5,23.5 parent: 2 - - uid: 12867 + - uid: 12976 components: - type: Transform pos: -44.5,22.5 parent: 2 - - uid: 12868 + - uid: 12977 components: - type: Transform pos: -40.5,20.5 parent: 2 - - uid: 12869 + - uid: 12978 components: - type: Transform pos: -38.5,19.5 parent: 2 - - uid: 12870 + - uid: 12979 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 12871 + - uid: 12980 components: - type: Transform pos: -35.5,-96.5 parent: 2 - - uid: 12872 + - uid: 12981 components: - type: Transform pos: -36.5,-96.5 parent: 2 - proto: CrateEngineeringAMEJar entities: - - uid: 12873 + - uid: 12982 components: - type: Transform pos: -50.5,-13.5 @@ -82177,17 +81888,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringAMEShielding entities: - - uid: 12874 + - uid: 12983 components: - type: Transform pos: -50.5,-14.5 @@ -82210,15 +81913,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12875 + - uid: 12984 components: - type: Transform pos: -50.5,-12.5 @@ -82241,17 +81936,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringCableLV entities: - - uid: 12876 + - uid: 12985 components: - type: Transform pos: -42.5,-15.5 @@ -82274,17 +81961,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12877 + - uid: 12986 components: - type: Transform pos: 22.5,-49.5 @@ -82307,34 +81986,26 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateFilledSpawner entities: - - uid: 12878 + - uid: 12987 components: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 12879 + - uid: 12988 components: - type: Transform pos: 72.5,-56.5 parent: 2 - - uid: 12880 + - uid: 12989 components: - type: Transform pos: 71.5,-62.5 parent: 2 - proto: CrateFoodCooking entities: - - uid: 12881 + - uid: 12990 components: - type: Transform pos: -47.5,-80.5 @@ -82357,17 +82028,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateFunBoardGames entities: - - uid: 12882 + - uid: 12991 components: - type: Transform pos: 63.5,6.5 @@ -82390,24 +82053,16 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateFunToyBox entities: - - uid: 12883 + - uid: 12992 components: - type: Transform pos: 1.5,-19.5 parent: 2 - proto: CrateHydroponicsSeeds entities: - - uid: 12884 + - uid: 12993 components: - type: Transform pos: 12.5,-52.5 @@ -82430,17 +82085,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12885 + - uid: 12994 components: - type: Transform pos: -47.5,-70.5 @@ -82463,31 +82110,23 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateMaterialGlass entities: - - uid: 12886 + - uid: 12995 components: - type: Transform pos: 43.5,-7.5 parent: 2 - proto: CrateMindShieldImplants entities: - - uid: 12887 + - uid: 12996 components: - type: Transform pos: 29.5,29.5 parent: 2 - proto: CrateMousetrapBoxes entities: - - uid: 12888 + - uid: 12997 components: - type: Transform pos: 60.5,42.5 @@ -82510,17 +82149,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CratePirate entities: - - uid: 12889 + - uid: 12998 components: - type: Transform pos: 3.5,-11.5 @@ -82543,17 +82174,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateScience entities: - - uid: 12890 + - uid: 12999 components: - type: Transform pos: 73.5,-34.5 @@ -82576,24 +82199,16 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateSecurityNonlethal entities: - - uid: 12891 + - uid: 13000 components: - type: Transform pos: 29.5,28.5 parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 12892 + - uid: 13001 components: - type: Transform pos: -9.5,-21.5 @@ -82616,17 +82231,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateServiceSmokeables entities: - - uid: 12893 + - uid: 13002 components: - type: Transform pos: 56.5,59.5 @@ -82649,17 +82256,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateStoneGrave entities: - - uid: 12894 + - uid: 13003 components: - type: Transform pos: -32.5,4.5 @@ -82682,68 +82281,60 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateTrashCart entities: - - uid: 12895 + - uid: 13004 components: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 12896 + - uid: 13005 components: - type: Transform pos: -38.5,-93.5 parent: 2 - - uid: 12897 + - uid: 13006 components: - type: Transform pos: -10.5,14.5 parent: 2 - - uid: 12898 + - uid: 13007 components: - type: Transform pos: -52.5,-34.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 12899 + - uid: 13008 components: - type: Transform pos: 18.5,-49.5 parent: 2 - - uid: 12900 + - uid: 13009 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 12901 + - uid: 13010 components: - type: Transform pos: -40.5,-3.5 parent: 2 - proto: CrateTrashCartJani entities: - - uid: 12902 + - uid: 13011 components: - type: Transform pos: -15.5,-8.5 parent: 2 - proto: CrateWoodenGrave entities: - - uid: 12903 + - uid: 13012 components: - type: Transform pos: -10.5,55.5 parent: 2 - - uid: 12904 + - uid: 13013 components: - type: Transform pos: -30.5,4.5 @@ -82766,47 +82357,39 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12905 + - uid: 13014 components: - type: Transform pos: -32.5,6.5 parent: 2 - proto: CrayonBox entities: - - uid: 12906 + - uid: 13015 components: - type: Transform pos: -29.428709,8.545935 parent: 2 - - uid: 12907 + - uid: 13016 components: - type: Transform rot: 3.141592653589793 rad pos: 54.561592,-64.4996 parent: 2 - - uid: 12908 + - uid: 13017 components: - type: Transform pos: 0.5708022,-23.573645 parent: 2 - proto: CrayonMime entities: - - uid: 12909 + - uid: 13018 components: - type: Transform pos: -28.463287,46.56972 parent: 2 - proto: Crematorium entities: - - uid: 12910 + - uid: 13019 components: - type: Transform pos: -33.5,11.5 @@ -82829,145 +82412,224 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12911 + - uid: 13020 components: - type: Transform pos: 53.35249,35.65033 parent: 2 - proto: CrewMonitoringServer entities: - - uid: 12912 + - uid: 13021 components: - type: Transform - pos: 8.5,-58.5 + pos: 5.5,-23.5 parent: 2 - type: SingletonDeviceNetServer active: False available: False - proto: Crowbar entities: - - uid: 12913 + - uid: 13022 components: - type: Transform pos: 73.47424,-38.51016 parent: 2 - - uid: 12914 + - uid: 13023 components: - type: Transform pos: -29.495306,-23.60064 parent: 2 - - uid: 12915 + - uid: 13024 components: - type: Transform pos: 40.56214,-53.476734 parent: 2 - - uid: 12916 + - uid: 13025 components: - type: Transform pos: -56.61051,-70.40599 parent: 2 - - uid: 12917 + - uid: 13026 components: - type: Transform pos: -23.432364,-28.473803 parent: 2 - - uid: 12918 + - uid: 13027 components: - type: Transform pos: -36.564224,18.558977 parent: 2 - - uid: 12919 + - uid: 13028 components: - type: Transform rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 - - uid: 12920 + - uid: 13029 components: - type: Transform pos: -9.421157,-15.518739 parent: 2 - - uid: 12921 + - uid: 13030 components: - type: Transform pos: 62.5,6.5 parent: 2 - proto: CrowbarRed entities: - - uid: 12922 + - uid: 13031 components: - type: Transform pos: 52.637024,11.413784 parent: 2 - - uid: 12923 + - uid: 13032 components: - type: Transform pos: -16.370653,65.49348 parent: 2 - - uid: 12924 + - uid: 13033 components: - type: Transform pos: 2.5771694,-21.302826 parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 13034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-83.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: 13.5,-83.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: 13.5,-84.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-82.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + pos: 13.5,-82.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-84.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-65.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-64.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-66.5 + parent: 2 - proto: CryoPod entities: - - uid: 12925 + - uid: 13044 components: - type: Transform - pos: -24.5,-59.5 + pos: 3.5,-57.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: 3.5,-60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 12926 + - uid: 13046 components: - type: Transform - pos: -26.756777,-59.261105 + pos: 0.38943613,-59.455074 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: 0.5456861,-59.236324 parent: 2 - proto: CultAltarSpawner entities: - - uid: 12927 + - uid: 13048 components: - type: Transform pos: -56.5,-62.5 parent: 2 +- proto: CurtainsBlue + entities: + - uid: 13049 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 +- proto: CurtainsOrange + entities: + - uid: 13050 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 +- proto: CurtainsOrangeOpen + entities: + - uid: 13051 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 - proto: d10Dice entities: - - uid: 12928 + - uid: 13052 components: - type: Transform pos: 9.458234,-7.2284737 parent: 2 - - uid: 12929 + - uid: 13053 components: - type: Transform pos: -29.44911,-46.43667 parent: 2 - proto: d6Dice entities: - - uid: 12930 + - uid: 13054 components: - type: Transform pos: -1.2845753,31.100819 parent: 2 - - uid: 12931 + - uid: 13055 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 - - uid: 12932 + - uid: 13056 components: - type: Transform rot: 1.5707963267948966 rad @@ -82975,587 +82637,596 @@ entities: parent: 2 - proto: d8Dice entities: - - uid: 12933 + - uid: 13057 components: - type: Transform pos: 10.036359,-7.0722237 parent: 2 +- proto: Dart + entities: + - uid: 13058 + components: + - type: Transform + pos: 9.509664,10.299753 + parent: 2 +- proto: DartBlue + entities: + - uid: 13059 + components: + - type: Transform + pos: 9.676331,10.528919 + parent: 2 +- proto: DartYellow + entities: + - uid: 13060 + components: + - type: Transform + pos: 9.363831,10.570586 + parent: 2 - proto: DefaultStationBeaconAI entities: - - uid: 12934 + - uid: 13061 components: - type: Transform pos: -1.5,67.5 parent: 2 - proto: DefaultStationBeaconAME entities: - - uid: 12935 + - uid: 13062 components: - type: Transform pos: -46.5,-12.5 parent: 2 - - uid: 12936 + - uid: 13063 components: - type: Transform pos: -44.5,-14.5 parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 12937 + - uid: 13064 components: - type: Transform pos: 63.5,-31.5 parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 12938 + - uid: 13065 components: - type: Transform pos: 29.5,30.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 12939 + - uid: 13066 components: - type: Transform pos: 39.5,-71.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 12940 + - uid: 13067 components: - type: Transform pos: 73.5,-33.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 12941 + - uid: 13068 components: - type: Transform pos: -43.5,-46.5 parent: 2 - proto: DefaultStationBeaconBar entities: - - uid: 12942 + - uid: 13069 components: - type: Transform pos: 13.5,11.5 parent: 2 - proto: DefaultStationBeaconBotany entities: - - uid: 12943 + - uid: 13070 components: - type: Transform pos: -7.5,8.5 parent: 2 - proto: DefaultStationBeaconBridge entities: - - uid: 12944 + - uid: 13071 components: - type: Transform pos: 24.5,-22.5 parent: 2 - proto: DefaultStationBeaconBrig entities: - - uid: 12945 + - uid: 13072 components: - type: Transform pos: 39.5,14.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 12946 + - uid: 13073 components: - type: Transform pos: 29.5,-28.5 parent: 2 - proto: DefaultStationBeaconCargoBay entities: - - uid: 12947 + - uid: 13074 components: - type: Transform pos: -42.5,21.5 parent: 2 - proto: DefaultStationBeaconCargoReception entities: - - uid: 12948 + - uid: 13075 components: - type: Transform pos: -28.5,23.5 parent: 2 - proto: DefaultStationBeaconCERoom entities: - - uid: 12949 + - uid: 13076 components: - type: Transform pos: -36.5,-18.5 parent: 2 - proto: DefaultStationBeaconChapel entities: - - uid: 12950 + - uid: 13077 components: - type: Transform pos: -37.5,12.5 parent: 2 - proto: DefaultStationBeaconChemistry entities: - - uid: 12951 + - uid: 13078 components: - type: Transform - pos: 5.5,-47.5 + pos: 4.5,-49.5 parent: 2 - proto: DefaultStationBeaconCMORoom entities: - - uid: 12952 + - uid: 13079 components: - type: Transform pos: -20.5,-55.5 parent: 2 - proto: DefaultStationBeaconCourtroom entities: - - uid: 12953 + - uid: 13080 components: - type: Transform pos: 31.5,-50.5 parent: 2 - proto: DefaultStationBeaconCryonics entities: - - uid: 12954 + - uid: 13081 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 13082 components: - type: Transform - pos: -22.5,-59.5 + pos: 15.5,-85.5 parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 12955 + - uid: 13083 components: - type: Transform pos: 20.5,-13.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: - - uid: 12956 + - uid: 13084 components: - type: Transform pos: -10.5,-13.5 parent: 2 - - uid: 12957 + - uid: 13085 components: - type: Transform pos: 19.5,-52.5 parent: 2 - proto: DefaultStationBeaconDorms entities: - - uid: 12958 + - uid: 13086 components: - type: Transform pos: -16.5,38.5 parent: 2 - proto: DefaultStationBeaconEngineering entities: - - uid: 12959 + - uid: 13087 components: - type: Transform pos: -25.5,-12.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - - uid: 12960 + - uid: 13088 components: - type: Transform pos: 64.5,-8.5 parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - - uid: 12961 + - uid: 13089 components: - type: Transform pos: 30.5,-12.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 12962 + - uid: 13090 components: - type: Transform pos: -17.5,2.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: - - uid: 12963 + - uid: 13091 components: - type: Transform pos: 3.5,-5.5 parent: 2 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 12964 + - uid: 13092 components: - type: Transform pos: 5.5,21.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 12965 + - uid: 13093 components: - type: Transform pos: -8.5,-23.5 parent: 2 - proto: DefaultStationBeaconKitchen entities: - - uid: 12966 + - uid: 13094 components: - type: Transform pos: 2.5,8.5 parent: 2 - proto: DefaultStationBeaconLawOffice entities: - - uid: 12967 + - uid: 13095 components: - type: Transform pos: 39.5,-3.5 parent: 2 - proto: DefaultStationBeaconLibrary entities: - - uid: 12968 + - uid: 13096 components: - type: Transform pos: 11.5,-5.5 parent: 2 - proto: DefaultStationBeaconMedbay entities: - - uid: 12969 + - uid: 13097 components: - type: Transform pos: -4.5,-47.5 parent: 2 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 12970 - components: - - type: Transform - pos: -14.5,-63.5 - parent: 2 - proto: DefaultStationBeaconPermaBrig entities: - - uid: 12971 + - uid: 13098 components: - type: Transform pos: 53.5,11.5 parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 12972 + - uid: 13099 components: - type: Transform pos: -33.5,30.5 parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 12973 + - uid: 13100 components: - type: Transform pos: 62.5,-52.5 parent: 2 - proto: DefaultStationBeaconRND entities: - - uid: 12974 + - uid: 13101 components: - type: Transform pos: 50.5,-40.5 parent: 2 - proto: DefaultStationBeaconRobotics entities: - - uid: 12975 + - uid: 13102 components: - type: Transform pos: 72.5,-45.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: - - uid: 12976 + - uid: 13103 components: - type: Transform pos: -44.5,29.5 parent: 2 - proto: DefaultStationBeaconSecurity entities: - - uid: 12977 + - uid: 13104 components: - type: Transform pos: 25.5,16.5 parent: 2 - proto: DefaultStationBeaconServerRoom entities: - - uid: 12978 + - uid: 13105 components: - type: Transform pos: 55.5,-48.5 parent: 2 - proto: DefaultStationBeaconSingularity entities: - - uid: 12979 + - uid: 13106 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-23.5 parent: 2 - - uid: 12980 + - uid: 13107 components: - type: Transform pos: -67.5,-26.5 parent: 2 - proto: DefaultStationBeaconSolars entities: - - uid: 12981 + - uid: 13108 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 12982 + - uid: 13109 components: - type: Transform pos: 72.5,35.5 parent: 2 - proto: DefaultStationBeaconSurgery entities: - - uid: 12983 + - uid: 13110 components: - type: Transform - pos: -1.5,-63.5 + pos: -12.5,-55.5 parent: 2 - proto: DefaultStationBeaconTechVault entities: - - uid: 12984 + - uid: 13111 components: - type: Transform pos: -10.5,38.5 parent: 2 - proto: DefaultStationBeaconTEG entities: - - uid: 12985 + - uid: 13112 components: - type: Transform pos: -69.5,-42.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 12986 + - uid: 13113 components: - type: Transform pos: 9.5,-21.5 parent: 2 - proto: DefaultStationBeaconTheater entities: - - uid: 12987 + - uid: 13114 components: - type: Transform pos: 1.5,-23.5 parent: 2 - proto: DefaultStationBeaconToolRoom entities: - - uid: 12988 + - uid: 13115 components: - type: Transform pos: 39.5,-55.5 parent: 2 - - uid: 31012 + - uid: 13116 components: - type: Transform pos: -24.5,-21.5 parent: 2 - proto: DefaultStationBeaconVault entities: - - uid: 12989 + - uid: 13117 components: - type: Transform pos: 46.5,-24.5 parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 12990 + - uid: 13118 components: - type: Transform pos: 23.5,22.5 parent: 2 -- proto: DefibrillatorCabinet - entities: - - uid: 12991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,19.5 - parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 12992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-72.5 - parent: 2 - - uid: 12993 + - uid: 13119 components: - type: Transform - pos: 44.5,16.5 + pos: -16.5,-58.5 parent: 2 - - uid: 12994 + - uid: 13120 components: - type: Transform - pos: -1.5,-58.5 + pos: 1.5,-54.5 parent: 2 - - uid: 12995 + - uid: 13121 components: - type: Transform - pos: -4.5,-58.5 + rot: 1.5707963267948966 rad + pos: -26.5,-72.5 parent: 2 - - uid: 12996 + - uid: 13122 components: - type: Transform - pos: -7.5,-58.5 + pos: 44.5,16.5 parent: 2 - - uid: 12997 + - uid: 13123 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-38.5 + pos: -30.5,-39.5 parent: 2 - - uid: 12998 + - uid: 13124 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 12999 + - uid: 13125 components: - type: Transform pos: -28.5,20.5 parent: 2 - - uid: 13000 + - uid: 13126 components: - type: Transform pos: -9.5,47.5 parent: 2 - - uid: 13001 + - uid: 13127 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 - - uid: 13002 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 - - uid: 13003 + - uid: 13128 components: - type: Transform pos: 29.5,-3.5 parent: 2 - - uid: 13004 + - uid: 13129 components: - type: Transform pos: 33.5,-70.5 parent: 2 - - uid: 13005 + - uid: 13130 components: - type: Transform pos: 56.5,-43.5 parent: 2 - - uid: 13006 + - uid: 13131 components: - type: Transform pos: 6.5,-24.5 parent: 2 - - uid: 13007 + - uid: 13132 components: - type: Transform pos: 32.5,-23.5 parent: 2 - - uid: 13008 + - uid: 13133 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 13009 + - uid: 13134 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 - - uid: 31696 + - uid: 13135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - uid: 13136 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,3.5 + pos: -8.5,-57.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 13010 + - uid: 13137 components: - type: Transform pos: 29.5,25.5 parent: 2 - - uid: 13011 + - uid: 13138 components: - type: Transform pos: -16.5,27.5 parent: 2 - - uid: 13012 + - uid: 13139 components: - type: Transform pos: 62.5,7.5 parent: 2 - proto: DeskBell entities: - - uid: 13013 + - uid: 13140 components: - type: Transform pos: 26.493649,19.578499 parent: 2 missingComponents: - Item - - uid: 13014 + - uid: 13141 components: - type: Transform pos: -26.393543,22.737104 parent: 2 missingComponents: - Item - - uid: 13015 + - uid: 13142 components: - type: Transform pos: 2.482698,4.566377 parent: 2 missingComponents: - Item - - uid: 13016 + - uid: 13143 components: - type: Transform pos: 7.4455647,7.463886 parent: 2 missingComponents: - Item - - uid: 13017 + - uid: 13144 components: - type: Transform pos: 15.491525,13.615058 parent: 2 missingComponents: - Item - - uid: 13018 + - uid: 13145 components: - type: Transform pos: -2.9507003,-48.39704 parent: 2 missingComponents: - Item - - uid: 13019 + - uid: 13146 components: - type: Transform pos: 42.281975,-40.51448 parent: 2 missingComponents: - Item - - uid: 13020 + - uid: 13147 components: - type: Transform pos: 51.51352,-39.9676 @@ -83564,8905 +83235,8875 @@ entities: - Item - proto: DiceBag entities: - - uid: 13021 + - uid: 13148 components: - type: Transform pos: 10.645734,-7.4315987 parent: 2 - - uid: 13022 + - uid: 13149 components: - type: Transform pos: 23.269382,-29.34838 parent: 2 - - uid: 13023 + - uid: 13150 components: - type: Transform pos: -0.45645034,30.694569 parent: 2 - - uid: 13024 + - uid: 13151 components: - type: Transform pos: -16.724815,61.696495 parent: 2 - - uid: 13025 + - uid: 13152 components: - type: Transform pos: -18.55294,62.55587 parent: 2 - proto: DiseaseDiagnoser entities: - - uid: 13026 + - uid: 13153 components: - type: Transform pos: -22.5,-75.5 parent: 2 - proto: DisposalBend entities: - - uid: 13027 + - uid: 13154 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 - - uid: 13028 + - uid: 13155 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 13029 + - uid: 13156 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 - - uid: 13030 + - uid: 13157 components: - type: Transform pos: 34.5,8.5 parent: 2 - - uid: 13031 + - uid: 13158 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 - - uid: 13032 + - uid: 13159 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 - - uid: 13033 + - uid: 13160 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 13034 + - uid: 13161 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 - - uid: 13035 + - uid: 13162 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 - - uid: 13036 + - uid: 13163 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 - - uid: 13037 + - uid: 13164 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 - - uid: 13038 + - uid: 13165 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 - - uid: 13039 + - uid: 13166 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 - - uid: 13040 + - uid: 13167 components: - type: Transform pos: 36.5,-17.5 parent: 2 - - uid: 13041 - components: - - type: Transform - pos: 1.5,-53.5 - parent: 2 - - uid: 13042 + - uid: 13168 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 - - uid: 13043 + - uid: 13169 components: - type: Transform pos: 18.5,-49.5 parent: 2 - - uid: 13044 + - uid: 13170 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 - - uid: 13045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-53.5 - parent: 2 - - uid: 13046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-54.5 - parent: 2 - - uid: 13047 + - uid: 13171 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 - - uid: 13048 + - uid: 13172 components: - type: Transform pos: 18.5,1.5 parent: 2 - - uid: 13049 + - uid: 13173 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 - - uid: 13050 + - uid: 13174 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 - - uid: 13051 + - uid: 13175 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 - - uid: 13052 + - uid: 13176 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 13053 + - uid: 13177 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 - - uid: 13054 + - uid: 13178 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 - - uid: 13055 + - uid: 13179 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 - - uid: 13056 + - uid: 13180 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 - - uid: 13057 + - uid: 13181 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 - - uid: 13058 + - uid: 13182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-60.5 + pos: -18.5,-60.5 parent: 2 - - uid: 13059 + - uid: 13183 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 - - uid: 13060 + - uid: 13184 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 - - uid: 13061 + - uid: 13185 components: - type: Transform pos: 15.5,19.5 parent: 2 - - uid: 13062 + - uid: 13186 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 13063 + - uid: 13187 components: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 13064 + - uid: 13188 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 - - uid: 13065 + - uid: 13189 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 - - uid: 13066 + - uid: 13190 components: - type: Transform pos: 29.5,17.5 parent: 2 - - uid: 13067 + - uid: 13191 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 - - uid: 13068 + - uid: 13192 components: - type: Transform pos: 41.5,6.5 parent: 2 - - uid: 13069 + - uid: 13193 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 - - uid: 13070 + - uid: 13194 components: - type: Transform pos: 54.5,-13.5 parent: 2 - - uid: 13071 + - uid: 13195 components: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 13072 + - uid: 13196 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 - - uid: 13073 + - uid: 13197 components: - type: Transform pos: 67.5,-45.5 parent: 2 - - uid: 13074 + - uid: 13198 components: - type: Transform pos: 49.5,-55.5 parent: 2 - - uid: 13075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-66.5 - parent: 2 - - uid: 13076 + - uid: 13199 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 - - uid: 13077 + - uid: 13200 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 - - uid: 13078 + - uid: 13201 components: - type: Transform pos: 39.5,-60.5 parent: 2 - - uid: 13079 + - uid: 13202 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 - - uid: 13080 + - uid: 13203 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 - - uid: 13081 + - uid: 13204 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 - - uid: 13082 + - uid: 13205 components: - type: Transform pos: -13.5,8.5 parent: 2 - - uid: 13083 + - uid: 13206 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 - - uid: 13084 + - uid: 13207 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 - - uid: 13085 + - uid: 13208 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 - - uid: 13086 + - uid: 13209 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 13087 + - uid: 13210 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 - - uid: 13088 + - uid: 13211 components: - type: Transform pos: -36.5,-5.5 parent: 2 - - uid: 13089 + - uid: 13212 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 - - uid: 13090 + - uid: 13213 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 - - uid: 13091 + - uid: 13214 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 - - uid: 13092 + - uid: 13215 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 - - uid: 13093 + - uid: 13216 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 - - uid: 13094 + - uid: 13217 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 - - uid: 13095 + - uid: 13218 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 - - uid: 13096 + - uid: 13219 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 - - uid: 13097 - components: - - type: Transform - pos: 2.5,-61.5 - parent: 2 - - uid: 13098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-61.5 - parent: 2 - - uid: 13099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-67.5 - parent: 2 - - uid: 13100 + - uid: 13220 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 - - uid: 13101 + - uid: 13221 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 - - uid: 13102 + - uid: 13222 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 - - uid: 13103 + - uid: 13223 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 - - uid: 13104 + - uid: 13224 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 - - uid: 13105 + - uid: 13225 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 - - uid: 13106 + - uid: 13226 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 - - uid: 13107 + - uid: 13227 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 - - uid: 13108 + - uid: 13228 components: - type: Transform pos: -4.5,44.5 parent: 2 - - uid: 13109 + - uid: 13229 components: - type: Transform pos: -13.5,50.5 parent: 2 - - uid: 13110 + - uid: 13230 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 - - uid: 13111 + - uid: 13231 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 - - uid: 13112 + - uid: 13232 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 13113 + - uid: 13233 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 - - uid: 13114 + - uid: 13234 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 - - uid: 13115 + - uid: 13235 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 - - uid: 13116 + - uid: 13236 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 13117 + - uid: 13237 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 - - uid: 13118 + - uid: 13238 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 - - uid: 13119 + - uid: 13239 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 - - uid: 13120 + - uid: 13240 components: - type: Transform pos: -20.5,20.5 parent: 2 - - uid: 13121 + - uid: 13241 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 - - uid: 13122 + - uid: 13242 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 - - uid: 13123 + - uid: 13243 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 - - uid: 13124 + - uid: 13244 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 - - uid: 13125 + - uid: 13245 components: - type: Transform pos: -26.5,0.5 parent: 2 - - uid: 13126 + - uid: 13246 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 - - uid: 13127 + - uid: 13247 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 13128 + - uid: 13248 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 - - uid: 13129 + - uid: 13249 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 - - uid: 13130 + - uid: 13250 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 - - uid: 13131 + - uid: 13251 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,17.5 parent: 2 - - uid: 13132 + - uid: 13252 components: - type: Transform pos: -67.5,-41.5 parent: 2 - - uid: 13133 + - uid: 13253 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-42.5 parent: 2 - - uid: 13134 + - uid: 13254 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 - - uid: 13135 + - uid: 13255 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,0.5 parent: 2 - - uid: 13136 + - uid: 13256 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-38.5 parent: 2 - - uid: 13137 + - uid: 13257 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 - - uid: 13138 + - uid: 13258 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-5.5 parent: 2 - - uid: 13139 + - uid: 13259 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 - - uid: 13140 + - uid: 13260 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 13141 + - uid: 13261 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 - - uid: 13142 + - uid: 13262 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,22.5 parent: 2 - - uid: 13143 + - uid: 13263 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,22.5 parent: 2 - - uid: 13144 + - uid: 13264 components: - type: Transform pos: -37.5,23.5 parent: 2 - - uid: 13145 + - uid: 13265 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,21.5 parent: 2 - - uid: 13146 + - uid: 13266 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,19.5 parent: 2 - - uid: 13147 + - uid: 13267 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 - - uid: 13148 + - uid: 13268 components: - type: Transform pos: -32.5,21.5 parent: 2 + - uid: 13269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-52.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-53.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-53.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-62.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-67.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-57.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-7.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 - proto: DisposalJunction entities: - - uid: 13149 + - uid: 13284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-54.5 + parent: 2 + - uid: 13285 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 - - uid: 13150 + - uid: 13286 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 - - uid: 13151 + - uid: 13287 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 - - uid: 13152 + - uid: 13288 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 - - uid: 13153 + - uid: 13289 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 - - uid: 13154 + - uid: 13290 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 - - uid: 13155 + - uid: 13291 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 - - uid: 13156 + - uid: 13292 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 - - uid: 13157 + - uid: 13293 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 - - uid: 13158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 2 - - uid: 13159 + - uid: 13294 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 - - uid: 13160 + - uid: 13295 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 - - uid: 13161 + - uid: 13296 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 - - uid: 13162 + - uid: 13297 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 - - uid: 13163 + - uid: 13298 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 - - uid: 13164 + - uid: 13299 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 - - uid: 13165 + - uid: 13300 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 - - uid: 13166 + - uid: 13301 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 - - uid: 13167 + - uid: 13302 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 - - uid: 13168 + - uid: 13303 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 - - uid: 13169 + - uid: 13304 components: - type: Transform pos: -19.5,-13.5 parent: 2 - - uid: 13170 + - uid: 13305 components: - type: Transform pos: -25.5,-0.5 parent: 2 - - uid: 13171 + - uid: 13306 components: - type: Transform pos: -19.5,23.5 parent: 2 - - uid: 13172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-61.5 - parent: 2 - - uid: 13173 + - uid: 13307 components: - type: Transform pos: -15.5,37.5 parent: 2 - - uid: 13174 + - uid: 13308 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-73.5 parent: 2 - - uid: 13175 + - uid: 13309 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 + - uid: 13310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-57.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 13176 + - uid: 13314 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 - - uid: 13177 + - uid: 13315 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 - - uid: 13178 + - uid: 13316 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 13179 + - uid: 13317 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 - - uid: 13180 + - uid: 13318 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 - - uid: 13181 + - uid: 13319 components: - type: Transform pos: 36.5,-18.5 parent: 2 - - uid: 13182 + - uid: 13320 components: - type: Transform pos: 16.5,-25.5 parent: 2 - - uid: 13183 + - uid: 13321 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 - - uid: 13184 + - uid: 13322 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - - uid: 13185 + - uid: 13323 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 13186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-57.5 - parent: 2 - - uid: 13187 + - uid: 13324 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 13188 + - uid: 13325 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 - - uid: 13189 + - uid: 13326 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 - - uid: 13190 + - uid: 13327 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 - - uid: 13191 + - uid: 13328 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 - - uid: 13192 + - uid: 13329 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 - - uid: 13193 + - uid: 13330 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 - - uid: 13194 + - uid: 13331 components: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 13195 + - uid: 13332 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 - - uid: 13196 + - uid: 13333 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 - - uid: 13197 + - uid: 13334 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 - - uid: 13198 + - uid: 13335 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 - - uid: 13199 + - uid: 13336 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 13200 + - uid: 13337 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 - - uid: 13201 + - uid: 13338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-61.5 + rot: 3.141592653589793 rad + pos: -30.5,-5.5 parent: 2 - proto: DisposalMachineFrame entities: - - uid: 13202 + - uid: 13339 components: - type: Transform pos: 46.5,44.5 parent: 2 - - uid: 13203 + - uid: 13340 components: - type: Transform pos: -57.5,-41.5 parent: 2 - - uid: 13204 + - uid: 13341 components: - type: Transform pos: -22.5,-24.5 parent: 2 - - uid: 13205 + - uid: 13342 components: - type: Transform pos: -19.5,-99.5 parent: 2 - proto: DisposalPipe entities: - - uid: 13206 + - uid: 13343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-54.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-54.5 + parent: 2 + - uid: 13345 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,21.5 parent: 2 - - uid: 13207 + - uid: 13346 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-42.5 parent: 2 - - uid: 13208 + - uid: 13347 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-44.5 parent: 2 - - uid: 13209 + - uid: 13348 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-45.5 parent: 2 - - uid: 13210 + - uid: 13349 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 - - uid: 13211 + - uid: 13350 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-25.5 parent: 2 - - uid: 13212 + - uid: 13351 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-26.5 parent: 2 - - uid: 13213 + - uid: 13352 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 2 - - uid: 13214 + - uid: 13353 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 - - uid: 13215 + - uid: 13354 components: - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 13216 + - uid: 13355 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 - - uid: 13217 + - uid: 13356 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 13218 + - uid: 13357 components: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 13219 + - uid: 13358 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 - - uid: 13220 + - uid: 13359 components: - type: Transform pos: 16.5,-42.5 parent: 2 - - uid: 13221 + - uid: 13360 components: - type: Transform pos: 16.5,-41.5 parent: 2 - - uid: 13222 + - uid: 13361 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 - - uid: 13223 + - uid: 13362 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 - - uid: 13224 + - uid: 13363 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 - - uid: 13225 + - uid: 13364 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 - - uid: 13226 + - uid: 13365 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 - - uid: 13227 + - uid: 13366 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 - - uid: 13228 + - uid: 13367 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 - - uid: 13229 + - uid: 13368 components: - type: Transform pos: 21.5,-33.5 parent: 2 - - uid: 13230 + - uid: 13369 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 - - uid: 13231 + - uid: 13370 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 - - uid: 13232 + - uid: 13371 components: - type: Transform pos: 21.5,-30.5 parent: 2 - - uid: 13233 + - uid: 13372 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 13234 + - uid: 13373 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 - - uid: 13235 + - uid: 13374 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 - - uid: 13236 + - uid: 13375 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 - - uid: 13237 + - uid: 13376 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 - - uid: 13238 + - uid: 13377 components: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 13239 + - uid: 13378 components: - type: Transform pos: -17.5,-55.5 parent: 2 - - uid: 13240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-60.5 - parent: 2 - - uid: 13241 + - uid: 13379 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 13242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 2 - - uid: 13243 + - uid: 13380 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 - - uid: 13244 + - uid: 13381 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 - - uid: 13245 + - uid: 13382 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 - - uid: 13246 + - uid: 13383 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 - - uid: 13247 + - uid: 13384 components: - type: Transform pos: 19.5,-41.5 parent: 2 - - uid: 13248 + - uid: 13385 components: - type: Transform pos: -9.5,1.5 parent: 2 - - uid: 13249 + - uid: 13386 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 13250 + - uid: 13387 components: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 13251 + - uid: 13388 components: - type: Transform pos: -9.5,2.5 parent: 2 - - uid: 13252 + - uid: 13389 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - uid: 13253 + - uid: 13390 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 13254 + - uid: 13391 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 - - uid: 13255 + - uid: 13392 components: - type: Transform pos: 24.5,-7.5 parent: 2 - - uid: 13256 + - uid: 13393 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 - - uid: 13257 + - uid: 13394 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 - - uid: 13258 + - uid: 13395 components: - type: Transform pos: -23.5,-74.5 parent: 2 - - uid: 13259 + - uid: 13396 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 13260 + - uid: 13397 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 - - uid: 13261 + - uid: 13398 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 - - uid: 13262 + - uid: 13399 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 - - uid: 13263 + - uid: 13400 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 - - uid: 13264 + - uid: 13401 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 - - uid: 13265 + - uid: 13402 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 - - uid: 13266 + - uid: 13403 components: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 13267 + - uid: 13404 components: - type: Transform pos: 34.5,-4.5 parent: 2 - - uid: 13268 + - uid: 13405 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 13269 + - uid: 13406 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 - - uid: 13270 + - uid: 13407 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 - - uid: 13271 + - uid: 13408 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 - - uid: 13272 + - uid: 13409 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 - - uid: 13273 + - uid: 13410 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 - - uid: 13274 + - uid: 13411 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 - - uid: 13275 + - uid: 13412 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 - - uid: 13276 + - uid: 13413 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 13277 + - uid: 13414 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 - - uid: 13278 + - uid: 13415 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 - - uid: 13279 + - uid: 13416 components: - type: Transform pos: 6.5,-44.5 parent: 2 - - uid: 13280 + - uid: 13417 components: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 13281 + - uid: 13418 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 - - uid: 13282 + - uid: 13419 components: - type: Transform pos: 24.5,-13.5 parent: 2 - - uid: 13283 + - uid: 13420 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 - - uid: 13284 + - uid: 13421 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 - - uid: 13285 + - uid: 13422 components: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 13286 + - uid: 13423 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 - - uid: 13287 + - uid: 13424 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 - - uid: 13288 + - uid: 13425 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 - - uid: 13289 + - uid: 13426 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 13290 + - uid: 13427 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 13291 + - uid: 13428 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 - - uid: 13292 + - uid: 13429 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 - - uid: 13293 + - uid: 13430 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 - - uid: 13294 + - uid: 13431 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 - - uid: 13295 + - uid: 13432 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 - - uid: 13296 + - uid: 13433 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 - - uid: 13297 + - uid: 13434 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 13298 + - uid: 13435 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 - - uid: 13299 + - uid: 13436 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 - - uid: 13300 + - uid: 13437 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - - uid: 13301 + - uid: 13438 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 - - uid: 13302 + - uid: 13439 components: - type: Transform pos: -23.5,-77.5 parent: 2 - - uid: 13303 + - uid: 13440 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 - - uid: 13304 + - uid: 13441 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - - uid: 13305 + - uid: 13442 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - - uid: 13306 + - uid: 13443 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 - - uid: 13307 + - uid: 13444 components: - type: Transform pos: 18.5,-2.5 parent: 2 - - uid: 13308 + - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 - - uid: 13309 + - uid: 13446 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 - - uid: 13310 + - uid: 13447 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 - - uid: 13311 + - uid: 13448 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 - - uid: 13312 + - uid: 13449 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 - - uid: 13313 + - uid: 13450 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 - - uid: 13314 + - uid: 13451 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 - - uid: 13315 + - uid: 13452 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 - - uid: 13316 + - uid: 13453 components: - type: Transform pos: 18.5,-3.5 parent: 2 - - uid: 13317 + - uid: 13454 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 - - uid: 13318 + - uid: 13455 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 - - uid: 13319 + - uid: 13456 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 - - uid: 13320 + - uid: 13457 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 - - uid: 13321 + - uid: 13458 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 - - uid: 13322 + - uid: 13459 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 - - uid: 13323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-53.5 - parent: 2 - - uid: 13324 + - uid: 13460 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 - - uid: 13325 + - uid: 13461 components: - type: Transform pos: 24.5,-15.5 parent: 2 - - uid: 13326 + - uid: 13462 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 - - uid: 13327 + - uid: 13463 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 - - uid: 13328 + - uid: 13464 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 13329 + - uid: 13465 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 - - uid: 13330 + - uid: 13466 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - - uid: 13331 + - uid: 13467 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 13332 + - uid: 13468 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 13333 + - uid: 13469 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 - - uid: 13334 + - uid: 13470 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 - - uid: 13335 + - uid: 13471 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 - - uid: 13336 + - uid: 13472 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 - - uid: 13337 + - uid: 13473 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 - - uid: 13338 + - uid: 13474 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 - - uid: 13339 + - uid: 13475 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 13340 + - uid: 13476 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 13341 + - uid: 13477 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 13342 + - uid: 13478 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 13343 + - uid: 13479 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 13344 + - uid: 13480 components: - type: Transform pos: -4.5,-32.5 parent: 2 - - uid: 13345 + - uid: 13481 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 13346 + - uid: 13482 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 - - uid: 13347 + - uid: 13483 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 - - uid: 13348 + - uid: 13484 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 - - uid: 13349 + - uid: 13485 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 - - uid: 13350 + - uid: 13486 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 - - uid: 13351 + - uid: 13487 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 - - uid: 13352 + - uid: 13488 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 - - uid: 13353 + - uid: 13489 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 - - uid: 13354 + - uid: 13490 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 - - uid: 13355 + - uid: 13491 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 - - uid: 13356 + - uid: 13492 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 - - uid: 13357 + - uid: 13493 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 - - uid: 13358 + - uid: 13494 components: - type: Transform pos: 17.5,-48.5 parent: 2 - - uid: 13359 + - uid: 13495 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 - - uid: 13360 + - uid: 13496 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 - - uid: 13361 + - uid: 13497 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 - - uid: 13362 + - uid: 13498 components: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 13363 + - uid: 13499 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 - - uid: 13364 + - uid: 13500 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 - - uid: 13365 + - uid: 13501 components: - type: Transform pos: 36.5,-19.5 parent: 2 - - uid: 13366 + - uid: 13502 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 - - uid: 13367 + - uid: 13503 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 - - uid: 13368 + - uid: 13504 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 - - uid: 13369 + - uid: 13505 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 - - uid: 13370 + - uid: 13506 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 - - uid: 13371 + - uid: 13507 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 - - uid: 13372 + - uid: 13508 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 - - uid: 13373 + - uid: 13509 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 - - uid: 13374 + - uid: 13510 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 - - uid: 13375 + - uid: 13511 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 - - uid: 13376 + - uid: 13512 components: - type: Transform pos: 25.5,9.5 parent: 2 - - uid: 13377 + - uid: 13513 components: - type: Transform pos: 25.5,10.5 parent: 2 - - uid: 13378 + - uid: 13514 components: - type: Transform pos: 25.5,11.5 parent: 2 - - uid: 13379 + - uid: 13515 components: - type: Transform pos: 25.5,12.5 parent: 2 - - uid: 13380 + - uid: 13516 components: - type: Transform pos: 25.5,13.5 parent: 2 - - uid: 13381 + - uid: 13517 components: - type: Transform pos: 25.5,14.5 parent: 2 - - uid: 13382 + - uid: 13518 components: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 13383 + - uid: 13519 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 - - uid: 13384 + - uid: 13520 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 - - uid: 13385 + - uid: 13521 components: - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 13386 + - uid: 13522 components: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 13387 + - uid: 13523 components: - type: Transform pos: 24.5,-12.5 parent: 2 - - uid: 13388 + - uid: 13524 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 - - uid: 13389 + - uid: 13525 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 - - uid: 13390 + - uid: 13526 components: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 13391 + - uid: 13527 components: - type: Transform pos: 16.5,-21.5 parent: 2 - - uid: 13392 + - uid: 13528 components: - type: Transform pos: 16.5,-22.5 parent: 2 - - uid: 13393 + - uid: 13529 components: - type: Transform pos: 16.5,-23.5 parent: 2 - - uid: 13394 + - uid: 13530 components: - type: Transform pos: 16.5,-24.5 parent: 2 - - uid: 13395 + - uid: 13531 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 - - uid: 13396 + - uid: 13532 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 - - uid: 13397 + - uid: 13533 components: - type: Transform pos: 20.5,-24.5 parent: 2 - - uid: 13398 + - uid: 13534 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 - - uid: 13399 + - uid: 13535 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 - - uid: 13400 + - uid: 13536 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 - - uid: 13401 + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 - - uid: 13402 + - uid: 13538 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 - - uid: 13403 + - uid: 13539 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 - - uid: 13404 + - uid: 13540 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 - - uid: 13405 + - uid: 13541 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 - - uid: 13406 + - uid: 13542 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 - - uid: 13407 + - uid: 13543 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 - - uid: 13408 + - uid: 13544 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 - - uid: 13409 + - uid: 13545 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 - - uid: 13410 + - uid: 13546 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 - - uid: 13411 + - uid: 13547 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 - - uid: 13412 + - uid: 13548 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 13413 + - uid: 13549 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 13414 + - uid: 13550 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 - - uid: 13415 + - uid: 13551 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 - - uid: 13416 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 - - uid: 13417 + - uid: 13553 components: - type: Transform pos: 16.5,-35.5 parent: 2 - - uid: 13418 + - uid: 13554 components: - type: Transform pos: 16.5,-36.5 parent: 2 - - uid: 13419 + - uid: 13555 components: - type: Transform pos: 16.5,-37.5 parent: 2 - - uid: 13420 + - uid: 13556 components: - type: Transform pos: 16.5,-38.5 parent: 2 - - uid: 13421 + - uid: 13557 components: - type: Transform pos: 16.5,-39.5 parent: 2 - - uid: 13422 + - uid: 13558 components: - type: Transform pos: 16.5,-40.5 parent: 2 - - uid: 13423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-58.5 - parent: 2 - - uid: 13424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-57.5 - parent: 2 - - uid: 13425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-56.5 - parent: 2 - - uid: 13426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-55.5 - parent: 2 - - uid: 13427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 2 - - uid: 13428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 2 - - uid: 13429 + - uid: 13559 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 - - uid: 13430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-52.5 - parent: 2 - - uid: 13431 + - uid: 13560 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 - - uid: 13432 + - uid: 13561 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 - - uid: 13433 + - uid: 13562 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 - - uid: 13434 + - uid: 13563 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 - - uid: 13435 + - uid: 13564 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 13436 + - uid: 13565 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 - - uid: 13437 + - uid: 13566 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 - - uid: 13438 + - uid: 13567 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 - - uid: 13439 + - uid: 13568 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 - - uid: 13440 + - uid: 13569 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 - - uid: 13441 + - uid: 13570 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 - - uid: 13442 + - uid: 13571 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 - - uid: 13443 + - uid: 13572 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 - - uid: 13444 + - uid: 13573 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 - - uid: 13445 + - uid: 13574 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 - - uid: 13446 + - uid: 13575 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 - - uid: 13447 + - uid: 13576 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 - - uid: 13448 + - uid: 13577 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 - - uid: 13449 + - uid: 13578 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 13450 + - uid: 13579 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 13451 + - uid: 13580 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 13452 + - uid: 13581 components: - type: Transform pos: 36.5,-28.5 parent: 2 - - uid: 13453 + - uid: 13582 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-41.5 parent: 2 - - uid: 13454 + - uid: 13583 components: - type: Transform pos: 17.5,-46.5 parent: 2 - - uid: 13455 + - uid: 13584 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 - - uid: 13456 + - uid: 13585 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 - - uid: 13457 + - uid: 13586 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 13458 + - uid: 13587 components: - type: Transform pos: 18.5,-27.5 parent: 2 - - uid: 13459 + - uid: 13588 components: - type: Transform pos: -23.5,-80.5 parent: 2 - - uid: 13460 + - uid: 13589 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 - - uid: 13461 + - uid: 13590 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 - - uid: 13462 + - uid: 13591 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 - - uid: 13463 + - uid: 13592 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 - - uid: 13464 + - uid: 13593 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 - - uid: 13465 + - uid: 13594 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 - - uid: 13466 + - uid: 13595 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 - - uid: 13467 + - uid: 13596 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 - - uid: 13468 + - uid: 13597 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 - - uid: 13469 + - uid: 13598 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 - - uid: 13470 + - uid: 13599 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 - - uid: 13471 + - uid: 13600 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 - - uid: 13472 + - uid: 13601 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 - - uid: 13473 + - uid: 13602 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 - - uid: 13474 + - uid: 13603 components: - type: Transform pos: -13.5,-44.5 parent: 2 - - uid: 13475 + - uid: 13604 components: - type: Transform pos: -13.5,-46.5 parent: 2 - - uid: 13476 + - uid: 13605 components: - type: Transform pos: -13.5,-47.5 parent: 2 - - uid: 13477 + - uid: 13606 components: - type: Transform pos: -13.5,-48.5 parent: 2 - - uid: 13478 + - uid: 13607 components: - type: Transform pos: -13.5,-49.5 parent: 2 - - uid: 13479 + - uid: 13608 components: - type: Transform pos: -13.5,-50.5 parent: 2 - - uid: 13480 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 2 - - uid: 13481 - components: - - type: Transform - pos: -13.5,-52.5 - parent: 2 - - uid: 13482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-53.5 - parent: 2 - - uid: 13483 + - uid: 13609 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 - - uid: 13484 + - uid: 13610 components: - type: Transform pos: -17.5,-56.5 parent: 2 - - uid: 13485 + - uid: 13611 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-58.5 + pos: -18.5,-59.5 parent: 2 - - uid: 13486 + - uid: 13612 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-59.5 - parent: 2 - - uid: 13487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 + pos: -18.5,-58.5 parent: 2 - - uid: 13488 + - uid: 13613 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 - - uid: 13489 + - uid: 13614 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 13490 + - uid: 13615 components: - type: Transform pos: -19.5,-70.5 parent: 2 - - uid: 13491 + - uid: 13616 components: - type: Transform pos: -19.5,-71.5 parent: 2 - - uid: 13492 + - uid: 13617 components: - type: Transform pos: -19.5,-72.5 parent: 2 - - uid: 13493 + - uid: 13618 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 - - uid: 13494 + - uid: 13619 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 - - uid: 13495 + - uid: 13620 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 - - uid: 13496 + - uid: 13621 components: - type: Transform pos: -23.5,-82.5 parent: 2 - - uid: 13497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-53.5 - parent: 2 - - uid: 13498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-53.5 - parent: 2 - - uid: 13499 + - uid: 13622 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 13500 + - uid: 13623 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 - - uid: 13501 + - uid: 13624 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 - - uid: 13502 + - uid: 13625 components: - type: Transform pos: 30.5,-77.5 parent: 2 - - uid: 13503 + - uid: 13626 components: - type: Transform pos: -4.5,-29.5 parent: 2 - - uid: 13504 + - uid: 13627 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 - - uid: 13505 + - uid: 13628 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 13506 + - uid: 13629 components: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 13507 + - uid: 13630 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 13508 + - uid: 13631 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 13509 + - uid: 13632 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 - - uid: 13510 + - uid: 13633 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 - - uid: 13511 + - uid: 13634 components: - type: Transform pos: 18.5,-1.5 parent: 2 - - uid: 13512 + - uid: 13635 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 - - uid: 13513 + - uid: 13636 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 13514 + - uid: 13637 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 13515 + - uid: 13638 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - - uid: 13516 + - uid: 13639 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 - - uid: 13517 + - uid: 13640 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 - - uid: 13518 + - uid: 13641 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 - - uid: 13519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 2 - - uid: 13520 + - uid: 13642 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 - - uid: 13521 + - uid: 13643 components: - type: Transform pos: -23.5,-83.5 parent: 2 - - uid: 13522 + - uid: 13644 components: - type: Transform pos: -23.5,-78.5 parent: 2 - - uid: 13523 + - uid: 13645 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 13524 + - uid: 13646 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 - - uid: 13525 + - uid: 13647 components: - type: Transform pos: 24.5,-16.5 parent: 2 - - uid: 13526 + - uid: 13648 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 - - uid: 13527 + - uid: 13649 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 - - uid: 13528 + - uid: 13650 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 - - uid: 13529 + - uid: 13651 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 13530 + - uid: 13652 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 - - uid: 13531 + - uid: 13653 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 13532 + - uid: 13654 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 - - uid: 13533 + - uid: 13655 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 - - uid: 13534 + - uid: 13656 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 - - uid: 13535 + - uid: 13657 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 13536 + - uid: 13658 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 - - uid: 13537 + - uid: 13659 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 - - uid: 13538 + - uid: 13660 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 - - uid: 13539 + - uid: 13661 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 13540 + - uid: 13662 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 - - uid: 13541 + - uid: 13663 components: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 13542 + - uid: 13664 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 - - uid: 13543 + - uid: 13665 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 - - uid: 13544 + - uid: 13666 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 - - uid: 13545 + - uid: 13667 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 - - uid: 13546 + - uid: 13668 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 - - uid: 13547 + - uid: 13669 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 - - uid: 13548 + - uid: 13670 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 - - uid: 13549 + - uid: 13671 components: - type: Transform pos: 18.5,-28.5 parent: 2 - - uid: 13550 + - uid: 13672 components: - type: Transform pos: -23.5,-79.5 parent: 2 - - uid: 13551 + - uid: 13673 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 - - uid: 13552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 2 - - uid: 13553 + - uid: 13674 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 - - uid: 13554 + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 - - uid: 13555 + - uid: 13676 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 13556 + - uid: 13677 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 - - uid: 13557 + - uid: 13678 components: - type: Transform pos: 18.5,0.5 parent: 2 - - uid: 13558 + - uid: 13679 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 - - uid: 13559 + - uid: 13680 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 - - uid: 13560 + - uid: 13681 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 - - uid: 13561 + - uid: 13682 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 - - uid: 13562 + - uid: 13683 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 - - uid: 13563 + - uid: 13684 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 - - uid: 13564 + - uid: 13685 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 - - uid: 13565 - components: - - type: Transform - pos: -5.5,-54.5 - parent: 2 - - uid: 13566 + - uid: 13686 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 - - uid: 13567 + - uid: 13687 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 13568 + - uid: 13688 components: - type: Transform pos: -4.5,-31.5 parent: 2 - - uid: 13569 + - uid: 13689 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 13570 + - uid: 13690 components: - type: Transform pos: -19.5,-65.5 parent: 2 - - uid: 13571 + - uid: 13691 components: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 13572 + - uid: 13692 components: - type: Transform pos: 36.5,-23.5 parent: 2 - - uid: 13573 + - uid: 13693 components: - type: Transform pos: 34.5,-5.5 parent: 2 - - uid: 13574 + - uid: 13694 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 13575 + - uid: 13695 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 - - uid: 13576 + - uid: 13696 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 - - uid: 13577 + - uid: 13697 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 13578 + - uid: 13698 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 - - uid: 13579 + - uid: 13699 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 - - uid: 13580 + - uid: 13700 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 - - uid: 13581 + - uid: 13701 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 - - uid: 13582 + - uid: 13702 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 - - uid: 13583 + - uid: 13703 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - - uid: 13584 + - uid: 13704 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 - - uid: 13585 + - uid: 13705 components: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 13586 + - uid: 13706 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 - - uid: 13587 + - uid: 13707 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 - - uid: 13588 + - uid: 13708 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 - - uid: 13589 + - uid: 13709 components: - type: Transform pos: -23.5,-76.5 parent: 2 - - uid: 13590 + - uid: 13710 components: - type: Transform pos: -19.5,-64.5 parent: 2 - - uid: 13591 + - uid: 13711 components: - type: Transform pos: -19.5,-62.5 parent: 2 - - uid: 13592 + - uid: 13712 components: - type: Transform pos: -19.5,-66.5 parent: 2 - - uid: 13593 + - uid: 13713 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 13594 + - uid: 13714 components: - type: Transform pos: -19.5,-67.5 parent: 2 - - uid: 13595 + - uid: 13715 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 - - uid: 13596 + - uid: 13716 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 - - uid: 13597 + - uid: 13717 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 - - uid: 13598 + - uid: 13718 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 - - uid: 13599 + - uid: 13719 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 - - uid: 13600 + - uid: 13720 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 - - uid: 13601 + - uid: 13721 components: - type: Transform pos: 12.5,8.5 parent: 2 - - uid: 13602 + - uid: 13722 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 - - uid: 13603 + - uid: 13723 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 13604 + - uid: 13724 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 13605 + - uid: 13725 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 - - uid: 13606 + - uid: 13726 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 13607 + - uid: 13727 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 13608 + - uid: 13728 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 13609 + - uid: 13729 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 - - uid: 13610 + - uid: 13730 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 - - uid: 13611 + - uid: 13731 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 - - uid: 13612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-65.5 - parent: 2 - - uid: 13613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 2 - - uid: 13614 + - uid: 13732 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 - - uid: 13615 + - uid: 13733 components: - type: Transform pos: -10.5,-24.5 parent: 2 - - uid: 13616 + - uid: 13734 components: - type: Transform pos: -10.5,-25.5 parent: 2 - - uid: 13617 + - uid: 13735 components: - type: Transform pos: -10.5,-26.5 parent: 2 - - uid: 13618 + - uid: 13736 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 - - uid: 13619 + - uid: 13737 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 - - uid: 13620 + - uid: 13738 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 - - uid: 13621 + - uid: 13739 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 - - uid: 13622 + - uid: 13740 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 - - uid: 13623 + - uid: 13741 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 - - uid: 13624 + - uid: 13742 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 - - uid: 13625 + - uid: 13743 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 - - uid: 13626 + - uid: 13744 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 - - uid: 13627 + - uid: 13745 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 - - uid: 13628 + - uid: 13746 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 - - uid: 13629 + - uid: 13747 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 - - uid: 13630 + - uid: 13748 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 - - uid: 13631 + - uid: 13749 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 - - uid: 13632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 2 - - uid: 13633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 2 - - uid: 13634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 2 - - uid: 13635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 2 - - uid: 13637 + - uid: 13750 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 13638 + - uid: 13751 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 13639 + - uid: 13752 components: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 13640 + - uid: 13753 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 13641 + - uid: 13754 components: - type: Transform pos: 36.5,-33.5 parent: 2 - - uid: 13642 + - uid: 13755 components: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 13643 + - uid: 13756 components: - type: Transform pos: 36.5,-35.5 parent: 2 - - uid: 13644 + - uid: 13757 components: - type: Transform pos: 36.5,-36.5 parent: 2 - - uid: 13645 + - uid: 13758 components: - type: Transform pos: 36.5,-37.5 parent: 2 - - uid: 13646 + - uid: 13759 components: - type: Transform pos: 36.5,-38.5 parent: 2 - - uid: 13647 + - uid: 13760 components: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 13648 + - uid: 13761 components: - type: Transform pos: 36.5,-40.5 parent: 2 - - uid: 13649 + - uid: 13762 components: - type: Transform pos: 36.5,-41.5 parent: 2 - - uid: 13650 + - uid: 13763 components: - type: Transform pos: 36.5,-42.5 parent: 2 - - uid: 13651 + - uid: 13764 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 - - uid: 13652 + - uid: 13765 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 - - uid: 13653 + - uid: 13766 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 - - uid: 13654 + - uid: 13767 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 - - uid: 13655 + - uid: 13768 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 - - uid: 13656 + - uid: 13769 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 - - uid: 13657 + - uid: 13770 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 - - uid: 13658 + - uid: 13771 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 - - uid: 13659 + - uid: 13772 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 - - uid: 13660 + - uid: 13773 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 - - uid: 13661 + - uid: 13774 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 - - uid: 13662 + - uid: 13775 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 - - uid: 13663 + - uid: 13776 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 - - uid: 13664 + - uid: 13777 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 - - uid: 13665 + - uid: 13778 components: - type: Transform pos: 15.5,18.5 parent: 2 - - uid: 13666 + - uid: 13779 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 - - uid: 13667 + - uid: 13780 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 - - uid: 13668 + - uid: 13781 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 - - uid: 13669 + - uid: 13782 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 - - uid: 13670 + - uid: 13783 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 - - uid: 13671 + - uid: 13784 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 - - uid: 13672 + - uid: 13785 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 - - uid: 13673 + - uid: 13786 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 - - uid: 13674 + - uid: 13787 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 - - uid: 13675 + - uid: 13788 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 - - uid: 13676 + - uid: 13789 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 - - uid: 13677 + - uid: 13790 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 - - uid: 13678 + - uid: 13791 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 - - uid: 13679 + - uid: 13792 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 13680 + - uid: 13793 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 - - uid: 13681 + - uid: 13794 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 - - uid: 13682 + - uid: 13795 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 - - uid: 13683 + - uid: 13796 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 - - uid: 13684 + - uid: 13797 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 - - uid: 13685 + - uid: 13798 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 - - uid: 13686 + - uid: 13799 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 - - uid: 13687 + - uid: 13800 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 - - uid: 13688 + - uid: 13801 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 - - uid: 13689 + - uid: 13802 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 - - uid: 13690 + - uid: 13803 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 - - uid: 13691 + - uid: 13804 components: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 13692 + - uid: 13805 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 - - uid: 13693 + - uid: 13806 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 - - uid: 13694 + - uid: 13807 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 - - uid: 13695 + - uid: 13808 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 - - uid: 13696 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 - - uid: 13697 + - uid: 13810 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 - - uid: 13698 + - uid: 13811 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 - - uid: 13699 + - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 - - uid: 13700 + - uid: 13813 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 - - uid: 13701 + - uid: 13814 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 - - uid: 13702 + - uid: 13815 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 - - uid: 13703 + - uid: 13816 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 - - uid: 13704 + - uid: 13817 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 - - uid: 13705 + - uid: 13818 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 - - uid: 13706 + - uid: 13819 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 - - uid: 13707 + - uid: 13820 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 - - uid: 13708 + - uid: 13821 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 - - uid: 13709 + - uid: 13822 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 - - uid: 13710 + - uid: 13823 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 - - uid: 13711 + - uid: 13824 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 - - uid: 13712 + - uid: 13825 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 - - uid: 13713 + - uid: 13826 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 - - uid: 13714 + - uid: 13827 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 - - uid: 13715 + - uid: 13828 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 - - uid: 13716 + - uid: 13829 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 - - uid: 13717 + - uid: 13830 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 - - uid: 13718 + - uid: 13831 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 - - uid: 13719 + - uid: 13832 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 - - uid: 13720 + - uid: 13833 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 - - uid: 13721 + - uid: 13834 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 - - uid: 13722 + - uid: 13835 components: - type: Transform pos: 25.5,-47.5 parent: 2 - - uid: 13723 + - uid: 13836 components: - type: Transform pos: 25.5,-48.5 parent: 2 - - uid: 13724 + - uid: 13837 components: - type: Transform pos: 25.5,-49.5 parent: 2 - - uid: 13725 + - uid: 13838 components: - type: Transform pos: 25.5,-50.5 parent: 2 - - uid: 13726 + - uid: 13839 components: - type: Transform pos: 25.5,-51.5 parent: 2 - - uid: 13727 + - uid: 13840 components: - type: Transform pos: 25.5,-52.5 parent: 2 - - uid: 13728 + - uid: 13841 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 - - uid: 13729 + - uid: 13842 components: - type: Transform pos: 25.5,-54.5 parent: 2 - - uid: 13730 + - uid: 13843 components: - type: Transform pos: 25.5,-55.5 parent: 2 - - uid: 13731 + - uid: 13844 components: - type: Transform pos: 25.5,-56.5 parent: 2 - - uid: 13732 + - uid: 13845 components: - type: Transform pos: 25.5,-57.5 parent: 2 - - uid: 13733 + - uid: 13846 components: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13734 + - uid: 13847 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 - - uid: 13735 + - uid: 13848 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 13736 + - uid: 13849 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 13737 + - uid: 13850 components: - type: Transform pos: 52.5,-11.5 parent: 2 - - uid: 13738 + - uid: 13851 components: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 13739 + - uid: 13852 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 - - uid: 13740 + - uid: 13853 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 - - uid: 13741 + - uid: 13854 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 - - uid: 13742 + - uid: 13855 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 - - uid: 13743 + - uid: 13856 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 - - uid: 13744 + - uid: 13857 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 - - uid: 13745 + - uid: 13858 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 - - uid: 13746 + - uid: 13859 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 13747 + - uid: 13860 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 - - uid: 13748 + - uid: 13861 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 - - uid: 13749 + - uid: 13862 components: - type: Transform pos: 49.5,-48.5 parent: 2 - - uid: 13750 + - uid: 13863 components: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 13751 + - uid: 13864 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 - - uid: 13752 + - uid: 13865 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 - - uid: 13753 + - uid: 13866 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 - - uid: 13754 + - uid: 13867 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 - - uid: 13755 + - uid: 13868 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 - - uid: 13756 + - uid: 13869 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 - - uid: 13757 + - uid: 13870 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 - - uid: 13758 + - uid: 13871 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 - - uid: 13759 + - uid: 13872 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 - - uid: 13760 + - uid: 13873 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 - - uid: 13761 + - uid: 13874 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 - - uid: 13762 + - uid: 13875 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 - - uid: 13763 + - uid: 13876 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 - - uid: 13764 + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 - - uid: 13765 + - uid: 13878 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 - - uid: 13766 + - uid: 13879 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 - - uid: 13767 + - uid: 13880 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 - - uid: 13768 + - uid: 13881 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 - - uid: 13769 + - uid: 13882 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 - - uid: 13770 + - uid: 13883 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 - - uid: 13771 + - uid: 13884 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 - - uid: 13772 + - uid: 13885 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 - - uid: 13773 + - uid: 13886 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 - - uid: 13774 + - uid: 13887 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 - - uid: 13775 + - uid: 13888 components: - type: Transform pos: 67.5,-46.5 parent: 2 - - uid: 13776 + - uid: 13889 components: - type: Transform pos: 67.5,-48.5 parent: 2 - - uid: 13777 + - uid: 13890 components: - type: Transform pos: 49.5,-56.5 parent: 2 - - uid: 13778 + - uid: 13891 components: - type: Transform pos: 49.5,-57.5 parent: 2 - - uid: 13779 + - uid: 13892 components: - type: Transform pos: 49.5,-58.5 parent: 2 - - uid: 13780 + - uid: 13893 components: - type: Transform pos: 49.5,-59.5 parent: 2 - - uid: 13781 + - uid: 13894 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 - - uid: 13782 + - uid: 13895 components: - type: Transform pos: 29.5,-61.5 parent: 2 - - uid: 13783 + - uid: 13896 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 - - uid: 13784 + - uid: 13897 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 - - uid: 13785 + - uid: 13898 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 - - uid: 13786 + - uid: 13899 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 - - uid: 13787 + - uid: 13900 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 - - uid: 13788 + - uid: 13901 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 - - uid: 13789 + - uid: 13902 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 - - uid: 13790 + - uid: 13903 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 - - uid: 13791 + - uid: 13904 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 - - uid: 13792 + - uid: 13905 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 - - uid: 13793 + - uid: 13906 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 - - uid: 13794 + - uid: 13907 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 - - uid: 13795 + - uid: 13908 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 - - uid: 13796 + - uid: 13909 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 - - uid: 13797 + - uid: 13910 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 - - uid: 13798 + - uid: 13911 components: - type: Transform pos: -19.5,-14.5 parent: 2 - - uid: 13799 + - uid: 13912 components: - type: Transform pos: -19.5,-15.5 parent: 2 - - uid: 13800 + - uid: 13913 components: - type: Transform pos: -19.5,-16.5 parent: 2 - - uid: 13801 + - uid: 13914 components: - type: Transform pos: -19.5,-17.5 parent: 2 - - uid: 13802 + - uid: 13915 components: - type: Transform pos: -19.5,-18.5 parent: 2 - - uid: 13803 + - uid: 13916 components: - type: Transform pos: -19.5,-19.5 parent: 2 - - uid: 13804 + - uid: 13917 components: - type: Transform pos: -19.5,-20.5 parent: 2 - - uid: 13805 + - uid: 13918 components: - type: Transform pos: -19.5,-21.5 parent: 2 - - uid: 13806 + - uid: 13919 components: - type: Transform pos: -19.5,-22.5 parent: 2 - - uid: 13807 + - uid: 13920 components: - type: Transform pos: -19.5,-23.5 parent: 2 - - uid: 13808 + - uid: 13921 components: - type: Transform pos: -19.5,-24.5 parent: 2 - - uid: 13809 + - uid: 13922 components: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 13810 + - uid: 13923 components: - type: Transform pos: -19.5,-26.5 parent: 2 - - uid: 13811 + - uid: 13924 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 - - uid: 13812 + - uid: 13925 components: - type: Transform pos: -19.5,-28.5 parent: 2 - - uid: 13813 + - uid: 13926 components: - type: Transform pos: -19.5,-29.5 parent: 2 - - uid: 13814 + - uid: 13927 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - uid: 13815 + - uid: 13928 components: - type: Transform pos: -19.5,-31.5 parent: 2 - - uid: 13816 + - uid: 13929 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 13817 + - uid: 13930 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 - - uid: 13818 + - uid: 13931 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 - - uid: 13819 + - uid: 13932 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 - - uid: 13820 + - uid: 13933 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 - - uid: 13821 + - uid: 13934 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 - - uid: 13822 + - uid: 13935 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 - - uid: 13823 + - uid: 13936 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 - - uid: 13824 + - uid: 13937 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 - - uid: 13825 + - uid: 13938 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 - - uid: 13826 + - uid: 13939 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 - - uid: 13827 + - uid: 13940 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 - - uid: 13828 + - uid: 13941 components: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 13829 + - uid: 13942 components: - type: Transform pos: 39.5,-62.5 parent: 2 - - uid: 13830 + - uid: 13943 components: - type: Transform pos: 39.5,-63.5 parent: 2 - - uid: 13831 + - uid: 13944 components: - type: Transform pos: 39.5,-64.5 parent: 2 - - uid: 13832 + - uid: 13945 components: - type: Transform pos: 39.5,-65.5 parent: 2 - - uid: 13833 + - uid: 13946 components: - type: Transform pos: 39.5,-66.5 parent: 2 - - uid: 13834 + - uid: 13947 components: - type: Transform pos: 39.5,-67.5 parent: 2 - - uid: 13835 + - uid: 13948 components: - type: Transform pos: 39.5,-68.5 parent: 2 - - uid: 13836 + - uid: 13949 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 - - uid: 13837 + - uid: 13950 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 - - uid: 13838 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 - - uid: 13839 + - uid: 13952 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 - - uid: 13840 + - uid: 13953 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 - - uid: 13841 + - uid: 13954 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 - - uid: 13842 + - uid: 13955 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 - - uid: 13843 + - uid: 13956 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 - - uid: 13844 + - uid: 13957 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 - - uid: 13845 + - uid: 13958 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 - - uid: 13846 + - uid: 13959 components: - type: Transform pos: 30.5,-80.5 parent: 2 - - uid: 13847 + - uid: 13960 components: - type: Transform pos: 30.5,-78.5 parent: 2 - - uid: 13848 + - uid: 13961 components: - type: Transform pos: 30.5,-79.5 parent: 2 - - uid: 13849 + - uid: 13962 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 13850 + - uid: 13963 components: - type: Transform pos: 39.5,-70.5 parent: 2 - - uid: 13851 + - uid: 13964 components: - type: Transform pos: 39.5,-71.5 parent: 2 - - uid: 13852 + - uid: 13965 components: - type: Transform pos: 39.5,-72.5 parent: 2 - - uid: 13853 + - uid: 13966 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 - - uid: 13854 + - uid: 13967 components: - type: Transform pos: 30.5,-83.5 parent: 2 - - uid: 13855 + - uid: 13968 components: - type: Transform pos: 30.5,-84.5 parent: 2 - - uid: 13856 + - uid: 13969 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 - - uid: 13857 + - uid: 13970 components: - type: Transform pos: 30.5,-85.5 parent: 2 - - uid: 13858 + - uid: 13971 components: - type: Transform pos: -13.5,1.5 parent: 2 - - uid: 13859 + - uid: 13972 components: - type: Transform pos: -13.5,-0.5 parent: 2 - - uid: 13860 + - uid: 13973 components: - type: Transform pos: -13.5,-1.5 parent: 2 - - uid: 13861 + - uid: 13974 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 13862 + - uid: 13975 components: - type: Transform pos: -13.5,-3.5 parent: 2 - - uid: 13863 + - uid: 13976 components: - type: Transform pos: -13.5,-4.5 parent: 2 - - uid: 13864 + - uid: 13977 components: - type: Transform pos: -13.5,-5.5 parent: 2 - - uid: 13865 + - uid: 13978 components: - type: Transform pos: -13.5,2.5 parent: 2 - - uid: 13866 + - uid: 13979 components: - type: Transform pos: -13.5,3.5 parent: 2 - - uid: 13867 + - uid: 13980 components: - type: Transform pos: -13.5,4.5 parent: 2 - - uid: 13868 + - uid: 13981 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 13869 + - uid: 13982 components: - type: Transform pos: -13.5,7.5 parent: 2 - - uid: 13870 + - uid: 13983 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 - - uid: 13871 + - uid: 13984 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 - - uid: 13872 + - uid: 13985 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 - - uid: 13873 + - uid: 13986 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 - - uid: 13874 + - uid: 13987 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 - - uid: 13875 + - uid: 13988 components: - type: Transform pos: -19.5,-12.5 parent: 2 - - uid: 13876 + - uid: 13989 components: - type: Transform pos: -19.5,-11.5 parent: 2 - - uid: 13877 + - uid: 13990 components: - type: Transform pos: -19.5,-10.5 parent: 2 - - uid: 13878 + - uid: 13991 components: - type: Transform pos: -19.5,-9.5 parent: 2 - - uid: 13879 + - uid: 13992 components: - type: Transform pos: -19.5,-8.5 parent: 2 - - uid: 13880 + - uid: 13993 components: - type: Transform pos: -19.5,-7.5 parent: 2 - - uid: 13881 + - uid: 13994 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 - - uid: 13882 + - uid: 13995 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 - - uid: 13883 + - uid: 13996 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 - - uid: 13884 + - uid: 13997 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 - - uid: 13885 + - uid: 13998 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 - - uid: 13886 + - uid: 13999 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 - - uid: 13887 + - uid: 14000 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 - - uid: 13888 + - uid: 14001 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 - - uid: 13889 + - uid: 14002 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 - - uid: 13890 + - uid: 14003 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 - - uid: 13891 + - uid: 14004 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 - - uid: 13892 + - uid: 14005 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 - - uid: 13893 + - uid: 14006 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 - - uid: 13894 + - uid: 14007 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 - - uid: 13895 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 - - uid: 13896 + - uid: 14009 components: - type: Transform pos: -25.5,5.5 parent: 2 - - uid: 13897 + - uid: 14010 components: - type: Transform pos: -25.5,4.5 parent: 2 - - uid: 13898 + - uid: 14011 components: - type: Transform pos: -25.5,3.5 parent: 2 - - uid: 13899 + - uid: 14012 components: - type: Transform pos: -25.5,2.5 parent: 2 - - uid: 13900 + - uid: 14013 components: - type: Transform pos: -25.5,1.5 parent: 2 - - uid: 13901 + - uid: 14014 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 13902 + - uid: 14015 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 13903 + - uid: 14016 components: - type: Transform pos: -25.5,-2.5 parent: 2 - - uid: 13904 + - uid: 14017 components: - type: Transform pos: -25.5,-3.5 parent: 2 - - uid: 13905 + - uid: 14018 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 13906 + - uid: 14019 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 13907 + - uid: 14020 components: - type: Transform pos: -19.5,9.5 parent: 2 - - uid: 13908 + - uid: 14021 components: - type: Transform pos: -19.5,10.5 parent: 2 - - uid: 13909 + - uid: 14022 components: - type: Transform pos: -19.5,11.5 parent: 2 - - uid: 13910 + - uid: 14023 components: - type: Transform pos: -19.5,12.5 parent: 2 - - uid: 13911 + - uid: 14024 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 - - uid: 13912 + - uid: 14025 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 - - uid: 13913 + - uid: 14026 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 - - uid: 13914 + - uid: 14027 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 - - uid: 13915 + - uid: 14028 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 - - uid: 13916 + - uid: 14029 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 - - uid: 13917 + - uid: 14030 components: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 13918 + - uid: 14031 components: - type: Transform pos: -36.5,-8.5 parent: 2 - - uid: 13919 + - uid: 14032 components: - type: Transform pos: -36.5,-7.5 parent: 2 - - uid: 13920 + - uid: 14033 components: - type: Transform pos: -36.5,-6.5 parent: 2 - - uid: 13921 + - uid: 14034 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 - - uid: 13922 + - uid: 14035 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - - uid: 13923 + - uid: 14036 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 - - uid: 13924 + - uid: 14037 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 - - uid: 13925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 2 - - uid: 13926 + - uid: 14038 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 - - uid: 13927 + - uid: 14039 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 - - uid: 13928 + - uid: 14040 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 - - uid: 13929 + - uid: 14041 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 - - uid: 13930 + - uid: 14042 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 - - uid: 13931 + - uid: 14043 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 - - uid: 13932 + - uid: 14044 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 - - uid: 13933 + - uid: 14045 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 - - uid: 13934 + - uid: 14046 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 - - uid: 13935 + - uid: 14047 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 - - uid: 13936 + - uid: 14048 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 - - uid: 13937 + - uid: 14049 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 - - uid: 13938 + - uid: 14050 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 - - uid: 13939 + - uid: 14051 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 - - uid: 13940 + - uid: 14052 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 - - uid: 13941 + - uid: 14053 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 - - uid: 13942 + - uid: 14054 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 - - uid: 13943 + - uid: 14055 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 - - uid: 13944 + - uid: 14056 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 - - uid: 13945 + - uid: 14057 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 - - uid: 13946 + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 - - uid: 13947 + - uid: 14059 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 - - uid: 13948 + - uid: 14060 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 - - uid: 13949 + - uid: 14061 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 - - uid: 13950 + - uid: 14062 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 - - uid: 13951 + - uid: 14063 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 - - uid: 13952 + - uid: 14064 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 - - uid: 13953 + - uid: 14065 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 - - uid: 13954 + - uid: 14066 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 - - uid: 13955 + - uid: 14067 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 - - uid: 13956 + - uid: 14068 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 - - uid: 13957 + - uid: 14069 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 - - uid: 13958 + - uid: 14070 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 - - uid: 13959 + - uid: 14071 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 - - uid: 13960 + - uid: 14072 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 - - uid: 13961 + - uid: 14073 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 - - uid: 13962 + - uid: 14074 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 - - uid: 13963 + - uid: 14075 components: - type: Transform pos: -36.5,-78.5 parent: 2 - - uid: 13964 + - uid: 14076 components: - type: Transform pos: -36.5,-79.5 parent: 2 - - uid: 13965 + - uid: 14077 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 - - uid: 13966 + - uid: 14078 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 - - uid: 13967 + - uid: 14079 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 - - uid: 13968 + - uid: 14080 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 - - uid: 13969 + - uid: 14081 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 - - uid: 13970 + - uid: 14082 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 - - uid: 13971 + - uid: 14083 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 - - uid: 13972 + - uid: 14084 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 - - uid: 13973 + - uid: 14085 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 - - uid: 13974 + - uid: 14086 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 - - uid: 13975 + - uid: 14087 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 - - uid: 13976 + - uid: 14088 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 - - uid: 13977 + - uid: 14089 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 - - uid: 13978 + - uid: 14090 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 - - uid: 13979 + - uid: 14091 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,21.5 parent: 2 - - uid: 13980 + - uid: 14092 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 - - uid: 13981 + - uid: 14093 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 - - uid: 13982 + - uid: 14094 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 - - uid: 13983 + - uid: 14095 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 - - uid: 13984 + - uid: 14096 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 - - uid: 13985 + - uid: 14097 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 - - uid: 13986 + - uid: 14098 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 - - uid: 13987 + - uid: 14099 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 - - uid: 13988 + - uid: 14100 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 - - uid: 13989 + - uid: 14101 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,22.5 parent: 2 - - uid: 13990 + - uid: 14102 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,22.5 parent: 2 - - uid: 13991 + - uid: 14103 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 - - uid: 13992 + - uid: 14104 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 - - uid: 13993 + - uid: 14105 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 - - uid: 13994 + - uid: 14106 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 - - uid: 13995 + - uid: 14107 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 - - uid: 13996 + - uid: 14108 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 - - uid: 13997 + - uid: 14109 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 - - uid: 13998 + - uid: 14110 components: - type: Transform pos: -42.5,18.5 parent: 2 - - uid: 13999 + - uid: 14111 components: - type: Transform pos: -42.5,17.5 parent: 2 - - uid: 14000 + - uid: 14112 components: - type: Transform pos: -42.5,15.5 parent: 2 - - uid: 14001 + - uid: 14113 components: - type: Transform pos: -42.5,16.5 parent: 2 - - uid: 14002 + - uid: 14114 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 - - uid: 14003 + - uid: 14115 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 - - uid: 14004 + - uid: 14116 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 - - uid: 14005 + - uid: 14117 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 14006 + - uid: 14118 components: - type: Transform pos: -45.5,3.5 parent: 2 - - uid: 14007 + - uid: 14119 components: - type: Transform pos: -45.5,2.5 parent: 2 - - uid: 14008 + - uid: 14120 components: - type: Transform pos: -45.5,1.5 parent: 2 - - uid: 14009 + - uid: 14121 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 14010 + - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 - - uid: 14011 + - uid: 14123 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 - - uid: 14012 + - uid: 14124 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 - - uid: 14013 + - uid: 14125 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 - - uid: 14014 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 - - uid: 14015 + - uid: 14127 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 - - uid: 14016 + - uid: 14128 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 - - uid: 14017 + - uid: 14129 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 - - uid: 14018 + - uid: 14130 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 - - uid: 14019 + - uid: 14131 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 - - uid: 14020 + - uid: 14132 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 - - uid: 14021 + - uid: 14133 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 - - uid: 14022 + - uid: 14134 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 - - uid: 14023 + - uid: 14135 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 - - uid: 14024 + - uid: 14136 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 - - uid: 14025 + - uid: 14137 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 - - uid: 14026 + - uid: 14138 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 - - uid: 14027 + - uid: 14139 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 - - uid: 14028 + - uid: 14140 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 - - uid: 14029 + - uid: 14141 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 - - uid: 14030 + - uid: 14142 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 - - uid: 14031 + - uid: 14143 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 - - uid: 14032 + - uid: 14144 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 - - uid: 14033 + - uid: 14145 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 - - uid: 14034 + - uid: 14146 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 - - uid: 14035 + - uid: 14147 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 - - uid: 14036 + - uid: 14148 components: - type: Transform - pos: -5.5,-55.5 + rot: 3.141592653589793 rad + pos: -3.5,-26.5 parent: 2 - - uid: 14037 + - uid: 14149 components: - type: Transform - pos: -5.5,-56.5 + rot: 3.141592653589793 rad + pos: -12.5,6.5 parent: 2 - - uid: 14038 + - uid: 14150 components: - type: Transform - pos: -5.5,-57.5 + rot: 3.141592653589793 rad + pos: -12.5,7.5 parent: 2 - - uid: 14039 + - uid: 14151 components: - type: Transform - pos: -5.5,-58.5 + pos: -45.5,12.5 parent: 2 - - uid: 14040 + - uid: 14152 components: - type: Transform - pos: -5.5,-59.5 + pos: -45.5,13.5 parent: 2 - - uid: 14041 + - uid: 14153 components: - type: Transform - pos: -5.5,-60.5 + rot: 1.5707963267948966 rad + pos: -44.5,18.5 parent: 2 - - uid: 14042 + - uid: 14154 components: - type: Transform - pos: -6.5,-62.5 + rot: -1.5707963267948966 rad + pos: -39.5,23.5 parent: 2 - - uid: 14043 + - uid: 14155 components: - type: Transform - pos: -6.5,-63.5 + pos: -45.5,14.5 parent: 2 - - uid: 14044 + - uid: 14156 components: - type: Transform - pos: -6.5,-64.5 + pos: -45.5,15.5 parent: 2 - - uid: 14045 + - uid: 14157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-66.5 + pos: -45.5,16.5 parent: 2 - - uid: 14046 + - uid: 14158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-66.5 + pos: -45.5,17.5 parent: 2 - - uid: 14047 + - uid: 14159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-65.5 + rot: -1.5707963267948966 rad + pos: -43.5,18.5 parent: 2 - - uid: 14048 + - uid: 14160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-64.5 + pos: -19.5,24.5 parent: 2 - - uid: 14049 + - uid: 14161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-63.5 + pos: -19.5,25.5 parent: 2 - - uid: 14050 + - uid: 14162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-62.5 + pos: -19.5,26.5 parent: 2 - - uid: 14051 + - uid: 14163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-61.5 + pos: -19.5,27.5 parent: 2 - - uid: 14052 + - uid: 14164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-61.5 + pos: -19.5,28.5 parent: 2 - - uid: 14053 + - uid: 14165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-61.5 + rot: 1.5707963267948966 rad + pos: -18.5,29.5 parent: 2 - - uid: 14054 + - uid: 14166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 + rot: 1.5707963267948966 rad + pos: -17.5,29.5 parent: 2 - - uid: 14055 + - uid: 14167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-61.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - uid: 14056 + - uid: 14168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-61.5 + rot: 3.141592653589793 rad + pos: -15.5,30.5 parent: 2 - - uid: 14057 + - uid: 14169 components: - type: Transform - pos: 2.5,-62.5 + rot: 3.141592653589793 rad + pos: -15.5,31.5 parent: 2 - - uid: 14058 + - uid: 14170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 + rot: 3.141592653589793 rad + pos: -15.5,32.5 parent: 2 - - uid: 14059 + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 + rot: 3.141592653589793 rad + pos: -15.5,33.5 parent: 2 - - uid: 14060 + - uid: 14172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-61.5 + rot: 3.141592653589793 rad + pos: -15.5,34.5 parent: 2 - - uid: 14061 + - uid: 14173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-61.5 + rot: 3.141592653589793 rad + pos: -15.5,35.5 parent: 2 - - uid: 14062 + - uid: 14174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 + rot: 3.141592653589793 rad + pos: -15.5,36.5 parent: 2 - - uid: 14063 + - uid: 14175 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-61.5 + pos: -16.5,37.5 parent: 2 - - uid: 14064 + - uid: 14176 components: - type: Transform - pos: -13.5,-62.5 + pos: -15.5,38.5 parent: 2 - - uid: 14065 + - uid: 14177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-63.5 + pos: -15.5,39.5 parent: 2 - - uid: 14066 + - uid: 14178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-64.5 + pos: -15.5,40.5 parent: 2 - - uid: 14067 + - uid: 14179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-65.5 + pos: -15.5,41.5 parent: 2 - - uid: 14068 + - uid: 14180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-66.5 + pos: -15.5,42.5 parent: 2 - - uid: 14069 + - uid: 14181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-67.5 + pos: -15.5,43.5 parent: 2 - - uid: 14070 + - uid: 14182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-67.5 + rot: -1.5707963267948966 rad + pos: -14.5,44.5 parent: 2 - - uid: 14071 + - uid: 14183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-26.5 + rot: -1.5707963267948966 rad + pos: -13.5,44.5 parent: 2 - - uid: 14072 + - uid: 14184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,6.5 + rot: -1.5707963267948966 rad + pos: -12.5,44.5 parent: 2 - - uid: 14073 + - uid: 14185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,7.5 + rot: -1.5707963267948966 rad + pos: -11.5,44.5 parent: 2 - - uid: 14074 + - uid: 14186 components: - type: Transform - pos: -45.5,12.5 + rot: -1.5707963267948966 rad + pos: -16.5,44.5 parent: 2 - - uid: 14075 + - uid: 14187 components: - type: Transform - pos: -45.5,13.5 + rot: 3.141592653589793 rad + pos: -17.5,45.5 parent: 2 - - uid: 14076 + - uid: 14188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 + rot: 3.141592653589793 rad + pos: -17.5,46.5 parent: 2 - - uid: 14077 + - uid: 14189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,23.5 + rot: 3.141592653589793 rad + pos: -17.5,47.5 parent: 2 - - uid: 14078 + - uid: 14190 components: - type: Transform - pos: -45.5,14.5 + rot: 3.141592653589793 rad + pos: -17.5,48.5 parent: 2 - - uid: 14079 + - uid: 14191 components: - type: Transform - pos: -45.5,15.5 + rot: 3.141592653589793 rad + pos: -17.5,49.5 parent: 2 - - uid: 14080 + - uid: 14192 components: - type: Transform - pos: -45.5,16.5 + rot: -1.5707963267948966 rad + pos: -5.5,44.5 parent: 2 - - uid: 14081 + - uid: 14193 components: - type: Transform - pos: -45.5,17.5 + rot: -1.5707963267948966 rad + pos: -6.5,44.5 parent: 2 - - uid: 14082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,18.5 - parent: 2 - - uid: 14083 - components: - - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 14084 - components: - - type: Transform - pos: -19.5,25.5 - parent: 2 - - uid: 14085 - components: - - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 14086 - components: - - type: Transform - pos: -19.5,27.5 - parent: 2 - - uid: 14087 - components: - - type: Transform - pos: -19.5,28.5 - parent: 2 - - uid: 14088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,29.5 - parent: 2 - - uid: 14089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,29.5 - parent: 2 - - uid: 14090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 2 - - uid: 14091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 2 - - uid: 14092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 2 - - uid: 14093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,32.5 - parent: 2 - - uid: 14094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,33.5 - parent: 2 - - uid: 14095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 2 - - uid: 14096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,35.5 - parent: 2 - - uid: 14097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 2 - - uid: 14098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 2 - - uid: 14099 - components: - - type: Transform - pos: -15.5,38.5 - parent: 2 - - uid: 14100 - components: - - type: Transform - pos: -15.5,39.5 - parent: 2 - - uid: 14101 - components: - - type: Transform - pos: -15.5,40.5 - parent: 2 - - uid: 14102 - components: - - type: Transform - pos: -15.5,41.5 - parent: 2 - - uid: 14103 - components: - - type: Transform - pos: -15.5,42.5 - parent: 2 - - uid: 14104 - components: - - type: Transform - pos: -15.5,43.5 - parent: 2 - - uid: 14105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,44.5 - parent: 2 - - uid: 14106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,44.5 - parent: 2 - - uid: 14107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,44.5 - parent: 2 - - uid: 14108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,44.5 - parent: 2 - - uid: 14109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 2 - - uid: 14110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,45.5 - parent: 2 - - uid: 14111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,46.5 - parent: 2 - - uid: 14112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,47.5 - parent: 2 - - uid: 14113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,48.5 - parent: 2 - - uid: 14114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,49.5 - parent: 2 - - uid: 14115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,44.5 - parent: 2 - - uid: 14116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,44.5 - parent: 2 - - uid: 14117 + - uid: 14194 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 - - uid: 14118 + - uid: 14195 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 - - uid: 14119 + - uid: 14196 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 - - uid: 14120 + - uid: 14197 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 - - uid: 14121 + - uid: 14198 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 - - uid: 14122 + - uid: 14199 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 - - uid: 14123 + - uid: 14200 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 - - uid: 14124 + - uid: 14201 components: - type: Transform pos: -37.5,-94.5 parent: 2 - - uid: 14125 + - uid: 14202 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 - - uid: 14126 + - uid: 14203 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 - - uid: 14127 + - uid: 14204 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 - - uid: 14128 + - uid: 14205 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 - - uid: 14129 + - uid: 14206 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 - - uid: 14130 + - uid: 14207 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 - - uid: 14131 + - uid: 14208 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 - - uid: 14132 + - uid: 14209 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 - - uid: 14133 + - uid: 14210 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 - - uid: 14134 + - uid: 14211 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 - - uid: 14135 + - uid: 14212 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 - - uid: 14136 + - uid: 14213 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 - - uid: 14137 + - uid: 14214 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 - - uid: 14138 + - uid: 14215 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 - - uid: 14139 + - uid: 14216 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 - - uid: 14140 + - uid: 14217 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 - - uid: 14141 + - uid: 14218 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 - - uid: 14142 + - uid: 14219 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 - - uid: 14143 + - uid: 14220 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 - - uid: 14144 + - uid: 14221 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 - - uid: 14145 + - uid: 14222 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 - - uid: 14146 + - uid: 14223 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 - - uid: 14147 + - uid: 14224 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 - - uid: 14148 + - uid: 14225 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 - - uid: 14149 + - uid: 14226 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 - - uid: 14150 + - uid: 14227 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 - - uid: 14151 + - uid: 14228 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 - - uid: 14152 + - uid: 14229 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 - - uid: 14153 + - uid: 14230 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 - - uid: 14154 + - uid: 14231 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 - - uid: 14155 + - uid: 14232 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 - - uid: 14156 + - uid: 14233 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 - - uid: 14157 + - uid: 14234 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 - - uid: 14158 + - uid: 14235 components: - type: Transform pos: -42.5,14.5 parent: 2 - - uid: 14159 + - uid: 14236 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 - - uid: 14160 + - uid: 14237 components: - type: Transform pos: 30.5,-81.5 parent: 2 - - uid: 14161 + - uid: 14238 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 - - uid: 14162 + - uid: 14239 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 - - uid: 14163 + - uid: 14240 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 - - uid: 14164 + - uid: 14241 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 - - uid: 14165 + - uid: 14242 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - - uid: 14166 + - uid: 14243 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 - - uid: 14167 + - uid: 14244 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 - - uid: 14168 + - uid: 14245 components: - type: Transform pos: -12.5,-13.5 parent: 2 - - uid: 14169 + - uid: 14246 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 - - uid: 14170 + - uid: 14247 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 - - uid: 14171 + - uid: 14248 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 - - uid: 14172 + - uid: 14249 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 - - uid: 14173 + - uid: 14250 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 - - uid: 14174 + - uid: 14251 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 - - uid: 14175 + - uid: 14252 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 - - uid: 14176 + - uid: 14253 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 - - uid: 14177 + - uid: 14254 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 - - uid: 14178 + - uid: 14255 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 - - uid: 14179 + - uid: 14256 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 - - uid: 14180 + - uid: 14257 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 - - uid: 14181 + - uid: 14258 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 - - uid: 14182 + - uid: 14259 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 - - uid: 14183 + - uid: 14260 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 - - uid: 14184 + - uid: 14261 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 - - uid: 14185 + - uid: 14262 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 - - uid: 14186 + - uid: 14263 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 - - uid: 14187 + - uid: 14264 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 - - uid: 14188 + - uid: 14265 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 - - uid: 14189 + - uid: 14266 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 - - uid: 14190 + - uid: 14267 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 - - uid: 14191 + - uid: 14268 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 - - uid: 14192 + - uid: 14269 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 - - uid: 14193 + - uid: 14270 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 - - uid: 14194 + - uid: 14271 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 - - uid: 14195 + - uid: 14272 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 - - uid: 14196 + - uid: 14273 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 - - uid: 14197 + - uid: 14274 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 - - uid: 14198 + - uid: 14275 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 - - uid: 14199 + - uid: 14276 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 - - uid: 14200 + - uid: 14277 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 - - uid: 14201 + - uid: 14278 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 - - uid: 14202 + - uid: 14279 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 - - uid: 14203 + - uid: 14280 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 - - uid: 14204 + - uid: 14281 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 - - uid: 14205 + - uid: 14282 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 - - uid: 14206 + - uid: 14283 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 - - uid: 14207 + - uid: 14284 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 - - uid: 14208 + - uid: 14285 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 - - uid: 14209 + - uid: 14286 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 - - uid: 14210 + - uid: 14287 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 - - uid: 14211 + - uid: 14288 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 - - uid: 14212 + - uid: 14289 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 - - uid: 14213 + - uid: 14290 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 - - uid: 14214 + - uid: 14291 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 - - uid: 14215 + - uid: 14292 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 - - uid: 14216 + - uid: 14293 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 - - uid: 14217 + - uid: 14294 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 - - uid: 14218 + - uid: 14295 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 - - uid: 14219 + - uid: 14296 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 - - uid: 14220 + - uid: 14297 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 - - uid: 14221 + - uid: 14298 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 - - uid: 14222 + - uid: 14299 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 - - uid: 14223 + - uid: 14300 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 - - uid: 14224 + - uid: 14301 components: - type: Transform pos: -39.5,20.5 parent: 2 - - uid: 14225 + - uid: 14302 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,21.5 parent: 2 - - uid: 14226 + - uid: 14303 components: - type: Transform pos: -32.5,20.5 parent: 2 - - uid: 14227 + - uid: 14304 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 - - uid: 14228 + - uid: 14305 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 - - uid: 14229 + - uid: 14306 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 - - uid: 14230 + - uid: 14307 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 - - uid: 14231 + - uid: 14308 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 - - uid: 14232 + - uid: 14309 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 - - uid: 14233 + - uid: 14310 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 - - uid: 14234 + - uid: 14311 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 - - uid: 14235 + - uid: 14312 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 - - uid: 14236 + - uid: 14313 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 - - uid: 14237 + - uid: 14314 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 - - uid: 14238 + - uid: 14315 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 - - uid: 14239 + - uid: 14316 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 - - uid: 14240 + - uid: 14317 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 - - uid: 14241 + - uid: 14318 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 - - uid: 14242 + - uid: 14319 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 - - uid: 14243 + - uid: 14320 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 - - uid: 14244 + - uid: 14321 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 - - uid: 14245 + - uid: 14322 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 - - uid: 14246 + - uid: 14323 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 - - uid: 14247 + - uid: 14324 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 - - uid: 14248 + - uid: 14325 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 - - uid: 14249 + - uid: 14326 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 - - uid: 14250 + - uid: 14327 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 - - uid: 14251 + - uid: 14328 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 - - uid: 14252 + - uid: 14329 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 - - uid: 14253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,0.5 - parent: 2 - - uid: 14254 + - uid: 14330 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 - - uid: 14255 + - uid: 14331 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 - - uid: 14256 + - uid: 14332 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 14257 + - uid: 14333 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - uid: 14258 + - uid: 14334 components: - type: Transform pos: -26.5,-2.5 parent: 2 - - uid: 14259 + - uid: 14335 components: - type: Transform pos: -26.5,-3.5 parent: 2 - - uid: 14260 + - uid: 14336 components: - type: Transform pos: -26.5,-4.5 parent: 2 - - uid: 14261 + - uid: 14337 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 - - uid: 14262 + - uid: 14338 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 - - uid: 14263 + - uid: 14339 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 - - uid: 14264 + - uid: 14340 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 - - uid: 14265 + - uid: 14341 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 - - uid: 14266 + - uid: 14342 components: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 14267 + - uid: 14343 components: - type: Transform pos: -20.5,-7.5 parent: 2 - - uid: 14268 + - uid: 14344 components: - type: Transform pos: -20.5,-8.5 parent: 2 - - uid: 14269 + - uid: 14345 components: - type: Transform pos: -20.5,-9.5 parent: 2 - - uid: 14270 + - uid: 14346 components: - type: Transform pos: -20.5,-10.5 parent: 2 - - uid: 14271 + - uid: 14347 components: - type: Transform pos: -20.5,-11.5 parent: 2 - - uid: 14272 + - uid: 14348 components: - type: Transform pos: -20.5,-12.5 parent: 2 - - uid: 14273 + - uid: 14349 components: - type: Transform pos: -20.5,-13.5 parent: 2 - - uid: 14274 + - uid: 14350 components: - type: Transform pos: -20.5,-14.5 parent: 2 - - uid: 14275 + - uid: 14351 components: - type: Transform pos: -20.5,-15.5 parent: 2 - - uid: 14276 + - uid: 14352 components: - type: Transform pos: -20.5,-16.5 parent: 2 - - uid: 14277 + - uid: 14353 components: - type: Transform pos: -20.5,-17.5 parent: 2 - - uid: 14278 + - uid: 14354 components: - type: Transform pos: -20.5,-18.5 parent: 2 - - uid: 14279 + - uid: 14355 components: - type: Transform pos: -20.5,-19.5 parent: 2 - - uid: 14280 + - uid: 14356 components: - type: Transform pos: -20.5,-20.5 parent: 2 - - uid: 14281 + - uid: 14357 components: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 14282 + - uid: 14358 components: - type: Transform pos: -20.5,-22.5 parent: 2 - - uid: 14283 + - uid: 14359 components: - type: Transform pos: -20.5,-23.5 parent: 2 - - uid: 14284 + - uid: 14360 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 14285 + - uid: 14361 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 - - uid: 14286 + - uid: 14362 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 - - uid: 14287 + - uid: 14363 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 - - uid: 14288 + - uid: 14364 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 - - uid: 14289 + - uid: 14365 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 - - uid: 14290 + - uid: 14366 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 - - uid: 14291 + - uid: 14367 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 - - uid: 14292 + - uid: 14368 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 - - uid: 14293 + - uid: 14369 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 - - uid: 14294 + - uid: 14370 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 - - uid: 14295 + - uid: 14371 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 - - uid: 14296 + - uid: 14372 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 - - uid: 14297 + - uid: 14373 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 - - uid: 14298 + - uid: 14374 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - - uid: 14299 + - uid: 14375 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 - - uid: 14300 + - uid: 14376 components: - type: Transform pos: 30.5,-74.5 parent: 2 - - uid: 14301 + - uid: 14377 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 - - uid: 14302 + - uid: 14378 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 - - uid: 14303 + - uid: 14379 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 - - uid: 14304 + - uid: 14380 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 - - uid: 14305 + - uid: 14381 components: - type: Transform pos: 30.5,-76.5 parent: 2 - - uid: 14306 + - uid: 14382 components: - type: Transform pos: 30.5,-75.5 parent: 2 - - uid: 14307 + - uid: 14383 components: - type: Transform pos: 30.5,-82.5 parent: 2 - - uid: 14308 + - uid: 14384 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 - - uid: 14309 + - uid: 14385 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 - - uid: 14310 + - uid: 14386 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 - - uid: 14311 + - uid: 14387 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 - - uid: 14312 + - uid: 14388 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 - - uid: 14313 + - uid: 14389 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 - - uid: 14314 + - uid: 14390 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 - - uid: 14315 + - uid: 14391 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 - - uid: 14316 + - uid: 14392 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 - - uid: 14317 + - uid: 14393 components: - type: Transform pos: -23.5,-81.5 parent: 2 - - uid: 14318 + - uid: 14394 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-41.5 parent: 2 - - uid: 14319 + - uid: 14395 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 - - uid: 14320 + - uid: 14396 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 - - uid: 14321 + - uid: 14397 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-41.5 parent: 2 - - uid: 14322 + - uid: 14398 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-41.5 parent: 2 - - uid: 14323 + - uid: 14399 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-41.5 parent: 2 - - uid: 14324 + - uid: 14400 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-41.5 parent: 2 - - uid: 14325 + - uid: 14401 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-41.5 parent: 2 - - uid: 14326 + - uid: 14402 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 2 - - uid: 14327 + - uid: 14403 components: - type: Transform pos: -43.5,-36.5 parent: 2 - - uid: 14328 + - uid: 14404 components: - type: Transform pos: -43.5,-37.5 parent: 2 - - uid: 14329 + - uid: 14405 components: - type: Transform pos: 3.5,-3.5 parent: 2 - - uid: 14330 + - uid: 14406 components: - type: Transform pos: 3.5,-2.5 parent: 2 - - uid: 14331 + - uid: 14407 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 14332 + - uid: 14408 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 - - uid: 14333 + - uid: 14409 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,22.5 parent: 2 - - uid: 14334 + - uid: 14410 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,21.5 parent: 2 - - uid: 14335 + - uid: 14411 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,22.5 parent: 2 - - uid: 14336 + - uid: 14412 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,21.5 parent: 2 - - uid: 14337 + - uid: 14413 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,21.5 parent: 2 -- proto: DisposalRouterFlipped - entities: - - uid: 14338 + - uid: 14414 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-25.5 + pos: -12.5,-52.5 parent: 2 - - uid: 14339 + - uid: 14415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 2 + - uid: 14418 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-53.5 + pos: -2.5,-55.5 parent: 2 - - uid: 14340 + - uid: 14419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-55.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-55.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-67.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-67.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-66.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-64.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-63.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-62.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-61.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-60.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-59.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-58.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-57.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-56.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-54.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-54.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-54.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 +- proto: DisposalRouterFlipped + entities: + - uid: 14455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 2 + - uid: 14456 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 14341 + - uid: 14457 components: - type: Transform pos: -19.5,8.5 parent: 2 - proto: DisposalTrunk entities: - - uid: 14342 + - uid: 14458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 14459 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 - - uid: 14343 + - uid: 14460 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 14344 + - uid: 14461 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 - - uid: 14345 + - uid: 14462 components: - type: Transform pos: 52.5,3.5 parent: 2 - - uid: 14346 + - uid: 14463 components: - type: Transform pos: -9.5,5.5 parent: 2 - - uid: 14347 + - uid: 14464 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 - - uid: 14348 + - uid: 14465 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 - - uid: 14349 + - uid: 14466 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 14350 + - uid: 14467 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 - - uid: 14351 + - uid: 14468 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 14352 + - uid: 14469 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-18.5 parent: 2 - - uid: 14353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-59.5 - parent: 2 - - uid: 14354 + - uid: 14470 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 14355 + - uid: 14471 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-73.5 parent: 2 - - uid: 14356 + - uid: 14472 components: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 14357 + - uid: 14473 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 14358 + - uid: 14474 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 - - uid: 14359 + - uid: 14475 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 2 - - uid: 14360 + - uid: 14476 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 - - uid: 14361 + - uid: 14477 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 - - uid: 14362 + - uid: 14478 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 - - uid: 14363 + - uid: 14479 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 - - uid: 14364 + - uid: 14480 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-54.5 parent: 2 - - uid: 14365 + - uid: 14481 components: - type: Transform pos: -10.5,-23.5 parent: 2 - - uid: 14366 + - uid: 14482 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 - - uid: 14367 + - uid: 14483 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 14368 + - uid: 14484 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 2 - - uid: 14369 + - uid: 14485 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 - - uid: 14370 + - uid: 14486 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-47.5 parent: 2 - - uid: 14371 + - uid: 14487 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 14372 + - uid: 14488 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-49.5 parent: 2 - - uid: 14373 + - uid: 14489 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 - - uid: 14374 + - uid: 14490 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 - - uid: 14375 + - uid: 14491 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-60.5 parent: 2 - - uid: 14376 + - uid: 14492 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 - - uid: 14377 + - uid: 14493 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-62.5 parent: 2 - - uid: 14378 + - uid: 14494 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 - - uid: 14379 + - uid: 14495 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-74.5 parent: 2 - - uid: 14380 + - uid: 14496 components: - type: Transform pos: -38.5,-4.5 parent: 2 - - uid: 14381 + - uid: 14497 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-75.5 parent: 2 - - uid: 14382 + - uid: 14498 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-80.5 parent: 2 - - uid: 14383 + - uid: 14499 components: - type: Transform pos: -22.5,25.5 parent: 2 - - uid: 14384 + - uid: 14500 components: - type: Transform pos: -42.5,27.5 parent: 2 - - uid: 14385 + - uid: 14501 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 - - uid: 14386 + - uid: 14502 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 - - uid: 14387 + - uid: 14503 components: - type: Transform pos: 20.5,-23.5 parent: 2 - - uid: 14388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-66.5 - parent: 2 - - uid: 14389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-67.5 - parent: 2 - - uid: 14390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-63.5 - parent: 2 - - uid: 14391 + - uid: 14504 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-67.5 parent: 2 - - uid: 14392 + - uid: 14505 components: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 14393 + - uid: 14506 components: - type: Transform pos: 20.5,-39.5 parent: 2 - - uid: 14394 + - uid: 14507 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,37.5 parent: 2 - - uid: 14395 + - uid: 14508 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,43.5 parent: 2 - - uid: 14396 + - uid: 14509 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,49.5 parent: 2 - - uid: 14397 + - uid: 14510 components: - type: Transform pos: -37.5,-93.5 parent: 2 - - uid: 14398 + - uid: 14511 components: - type: Transform pos: 75.5,-32.5 parent: 2 - - uid: 14399 + - uid: 14512 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 - - uid: 14400 + - uid: 14513 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 - - uid: 14401 + - uid: 14514 components: - type: Transform pos: -10.5,-12.5 parent: 2 - - uid: 14402 + - uid: 14515 components: - type: Transform pos: -12.5,-12.5 parent: 2 - - uid: 14403 + - uid: 14516 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 - - uid: 14404 + - uid: 14517 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,18.5 parent: 2 - - uid: 14405 + - uid: 14518 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 - - uid: 14406 + - uid: 14519 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-41.5 parent: 2 - - uid: 14407 + - uid: 14520 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-42.5 parent: 2 - - uid: 14408 + - uid: 14521 components: - type: Transform pos: -43.5,-35.5 parent: 2 - - uid: 14409 + - uid: 14522 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-38.5 parent: 2 - - uid: 14410 + - uid: 14523 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 2 + - uid: 14524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-52.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-56.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-62.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 - proto: DisposalUnit entities: - - uid: 14411 + - uid: 14530 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 14412 + - uid: 14531 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 14413 + - uid: 14532 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 14414 + - uid: 14533 components: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 14415 + - uid: 14534 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 14416 + - uid: 14535 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 14417 + - uid: 14536 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 14418 + - uid: 14537 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 14419 + - uid: 14538 components: - type: Transform pos: 37.5,-18.5 parent: 2 - - uid: 14420 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 2 - - uid: 14421 + - uid: 14539 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 14422 + - uid: 14540 components: - type: Transform pos: -10.5,-23.5 parent: 2 - - uid: 14423 + - uid: 14541 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 14424 + - uid: 14542 components: - type: Transform pos: -17.5,-73.5 parent: 2 - - uid: 14425 + - uid: 14543 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 14426 + - uid: 14544 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 14427 + - uid: 14545 components: - type: Transform pos: -9.5,5.5 parent: 2 - - uid: 14428 + - uid: 14546 components: - type: Transform pos: -21.5,-84.5 parent: 2 - - uid: 14429 + - uid: 14547 components: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 14430 + - uid: 14548 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 14431 + - uid: 14549 components: - type: Transform pos: 20.5,-23.5 parent: 2 - - uid: 14432 + - uid: 14550 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 14433 + - uid: 14551 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 14434 + - uid: 14552 components: - type: Transform pos: 14.5,5.5 parent: 2 - - uid: 14435 + - uid: 14553 components: - type: Transform pos: -10.5,-12.5 parent: 2 - type: Timer - - uid: 14436 + - uid: 14554 components: - type: MetaData name: cargo - type: Transform pos: -12.5,-12.5 parent: 2 - - uid: 14437 + - uid: 14555 components: - type: Transform pos: 14.5,19.5 parent: 2 - - uid: 14438 + - uid: 14556 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 14439 + - uid: 14557 components: - type: Transform pos: 52.5,3.5 parent: 2 - - uid: 14440 + - uid: 14558 components: - type: Transform pos: 54.5,-14.5 parent: 2 - - uid: 14441 + - uid: 14559 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 14442 + - uid: 14560 components: - type: Transform pos: 51.5,-47.5 parent: 2 - - uid: 14443 + - uid: 14561 components: - type: Transform pos: 67.5,-49.5 parent: 2 - - uid: 14444 + - uid: 14562 components: - type: Transform pos: 49.5,-60.5 parent: 2 - - uid: 14445 + - uid: 14563 components: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 14446 + - uid: 14564 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 14447 + - uid: 14565 components: - type: Transform pos: -22.5,-15.5 parent: 2 - - uid: 14448 + - uid: 14566 components: - type: Transform pos: 29.5,-62.5 parent: 2 - - uid: 14449 + - uid: 14567 components: - type: Transform pos: 24.5,-74.5 parent: 2 - - uid: 14450 + - uid: 14568 components: - type: Transform pos: 27.5,-86.5 parent: 2 - - uid: 14451 + - uid: 14569 components: - type: Transform pos: -27.5,6.5 parent: 2 - - uid: 14452 + - uid: 14570 components: - type: Transform pos: -38.5,-4.5 parent: 2 - - uid: 14453 + - uid: 14571 components: - type: MetaData name: suspicious disposal unit - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 14454 + - uid: 14572 components: - type: Transform pos: -22.5,25.5 parent: 2 - - uid: 14455 + - uid: 14573 components: - type: Transform pos: -42.5,27.5 parent: 2 - - uid: 14456 + - uid: 14574 components: - type: Transform pos: -43.5,5.5 parent: 2 - - uid: 14457 - components: - - type: Transform - pos: -9.5,-66.5 - parent: 2 - - uid: 14458 + - uid: 14575 components: - type: Transform pos: -16.5,-67.5 parent: 2 - - uid: 14459 - components: - - type: Transform - pos: -3.5,-67.5 - parent: 2 - - uid: 14460 - components: - - type: Transform - pos: 2.5,-63.5 - parent: 2 - - uid: 14461 + - uid: 14576 components: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 14462 + - uid: 14577 components: - type: Transform pos: 20.5,-39.5 parent: 2 - - uid: 14463 + - uid: 14578 components: - type: Transform pos: -17.5,37.5 parent: 2 - - uid: 14464 + - uid: 14579 components: - type: Transform pos: -4.5,43.5 parent: 2 - - uid: 14465 + - uid: 14580 components: - type: Transform pos: -13.5,49.5 parent: 2 - - uid: 14466 + - uid: 14581 components: - type: Transform pos: -40.5,18.5 parent: 2 - - uid: 14467 + - uid: 14582 components: - type: Transform pos: 75.5,-32.5 parent: 2 - - uid: 14468 + - uid: 14583 components: - type: Transform pos: -54.5,-64.5 parent: 2 - - uid: 14469 + - uid: 14584 components: - type: Transform pos: -52.5,-64.5 parent: 2 - - uid: 14470 + - uid: 14585 components: - type: Transform pos: -36.5,-80.5 parent: 2 - - uid: 14471 + - uid: 14586 components: - type: Transform pos: -66.5,-42.5 parent: 2 - - uid: 14472 + - uid: 14587 components: - type: Transform pos: -42.5,-38.5 parent: 2 + - uid: 14588 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 + - uid: 14589 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 14590 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 - proto: DisposalYJunction entities: - - uid: 14473 + - uid: 14591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-55.5 + parent: 2 + - uid: 14592 components: - type: Transform pos: 25.5,17.5 parent: 2 - - uid: 14474 + - uid: 14593 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 2 - - uid: 14475 + - uid: 14594 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 - - uid: 14476 + - uid: 14595 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 - - uid: 14477 + - uid: 14596 components: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 14478 + - uid: 14597 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 - - uid: 14479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-53.5 - parent: 2 - - uid: 14480 + - uid: 14598 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 - - uid: 14481 + - uid: 14599 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 - - uid: 14482 + - uid: 14600 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,1.5 parent: 2 - - uid: 14483 + - uid: 14601 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-27.5 parent: 2 - - uid: 14484 + - uid: 14602 components: - type: Transform pos: -19.5,-6.5 parent: 2 - - uid: 14485 + - uid: 14603 components: - type: Transform pos: -25.5,6.5 parent: 2 - - uid: 14486 + - uid: 14604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-61.5 + pos: -15.5,44.5 parent: 2 - - uid: 14487 + - uid: 14605 components: - type: Transform - pos: -15.5,44.5 + rot: 3.141592653589793 rad + pos: -1.5,-55.5 parent: 2 - proto: DogBed entities: - - uid: 14488 + - uid: 14606 components: - type: Transform pos: 3.5,-7.5 parent: 2 - - uid: 14489 + - uid: 14607 components: - type: Transform pos: 62.5,51.5 parent: 2 - - uid: 14490 + - uid: 14608 components: - type: MetaData name: fox bed - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 14491 + - uid: 14609 components: - type: MetaData name: racoon bed - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 14492 + - uid: 14610 components: - type: Transform pos: 26.5,23.5 parent: 2 - proto: DonkpocketBoxSpawner entities: - - uid: 14493 + - uid: 14611 components: - type: Transform pos: -9.5,41.5 parent: 2 - - uid: 14494 + - uid: 14612 components: - type: Transform pos: -10.5,41.5 parent: 2 - proto: DoorElectronics entities: - - uid: 14495 + - uid: 14613 components: - type: Transform pos: -43.560223,-27.412916 parent: 2 - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 14496 + - uid: 14614 components: - type: Transform pos: -36.45104,-33.42174 parent: 2 - proto: Dresser entities: - - uid: 14497 + - uid: 14615 components: - type: Transform pos: 22.5,14.5 parent: 2 - - uid: 14498 + - uid: 14616 components: - type: Transform pos: -26.5,46.5 parent: 2 - - uid: 14499 + - uid: 14617 components: - type: Transform pos: -42.5,11.5 parent: 2 - - uid: 14500 + - uid: 14618 components: - type: Transform pos: -51.5,15.5 parent: 2 - - uid: 14501 + - uid: 14619 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 14502 + - uid: 14620 components: - type: Transform pos: -31.5,12.5 parent: 2 - - uid: 14503 + - uid: 14621 components: - type: Transform pos: -24.5,31.5 parent: 2 - - uid: 14504 + - uid: 14622 components: - type: Transform pos: 54.5,32.5 parent: 2 - - uid: 14505 + - uid: 14623 components: - type: Transform pos: -19.5,35.5 parent: 2 - - uid: 14506 + - uid: 14624 components: - type: Transform pos: -10.5,32.5 parent: 2 - - uid: 14507 + - uid: 14625 components: - type: Transform pos: -20.5,39.5 parent: 2 - - uid: 14508 + - uid: 14626 components: - type: Transform pos: 11.5,-36.5 parent: 2 - - uid: 14509 +- proto: DresserCaptainFilled + entities: + - uid: 14627 components: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 14510 +- proto: DresserChiefEngineerFilled + entities: + - uid: 14628 components: - type: Transform pos: -37.5,-20.5 parent: 2 - - uid: 14511 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 14629 components: - type: Transform - pos: -17.5,-54.5 + pos: -18.5,-51.5 parent: 2 - - uid: 14512 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 14630 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 14513 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 14631 components: - type: Transform pos: 7.5,22.5 parent: 2 - - uid: 14514 +- proto: DresserQuarterMasterFilled + entities: + - uid: 14632 components: - type: Transform pos: -32.5,31.5 parent: 2 - - uid: 14515 +- proto: DresserResearchDirectorFilled + entities: + - uid: 14633 components: - type: Transform pos: 65.5,-51.5 parent: 2 - proto: Drill entities: - - uid: 14516 + - uid: 14634 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.0942874,-100.40229 parent: 2 + - uid: 14635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.589858,-52.430984 + parent: 2 - proto: DrinkAntifreeze entities: - - uid: 14517 + - uid: 14636 components: - type: Transform pos: -25.524792,55.598667 parent: 2 - - uid: 14518 + - uid: 14637 components: - type: Transform pos: 40.348606,63.75022 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 14519 + - uid: 14638 components: - type: Transform pos: 16.20447,-64.18169 parent: 2 - - uid: 14520 + - uid: 14639 components: - type: Transform pos: 16.48572,-64.21294 parent: 2 - - uid: 14521 + - uid: 14640 components: - type: Transform pos: -56.96358,-25.301325 parent: 2 - proto: DrinkBlackRussianGlass entities: - - uid: 14522 + - uid: 14641 components: - type: Transform pos: 65.5063,-0.9249393 parent: 2 - proto: DrinkBloodyMaryGlass entities: - - uid: 14523 + - uid: 14642 components: - type: Transform pos: 61.61879,-53.35289 parent: 2 - proto: DrinkBlueCuracaoGlass entities: - - uid: 14524 + - uid: 14643 components: - type: Transform pos: 38.58298,63.859596 parent: 2 - proto: DrinkBottleOfNothingFull entities: - - uid: 14525 + - uid: 14644 components: - type: Transform pos: -28.300186,46.612503 parent: 2 - proto: DrinkBottleWhiskey entities: - - uid: 14526 + - uid: 14645 components: - type: Transform pos: -10.628431,-32.17821 parent: 2 - proto: DrinkBottleWine entities: - - uid: 14527 + - uid: 14646 components: - type: Transform pos: -37.38547,16.742819 parent: 2 - proto: DrinkCarrotJuice entities: - - uid: 14528 + - uid: 14647 components: - type: Transform pos: -20.541529,49.622677 parent: 2 - proto: DrinkDetFlask entities: - - uid: 14529 + - uid: 14648 components: - type: Transform pos: 20.044777,-12.206265 parent: 2 - proto: DrinkDoctorsDelightGlass entities: - - uid: 14530 + - uid: 14649 components: - type: Transform pos: -18.294592,-56.251144 parent: 2 - proto: DrinkDriestMartiniGlass entities: - - uid: 14531 + - uid: 14650 components: - type: Transform pos: 39.42673,62.828346 parent: 2 - proto: DrinkGildlagerBottleFull entities: - - uid: 14532 + - uid: 14651 components: - type: Transform pos: 47.41234,-30.196692 parent: 2 - proto: DrinkGinGlass entities: - - uid: 14533 + - uid: 14652 components: - type: Transform pos: 39.55173,64.4221 parent: 2 - proto: DrinkGlass entities: - - uid: 14534 + - uid: 14653 components: - type: Transform pos: 37.335964,-5.423753 parent: 2 - - uid: 14535 + - uid: 14654 components: - type: Transform pos: 42.510113,-48.4107 parent: 2 - - uid: 14536 + - uid: 14655 components: - type: Transform pos: 42.510113,-48.4107 parent: 2 - - uid: 14537 + - uid: 14656 components: - type: Transform pos: -29.533712,-69.34898 parent: 2 - proto: DrinkGoldenCup entities: - - uid: 14538 + - uid: 14657 components: - type: Transform pos: 48.422813,-25.09548 parent: 2 - proto: DrinkGrapeJuice entities: - - uid: 14539 + - uid: 14658 components: - type: Transform pos: -21.385279,49.66955 parent: 2 - proto: DrinkGrogGlass entities: - - uid: 14540 + - uid: 14659 components: - type: Transform pos: -42.795,-78.417305 parent: 2 - - uid: 14541 + - uid: 14660 components: - type: Transform pos: -40.300255,-77.37566 parent: 2 - - uid: 14542 + - uid: 14661 components: - type: Transform pos: -41.117695,-78.40168 parent: 2 - proto: DrinkHippiesDelightGlass entities: - - uid: 14543 + - uid: 14662 components: - type: Transform pos: -22.44165,-100.292145 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 14544 + - uid: 14663 components: - type: Transform pos: -26.93719,14.6217785 parent: 2 - proto: DrinkIrishCoffeeGlass entities: - - uid: 14545 + - uid: 14664 components: - type: Transform pos: 31.04821,-61.292328 parent: 2 - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14546 + - uid: 14665 components: - type: Transform pos: 23.326912,-28.451742 parent: 2 - proto: DrinkMilkCarton entities: - - uid: 14547 + - uid: 14666 components: - type: Transform pos: 4.089875,7.6089945 parent: 2 - - uid: 14548 + - uid: 14667 components: - type: Transform pos: 4.246125,7.3902445 parent: 2 - proto: DrinkMugBlack entities: - - uid: 14549 + - uid: 14668 components: - type: Transform pos: 53.58285,-67.465065 parent: 2 - proto: DrinkMugOne entities: - - uid: 14550 + - uid: 14669 components: - type: Transform pos: 47.469124,50.58469 parent: 2 - - uid: 14551 + - uid: 14670 components: - type: Transform pos: -31.248182,29.795187 parent: 2 - proto: DrinkShaker entities: - - uid: 14552 + - uid: 14671 components: - type: Transform pos: 18.551043,13.384511 parent: 2 - - uid: 14553 + - uid: 14672 components: - type: Transform pos: 18.316668,13.478261 parent: 2 - - uid: 14554 + - uid: 14673 components: - type: Transform pos: 18.582293,13.603261 parent: 2 - proto: DrinkSpaceMountainWindGlass entities: - - uid: 14555 + - uid: 14674 components: - type: Transform pos: 38.7514,49.607887 parent: 2 - proto: DrinkSpaceUpGlass entities: - - uid: 14556 + - uid: 14675 components: - type: Transform pos: 38.377674,49.717262 parent: 2 - proto: DrinkToxinsSpecialGlass entities: - - uid: 14557 + - uid: 14676 components: - type: Transform pos: -9.4857435,-36.467285 parent: 2 - proto: DrinkVodkaTonicGlass entities: - - uid: 14558 + - uid: 14677 components: - type: Transform pos: 43.581966,-2.7850537 parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 14559 + - uid: 14678 components: - type: Transform pos: -14.530239,-37.26908 parent: 2 - proto: DrinkWaterCup entities: - - uid: 14560 + - uid: 14679 components: - type: Transform pos: -9.380106,-35.52635 parent: 2 - - uid: 14561 + - uid: 14680 components: - type: Transform pos: -9.380106,-35.52635 parent: 2 - - uid: 14562 + - uid: 14681 components: - type: Transform pos: -9.380106,-35.52635 parent: 2 - - uid: 14563 + - uid: 14682 components: - type: Transform pos: -9.380106,-35.52635 parent: 2 - - uid: 14564 + - uid: 14683 components: - type: Transform pos: -9.380106,-35.52635 parent: 2 - - uid: 14565 + - uid: 14684 components: - type: Transform pos: -9.380106,-35.52635 parent: 2 - proto: DrinkWhiskeyBottleFull entities: - - uid: 14566 + - uid: 14685 components: - type: Transform pos: -14.464556,-39.286304 parent: 2 - proto: DrinkWhiskeyGlass entities: - - uid: 14567 + - uid: 14686 components: - type: Transform pos: -29.929981,15.531138 parent: 2 - - uid: 14568 + - uid: 14687 components: - type: Transform pos: 15.324228,-79.460625 parent: 2 - proto: DrinkWhiskeySodaGlass entities: - - uid: 14569 + - uid: 14688 components: - type: Transform pos: 7.0699005,20.752857 parent: 2 - proto: Dropper entities: - - uid: 14570 + - uid: 14689 components: - type: Transform - pos: 7.510676,-45.618256 + pos: 4.727051,-50.513027 parent: 2 - - uid: 14571 + - uid: 14690 components: - type: Transform - pos: 7.510676,-45.618256 + pos: 4.789551,-50.372402 parent: 2 - proto: EggplantSeeds entities: - - uid: 14572 + - uid: 14691 components: - type: Transform pos: 11.993146,54.637722 parent: 2 - - uid: 14573 + - uid: 14692 components: - type: Transform pos: 11.993146,54.637722 parent: 2 - - uid: 14574 + - uid: 14693 components: - type: Transform pos: 11.993146,54.637722 parent: 2 - - uid: 14575 + - uid: 14694 components: - type: Transform pos: 11.993146,54.637722 parent: 2 - - uid: 14576 + - uid: 14695 components: - type: Transform pos: 11.993146,54.637722 parent: 2 - - uid: 14577 + - uid: 14696 components: - type: Transform pos: 11.993146,54.637722 parent: 2 - proto: EmergencyLight entities: - - uid: 14578 + - uid: 14697 components: - type: Transform pos: -70.5,-37.5 parent: 2 - - uid: 14579 + - uid: 14698 components: - type: Transform rot: -1.5707963267948966 rad @@ -92471,7 +92112,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14580 + - uid: 14699 components: - type: Transform rot: 3.141592653589793 rad @@ -92480,7 +92121,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14581 + - uid: 14700 components: - type: Transform rot: 3.141592653589793 rad @@ -92489,7 +92130,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14582 + - uid: 14701 components: - type: Transform pos: 30.5,-41.5 @@ -92497,15 +92138,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14583 - components: - - type: Transform - pos: -12.5,-52.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14584 + - uid: 14702 components: - type: Transform rot: 1.5707963267948966 rad @@ -92514,7 +92147,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14585 + - uid: 14703 components: - type: Transform rot: -1.5707963267948966 rad @@ -92523,7 +92156,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14586 + - uid: 14704 components: - type: Transform pos: 29.5,-4.5 @@ -92531,7 +92164,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14587 + - uid: 14705 components: - type: Transform rot: 1.5707963267948966 rad @@ -92540,7 +92173,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14588 + - uid: 14706 components: - type: Transform pos: 54.5,-5.5 @@ -92548,7 +92181,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14589 + - uid: 14707 components: - type: Transform rot: 3.141592653589793 rad @@ -92557,7 +92190,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14590 + - uid: 14708 components: - type: Transform rot: 1.5707963267948966 rad @@ -92566,7 +92199,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14591 + - uid: 14709 components: - type: Transform pos: -5.5,59.5 @@ -92574,15 +92207,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14592 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 2 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14593 + - uid: 14710 components: - type: Transform pos: -61.5,-23.5 @@ -92590,7 +92215,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14594 + - uid: 14711 components: - type: Transform rot: -1.5707963267948966 rad @@ -92599,7 +92224,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14595 + - uid: 14712 components: - type: Transform pos: 15.5,-52.5 @@ -92607,7 +92232,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14596 + - uid: 14713 components: - type: Transform rot: 1.5707963267948966 rad @@ -92616,7 +92241,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14597 + - uid: 14714 components: - type: Transform rot: -1.5707963267948966 rad @@ -92625,7 +92250,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14598 + - uid: 14715 components: - type: Transform rot: 1.5707963267948966 rad @@ -92634,7 +92259,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14599 + - uid: 14716 components: - type: Transform rot: -1.5707963267948966 rad @@ -92643,7 +92268,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14600 + - uid: 14717 components: - type: Transform pos: -2.5,46.5 @@ -92651,7 +92276,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14601 + - uid: 14718 components: - type: Transform rot: 1.5707963267948966 rad @@ -92660,7 +92285,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14602 + - uid: 14719 components: - type: Transform pos: 8.5,3.5 @@ -92668,7 +92293,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14603 + - uid: 14720 components: - type: Transform rot: 1.5707963267948966 rad @@ -92677,7 +92302,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14604 + - uid: 14721 components: - type: Transform pos: 14.5,14.5 @@ -92685,7 +92310,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14605 + - uid: 14722 components: - type: Transform pos: -20.5,-4.5 @@ -92693,7 +92318,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14606 + - uid: 14723 components: - type: Transform pos: -16.5,4.5 @@ -92701,7 +92326,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14607 + - uid: 14724 components: - type: Transform rot: -1.5707963267948966 rad @@ -92710,7 +92335,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14608 + - uid: 14725 components: - type: Transform pos: 30.5,8.5 @@ -92718,7 +92343,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14609 + - uid: 14726 components: - type: Transform pos: 23.5,18.5 @@ -92726,7 +92351,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14610 + - uid: 14727 components: - type: Transform pos: -14.5,-41.5 @@ -92734,7 +92359,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14611 + - uid: 14728 components: - type: Transform rot: -1.5707963267948966 rad @@ -92743,7 +92368,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14612 + - uid: 14729 components: - type: Transform rot: 1.5707963267948966 rad @@ -92752,7 +92377,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14613 + - uid: 14730 components: - type: Transform rot: -1.5707963267948966 rad @@ -92761,7 +92386,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14614 + - uid: 14731 components: - type: Transform pos: -12.5,-25.5 @@ -92769,7 +92394,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14615 + - uid: 14732 components: - type: Transform rot: -1.5707963267948966 rad @@ -92778,7 +92403,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14616 + - uid: 14733 components: - type: Transform rot: 3.141592653589793 rad @@ -92787,7 +92412,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14617 + - uid: 14734 components: - type: Transform pos: -17.5,-69.5 @@ -92795,7 +92420,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14618 + - uid: 14735 components: - type: Transform rot: 3.141592653589793 rad @@ -92804,7 +92429,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14619 + - uid: 14736 components: - type: Transform rot: 3.141592653589793 rad @@ -92813,7 +92438,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14620 + - uid: 14737 components: - type: Transform rot: -1.5707963267948966 rad @@ -92822,7 +92447,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14621 + - uid: 14738 components: - type: Transform pos: 37.5,-25.5 @@ -92830,7 +92455,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14622 + - uid: 14739 components: - type: Transform rot: -1.5707963267948966 rad @@ -92839,7 +92464,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14623 + - uid: 14740 components: - type: Transform rot: 3.141592653589793 rad @@ -92848,7 +92473,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14624 + - uid: 14741 components: - type: Transform rot: -1.5707963267948966 rad @@ -92857,7 +92482,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14625 + - uid: 14742 components: - type: Transform rot: -1.5707963267948966 rad @@ -92866,7 +92491,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14626 + - uid: 14743 components: - type: Transform pos: 60.5,-51.5 @@ -92874,7 +92499,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14627 + - uid: 14744 components: - type: Transform pos: 53.5,-51.5 @@ -92882,7 +92507,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14628 + - uid: 14745 components: - type: Transform rot: -1.5707963267948966 rad @@ -92891,7 +92516,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14629 + - uid: 14746 components: - type: Transform rot: -1.5707963267948966 rad @@ -92900,7 +92525,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14630 + - uid: 14747 components: - type: Transform rot: -1.5707963267948966 rad @@ -92909,7 +92534,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14631 + - uid: 14748 components: - type: Transform rot: 1.5707963267948966 rad @@ -92918,7 +92543,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14632 + - uid: 14749 components: - type: Transform pos: 4.5,-25.5 @@ -92926,7 +92551,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14633 + - uid: 14750 components: - type: Transform pos: -2.5,-25.5 @@ -92934,7 +92559,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14634 + - uid: 14751 components: - type: Transform pos: 5.5,-41.5 @@ -92942,7 +92567,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14635 + - uid: 14752 components: - type: Transform rot: -1.5707963267948966 rad @@ -92951,7 +92576,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14636 + - uid: 14753 components: - type: Transform rot: 3.141592653589793 rad @@ -92960,7 +92585,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14637 + - uid: 14754 components: - type: Transform rot: 1.5707963267948966 rad @@ -92969,7 +92594,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14638 + - uid: 14755 components: - type: Transform rot: -1.5707963267948966 rad @@ -92978,7 +92603,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14639 + - uid: 14756 components: - type: Transform pos: -71.5,-23.5 @@ -92986,7 +92611,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14640 + - uid: 14757 components: - type: Transform rot: 3.141592653589793 rad @@ -92995,7 +92620,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14641 + - uid: 14758 components: - type: Transform rot: -1.5707963267948966 rad @@ -93004,7 +92629,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14642 + - uid: 14759 components: - type: Transform rot: 3.141592653589793 rad @@ -93013,7 +92638,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14643 + - uid: 14760 components: - type: Transform rot: 1.5707963267948966 rad @@ -93022,7 +92647,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14644 + - uid: 14761 components: - type: Transform rot: -1.5707963267948966 rad @@ -93031,7 +92656,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14645 + - uid: 14762 components: - type: Transform rot: 3.141592653589793 rad @@ -93040,7 +92665,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14646 + - uid: 14763 components: - type: Transform rot: 3.141592653589793 rad @@ -93049,7 +92674,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14647 + - uid: 14764 components: - type: Transform rot: 1.5707963267948966 rad @@ -93058,7 +92683,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14648 + - uid: 14765 components: - type: Transform pos: 45.5,-71.5 @@ -93066,7 +92691,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14649 + - uid: 14766 components: - type: Transform rot: -1.5707963267948966 rad @@ -93075,7 +92700,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14650 + - uid: 14767 components: - type: Transform pos: 27.5,-58.5 @@ -93083,7 +92708,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14651 + - uid: 14768 components: - type: Transform rot: 1.5707963267948966 rad @@ -93092,7 +92717,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14652 + - uid: 14769 components: - type: Transform rot: -1.5707963267948966 rad @@ -93101,7 +92726,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14653 + - uid: 14770 components: - type: Transform rot: 3.141592653589793 rad @@ -93110,7 +92735,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14654 + - uid: 14771 components: - type: Transform rot: 1.5707963267948966 rad @@ -93119,7 +92744,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14655 + - uid: 14772 components: - type: Transform rot: 3.141592653589793 rad @@ -93128,7 +92753,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14656 + - uid: 14773 components: - type: Transform pos: -17.5,7.5 @@ -93136,7 +92761,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14657 + - uid: 14774 components: - type: Transform rot: -1.5707963267948966 rad @@ -93145,7 +92770,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14658 + - uid: 14775 components: - type: Transform rot: 1.5707963267948966 rad @@ -93154,7 +92779,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14659 + - uid: 14776 components: - type: Transform rot: 3.141592653589793 rad @@ -93163,7 +92788,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14660 + - uid: 14777 components: - type: Transform pos: 60.5,-43.5 @@ -93171,7 +92796,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14661 + - uid: 14778 components: - type: Transform pos: 6.5,-29.5 @@ -93179,7 +92804,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14662 + - uid: 14779 components: - type: Transform pos: 30.5,-71.5 @@ -93187,7 +92812,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14663 + - uid: 14780 components: - type: Transform rot: 3.141592653589793 rad @@ -93196,7 +92821,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14664 + - uid: 14781 components: - type: Transform rot: -1.5707963267948966 rad @@ -93205,7 +92830,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14665 + - uid: 14782 components: - type: Transform rot: -1.5707963267948966 rad @@ -93214,7 +92839,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14666 + - uid: 14783 components: - type: Transform rot: -1.5707963267948966 rad @@ -93223,115 +92848,123 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 14667 + - uid: 14784 components: - type: Transform pos: -59.5,-36.5 parent: 2 - - uid: 14669 + - uid: 14785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-1.5 + pos: 25.5,-34.5 parent: 2 - - uid: 14670 + - uid: 14786 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-43.5 - parent: 2 - - uid: 24240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 + pos: -8.5,-1.5 parent: 2 - - uid: 31692 + - uid: 14787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-37.5 + rot: 3.141592653589793 rad + pos: 14.5,-43.5 parent: 2 - proto: EmergencyOxygenTankFilled entities: - - uid: 14671 + - uid: 14788 components: - type: Transform pos: -2.5493312,-73.46234 parent: 2 - proto: EmergencyRollerBed entities: - - uid: 14672 + - uid: 14789 + components: + - type: Transform + pos: -18.566072,-63.341484 + parent: 2 + - uid: 14790 components: - type: Transform pos: -20.356709,-75.42545 parent: 2 + - uid: 14791 + components: + - type: Transform + pos: -18.581697,-64.372734 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: -18.519197,-62.372734 + parent: 2 - proto: Emitter entities: - - uid: 14673 + - uid: 14793 components: - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 14674 + - uid: 14794 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 14675 + - uid: 14795 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 - - uid: 14676 + - uid: 14796 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 - - uid: 14677 + - uid: 14797 components: - type: Transform pos: -70.5,-6.5 parent: 2 - - uid: 14678 + - uid: 14798 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 - - uid: 14679 + - uid: 14799 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 - - uid: 14680 + - uid: 14800 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-20.5 parent: 2 - - uid: 14681 + - uid: 14801 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 - - uid: 14682 + - uid: 14802 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 - - uid: 14683 + - uid: 14803 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 - - uid: 14684 + - uid: 14804 components: - type: Transform rot: 3.141592653589793 rad @@ -93339,86 +92972,86 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 14686 + - uid: 14806 components: - type: Transform - parent: 14685 + parent: 14805 - type: Physics canCollide: False - proto: EncryptionKeyCommand entities: - - uid: 14688 + - uid: 14808 components: - type: Transform - parent: 14687 + parent: 14807 - type: Physics canCollide: False - proto: EncryptionKeyCommon entities: - - uid: 14690 + - uid: 14810 components: - type: Transform - parent: 14689 + parent: 14809 - type: Physics canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 14692 + - uid: 14812 components: - type: Transform - parent: 14691 + parent: 14811 - type: Physics canCollide: False - proto: EncryptionKeyMedical entities: - - uid: 14694 + - uid: 14814 components: - type: Transform - parent: 14693 + parent: 14813 - type: Physics canCollide: False - proto: EncryptionKeyRobo entities: - - uid: 14696 + - uid: 14816 components: - type: Transform - parent: 14695 + parent: 14815 - type: Physics canCollide: False - proto: EncryptionKeyScience entities: - - uid: 14697 + - uid: 14817 components: - type: Transform - parent: 14695 + parent: 14815 - type: Physics canCollide: False - proto: EncryptionKeySecurity entities: - - uid: 14699 + - uid: 14819 components: - type: Transform - parent: 14698 + parent: 14818 - type: Physics canCollide: False - proto: EncryptionKeyService entities: - - uid: 14701 + - uid: 14821 components: - type: Transform - parent: 14700 + parent: 14820 - type: Physics canCollide: False - proto: ExosuitFabricator entities: - - uid: 14702 + - uid: 14822 components: - type: Transform pos: 69.5,-43.5 parent: 2 - proto: ExplosivesSignMed entities: - - uid: 14703 + - uid: 14823 components: - type: Transform rot: 1.5707963267948966 rad @@ -93426,247 +93059,240 @@ entities: parent: 2 - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 14704 + - uid: 14824 components: - type: Transform pos: -70.53087,-25.890057 parent: 2 - - uid: 14705 + - uid: 14825 components: - type: Transform pos: -40.389053,32.87297 parent: 2 - - uid: 14706 + - uid: 14826 components: - type: Transform pos: 3.7780228,-75.4205 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 14707 + - uid: 14827 components: - type: Transform pos: -20.5,64.5 parent: 2 - - uid: 14708 + - uid: 14828 components: - type: Transform pos: -1.5,47.5 parent: 2 - - uid: 14709 + - uid: 14829 components: - type: Transform pos: -20.5,53.5 parent: 2 - - uid: 14710 + - uid: 14830 components: - type: Transform pos: -13.5,32.5 parent: 2 - - uid: 14711 + - uid: 14831 components: - type: Transform pos: -1.5,8.5 parent: 2 - - uid: 14712 + - uid: 14832 components: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 14713 + - uid: 14833 components: - type: Transform pos: -15.5,-2.5 parent: 2 - - uid: 14714 + - uid: 14834 components: - type: Transform pos: -17.5,-17.5 parent: 2 - - uid: 14715 + - uid: 14835 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 14716 + - uid: 14836 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 14717 + - uid: 14837 components: - type: Transform pos: 52.5,-46.5 parent: 2 - - uid: 14718 + - uid: 14838 components: - type: Transform pos: -10.5,-47.5 parent: 2 - - uid: 14719 + - uid: 14839 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 14720 + - uid: 14840 components: - type: Transform pos: 3.5,13.5 parent: 2 - - uid: 14721 + - uid: 14841 components: - type: Transform pos: 23.5,-51.5 parent: 2 - - uid: 14722 + - uid: 14842 components: - type: Transform pos: 77.5,-48.5 parent: 2 - - uid: 14723 + - uid: 14843 components: - type: Transform pos: 76.5,-38.5 parent: 2 - proto: FaxMachineBase entities: - - uid: 14724 + - uid: 14844 components: - type: Transform pos: -28.5,-9.5 parent: 2 - type: FaxMachine name: engineering fax - - uid: 14725 + - uid: 14845 components: - type: Transform pos: -34.5,23.5 parent: 2 - type: FaxMachine name: cargo fax - - uid: 14726 + - uid: 14846 components: - type: Transform pos: 40.5,-39.5 parent: 2 - type: FaxMachine name: science fax - - uid: 14727 - components: - - type: Transform - pos: -16.5,-61.5 - parent: 2 - - type: FaxMachine - name: medbay fax - - uid: 14728 + - uid: 14847 components: - type: Transform pos: -25.5,-35.5 parent: 2 - type: FaxMachine name: atmos fax - - uid: 14729 + - uid: 14848 components: - type: Transform pos: 18.5,-14.5 parent: 2 - type: FaxMachine name: detective fax - - uid: 14730 + - uid: 14849 components: - type: Transform pos: 22.5,23.5 parent: 2 - type: FaxMachine name: security fax - - uid: 14731 + - uid: 14850 components: - type: Transform pos: 12.5,-5.5 parent: 2 - type: FaxMachine name: library fax - - uid: 14732 + - uid: 14851 components: - type: Transform pos: -22.5,-98.5 parent: 2 - type: FaxMachine name: maint fax - - uid: 14733 + - uid: 14852 components: - type: Transform pos: -12.5,-19.5 parent: 2 - type: FaxMachine name: janitorial fax - - uid: 14734 + - uid: 14853 components: - type: Transform pos: -1.5,-6.5 parent: 2 - type: FaxMachine name: hop office - - uid: 31673 + - uid: 14854 components: - type: Transform - pos: 23.5,-38.5 + pos: -17.5,-61.5 parent: 2 - type: FaxMachine - name: Consultant's Office + name: medbay fax - proto: FaxMachineCaptain entities: - - uid: 14735 + - uid: 14855 components: - type: Transform pos: 30.5,-29.5 parent: 2 - proto: FenceMetalCorner entities: - - uid: 14736 + - uid: 14856 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,47.5 parent: 2 - - uid: 14737 + - uid: 14857 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-84.5 parent: 2 - - uid: 14738 + - uid: 14858 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-80.5 parent: 2 - - uid: 14739 + - uid: 14859 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-80.5 parent: 2 - - uid: 14740 + - uid: 14860 components: - type: Transform pos: -39.5,-84.5 parent: 2 - proto: FenceMetalGate entities: - - uid: 14741 + - uid: 14861 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-30.5 parent: 2 - - uid: 14742 + - uid: 14862 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,47.5 parent: 2 - - uid: 14743 + - uid: 14863 components: - type: Transform rot: 3.141592653589793 rad @@ -93678,98 +93304,98 @@ entities: canCollide: False - proto: FenceMetalStraight entities: - - uid: 14744 + - uid: 14864 components: - type: Transform pos: 61.5,49.5 parent: 2 - - uid: 14745 + - uid: 14865 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,47.5 parent: 2 - - uid: 14746 + - uid: 14866 components: - type: Transform pos: 61.5,48.5 parent: 2 - - uid: 14747 + - uid: 14867 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-82.5 parent: 2 - - uid: 14748 + - uid: 14868 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-81.5 parent: 2 - - uid: 14749 + - uid: 14869 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-80.5 parent: 2 - - uid: 14750 + - uid: 14870 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-80.5 parent: 2 - - uid: 14751 + - uid: 14871 components: - type: Transform pos: -44.5,-82.5 parent: 2 - - uid: 14752 + - uid: 14872 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-84.5 parent: 2 - - uid: 14753 + - uid: 14873 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-80.5 parent: 2 - - uid: 14754 + - uid: 14874 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-84.5 parent: 2 - - uid: 14755 + - uid: 14875 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-84.5 parent: 2 - - uid: 14756 + - uid: 14876 components: - type: Transform pos: -44.5,-83.5 parent: 2 - - uid: 14757 + - uid: 14877 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-80.5 parent: 2 - - uid: 14758 + - uid: 14878 components: - type: Transform pos: -44.5,-81.5 parent: 2 - - uid: 14759 + - uid: 14879 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-83.5 parent: 2 - - uid: 14760 + - uid: 14880 components: - type: Transform rot: -1.5707963267948966 rad @@ -93777,172 +93403,116 @@ entities: parent: 2 - proto: FigureSpawner entities: - - uid: 14761 + - uid: 14881 components: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 14762 + - uid: 14882 components: - type: Transform pos: 10.5,-6.5 parent: 2 - - uid: 14763 + - uid: 14883 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 14764 + - uid: 14884 components: - type: Transform pos: -1.5,30.5 parent: 2 - proto: filingCabinet entities: - - uid: 14765 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 2 - - uid: 14766 + - uid: 14885 components: - type: Transform pos: 62.5,-3.5 parent: 2 - proto: filingCabinetDrawer entities: - - uid: 14767 + - uid: 14886 components: - type: Transform pos: -24.5,-69.5 parent: 2 - - uid: 14768 + - uid: 14887 components: - type: Transform pos: 58.5,31.5 parent: 2 - - uid: 14769 + - uid: 14888 components: - type: Transform pos: 63.5,-3.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 14770 + - uid: 14889 components: - type: Transform pos: 41.5,-3.5 parent: 2 - - uid: 14771 + - uid: 14890 components: - type: Transform pos: -22.5,13.5 parent: 2 - proto: filingCabinetRandom entities: - - uid: 14772 + - uid: 14891 components: - type: Transform pos: 41.5,-2.5 parent: 2 - - uid: 14773 + - uid: 14892 components: - type: Transform pos: -23.5,13.5 parent: 2 + - uid: 14893 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 - proto: filingCabinetTallRandom entities: - - uid: 14774 + - uid: 14894 components: - type: Transform pos: 57.5,-40.5 parent: 2 - proto: FireAlarm entities: - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-38.5 - parent: 2 - - type: DeviceList - devices: - - 940 - - 15348 - - 15346 - - 14843 - - 10286 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 2 - - type: DeviceList - devices: - - 10286 - - 15345 - - 31675 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14775 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - type: DeviceList - devices: - - 817 - - 15216 - - 15217 - - 14870 - - 14869 - - 14891 - - 14868 - - 14867 - - 14866 - - 15061 - - 15062 - - 15107 - - 15181 - - 15180 - - 15182 - - 14954 - - 14988 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14776 + - uid: 14895 components: - type: Transform pos: 30.5,-40.5 parent: 2 - type: DeviceList devices: - - 15158 - - 15157 - - 15156 - - 15110 - - 15032 - - 15054 - - 15245 - - 15121 - - 15047 - - 15046 - - 15106 - - 15108 - - 15113 - - 15148 - - 15085 - - 14878 - - 822 - - 15136 - - 15134 - - 14978 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14777 + - 15271 + - 15270 + - 15269 + - 15227 + - 15155 + - 15176 + - 15350 + - 15235 + - 15169 + - 15168 + - 15224 + - 15226 + - 15230 + - 15261 + - 15205 + - 14998 + - 814 + - 15249 + - 15247 + - 15096 + - uid: 14896 components: - type: Transform rot: -1.5707963267948966 rad @@ -93950,20 +93520,18 @@ entities: parent: 2 - type: DeviceList devices: - - 15298 - - 15293 - - 15294 - - 15287 - - 15286 - - 15285 - - 15290 - - 15289 - - 863 - - 15277 - - 15276 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14778 + - 15398 + - 15393 + - 15394 + - 15387 + - 15386 + - 15385 + - 15390 + - 15389 + - 850 + - 15377 + - 15376 + - uid: 14897 components: - type: Transform rot: -1.5707963267948966 rad @@ -93971,35 +93539,31 @@ entities: parent: 2 - type: DeviceList devices: - - 15293 - - 15294 - - 15296 - - 15291 - - 15292 - - 15288 - - 15266 - - 864 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14779 + - 15393 + - 15394 + - 15396 + - 15391 + - 15392 + - 15388 + - 15366 + - 851 + - uid: 14898 components: - type: Transform pos: -29.5,-15.5 parent: 2 - type: DeviceList devices: - - 876 - - 15169 - - 15184 - - 15185 - - 15198 - - 15197 - - 14944 - - 15199 - - 15200 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14780 + - 863 + - 15282 + - 15294 + - 15295 + - 15307 + - 15306 + - 15062 + - 15308 + - 15309 + - uid: 14899 components: - type: Transform rot: 1.5707963267948966 rad @@ -94007,41 +93571,36 @@ entities: parent: 2 - type: DeviceList devices: - - 858 - - 15005 - - 15004 - - 15003 - - 15002 - - 15001 - - 15006 - - 15007 - - 15008 - - 15140 - - 15139 - - 15147 - - 15223 - - 15142 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14781 + - 845 + - 15125 + - 15124 + - 15123 + - 15122 + - 15121 + - 15126 + - 15127 + - 15253 + - 15252 + - 15260 + - 15329 + - 15255 + - uid: 14900 components: - type: Transform pos: 28.5,-57.5 parent: 2 - type: DeviceList devices: - - 857 - - 15174 - - 15173 - - 15175 - - 14863 - - 15047 - - 15121 - - 15245 - - 15250 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14782 + - 844 + - 15287 + - 15286 + - 15288 + - 14985 + - 15169 + - 15235 + - 15350 + - 15352 + - uid: 14901 components: - type: Transform rot: -1.5707963267948966 rad @@ -94049,36 +93608,32 @@ entities: parent: 2 - type: DeviceList devices: - - 894 - - 15207 - - 15206 - - 15208 - - 15209 - - 15210 - - 15146 - - 15271 - - 15272 - - 15211 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14783 + - 881 + - 15316 + - 15315 + - 15317 + - 15318 + - 15319 + - 15259 + - 15371 + - 15372 + - 15320 + - uid: 14902 components: - type: Transform pos: 65.5,-42.5 parent: 2 - type: DeviceList devices: - - 902 - - 15153 - - 15011 - - 15010 - - 14904 - - 15154 - - 15264 - - 15265 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14784 + - 889 + - 15266 + - 15129 + - 15128 + - 15023 + - 15267 + - 15364 + - 15365 + - uid: 14903 components: - type: Transform rot: 1.5707963267948966 rad @@ -94086,13 +93641,11 @@ entities: parent: 2 - type: DeviceList devices: - - 15244 - - 14943 - - 14944 - - 923 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14785 + - 15349 + - 15061 + - 15062 + - 909 + - uid: 14904 components: - type: Transform rot: 3.141592653589793 rad @@ -94100,51 +93653,45 @@ entities: parent: 2 - type: DeviceList devices: - - 898 - - 15187 - - 15186 - - 15200 - - 15199 - - 15254 - - 15203 - - 14945 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14786 + - 885 + - 15297 + - 15296 + - 15309 + - 15308 + - 15355 + - 15312 + - 15063 + - uid: 14905 components: - type: Transform pos: 8.5,18.5 parent: 2 - type: DeviceList devices: - - 15259 - - 14959 - - 14960 - - 15127 - - 15128 - - 14880 - - 14894 - - 15083 - - 846 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14787 + - 15359 + - 15077 + - 15078 + - 15240 + - 15241 + - 15000 + - 15013 + - 15203 + - 833 + - uid: 14906 components: - type: Transform pos: -4.5,60.5 parent: 2 - type: DeviceList devices: - - 15291 - - 15292 - - 15297 - - 15284 - - 15283 - - 15282 - - 865 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14788 + - 15391 + - 15392 + - 15397 + - 15384 + - 15383 + - 15382 + - 852 + - uid: 14907 components: - type: Transform rot: -1.5707963267948966 rad @@ -94152,122 +93699,110 @@ entities: parent: 2 - type: DeviceList devices: - - 900 - - 14903 - - 15149 - - 14906 - - 14905 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14789 + - 887 + - 15022 + - 15262 + - 15025 + - 15024 + - uid: 14908 components: - type: Transform pos: 6.5,4.5 parent: 2 - type: DeviceList devices: - - 15132 - - 15092 - - 15133 - - 15098 - - 15040 - - 15078 - - 15076 - - 15084 - - 15019 - - 15018 - - 15052 - - 15017 - - 15048 - - 15041 - - 15027 - - 14897 - - 844 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14790 + - 15245 + - 15211 + - 15246 + - 15216 + - 15162 + - 15198 + - 15196 + - 15204 + - 15143 + - 15142 + - 15174 + - 15141 + - 15170 + - 15163 + - 15151 + - 15016 + - 831 + - uid: 14909 components: - type: Transform pos: -9.5,4.5 parent: 2 - type: DeviceList devices: - - 15246 - - 15237 - - 15238 - - 15235 - - 15236 - - 14901 - - 15055 - - 15101 - - 15056 - - 15076 - - 15078 - - 15040 - - 15026 - - 15075 - - 15039 - - 843 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14791 + - 15351 + - 15342 + - 15343 + - 15340 + - 15341 + - 15020 + - 15177 + - 15219 + - 15178 + - 15196 + - 15198 + - 15162 + - 15150 + - 15195 + - 15161 + - 830 + - uid: 14910 components: - type: Transform pos: -15.5,-3.5 parent: 2 - type: DeviceList devices: - - 867 - - 15227 - - 15226 - - 15228 - - 15170 - - 15167 - - 15105 - - 15239 - - 15237 - - 15238 - - 15235 - - 15236 - - 14888 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14792 + - 854 + - 15332 + - 15331 + - 15333 + - 15283 + - 15280 + - 15223 + - 15344 + - 15342 + - 15343 + - 15340 + - 15341 + - 15007 + - uid: 14911 components: - type: Transform pos: 22.5,24.5 parent: 2 - type: DeviceList devices: - - 15258 - - 15243 - - 15242 - - 15241 - - 15137 - - 853 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14793 + - 15358 + - 15348 + - 15347 + - 15346 + - 15250 + - 840 + - uid: 14912 components: - type: Transform pos: 6.5,11.5 parent: 2 - type: DeviceList devices: - - 15127 - - 15128 - - 15074 - - 15094 - - 15025 - - 15132 - - 15092 - - 15133 - - 847 - - 15102 - - 15098 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14794 + - 15240 + - 15241 + - 15194 + - 15213 + - 15149 + - 15245 + - 15211 + - 15246 + - 834 + - 15220 + - 15216 + - uid: 14913 components: - type: Transform rot: 1.5707963267948966 rad @@ -94275,106 +93810,59 @@ entities: parent: 2 - type: DeviceList devices: - - 874 - - 15244 - - 15053 - - 15057 - - 15197 - - 15198 - - 14943 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14795 + - 861 + - 15349 + - 15175 + - 15179 + - 15306 + - 15307 + - 15061 + - uid: 14914 components: - type: Transform pos: -13.5,-40.5 parent: 2 - type: DeviceList devices: - - 15037 - - 15036 - - 15035 - - 15135 - - 14866 - - 14867 - - 14868 - - 14891 - - 14869 - - 14870 - - 15108 - - 15106 - - 15046 - - 818 - - 15129 - - 15130 - - 15131 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 - parent: 2 - - type: DeviceList - devices: - - 835 - - 15218 - - 15034 - - 15217 - - 15216 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14797 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 2 - - type: DeviceList - devices: - - 15189 - - 882 - - 14919 - - 14900 - - 15171 - - 15089 - - 15013 - - 15125 - - 15196 + - 15159 + - 15158 + - 15157 + - 15248 + - 14988 + - 14989 + - 14990 + - 15010 + - 14991 + - 14992 + - 15226 + - 15224 - 15168 - - 15195 - - 15231 - - 15232 - - 15233 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14798 + - 812 + - 15242 + - 15243 + - 15244 + - uid: 14915 components: - type: Transform - pos: -16.5,-58.5 + pos: -16.5,-24.5 parent: 2 - type: DeviceList devices: - - 15065 - - 15219 - - 15220 - - 15064 - - 15063 - - 15091 - - 15176 - - 15177 - - 15183 - - 15224 - - 15248 - - 15249 - - 15247 - - 15253 - - 821 - - 14872 - - 14885 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14799 + - 15298 + - 869 + - 15037 + - 15019 + - 15284 + - 15209 + - 15137 + - 15238 + - 15305 + - 15281 + - 15304 + - 15336 + - 15337 + - 15338 + - uid: 14916 components: - type: Transform rot: -1.5707963267948966 rad @@ -94382,79 +93870,71 @@ entities: parent: 2 - type: DeviceList devices: - - 860 - - 15174 - - 15173 - - 15175 - - 15172 - - 15020 - - 15178 - - 15179 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14800 + - 847 + - 15287 + - 15286 + - 15288 + - 15285 + - 15144 + - 15289 + - 15290 + - uid: 14917 components: - type: Transform pos: -7.5,-24.5 parent: 2 - type: DeviceList devices: - - 841 - - 15231 - - 15232 - - 15233 - - 14877 - - 15126 - - 15093 - - 15087 - - 15058 - - 15088 - - 15124 - - 15129 - - 15130 - - 15131 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14801 + - 828 + - 15336 + - 15337 + - 15338 + - 14997 + - 15239 + - 15212 + - 15207 + - 15180 + - 15208 + - 15237 + - 15242 + - 15243 + - 15244 + - uid: 14918 components: - type: Transform pos: 27.5,-15.5 parent: 2 - type: DeviceList devices: - - 15073 - - 15060 - - 15099 - - 15115 - - 15016 - - 15112 - - 15038 - - 15077 - - 15044 - - 15045 - - 884 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14802 + - 15193 + - 15182 + - 15217 + - 15231 + - 15140 + - 15229 + - 15160 + - 15197 + - 15166 + - 15167 + - 871 + - uid: 14919 components: - type: Transform pos: 24.5,-3.5 parent: 2 - type: DeviceList devices: - - 868 - - 15123 - - 15104 - - 15042 - - 15024 - - 15051 - - 15079 - - 15016 - - 15112 - - 15038 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14803 + - 855 + - 15236 + - 15222 + - 15164 + - 15148 + - 15173 + - 15199 + - 15140 + - 15229 + - 15160 + - uid: 14920 components: - type: Transform rot: -1.5707963267948966 rad @@ -94462,122 +93942,110 @@ entities: parent: 2 - type: DeviceList devices: - - 869 - - 15017 - - 15048 - - 15041 - - 15027 - - 15021 - - 15081 - - 15082 - - 15100 - - 15123 - - 15104 - - 15042 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14804 + - 856 + - 15141 + - 15170 + - 15163 + - 15151 + - 15145 + - 15201 + - 15202 + - 15218 + - 15236 + - 15222 + - 15164 + - uid: 14921 components: - type: Transform pos: 12.5,-24.5 parent: 2 - type: DeviceList devices: - - 839 - - 14859 - - 15096 - - 15015 - - 15090 - - 15073 - - 15060 - - 15099 - - 15085 - - 15148 - - 15113 - - 14855 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14805 + - 826 + - 14981 + - 15215 + - 15139 + - 15210 + - 15193 + - 15182 + - 15217 + - 15205 + - 15261 + - 15230 + - 14977 + - uid: 14922 components: - type: Transform pos: 37.5,-24.5 parent: 2 - type: DeviceList devices: - - 14858 - - 14854 - - 14853 - - 825 - - 14860 - - 15077 - - 15044 - - 15045 - - 15110 - - 15032 - - 15054 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14806 + - 14980 + - 14976 + - 14975 + - 816 + - 14982 + - 15197 + - 15166 + - 15167 + - 15227 + - 15155 + - 15176 + - uid: 14923 components: - type: Transform pos: 33.5,9.5 parent: 2 - type: DeviceList devices: - - 871 - - 15118 - - 15024 - - 15051 - - 15079 - - 15066 - - 15049 - - 15080 - - 15070 - - 15095 - - 15229 - - 15067 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14807 + - 858 + - 15233 + - 15148 + - 15173 + - 15199 + - 15186 + - 15171 + - 15200 + - 15190 + - 15214 + - 15334 + - 15187 + - uid: 14924 components: - type: Transform pos: 56.5,-4.5 parent: 2 - type: DeviceList devices: - - 14909 - - 856 - - 15163 - - 15145 - - 15144 - - 15143 - - 15251 - - 15162 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14808 + - 15028 + - 843 + - 15276 + - 15258 + - 15257 + - 15256 + - 15353 + - 15275 + - uid: 14925 components: - type: Transform pos: 40.5,3.5 parent: 2 - type: DeviceList devices: - - 854 - - 15217 - - 15216 - - 835 - - 15070 - - 15095 - - 15229 - - 15111 - - 15143 - - 15144 - - 15145 - - 15300 - - 15299 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14809 + - 841 + - 15326 + - 15325 + - 822 + - 15190 + - 15214 + - 15334 + - 15228 + - 15256 + - 15257 + - 15258 + - 15400 + - 15399 + - uid: 14926 components: - type: Transform rot: -1.5707963267948966 rad @@ -94585,51 +94053,45 @@ entities: parent: 2 - type: DeviceList devices: - - 842 - - 15126 - - 15093 - - 15087 - - 15056 - - 15101 - - 15055 - - 15349 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14810 + - 829 + - 15239 + - 15212 + - 15207 + - 15178 + - 15219 + - 15177 + - 15449 + - uid: 14927 components: - type: Transform pos: -31.5,2.5 parent: 2 - type: DeviceList devices: - - 887 - - 15105 - - 15167 - - 15170 - - 14886 - - 15213 - - 15212 - - 15214 - - 15215 - - 15222 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14811 + - 874 + - 15223 + - 15280 + - 15283 + - 15005 + - 15322 + - 15321 + - 15323 + - 15324 + - 15328 + - uid: 14928 components: - type: Transform pos: -48.5,9.5 parent: 2 - type: DeviceList devices: - - 15225 - - 15221 - - 888 - - 15214 - - 15215 - - 15222 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14812 + - 15330 + - 15327 + - 875 + - 15323 + - 15324 + - 15328 + - uid: 14929 components: - type: Transform rot: -1.5707963267948966 rad @@ -94637,29 +94099,25 @@ entities: parent: 2 - type: DeviceList devices: - - 897 - - 15193 - - 15192 - - 14921 - - 14922 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14813 + - 884 + - 15302 + - 15301 + - 15039 + - 15040 + - uid: 14930 components: - type: Transform pos: -58.5,-22.5 parent: 2 - type: DeviceList devices: - - 896 - - 15204 - - 15234 - - 14917 - - 15192 - - 15193 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14814 + - 883 + - 15313 + - 15339 + - 15036 + - 15301 + - 15302 + - uid: 14931 components: - type: Transform rot: -1.5707963267948966 rad @@ -94667,70 +94125,62 @@ entities: parent: 2 - type: DeviceList devices: - - 880 - - 15190 - - 15191 - - 15164 - - 15165 - - 14912 - - 14911 - - 14916 - - 14915 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14815 + - 867 + - 15299 + - 15300 + - 15277 + - 15278 + - 15031 + - 15030 + - 15035 + - 15034 + - uid: 14932 components: - type: Transform pos: 52.5,-38.5 parent: 2 - type: DeviceList devices: - - 862 - - 15149 - - 15152 - - 15161 - - 15150 - - 15151 - - 15155 - - 15159 - - 15160 + - 849 - 15262 + - 15265 + - 15274 - 15263 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14816 + - 15264 + - 15268 + - 15272 + - 15273 + - 15362 + - 15363 + - uid: 14933 components: - type: Transform pos: 22.5,9.5 parent: 2 - type: DeviceList devices: - - 870 - - 14874 - - 14864 - - 14862 - - 14941 - - 15082 - - 15100 - - 15066 - - 15049 - - 15080 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14817 + - 857 + - 14994 + - 14986 + - 14984 + - 15059 + - 15202 + - 15218 + - 15186 + - 15171 + - 15200 + - uid: 14934 components: - type: Transform pos: -26.5,-76.5 parent: 2 - type: DeviceList devices: - - 828 - - 15252 - - 15119 - - 15071 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14818 + - 819 + - 15354 + - 15234 + - 15191 + - uid: 14935 components: - type: Transform rot: 1.5707963267948966 rad @@ -94738,65 +94188,57 @@ entities: parent: 2 - type: DeviceList devices: - - 15141 - - 15050 - - 15072 - - 15023 - - 15137 - - 14895 - - 14884 - - 14865 - - 855 - - 15300 - - 15299 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14819 + - 15254 + - 15172 + - 15192 + - 15147 + - 15250 + - 15014 + - 15004 + - 14987 + - 842 + - 15400 + - 15399 + - uid: 14936 components: - type: Transform pos: -17.5,-68.5 parent: 2 - type: DeviceList devices: - - 827 - - 15260 - - 15252 - - 15014 - - 14956 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14820 + - 818 + - 15360 + - 15354 + - 15138 + - 15074 + - uid: 14937 components: - type: Transform pos: 46.5,-40.5 parent: 2 - type: DeviceList devices: - - 14903 - - 15152 - - 15161 - - 15150 - - 15158 - - 15157 - - 15156 - - 14905 - - 14906 - - 910 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14821 + - 15022 + - 15265 + - 15274 + - 15263 + - 15271 + - 15270 + - 15269 + - 15024 + - 15025 + - 896 + - uid: 14938 components: - type: Transform pos: -18.5,68.5 parent: 2 - type: DeviceList devices: - - 912 - - 15332 - - 15331 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14822 + - 898 + - 15432 + - 15431 + - uid: 14939 components: - type: Transform rot: -1.5707963267948966 rad @@ -94804,45 +94246,41 @@ entities: parent: 2 - type: DeviceList devices: - - 914 - - 15279 - - 15280 - - 15281 - - 14965 - - 14962 - - 14964 - - 14963 - - 15272 - - 15271 - - 15268 - - 15269 - - 15270 - - 15285 - - 15286 - - 15287 - - 14942 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14823 + - 900 + - 15379 + - 15380 + - 15381 + - 15083 + - 15080 + - 15082 + - 15081 + - 15372 + - 15371 + - 15368 + - 15369 + - 15370 + - 15385 + - 15386 + - 15387 + - 15060 + - uid: 14940 components: - type: Transform pos: -7.5,47.5 parent: 2 - type: DeviceList devices: - - 915 - - 15279 - - 15280 - - 15281 - - 15274 - - 15275 - - 15282 - - 15283 - - 15284 - - 15295 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14824 + - 901 + - 15379 + - 15380 + - 15381 + - 15374 + - 15375 + - 15382 + - 15383 + - 15384 + - 15395 + - uid: 14941 components: - type: Transform rot: 3.141592653589793 rad @@ -94850,29 +94288,25 @@ entities: parent: 2 - type: DeviceList devices: - - 921 - - 14907 - - 14972 - - 14974 - - 14973 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14825 + - 907 + - 15026 + - 15090 + - 15092 + - 15091 + - uid: 14942 components: - type: Transform pos: 73.5,-42.5 parent: 2 - type: DeviceList devices: - - 15307 - - 15308 - - 15011 - - 15010 - - 14904 - - 905 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14826 + - 15407 + - 15408 + - 15129 + - 15128 + - 15023 + - 892 + - uid: 14943 components: - type: Transform rot: -1.5707963267948966 rad @@ -94880,22 +94314,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15228 - - 15226 - - 15227 - - 15053 - - 15057 - - 15195 - - 15168 - - 15196 - - 14977 - - 875 - - 15166 - - 15309 - - 15310 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14827 + - 15333 + - 15331 + - 15332 + - 15175 + - 15179 + - 15304 + - 15281 + - 15305 + - 15095 + - 862 + - 15279 + - 15409 + - 15410 + - uid: 14944 components: - type: Transform rot: 3.141592653589793 rad @@ -94903,17 +94335,15 @@ entities: parent: 2 - type: DeviceList devices: - - 883 - - 14860 - - 14858 - - 14855 - - 14859 - - 14887 - - 14879 - - 14892 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14828 + - 870 + - 14982 + - 14980 + - 14977 + - 14981 + - 15006 + - 14999 + - 15011 + - uid: 14945 components: - type: Transform rot: 3.141592653589793 rad @@ -94921,30 +94351,26 @@ entities: parent: 2 - type: DeviceList devices: - - 920 - - 14976 - - 14975 - - 15306 - - 15305 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14829 + - 906 + - 15094 + - 15093 + - 15406 + - 15405 + - uid: 14946 components: - type: Transform pos: 30.5,-70.5 parent: 2 - type: DeviceList devices: - - 928 - - 15322 - - 15323 - - 15324 - - 15321 - - 15320 - - 15319 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14830 + - 914 + - 15422 + - 15423 + - 15424 + - 15421 + - 15420 + - 15419 + - uid: 14947 components: - type: Transform rot: -1.5707963267948966 rad @@ -94952,11 +94378,9 @@ entities: parent: 2 - type: DeviceList devices: - - 15318 - - 929 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14831 + - 15418 + - 915 + - uid: 14948 components: - type: Transform rot: -1.5707963267948966 rad @@ -94964,14 +94388,12 @@ entities: parent: 2 - type: DeviceList devices: - - 911 - - 15317 - - 15319 - - 15320 - - 15321 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14832 + - 897 + - 15417 + - 15419 + - 15420 + - 15421 + - uid: 14949 components: - type: Transform rot: 3.141592653589793 rad @@ -94979,16 +94401,14 @@ entities: parent: 2 - type: DeviceList devices: - - 15325 - - 15326 - - 15327 - - 15322 - - 15323 - - 15324 - - 859 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14833 + - 15425 + - 15426 + - 15427 + - 15422 + - 15423 + - 15424 + - 846 + - uid: 14950 components: - type: Transform rot: -1.5707963267948966 rad @@ -94996,16 +94416,14 @@ entities: parent: 2 - type: DeviceList devices: - - 919 - - 15325 - - 15326 - - 15327 - - 15330 - - 15329 - - 15328 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14834 + - 905 + - 15425 + - 15426 + - 15427 + - 15430 + - 15429 + - 15428 + - uid: 14951 components: - type: Transform rot: -1.5707963267948966 rad @@ -95013,13 +94431,11 @@ entities: parent: 2 - type: DeviceList devices: - - 918 - - 15328 - - 15329 - - 15330 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14835 + - 904 + - 15428 + - 15429 + - 15430 + - uid: 14952 components: - type: Transform rot: -1.5707963267948966 rad @@ -95027,2929 +94443,2997 @@ entities: parent: 2 - type: DeviceList devices: - - 15333 - - 15240 - - 815 - - 15138 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14836 + - 15433 + - 15345 + - 809 + - 15251 + - uid: 14953 components: - type: Transform - pos: 1.5,-51.5 + rot: 1.5707963267948966 rad + pos: -9.5,16.5 parent: 2 - type: DeviceList devices: - - 15218 - - 15034 - - 820 - - 15181 - - 15180 - - 15182 - - 15116 - - 15188 - - 15097 + - 919 + - 15108 - 15029 - - 15109 - - 15114 - - 15061 - - 15062 + - 15054 - 15107 - - 15122 - - 15120 - - 15257 - - 14988 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14837 + - uid: 14954 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 836 + - 15351 + - 15161 + - 15195 + - 15150 + - 15220 + - 15108 + - 15029 + - uid: 14955 + components: + - type: Transform + pos: -71.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 920 + - 15437 + - 15438 + - 15109 + - 15113 + - uid: 14956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 924 + - 15439 + - 15441 + - 15442 + - uid: 14957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 923 + - 15441 + - 15440 + - uid: 14958 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,16.5 + pos: -2.5,-22.5 parent: 2 - type: DeviceList devices: - - 933 - - 14990 - - 14910 - - 14936 - - 14989 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14838 + - 925 + - 15443 + - 15444 + - uid: 14959 components: - type: Transform - pos: -10.5,13.5 + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 parent: 2 - type: DeviceList devices: - - 849 - - 15246 - - 15039 - - 15075 - - 15026 - - 15102 - - 14990 - - 14910 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14839 + - 15445 + - 15446 + - 15448 + - 926 + - uid: 14960 components: - type: Transform - pos: -71.5,-36.5 + pos: -15.5,-57.5 parent: 2 - type: DeviceList devices: - - 934 - - 15337 - - 15338 + - 15117 + - 15314 + - 15185 + - 928 + - 15133 + - 15134 + - 15132 + - uid: 14961 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 929 + - 15225 + - 15184 + - 15183 + - 15292 + - 15291 + - 15293 + - 15131 + - 15451 + - 15452 + - uid: 14962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 811 + - 15183 + - 15184 + - 15225 + - 15292 + - 15291 + - 15293 + - 15072 + - 15325 + - 15326 + - 14992 - 14991 - - 14995 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14840 + - 15010 + - 14990 + - 14989 + - 14988 + - uid: 14963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + pos: 7.5,-55.5 parent: 2 - type: DeviceList devices: - - 938 - - 15339 - - 15341 - - 15342 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14841 + - 15131 + - 15450 + - 15135 + - 931 + - uid: 14964 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 7.5,-51.5 parent: 2 - type: DeviceList - devices: - - 937 - - 15341 - - 15340 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14842 + devices: + - 822 + - 15135 + - 15326 + - 15325 + - 15450 + - 15130 + - uid: 14965 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-22.5 + pos: -16.5,-50.5 parent: 2 - type: DeviceList devices: - - 939 - - 15343 - - 15344 - - type: AtmosDevice - joinedGrid: 2 + - 15118 + - 810 + - 15072 - proto: FireAxeCabinetFilled entities: - - uid: 14844 + - uid: 14966 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 - - uid: 14845 + - uid: 14967 components: - type: Transform pos: 30.5,-20.5 parent: 2 - proto: FireExtinguisher entities: - - uid: 14846 + - uid: 14968 components: - type: Transform pos: -40.44795,34.218018 parent: 2 - - uid: 14847 + - uid: 14969 components: - type: Transform pos: -40.7292,33.999268 parent: 2 - - uid: 14848 + - uid: 14970 components: - type: Transform pos: -47.435944,26.604792 parent: 2 - - uid: 14849 + - uid: 14971 components: - type: Transform pos: 22.516739,-54.502064 parent: 2 - proto: Firelock entities: - - uid: 14850 + - uid: 14972 components: - type: Transform pos: -47.5,-25.5 parent: 2 - - uid: 14851 + - uid: 14973 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,15.5 parent: 2 - - uid: 14852 + - uid: 14974 components: - type: Transform pos: 10.5,-64.5 parent: 2 - - uid: 14853 + - uid: 14975 components: - type: Transform pos: 39.5,-26.5 parent: 2 - - uid: 14854 + - uid: 14976 components: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 14855 + - uid: 14977 components: - type: Transform pos: 18.5,-24.5 parent: 2 - - uid: 14856 + - uid: 14978 components: - type: Transform pos: 56.5,-2.5 parent: 2 - - uid: 14857 + - uid: 14979 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-13.5 parent: 2 - - uid: 14858 + - uid: 14980 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-25.5 parent: 2 - - uid: 14859 + - uid: 14981 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 - - uid: 14860 + - uid: 14982 components: - type: Transform pos: 32.5,-24.5 parent: 2 - - uid: 14861 + - uid: 14983 components: - type: Transform pos: 40.5,-14.5 parent: 2 - - uid: 14862 + - uid: 14984 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 - - uid: 14863 + - uid: 14985 components: - type: Transform pos: 23.5,-53.5 parent: 2 - - uid: 14864 + - uid: 14986 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 - - uid: 14865 + - uid: 14987 components: - type: Transform pos: 30.5,23.5 parent: 2 - - uid: 14866 + - uid: 14988 components: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 14867 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - uid: 14989 components: - type: Transform pos: -8.5,-44.5 parent: 2 - - uid: 14868 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - uid: 14990 components: - type: Transform pos: -7.5,-44.5 parent: 2 - - uid: 14869 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - uid: 14991 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 14870 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - uid: 14992 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 14871 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - uid: 14993 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 - - uid: 14872 - components: - - type: Transform - pos: -13.5,-62.5 - parent: 2 - - uid: 14873 - components: - - type: Transform - pos: -21.5,-52.5 - parent: 2 - - uid: 14874 + - uid: 14994 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,14.5 parent: 2 - - uid: 14875 + - uid: 14995 components: - type: Transform pos: 18.5,-51.5 parent: 2 - - uid: 14876 + - uid: 14996 components: - type: Transform pos: -47.5,-27.5 parent: 2 - - uid: 14877 + - uid: 14997 components: - type: Transform pos: -11.5,-24.5 parent: 2 - - uid: 14878 + - uid: 14998 components: - type: Transform pos: 31.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 14879 + - 97 + - uid: 14999 components: - type: Transform pos: 26.5,-26.5 parent: 2 - - uid: 14880 + - uid: 15000 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 14881 + - uid: 15001 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-41.5 parent: 2 - - uid: 14882 + - uid: 15002 components: - type: Transform pos: 14.5,-51.5 parent: 2 - - uid: 14883 + - uid: 15003 components: - type: Transform pos: 54.5,38.5 parent: 2 - - uid: 14884 + - uid: 15004 components: - type: Transform pos: 29.5,23.5 parent: 2 - - uid: 14885 - components: - - type: Transform - pos: -19.5,-62.5 - parent: 2 - - uid: 14886 + - uid: 15005 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 14887 + - uid: 15006 components: - type: Transform pos: 23.5,-26.5 parent: 2 - - uid: 14888 + - uid: 15007 components: - type: Transform pos: -19.5,-3.5 parent: 2 - - uid: 14889 + - uid: 15008 components: - type: Transform pos: -10.5,-75.5 parent: 2 - - uid: 14890 + - uid: 15009 components: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 14891 + - uid: 15010 components: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 14892 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - uid: 15011 components: - type: Transform pos: 28.5,-26.5 parent: 2 - - uid: 14893 + - uid: 15012 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 14894 + - uid: 15013 components: - type: Transform pos: 14.5,16.5 parent: 2 - - uid: 14895 + - uid: 15014 components: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 14896 + - uid: 15015 components: - type: Transform pos: -50.5,-76.5 parent: 2 - - uid: 14897 + - uid: 15016 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 2 - - uid: 14898 + - uid: 15017 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 14899 + - uid: 15018 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 14900 + - uid: 15019 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 - - uid: 14901 + - uid: 15020 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 - - uid: 14902 + - uid: 15021 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 - - uid: 14903 + - uid: 15022 components: - type: Transform pos: 45.5,-40.5 parent: 2 - - uid: 14904 + - uid: 15023 components: - type: Transform pos: 66.5,-48.5 parent: 2 - - uid: 14905 + - uid: 15024 components: - type: Transform pos: 42.5,-40.5 parent: 2 - - uid: 14906 + - uid: 15025 components: - type: Transform pos: 43.5,-40.5 parent: 2 - - uid: 14907 + - uid: 15026 components: - type: Transform pos: 62.5,-37.5 parent: 2 - - uid: 14908 + - uid: 15027 components: - type: Transform pos: -38.5,-22.5 parent: 2 - - uid: 14909 + - uid: 15028 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 - - uid: 14910 + - uid: 15029 components: - type: Transform pos: -3.5,13.5 parent: 2 - - uid: 14911 + - uid: 15030 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 14912 + - uid: 15031 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 14913 + - uid: 15032 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 14914 + - uid: 15033 components: - type: Transform pos: 36.5,-8.5 parent: 2 - - uid: 14915 + - uid: 15034 components: - type: Transform pos: -29.5,-34.5 parent: 2 - - uid: 14916 + - uid: 15035 components: - type: Transform pos: -29.5,-33.5 parent: 2 - - uid: 14917 + - uid: 15036 components: - type: Transform pos: -60.5,-26.5 parent: 2 - - uid: 14918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-63.5 - parent: 2 - - uid: 14919 + - uid: 15037 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 14920 + - uid: 15038 components: - type: Transform pos: -29.5,-26.5 parent: 2 - - uid: 14921 + - uid: 15039 components: - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 14922 + - uid: 15040 components: - type: Transform pos: -49.5,-6.5 parent: 2 - - uid: 14923 + - uid: 15041 components: - type: Transform pos: -51.5,-63.5 parent: 2 - - uid: 14924 + - uid: 15042 components: - type: Transform pos: -56.5,-57.5 parent: 2 - - uid: 14925 + - uid: 15043 components: - type: Transform pos: -23.5,-51.5 parent: 2 - - uid: 14926 + - uid: 15044 components: - type: Transform pos: -42.5,-64.5 parent: 2 - - uid: 14927 + - uid: 15045 components: - type: Transform pos: -24.5,-64.5 parent: 2 - - uid: 14928 + - uid: 15046 components: - type: Transform pos: -30.5,-49.5 parent: 2 - - uid: 14929 + - uid: 15047 components: - type: Transform pos: -28.5,-56.5 parent: 2 - - uid: 14930 + - uid: 15048 components: - type: Transform pos: 44.5,-64.5 parent: 2 - - uid: 14931 + - uid: 15049 components: - type: Transform pos: 58.5,27.5 parent: 2 - - uid: 14932 + - uid: 15050 components: - type: Transform pos: 46.5,33.5 parent: 2 - - uid: 14933 + - uid: 15051 components: - type: Transform pos: 48.5,30.5 parent: 2 - - uid: 14934 + - uid: 15052 components: - type: Transform pos: -45.5,13.5 parent: 2 - - uid: 14935 + - uid: 15053 components: - type: Transform pos: -26.5,22.5 parent: 2 - - uid: 14936 + - uid: 15054 components: - type: Transform pos: -1.5,14.5 parent: 2 - - uid: 14937 + - uid: 15055 components: - type: Transform pos: -45.5,17.5 parent: 2 - - uid: 14938 + - uid: 15056 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 - - uid: 14939 + - uid: 15057 components: - type: Transform pos: -24.5,-49.5 parent: 2 - - uid: 14940 + - uid: 15058 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 - - uid: 14941 + - uid: 15059 components: - type: Transform pos: 21.5,9.5 parent: 2 - - uid: 14942 + - uid: 15060 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 - - uid: 14943 + - uid: 15061 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 - - uid: 14944 + - uid: 15062 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 - - uid: 14945 + - uid: 15063 components: - type: Transform pos: -36.5,-14.5 parent: 2 - - uid: 14946 + - uid: 15064 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,16.5 parent: 2 - - uid: 14947 + - uid: 15065 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,3.5 parent: 2 - - uid: 14948 + - uid: 15066 components: - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 14949 + - uid: 15067 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 - - uid: 14950 + - uid: 15068 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-45.5 parent: 2 - - uid: 14951 + - uid: 15069 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - uid: 14952 + - uid: 15070 components: - type: Transform pos: 36.5,-47.5 parent: 2 - - uid: 14953 + - uid: 15071 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-55.5 parent: 2 - - uid: 14954 + - uid: 15072 components: - type: Transform pos: -10.5,-46.5 parent: 2 - - uid: 14955 + - type: DeviceNetwork + deviceLists: + - 102 + - 14962 + - 100 + - 14965 + - uid: 15073 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 14956 + - uid: 15074 components: - type: Transform pos: -16.5,-69.5 parent: 2 - - uid: 14957 + - uid: 15075 components: - type: Transform pos: -29.5,-72.5 parent: 2 - - uid: 14958 + - uid: 15076 components: - type: Transform pos: -35.5,-70.5 parent: 2 - - uid: 14959 + - uid: 15077 components: - type: Transform pos: 3.5,17.5 parent: 2 - - uid: 14960 + - uid: 15078 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 14961 + - uid: 15079 components: - type: Transform pos: -19.5,45.5 parent: 2 - - uid: 14962 + - uid: 15080 components: - type: Transform pos: -13.5,38.5 parent: 2 - - uid: 14963 + - uid: 15081 components: - type: Transform pos: -17.5,34.5 parent: 2 - - uid: 14964 + - uid: 15082 components: - type: Transform pos: -13.5,34.5 parent: 2 - - uid: 14965 + - uid: 15083 components: - type: Transform pos: -13.5,41.5 parent: 2 - - uid: 14966 + - uid: 15084 components: - type: Transform pos: -38.5,39.5 parent: 2 - - uid: 14967 + - uid: 15085 components: - type: Transform pos: -25.5,41.5 parent: 2 - - uid: 14968 + - uid: 15086 components: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 14969 + - uid: 15087 components: - type: Transform pos: -8.5,-76.5 parent: 2 - - uid: 14970 + - uid: 15088 components: - type: Transform pos: -13.5,-97.5 parent: 2 - - uid: 14971 + - uid: 15089 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-27.5 parent: 2 - - uid: 14972 + - uid: 15090 components: - type: Transform pos: 61.5,-37.5 parent: 2 - - uid: 14973 + - uid: 15091 components: - type: Transform pos: 66.5,-33.5 parent: 2 - - uid: 14974 + - uid: 15092 components: - type: Transform pos: 66.5,-34.5 parent: 2 - - uid: 14975 + - uid: 15093 components: - type: Transform pos: 69.5,-33.5 parent: 2 - - uid: 14976 + - uid: 15094 components: - type: Transform pos: 69.5,-34.5 parent: 2 - - uid: 14977 + - uid: 15095 components: - type: Transform pos: -17.5,-20.5 parent: 2 - - uid: 14978 + - uid: 15096 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 14979 + - uid: 15097 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 - - uid: 14980 + - uid: 15098 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-65.5 parent: 2 - - uid: 14981 + - uid: 15099 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-65.5 parent: 2 - - uid: 14982 + - uid: 15100 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-57.5 parent: 2 - - uid: 14983 + - uid: 15101 components: - type: Transform pos: 16.5,30.5 parent: 2 - - uid: 14984 + - uid: 15102 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 14985 + - uid: 15103 components: - type: Transform pos: -13.5,-7.5 parent: 2 - - uid: 14986 + - uid: 15104 components: - type: Transform pos: -14.5,-14.5 parent: 2 - - uid: 14987 + - uid: 15105 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 14988 + - uid: 15106 components: - type: Transform pos: -4.5,-51.5 parent: 2 - - uid: 14989 + - uid: 15107 components: - type: Transform pos: -9.5,15.5 parent: 2 - - uid: 14990 + - uid: 15108 components: - type: Transform pos: -6.5,13.5 parent: 2 - - uid: 14991 + - uid: 15109 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 14992 + - uid: 15110 components: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 14993 + - uid: 15111 components: - type: Transform pos: -49.5,-17.5 parent: 2 - - uid: 14994 + - uid: 15112 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 - - uid: 14995 + - uid: 15113 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-37.5 parent: 2 - - uid: 14996 + - uid: 15114 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-36.5 parent: 2 - - uid: 14997 + - uid: 15115 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-37.5 parent: 2 - - uid: 14998 + - uid: 15116 components: - type: Transform pos: 0.5,-12.5 parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -13.5,-62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - 14960 + - uid: 15118 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - 14965 - proto: FirelockEdge entities: - - uid: 14999 + - uid: 15119 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - uid: 15000 + - uid: 15120 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 - - uid: 15001 + - uid: 15121 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,21.5 parent: 2 - - uid: 15002 + - uid: 15122 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,21.5 parent: 2 - - uid: 15003 + - uid: 15123 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,21.5 parent: 2 - - uid: 15004 + - uid: 15124 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 - - uid: 15005 + - uid: 15125 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 - - uid: 15006 + - uid: 15126 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,18.5 parent: 2 - - uid: 15007 + - uid: 15127 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,15.5 parent: 2 - - uid: 15008 + - uid: 15128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,13.5 + pos: 65.5,-46.5 parent: 2 - - uid: 15009 + - uid: 15129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-45.5 + parent: 2 + - uid: 15130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,21.5 + pos: 2.5,-52.5 parent: 2 - - uid: 15010 + - type: DeviceNetwork + deviceLists: + - 14964 + - 103 +- proto: FirelockGlass + entities: + - uid: 15131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-46.5 + pos: -0.5,-56.5 parent: 2 - - uid: 15011 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 101 + - 14963 + - uid: 15132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-45.5 + pos: -8.5,-60.5 parent: 2 -- proto: FirelockGlass - entities: - - uid: 10286 + - type: DeviceNetwork + deviceLists: + - 99 + - 14960 + - uid: 15133 components: - type: Transform - pos: 24.5,-37.5 + pos: -13.5,-57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 31676 - - 10284 - - 191 - - uid: 14843 + - 99 + - 14960 + - uid: 15134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-33.5 + pos: -8.5,-59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 191 - - uid: 15012 + - 99 + - 14960 + - uid: 15135 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - 14963 + - 103 + - 14964 + - uid: 15136 components: - type: Transform pos: -69.5,-23.5 parent: 2 - - uid: 15013 + - uid: 15137 components: - type: Transform pos: -19.5,-39.5 parent: 2 - - uid: 15014 + - uid: 15138 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 15015 + - uid: 15139 components: - type: Transform pos: 10.5,-26.5 parent: 2 - - uid: 15016 + - uid: 15140 components: - type: Transform pos: 24.5,-15.5 parent: 2 - - uid: 15017 + - uid: 15141 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 - - uid: 15018 + - uid: 15142 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 15019 + - uid: 15143 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 15020 + - uid: 15144 components: - type: Transform pos: 38.5,-69.5 parent: 2 - - uid: 15021 + - uid: 15145 components: - type: Transform pos: 15.5,7.5 parent: 2 - - uid: 15022 + - uid: 15146 components: - type: Transform pos: 16.5,18.5 parent: 2 - - uid: 15023 + - uid: 15147 components: - type: Transform pos: 27.5,18.5 parent: 2 - - uid: 15024 + - uid: 15148 components: - type: Transform pos: 31.5,-4.5 parent: 2 - - uid: 15025 + - uid: 15149 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 15026 + - uid: 15150 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 15027 + - uid: 15151 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 - - uid: 15028 + - uid: 15152 components: - type: Transform pos: 18.5,-32.5 parent: 2 - - uid: 15029 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 2 - - uid: 15030 + - uid: 15153 components: - type: Transform pos: 32.5,-32.5 parent: 2 - - uid: 15031 + - uid: 15154 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 - - uid: 15032 + - uid: 15155 components: - type: Transform pos: 35.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15033 + - 97 + - uid: 15156 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 15034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 15035 + - uid: 15157 components: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 15036 + - uid: 15158 components: - type: Transform pos: -16.5,-42.5 parent: 2 - - uid: 15037 + - uid: 15159 components: - type: Transform pos: -16.5,-41.5 parent: 2 - - uid: 15038 + - uid: 15160 components: - type: Transform pos: 26.5,-15.5 parent: 2 - - uid: 15039 + - uid: 15161 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 15040 + - uid: 15162 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 15041 + - uid: 15163 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 - - uid: 15042 + - uid: 15164 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 15043 + - uid: 15165 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 15044 + - uid: 15166 components: - type: Transform pos: 35.5,-19.5 parent: 2 - - uid: 15045 + - uid: 15167 components: - type: Transform pos: 36.5,-19.5 parent: 2 - - uid: 15046 + - uid: 15168 components: - type: Transform pos: 7.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15047 + - 97 + - uid: 15169 components: - type: Transform pos: 24.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15048 + - 97 + - uid: 15170 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 - - uid: 15049 + - uid: 15171 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 15050 + - uid: 15172 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 - - uid: 15051 + - uid: 15173 components: - type: Transform pos: 31.5,-5.5 parent: 2 - - uid: 15052 + - uid: 15174 components: - type: Transform pos: 10.5,4.5 parent: 2 - - uid: 15053 + - uid: 15175 components: - type: Transform pos: -21.5,-11.5 parent: 2 - - uid: 15054 + - uid: 15176 components: - type: Transform pos: 36.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15055 + - 97 + - uid: 15177 components: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 15056 + - uid: 15178 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 15057 + - uid: 15179 components: - type: Transform pos: -21.5,-12.5 parent: 2 - - uid: 15058 + - uid: 15180 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 15059 + - uid: 15181 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 - - uid: 15060 + - uid: 15182 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 15061 + - uid: 15183 components: - type: Transform pos: -9.5,-51.5 parent: 2 - - uid: 15062 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 102 + - 14962 + - uid: 15184 components: - type: Transform pos: -8.5,-51.5 parent: 2 - - uid: 15063 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 102 + - 14962 + - uid: 15185 components: - type: Transform pos: -19.5,-58.5 parent: 2 - - uid: 15064 - components: - - type: Transform - pos: -6.5,-62.5 - parent: 2 - - uid: 15065 - components: - - type: Transform - pos: -2.5,-62.5 - parent: 2 - - uid: 15066 + - type: DeviceNetwork + deviceLists: + - 99 + - 14960 + - uid: 15186 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 15067 + - uid: 15187 components: - type: Transform pos: 31.5,1.5 parent: 2 - - uid: 15068 + - uid: 15188 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 - - uid: 15069 + - uid: 15189 components: - type: Transform pos: -46.5,27.5 parent: 2 - - uid: 15070 + - uid: 15190 components: - type: Transform pos: 35.5,2.5 parent: 2 - - uid: 15071 + - uid: 15191 components: - type: Transform pos: -23.5,-81.5 parent: 2 - - uid: 15072 + - uid: 15192 components: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 15073 + - uid: 15193 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 15074 + - uid: 15194 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 15075 + - uid: 15195 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 15076 + - uid: 15196 components: - type: Transform pos: -1.5,-1.5 parent: 2 - - uid: 15077 + - uid: 15197 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 15078 + - uid: 15198 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 15079 + - uid: 15199 components: - type: Transform pos: 31.5,-6.5 parent: 2 - - uid: 15080 + - uid: 15200 components: - type: Transform pos: 31.5,6.5 parent: 2 - - uid: 15081 + - uid: 15201 components: - type: Transform pos: 15.5,6.5 parent: 2 - - uid: 15082 + - uid: 15202 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 15083 + - uid: 15203 components: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 15084 + - uid: 15204 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 15085 + - uid: 15205 components: - type: Transform pos: 16.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15086 + - 97 + - uid: 15206 components: - type: Transform pos: 26.5,-31.5 parent: 2 - - uid: 15087 + - uid: 15207 components: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 15088 + - uid: 15208 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 15089 + - uid: 15209 components: - type: Transform pos: -20.5,-39.5 parent: 2 - - uid: 15090 + - uid: 15210 components: - type: Transform pos: 10.5,-27.5 parent: 2 - - uid: 15091 - components: - - type: Transform - pos: -15.5,-58.5 - parent: 2 - - uid: 15092 + - uid: 15211 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 15093 + - uid: 15212 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 15094 + - uid: 15213 components: - type: Transform pos: 7.5,8.5 parent: 2 - - uid: 15095 + - uid: 15214 components: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 15096 + - uid: 15215 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 15097 - components: - - type: Transform - pos: -2.5,-55.5 - parent: 2 - - uid: 15098 + - uid: 15216 components: - type: Transform pos: 5.5,4.5 parent: 2 - - uid: 15099 + - uid: 15217 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 15100 + - uid: 15218 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 15101 + - uid: 15219 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 15102 + - uid: 15220 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 15103 + - uid: 15221 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-0.5 parent: 2 - - uid: 15104 + - uid: 15222 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 15105 + - uid: 15223 components: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 15106 + - uid: 15224 components: - type: Transform pos: 7.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15107 + - 97 + - uid: 15225 components: - type: Transform pos: -7.5,-51.5 parent: 2 - - uid: 15108 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 102 + - 14962 + - uid: 15226 components: - type: Transform pos: 7.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15109 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 2 - - uid: 15110 + - 97 + - uid: 15227 components: - type: Transform pos: 34.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15111 + - 97 + - uid: 15228 components: - type: Transform pos: 38.5,-0.5 parent: 2 - - uid: 15112 + - uid: 15229 components: - type: Transform pos: 25.5,-15.5 parent: 2 - - uid: 15113 + - uid: 15230 components: - type: Transform pos: 14.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15114 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 2 - - uid: 15115 + - 97 + - uid: 15231 components: - type: Transform pos: 20.5,-15.5 parent: 2 - - uid: 15116 - components: - - type: Transform - pos: 0.5,-55.5 - parent: 2 - - uid: 15117 + - uid: 15232 components: - type: Transform pos: 11.5,-29.5 parent: 2 - - uid: 15118 + - uid: 15233 components: - type: Transform pos: 35.5,-3.5 parent: 2 - - uid: 15119 + - uid: 15234 components: - type: Transform pos: -22.5,-81.5 parent: 2 - - uid: 15120 - components: - - type: Transform - pos: -15.5,-55.5 - parent: 2 - - uid: 15121 + - uid: 15235 components: - type: Transform pos: 25.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15122 - components: - - type: Transform - pos: -14.5,-55.5 - parent: 2 - - uid: 15123 + - 97 + - uid: 15236 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 15124 + - uid: 15237 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 15125 + - uid: 15238 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 15126 + - uid: 15239 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 15127 + - uid: 15240 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 15128 + - uid: 15241 components: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 15129 + - uid: 15242 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 15130 + - uid: 15243 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 15131 + - uid: 15244 components: - type: Transform pos: -3.5,-39.5 parent: 2 - - uid: 15132 + - uid: 15245 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 15133 + - uid: 15246 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 15134 + - uid: 15247 components: - type: Transform pos: 22.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15135 + - 97 + - uid: 15248 components: - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 15136 + - uid: 15249 components: - type: Transform pos: 21.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15137 + - 97 + - uid: 15250 components: - type: Transform pos: 27.5,21.5 parent: 2 - - uid: 15138 + - uid: 15251 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 - - uid: 15139 + - uid: 15252 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,19.5 parent: 2 - - uid: 15140 + - uid: 15253 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 - - uid: 15141 + - uid: 15254 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,15.5 parent: 2 - - uid: 15142 + - uid: 15255 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 - - uid: 15143 + - uid: 15256 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 15144 + - uid: 15257 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 15145 + - uid: 15258 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 15146 + - uid: 15259 components: - type: Transform pos: -21.5,30.5 parent: 2 - - uid: 15147 + - uid: 15260 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 - - uid: 15148 + - uid: 15261 components: - type: Transform pos: 15.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15149 + - 97 + - uid: 15262 components: - type: Transform pos: 47.5,-37.5 parent: 2 - - uid: 15150 + - uid: 15263 components: - type: Transform pos: 47.5,-43.5 parent: 2 - - uid: 15151 + - uid: 15264 components: - type: Transform pos: 47.5,-45.5 parent: 2 - - uid: 15152 + - uid: 15265 components: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 15153 + - uid: 15266 components: - type: Transform pos: 62.5,-41.5 parent: 2 - - uid: 15154 + - uid: 15267 components: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 15155 + - uid: 15268 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 15156 + - uid: 15269 components: - type: Transform pos: 40.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15157 + - 97 + - uid: 15270 components: - type: Transform pos: 40.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15158 + - 97 + - uid: 15271 components: - type: Transform pos: 40.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15159 + - 97 + - uid: 15272 components: - type: Transform pos: 49.5,-48.5 parent: 2 - - uid: 15160 + - uid: 15273 components: - type: Transform pos: 50.5,-48.5 parent: 2 - - uid: 15161 + - uid: 15274 components: - type: Transform pos: 47.5,-42.5 parent: 2 - - uid: 15162 + - uid: 15275 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 15163 + - uid: 15276 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 - - uid: 15164 + - uid: 15277 components: - type: Transform pos: -34.5,-33.5 parent: 2 - - uid: 15165 + - uid: 15278 components: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 15166 + - uid: 15279 components: - type: Transform pos: -21.5,-21.5 parent: 2 - - uid: 15167 + - uid: 15280 components: - type: Transform pos: -27.5,0.5 parent: 2 - - uid: 15168 + - uid: 15281 components: - type: Transform pos: -19.5,-24.5 parent: 2 - - uid: 15169 + - uid: 15282 components: - type: Transform pos: -33.5,-16.5 parent: 2 - - uid: 15170 + - uid: 15283 components: - type: Transform pos: -27.5,-0.5 parent: 2 - - uid: 15171 + - uid: 15284 components: - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 15172 + - uid: 15285 components: - type: Transform pos: 39.5,-57.5 parent: 2 - - uid: 15173 + - uid: 15286 components: - type: Transform pos: 35.5,-59.5 parent: 2 - - uid: 15174 + - uid: 15287 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 15175 + - uid: 15288 components: - type: Transform pos: 35.5,-60.5 parent: 2 - - uid: 15176 - components: - - type: Transform - pos: -14.5,-58.5 - parent: 2 - - uid: 15177 - components: - - type: Transform - pos: -11.5,-58.5 - parent: 2 - - uid: 15178 + - uid: 15289 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 15179 + - uid: 15290 components: - type: Transform pos: 40.5,-69.5 parent: 2 - - uid: 15180 + - uid: 15291 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 15181 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 102 + - 14962 + - uid: 15292 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 15182 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 102 + - 14962 + - uid: 15293 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 15183 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 2 - - uid: 15184 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - 102 + - 14962 + - uid: 15294 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 15185 + - uid: 15295 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 15186 + - uid: 15296 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 15187 + - uid: 15297 components: - type: Transform pos: -40.5,-5.5 parent: 2 - - uid: 15188 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 2 - - uid: 15189 + - uid: 15298 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 15190 + - uid: 15299 components: - type: Transform pos: -33.5,-40.5 parent: 2 - - uid: 15191 + - uid: 15300 components: - type: Transform pos: -33.5,-41.5 parent: 2 - - uid: 15192 + - uid: 15301 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 15193 + - uid: 15302 components: - type: Transform pos: -53.5,-21.5 parent: 2 - - uid: 15194 + - uid: 15303 components: - type: Transform pos: -69.5,-24.5 parent: 2 - - uid: 15195 + - uid: 15304 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 15196 + - uid: 15305 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 15197 + - uid: 15306 components: - type: Transform pos: -26.5,-16.5 parent: 2 - - uid: 15198 + - uid: 15307 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 15199 + - uid: 15308 components: - type: Transform pos: -33.5,-11.5 parent: 2 - - uid: 15200 + - uid: 15309 components: - type: Transform pos: -33.5,-10.5 parent: 2 - - uid: 15201 + - uid: 15310 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 15202 + - uid: 15311 components: - type: Transform pos: -42.5,-8.5 parent: 2 - - uid: 15203 + - uid: 15312 components: - type: Transform pos: -40.5,-10.5 parent: 2 - - uid: 15204 + - uid: 15313 components: - type: Transform pos: -63.5,-23.5 parent: 2 - - uid: 15205 + - uid: 15314 components: - type: Transform pos: -21.5,-60.5 parent: 2 - - uid: 15206 + - type: DeviceNetwork + deviceLists: + - 99 + - 14960 + - 65 + - uid: 15315 components: - type: Transform pos: -21.5,20.5 parent: 2 - - uid: 15207 + - uid: 15316 components: - type: Transform pos: -21.5,21.5 parent: 2 - - uid: 15208 + - uid: 15317 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 15209 + - uid: 15318 components: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 15210 + - uid: 15319 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 15211 + - uid: 15320 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 - - uid: 15212 + - uid: 15321 components: - type: Transform pos: -38.5,2.5 parent: 2 - - uid: 15213 + - uid: 15322 components: - type: Transform pos: -37.5,2.5 parent: 2 - - uid: 15214 + - uid: 15323 components: - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 15215 + - uid: 15324 components: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 15216 + - uid: 15325 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 15217 + - type: DeviceNetwork + deviceLists: + - 103 + - 14964 + - 102 + - 14962 + - uid: 15326 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 15218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-51.5 - parent: 2 - - uid: 15219 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 2 - - uid: 15220 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 2 - - uid: 15221 + - type: DeviceNetwork + deviceLists: + - 103 + - 14964 + - 102 + - 14962 + - uid: 15327 components: - type: Transform pos: -45.5,9.5 parent: 2 - - uid: 15222 + - uid: 15328 components: - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 15223 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 - - uid: 15224 - components: - - type: Transform - pos: -5.5,-58.5 - parent: 2 - - uid: 15225 + - uid: 15330 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 15226 + - uid: 15331 components: - type: Transform pos: -19.5,-7.5 parent: 2 - - uid: 15227 + - uid: 15332 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 15228 + - uid: 15333 components: - type: Transform pos: -20.5,-7.5 parent: 2 - - uid: 15229 + - uid: 15334 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 15230 + - uid: 15335 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 15231 + - uid: 15336 components: - type: Transform pos: -13.5,-25.5 parent: 2 - - uid: 15232 + - uid: 15337 components: - type: Transform pos: -13.5,-26.5 parent: 2 - - uid: 15233 + - uid: 15338 components: - type: Transform pos: -13.5,-27.5 parent: 2 - - uid: 15234 + - uid: 15339 components: - type: Transform pos: -63.5,-24.5 parent: 2 - - uid: 15235 + - uid: 15340 components: - type: Transform pos: -11.5,-0.5 parent: 2 - - uid: 15236 + - uid: 15341 components: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 15237 + - uid: 15342 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 15238 + - uid: 15343 components: - type: Transform pos: -11.5,2.5 parent: 2 - - uid: 15239 + - uid: 15344 components: - type: Transform pos: -24.5,9.5 parent: 2 - - uid: 15240 + - uid: 15345 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 - - uid: 15241 + - uid: 15346 components: - type: Transform pos: 26.5,19.5 parent: 2 - - uid: 15242 + - uid: 15347 components: - type: Transform pos: 25.5,19.5 parent: 2 - - uid: 15243 + - uid: 15348 components: - type: Transform pos: 24.5,19.5 parent: 2 - - uid: 15244 + - uid: 15349 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-12.5 parent: 2 - - uid: 15245 + - uid: 15350 components: - type: Transform pos: 26.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - uid: 15246 + - 97 + - uid: 15351 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 15247 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 2 - - uid: 15248 - components: - - type: Transform - pos: -2.5,-58.5 - parent: 2 - - uid: 15249 - components: - - type: Transform - pos: 0.5,-58.5 - parent: 2 - - uid: 15250 + - uid: 15352 components: - type: Transform pos: 31.5,-57.5 parent: 2 - - uid: 15251 + - uid: 15353 components: - type: Transform pos: 49.5,-13.5 parent: 2 - - uid: 15252 + - uid: 15354 components: - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 15253 - components: - - type: Transform - pos: 3.5,-62.5 - parent: 2 - - uid: 15254 + - uid: 15355 components: - type: Transform pos: -40.5,-11.5 parent: 2 - - uid: 15255 + - uid: 15356 components: - type: Transform pos: -43.5,-10.5 parent: 2 - - uid: 15256 + - uid: 15357 components: - type: Transform pos: -43.5,-11.5 parent: 2 - - uid: 15257 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 2 - - uid: 15258 + - uid: 15358 components: - type: Transform pos: 22.5,19.5 parent: 2 - - uid: 15259 + - uid: 15359 components: - type: Transform pos: 6.5,18.5 parent: 2 - - uid: 15260 + - uid: 15360 components: - type: Transform pos: -18.5,-74.5 parent: 2 - - uid: 15261 + - uid: 15361 components: - type: Transform pos: -20.5,-83.5 parent: 2 - - uid: 15262 + - uid: 15362 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 15263 + - uid: 15363 components: - type: Transform pos: 54.5,-45.5 parent: 2 - - uid: 15264 + - uid: 15364 components: - type: Transform pos: 58.5,-44.5 parent: 2 - - uid: 15265 + - uid: 15365 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 15266 + - uid: 15366 components: - type: Transform pos: -12.5,68.5 parent: 2 - - uid: 15267 + - uid: 15367 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,55.5 parent: 2 - - uid: 15268 + - uid: 15368 components: - type: Transform pos: -19.5,43.5 parent: 2 - - uid: 15269 + - uid: 15369 components: - type: Transform pos: -19.5,42.5 parent: 2 - - uid: 15270 + - uid: 15370 components: - type: Transform pos: -19.5,41.5 parent: 2 - - uid: 15271 + - uid: 15371 components: - type: Transform pos: -17.5,30.5 parent: 2 - - uid: 15272 + - uid: 15372 components: - type: Transform pos: -17.5,29.5 parent: 2 - - uid: 15273 + - uid: 15373 components: - type: Transform pos: -11.5,43.5 parent: 2 - - uid: 15274 + - uid: 15374 components: - type: Transform pos: -10.5,43.5 parent: 2 - - uid: 15275 + - uid: 15375 components: - type: Transform pos: -9.5,43.5 parent: 2 - - uid: 15276 + - uid: 15376 components: - type: Transform pos: -20.5,49.5 parent: 2 - - uid: 15277 + - uid: 15377 components: - type: Transform pos: -21.5,49.5 parent: 2 - - uid: 15278 + - uid: 15378 components: - type: Transform pos: 8.5,-38.5 parent: 2 - - uid: 15279 + - uid: 15379 components: - type: Transform pos: -13.5,46.5 parent: 2 - - uid: 15280 + - uid: 15380 components: - type: Transform pos: -13.5,45.5 parent: 2 - - uid: 15281 + - uid: 15381 components: - type: Transform pos: -13.5,44.5 parent: 2 - - uid: 15282 + - uid: 15382 components: - type: Transform pos: 1.5,53.5 parent: 2 - - uid: 15283 + - uid: 15383 components: - type: Transform pos: 0.5,53.5 parent: 2 - - uid: 15284 + - uid: 15384 components: - type: Transform pos: -0.5,53.5 parent: 2 - - uid: 15285 + - uid: 15385 components: - type: Transform pos: -18.5,48.5 parent: 2 - - uid: 15286 + - uid: 15386 components: - type: Transform pos: -17.5,48.5 parent: 2 - - uid: 15287 + - uid: 15387 components: - type: Transform pos: -16.5,48.5 parent: 2 - - uid: 15288 + - uid: 15388 components: - type: Transform pos: -13.5,68.5 parent: 2 - - uid: 15289 + - uid: 15389 components: - type: Transform pos: -21.5,68.5 parent: 2 - - uid: 15290 + - uid: 15390 components: - type: Transform pos: -22.5,68.5 parent: 2 - - uid: 15291 + - uid: 15391 components: - type: Transform pos: -11.5,59.5 parent: 2 - - uid: 15292 + - uid: 15392 components: - type: Transform pos: -11.5,58.5 parent: 2 - - uid: 15293 + - uid: 15393 components: - type: Transform pos: -15.5,51.5 parent: 2 - - uid: 15294 + - uid: 15394 components: - type: Transform pos: -15.5,50.5 parent: 2 - - uid: 15295 + - uid: 15395 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 - - uid: 15296 + - uid: 15396 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 - - uid: 15297 + - uid: 15397 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 - - uid: 15298 + - uid: 15398 components: - type: Transform pos: -24.5,48.5 parent: 2 - - uid: 15299 + - uid: 15399 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,3.5 parent: 2 - - uid: 15300 + - uid: 15400 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 - - uid: 15301 + - uid: 15401 components: - type: Transform pos: -42.5,-86.5 parent: 2 - - uid: 15302 + - uid: 15402 components: - type: Transform pos: -41.5,-86.5 parent: 2 - - uid: 15303 + - uid: 15403 components: - type: Transform pos: -31.5,-97.5 parent: 2 - - uid: 15304 + - uid: 15404 components: - type: Transform pos: 61.5,-41.5 parent: 2 - - uid: 15305 + - uid: 15405 components: - type: Transform pos: 74.5,-39.5 parent: 2 - - uid: 15306 + - uid: 15406 components: - type: Transform pos: 75.5,-39.5 parent: 2 - - uid: 15307 + - uid: 15407 components: - type: Transform pos: 74.5,-42.5 parent: 2 - - uid: 15308 + - uid: 15408 components: - type: Transform pos: 75.5,-42.5 parent: 2 - - uid: 15309 + - uid: 15409 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 15310 + - uid: 15410 components: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 15311 + - uid: 15411 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 2 - - uid: 15312 + - uid: 15412 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 15313 + - uid: 15413 components: - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 15314 + - uid: 15414 components: - type: Transform pos: 55.5,-29.5 parent: 2 - - uid: 15315 + - uid: 15415 components: - type: Transform pos: -41.5,26.5 parent: 2 - - uid: 15316 + - uid: 15416 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 - - uid: 15317 + - uid: 15417 components: - type: Transform pos: 23.5,-83.5 parent: 2 - - uid: 15318 + - uid: 15418 components: - type: Transform pos: 20.5,-83.5 parent: 2 - - uid: 15319 + - uid: 15419 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-76.5 parent: 2 - - uid: 15320 + - uid: 15420 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-76.5 parent: 2 - - uid: 15321 + - uid: 15421 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-76.5 parent: 2 - - uid: 15322 + - uid: 15422 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-71.5 parent: 2 - - uid: 15323 + - uid: 15423 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-72.5 parent: 2 - - uid: 15324 + - uid: 15424 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-73.5 parent: 2 - - uid: 15325 + - uid: 15425 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-71.5 parent: 2 - - uid: 15326 + - uid: 15426 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-72.5 parent: 2 - - uid: 15327 + - uid: 15427 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-73.5 parent: 2 - - uid: 15328 + - uid: 15428 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-76.5 parent: 2 - - uid: 15329 + - uid: 15429 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-76.5 parent: 2 - - uid: 15330 + - uid: 15430 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 - - uid: 15331 + - uid: 15431 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 - - uid: 15332 + - uid: 15432 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 - - uid: 15333 + - uid: 15433 components: - type: Transform pos: 45.5,3.5 parent: 2 - - uid: 15334 + - uid: 15434 components: - type: Transform pos: 8.5,-83.5 parent: 2 - - uid: 15335 + - uid: 15435 components: - type: Transform pos: -46.5,37.5 parent: 2 - - uid: 15336 + - uid: 15436 components: - type: Transform pos: -45.5,37.5 parent: 2 - - uid: 15337 + - uid: 15437 components: - type: Transform pos: -72.5,-36.5 parent: 2 - - uid: 15338 + - uid: 15438 components: - type: Transform pos: -73.5,-36.5 parent: 2 - - uid: 15339 + - uid: 15439 components: - type: Transform pos: 6.5,-7.5 parent: 2 - - uid: 15340 + - uid: 15440 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 15341 + - uid: 15441 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 15342 + - uid: 15442 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 15343 + - uid: 15443 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 15344 + - uid: 15444 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 15345 + - uid: 15445 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31676 - - 10284 - - uid: 15346 + - uid: 15446 components: - type: Transform pos: 28.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 191 - - uid: 15347 + - uid: 15447 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 15348 + - uid: 15448 components: - type: Transform pos: 25.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - 191 - - uid: 15349 + - 97 + - uid: 15449 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 2 + - uid: 15450 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - 14963 + - 103 + - 14964 + - uid: 15451 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 + - uid: 15452 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 98 + - 14961 - proto: Fireplace entities: - - uid: 15351 + - uid: 15453 components: - type: Transform - pos: 12.5,14.5 + pos: 31.5,-27.5 parent: 2 - - uid: 15352 + - uid: 15454 components: - type: Transform - pos: 5.5,-9.5 + pos: 12.5,14.5 parent: 2 - - uid: 24241 + - uid: 15455 components: - type: Transform - pos: 21.5,-34.5 + pos: 5.5,-9.5 parent: 2 - proto: Flash entities: - - uid: 15353 + - uid: 15456 components: - type: Transform pos: 2.3260884,20.921833 parent: 2 - - uid: 15354 + - uid: 15457 components: - type: Transform pos: 2.5760884,21.156208 parent: 2 - - uid: 15355 + - uid: 15458 components: - type: Transform pos: -15.513895,-23.550434 parent: 2 - proto: FlashlightLantern entities: - - uid: 15356 + - uid: 15459 components: - type: Transform pos: -57.60324,-35.44005 parent: 2 - - uid: 15357 + - uid: 15460 components: - type: Transform pos: 2.4386559,-17.536861 parent: 2 - - uid: 15358 + - uid: 15461 components: - type: Transform pos: 11.541302,-66.381775 parent: 2 - - uid: 15359 + - uid: 15462 components: - type: Transform pos: 10.459883,-56.492657 parent: 2 - - uid: 15360 - components: - - type: Transform - pos: 6.4653053,-69.51486 - parent: 2 - - uid: 15361 + - uid: 15463 components: - type: Transform pos: -31.518282,-62.54614 parent: 2 - - uid: 15362 + - uid: 15464 components: - type: Transform pos: 2.6315942,23.576332 parent: 2 - - uid: 15363 + - uid: 15465 components: - type: Transform pos: 58.39165,-37.43153 parent: 2 - proto: FlashlightSeclite entities: - - uid: 15364 + - uid: 15466 components: - type: Transform pos: 17.395416,21.653858 parent: 2 - - uid: 15365 + - uid: 15467 components: - type: Transform rot: 3.141592653589793 rad @@ -97957,129 +97441,129 @@ entities: parent: 2 - proto: Floodlight entities: - - uid: 15366 + - uid: 15468 components: - type: Transform pos: 6.532791,48.672844 parent: 2 - - uid: 15367 + - uid: 15469 components: - type: Transform pos: 9.471183,54.298565 parent: 2 - - uid: 15368 + - uid: 15470 components: - type: Transform pos: -69.53465,-52.447685 parent: 2 - proto: FloodlightBroken entities: - - uid: 15369 + - uid: 15471 components: - type: Transform pos: 11.494867,-70.44923 parent: 2 - proto: FloorDrain entities: - - uid: 15370 + - uid: 15472 components: - type: Transform - pos: 3.5,-48.5 + pos: -13.5,-55.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15371 + - uid: 15473 components: - type: Transform - pos: -1.5,-66.5 + pos: 3.5,-52.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15372 + - uid: 15474 components: - type: Transform - pos: 3.5,8.5 + pos: -13.5,-53.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15373 + - uid: 15475 components: - type: Transform - pos: -15.5,-78.5 + pos: 3.5,-48.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15374 + - uid: 15476 components: - type: Transform - pos: -1.5,-64.5 + pos: 3.5,8.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15375 + - uid: 15477 components: - type: Transform - pos: -7.5,-65.5 + pos: -15.5,-78.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15376 + - uid: 15478 components: - type: Transform pos: -9.5,-22.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15377 + - uid: 15479 components: - type: Transform pos: -15.5,-75.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15378 + - uid: 15480 components: - type: Transform pos: -20.5,-89.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15379 + - uid: 15481 components: - type: Transform pos: -25.5,-89.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15380 + - uid: 15482 components: - type: Transform pos: 53.5,17.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15381 + - uid: 15483 components: - type: Transform pos: 57.5,5.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15382 + - uid: 15484 components: - type: Transform pos: 62.5,12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15383 + - uid: 15485 components: - type: Transform pos: 62.5,22.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15384 + - uid: 15486 components: - type: Transform rot: 3.141592653589793 rad @@ -98087,21 +97571,21 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 15385 + - uid: 15487 components: - type: Transform pos: -9.5,-69.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15386 + - uid: 15488 components: - type: Transform pos: 3.5,-46.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15387 + - uid: 15489 components: - type: Transform rot: 3.141592653589793 rad @@ -98109,14 +97593,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 15388 + - uid: 15490 components: - type: Transform pos: -15.5,-34.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 15389 + - uid: 15491 components: - type: Transform pos: 1.5,12.5 @@ -98125,7 +97609,7 @@ entities: fixtures: {} - proto: FloorTileItemBar entities: - - uid: 15390 + - uid: 15492 components: - type: Transform pos: 37.575134,45.699768 @@ -98134,7 +97618,7 @@ entities: count: 30 - proto: FloorTileItemFreezer entities: - - uid: 15391 + - uid: 15493 components: - type: Transform pos: -9.469288,-100.35687 @@ -98143,7 +97627,7 @@ entities: count: 5 - proto: FloorTileItemLaundry entities: - - uid: 15392 + - uid: 15494 components: - type: Transform pos: -9.484913,-95.4242 @@ -98152,79 +97636,101 @@ entities: count: 6 - proto: FloorTileItemWhite entities: - - uid: 15393 + - uid: 15495 components: - type: Transform pos: -10.013714,-95.45264 parent: 2 - type: Stack count: 6 +- proto: FloraGreyStalagmite3 + entities: + - uid: 15496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.301664,50.41453 + parent: 2 +- proto: FloraGreyStalagmite6 + entities: + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.692289,46.055157 + parent: 2 + - uid: 15498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.553586,45.572628 + parent: 2 - proto: FloraRockSolid01 entities: - - uid: 15394 + - uid: 15499 components: - type: Transform pos: -35.842815,62.48777 parent: 2 - - uid: 15395 + - uid: 15500 components: - type: Transform pos: 64.48079,45.764553 parent: 2 - proto: FloraRockSolid03 entities: - - uid: 15396 + - uid: 15501 components: - type: Transform pos: 63.527668,48.936428 parent: 2 - - uid: 15397 + - uid: 15502 components: - type: Transform pos: 13.129076,49.02767 parent: 2 - - uid: 15398 + - uid: 15503 components: - type: Transform pos: 16.257528,57.816456 parent: 2 - - uid: 15399 + - uid: 15504 components: - type: Transform pos: 78.52854,-58.425747 parent: 2 - proto: FloraTree01 entities: - - uid: 15400 + - uid: 15505 components: - type: Transform pos: -40.510788,5.4778786 parent: 2 - - uid: 15401 + - uid: 15506 components: - type: Transform pos: 33.42394,-84.89845 parent: 2 - - uid: 15402 + - uid: 15507 components: - type: Transform pos: 45.84808,-85.4297 parent: 2 - proto: FloraTree02 entities: - - uid: 15403 + - uid: 15508 components: - type: Transform pos: -3.160706,55.605114 parent: 2 - - uid: 31006 + - uid: 15509 components: - type: Transform pos: 53.890884,-8.066355 parent: 2 - proto: FloraTree03 entities: - - uid: 15404 + - uid: 15510 components: - type: Transform rot: -1.5707963267948966 rad @@ -98232,35 +97738,35 @@ entities: parent: 2 - proto: FloraTree04 entities: - - uid: 15405 + - uid: 15511 components: - type: Transform rot: 3.141592653589793 rad pos: 31.95825,-39.788723 parent: 2 - - uid: 15406 + - uid: 15512 components: - type: Transform pos: -9.341627,55.436527 parent: 2 - - uid: 15407 + - uid: 15513 components: - type: Transform pos: -35.771816,4.543429 parent: 2 - proto: FloraTree05 entities: - - uid: 15408 + - uid: 15514 components: - type: Transform pos: -8.496121,50.8569 parent: 2 - - uid: 15409 + - uid: 15515 components: - type: Transform pos: 33.04894,-87.35158 parent: 2 - - uid: 15410 + - uid: 15516 components: - type: Transform rot: -1.5707963267948966 rad @@ -98268,125 +97774,125 @@ entities: parent: 2 - proto: FloraTree06 entities: - - uid: 15411 + - uid: 15517 components: - type: Transform pos: -35.026413,5.9935036 parent: 2 - - uid: 31008 + - uid: 15518 components: - type: Transform pos: 60.652447,-8.58198 parent: 2 - proto: FloraTreeLarge02 entities: - - uid: 15412 + - uid: 15519 components: - type: Transform pos: 15.446867,-83.874695 parent: 2 - proto: FoamBlade entities: - - uid: 15413 + - uid: 15520 components: - type: Transform pos: -14.780027,-76.18346 parent: 2 - proto: FoamCrossbow entities: - - uid: 15414 + - uid: 15521 components: - type: Transform pos: -11.410641,41.56952 parent: 2 - proto: FoodBakedCookieRaisin entities: - - uid: 15415 + - uid: 15522 components: - type: Transform pos: -2.526709,-33.523388 parent: 2 - proto: FoodBowlBig entities: - - uid: 15416 + - uid: 15523 components: - type: Transform pos: -22.492924,44.20428 parent: 2 - - uid: 15417 + - uid: 15524 components: - type: Transform pos: -22.508549,43.813656 parent: 2 - proto: FoodBoxDonkpocketDink entities: - - uid: 15418 + - uid: 15525 components: - type: Transform pos: 46.42201,-49.40806 parent: 2 - proto: FoodBoxDonkpocketHonk entities: - - uid: 15419 + - uid: 15526 components: - type: Transform pos: 32.37506,-20.42581 parent: 2 - proto: FoodBoxDonkpocketPizza entities: - - uid: 15420 + - uid: 15527 components: - type: Transform pos: -30.632925,-69.35548 parent: 2 - - uid: 15421 + - uid: 15528 components: - type: Transform pos: 46.42201,-49.329933 parent: 2 - proto: FoodBoxDonkpocketSpicy entities: - - uid: 15422 + - uid: 15529 components: - type: Transform pos: -39.41441,-32.343586 parent: 2 - proto: FoodBoxDonut entities: - - uid: 15423 + - uid: 15530 components: - type: Transform pos: 52.62345,11.736868 parent: 2 - - uid: 15424 + - uid: 15531 components: - type: Transform pos: 25.290524,19.578499 parent: 2 - proto: FoodBreadBanana entities: - - uid: 15425 + - uid: 15532 components: - type: Transform pos: -36.588596,16.602194 parent: 2 - proto: FoodBurgerBrain entities: - - uid: 15426 + - uid: 15533 components: - type: Transform pos: -12.411479,-50.405228 parent: 2 - proto: FoodCakeSpacemanSlice entities: - - uid: 15427 + - uid: 15534 components: - type: Transform pos: -34.24552,17.570845 parent: 2 - proto: FoodCartHot entities: - - uid: 15428 + - uid: 15535 components: - type: Transform rot: -1.5707963267948966 rad @@ -98394,19 +97900,19 @@ entities: parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 15429 + - uid: 15536 components: - type: Transform pos: 2.7293262,6.604941 parent: 2 - - uid: 15430 + - uid: 15537 components: - type: Transform pos: 2.8230762,6.636191 parent: 2 - proto: FoodCornTrash entities: - - uid: 15431 + - uid: 15538 components: - type: Transform rot: -1.5707963267948966 rad @@ -98414,28 +97920,28 @@ entities: parent: 2 - proto: FoodDonkpocketBerry entities: - - uid: 15432 + - uid: 15539 components: - type: Transform pos: -9.518124,43.595463 parent: 2 - proto: FoodDonkpocketDink entities: - - uid: 15433 + - uid: 15540 components: - type: Transform pos: -10.231451,43.574326 parent: 2 - proto: FoodDonutChocolate entities: - - uid: 15434 + - uid: 15541 components: - type: Transform pos: 8.49275,13.726382 parent: 2 - proto: FoodFrozenPopsicleTrash entities: - - uid: 15435 + - uid: 15542 components: - type: Transform rot: -1.5707963267948966 rad @@ -98443,163 +97949,171 @@ entities: parent: 2 - proto: FoodLemon entities: - - uid: 15436 + - uid: 15543 components: - type: Transform pos: 55.628414,-67.334946 parent: 2 - proto: FoodMealEggplantParm entities: - - uid: 15437 + - uid: 15544 components: - type: Transform pos: -23.359459,-71.33451 parent: 2 - proto: FoodMealFriesCarrot entities: - - uid: 15438 + - uid: 15545 components: - type: Transform pos: -21.429913,47.709663 parent: 2 - proto: FoodMealPotatoYaki entities: - - uid: 15439 + - uid: 15546 components: - type: Transform pos: 44.419395,-49.295273 parent: 2 - proto: FoodMeat entities: - - uid: 15440 + - uid: 15547 components: - type: Transform pos: -16.53665,-77.55797 parent: 2 - - uid: 15441 + - uid: 15548 components: - type: Transform pos: 64.3404,48.319218 parent: 2 - proto: FoodMeatHawaiianKebab entities: - - uid: 15442 + - uid: 15549 components: - type: Transform pos: -12.469789,31.726183 parent: 2 - proto: FoodPieBananaCream entities: - - uid: 15443 + - uid: 15550 components: - type: Transform pos: 1.5036734,4.5642977 parent: 2 - - uid: 15444 + - uid: 15551 components: - type: Transform pos: -21.504532,37.662663 parent: 2 - - uid: 15445 + - uid: 15552 components: - type: Transform pos: 5.023752,11.565053 parent: 2 - - uid: 15446 + - uid: 15553 components: - type: Transform pos: -0.36896515,-23.435265 parent: 2 - proto: FoodPizzaMoldySlice entities: - - uid: 15447 + - uid: 15554 components: - type: Transform pos: -58.327778,-27.35657 parent: 2 - proto: FoodPizzaPineapple entities: - - uid: 15448 + - uid: 15555 components: - type: Transform pos: -25.559431,-79.20157 parent: 2 - proto: FoodPizzaVegetableSlice entities: - - uid: 15449 + - uid: 15556 components: - type: Transform pos: 34.483707,-35.33738 parent: 2 - proto: FoodPlatePlastic entities: - - uid: 15450 + - uid: 15557 components: - type: Transform pos: 58.37584,20.738062 parent: 2 - - uid: 15451 + - uid: 15558 components: - type: Transform pos: 57.68834,19.831812 parent: 2 - proto: FoodPlateSmallTrash entities: - - uid: 15452 + - uid: 15559 components: - type: Transform pos: 12.393527,-66.326096 parent: 2 - proto: FoodPlateTrash entities: - - uid: 15453 + - uid: 15560 components: - type: Transform pos: 49.46722,33.501156 parent: 2 +- proto: FoodPoppy + entities: + - uid: 12569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.635506,-36.53619 + parent: 2 - proto: FoodRiceBoiled entities: - - uid: 15454 + - uid: 15561 components: - type: Transform pos: -19.538637,41.826466 parent: 2 - proto: FoodRiceEgg entities: - - uid: 15455 + - uid: 15562 components: - type: Transform pos: -19.538637,43.451466 parent: 2 - proto: FoodRicePork entities: - - uid: 15456 + - uid: 15563 components: - type: Transform pos: -14.4963455,47.699337 parent: 2 - - uid: 15457 + - uid: 15564 components: - type: Transform pos: -19.554262,42.701466 parent: 2 - proto: FoodRicePudding entities: - - uid: 15458 + - uid: 15565 components: - type: Transform pos: -18.492641,33.633274 parent: 2 - proto: FoodSaladValid entities: - - uid: 15459 + - uid: 15566 components: - type: Transform pos: -7.4460807,4.484113 parent: 2 - proto: FoodSnackBoritos entities: - - uid: 15460 + - uid: 15567 components: - type: Transform rot: -1.5707963267948966 rad @@ -98607,14 +98121,14 @@ entities: parent: 2 - proto: FoodSnackDanDanNoodles entities: - - uid: 15461 + - uid: 15568 components: - type: Transform pos: -17.010939,42.53945 parent: 2 - proto: FoodSnackRaisins entities: - - uid: 15462 + - uid: 15569 components: - type: Transform rot: -1.5707963267948966 rad @@ -98622,56 +98136,56 @@ entities: parent: 2 - proto: FoodSnackSus entities: - - uid: 15463 + - uid: 15570 components: - type: Transform pos: -12.469789,32.52306 parent: 2 - proto: FoodSoupClown entities: - - uid: 15464 + - uid: 15571 components: - type: Transform pos: 48.47484,-21.900894 parent: 2 - proto: FoodSoupVegetable entities: - - uid: 15465 + - uid: 15572 components: - type: Transform pos: -16.443905,21.40528 parent: 2 - proto: FoodTartGapple entities: - - uid: 15466 + - uid: 15573 components: - type: Transform pos: 44.89154,-26.413532 parent: 2 - proto: FoodTartMime entities: - - uid: 15467 + - uid: 15574 components: - type: Transform pos: -28.494537,45.97597 parent: 2 - proto: FoodTinPeachesMaint entities: - - uid: 15468 + - uid: 15575 components: - type: Transform pos: -27.385347,-52.20374 parent: 2 - proto: FoodTinPeachesMaintOpen entities: - - uid: 15469 + - uid: 15576 components: - type: Transform pos: 50.52597,42.757114 parent: 2 - proto: FoodTinPeachesTrash entities: - - uid: 15470 + - uid: 15577 components: - type: Transform rot: -1.5707963267948966 rad @@ -98679,7 +98193,7 @@ entities: parent: 2 - proto: ForensicScanner entities: - - uid: 15471 + - uid: 15578 components: - type: Transform rot: -1.5707963267948966 rad @@ -98687,14 +98201,14 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 15472 + - uid: 15579 components: - type: Transform pos: -27.5,-15.5 parent: 2 - proto: GarlicSeeds entities: - - uid: 15473 + - uid: 15580 components: - type: Transform rot: 3.141592653589793 rad @@ -98702,135 +98216,108 @@ entities: parent: 2 - proto: GasAnalyzer entities: - - uid: 15474 - components: - - type: Transform - pos: -22.469156,-58.33799 - parent: 2 - - uid: 15475 + - uid: 15581 components: - type: Transform pos: 53.6123,-53.30506 parent: 2 - - uid: 15476 + - uid: 15582 components: - type: Transform pos: -35.42214,-48.770245 parent: 2 - - uid: 15477 + - uid: 15583 components: - type: Transform pos: 4.481148,-75.45175 parent: 2 - - uid: 15478 + - uid: 15584 components: - type: Transform pos: -55.480183,-48.446095 parent: 2 - - uid: 15479 + - uid: 15585 components: - type: Transform pos: -73.40059,-39.44707 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 15480 + - uid: 15586 components: - type: Transform pos: -28.5,-21.5 parent: 2 - proto: GasFilterFlipped entities: - - uid: 15481 + - uid: 15587 components: - type: Transform pos: -44.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15482 + - uid: 15588 components: - type: Transform pos: -44.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15483 + - uid: 15589 components: - type: Transform pos: -44.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15484 + - uid: 15590 components: - type: Transform pos: -44.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15485 + - uid: 15591 components: - type: Transform pos: -44.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15486 + - uid: 15592 components: - type: Transform pos: -44.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15487 + - uid: 15593 components: - type: Transform pos: -44.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 15488 + - uid: 15594 components: - type: Transform pos: -49.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 15489 + - uid: 15595 components: - type: Transform pos: -49.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 15490 + - uid: 15596 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerWaterVapor entities: - - uid: 15491 + - uid: 15597 components: - type: Transform pos: -49.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - - uid: 15492 + - uid: 15598 components: - type: Transform pos: -42.5,-51.5 @@ -98838,9 +98325,7 @@ entities: - type: GasMixer inletTwoConcentration: 0 inletOneConcentration: 1 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15493 + - uid: 15599 components: - type: Transform pos: -42.5,-52.5 @@ -98848,9 +98333,7 @@ entities: - type: GasMixer inletTwoConcentration: 1 inletOneConcentration: 0 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15494 + - uid: 15600 components: - type: Transform rot: -1.5707963267948966 rad @@ -98859,11 +98342,9 @@ entities: - type: GasMixer inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15495 + - uid: 15601 components: - type: Transform pos: -42.5,-49.5 @@ -98871,9 +98352,7 @@ entities: - type: GasMixer inletTwoConcentration: 0 inletOneConcentration: 1 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15496 + - uid: 15602 components: - type: Transform pos: -42.5,-47.5 @@ -98881,9 +98360,7 @@ entities: - type: GasMixer inletTwoConcentration: 0 inletOneConcentration: 1 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15497 + - uid: 15603 components: - type: Transform pos: -42.5,-45.5 @@ -98891,9 +98368,7 @@ entities: - type: GasMixer inletTwoConcentration: 0 inletOneConcentration: 1 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15498 + - uid: 15604 components: - type: Transform pos: -42.5,-43.5 @@ -98901,347 +98376,274 @@ entities: - type: GasMixer inletTwoConcentration: 0 inletOneConcentration: 1 - - type: AtmosDevice - joinedGrid: 2 - proto: GasOutletInjector entities: - - uid: 15499 + - uid: 15605 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15500 + - uid: 15606 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15501 + - uid: 15607 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15502 + - uid: 15608 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15503 + - uid: 15609 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15504 + - uid: 15610 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15505 + - uid: 15611 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15506 + - uid: 15612 components: - type: Transform pos: -42.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPassiveVent entities: - - uid: 15507 + - uid: 15613 components: - type: Transform pos: -44.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15508 + - uid: 15614 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15509 + - uid: 15615 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15510 + - uid: 15616 components: - type: Transform pos: 73.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15511 + - uid: 15617 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15512 + - uid: 15618 components: - type: Transform pos: -50.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15513 + - uid: 15619 components: - type: Transform pos: -50.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15514 + - uid: 15620 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15515 + - uid: 15621 components: - type: Transform pos: -50.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15516 + - uid: 15622 components: - type: Transform pos: -50.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15517 + - uid: 15623 components: - type: Transform pos: -50.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15518 + - uid: 15624 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15519 + - uid: 15625 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15520 + - uid: 15626 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,64.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15521 + - uid: 15627 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15522 + - uid: 15628 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15523 + - uid: 15629 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,64.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15524 + - uid: 15630 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,69.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15525 + - uid: 15631 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,69.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15526 + - uid: 15632 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15527 + - uid: 15633 components: - type: Transform pos: 72.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 15528 + - uid: 15634 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15529 + - uid: 15635 components: - type: Transform pos: 71.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 15530 + - uid: 15636 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 15531 + - uid: 15637 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15532 + - uid: 15638 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 15533 + - uid: 15639 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15534 + - uid: 15640 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15535 + - uid: 15641 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15536 + - uid: 15642 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15537 + - uid: 15643 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPipeBend entities: - - uid: 15538 + - uid: 15644 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15645 components: - type: Transform rot: -1.5707963267948966 rad @@ -99249,14 +98651,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15539 + - uid: 15646 components: - type: Transform pos: -36.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15540 + - uid: 15647 components: - type: Transform rot: 3.141592653589793 rad @@ -99264,13 +98666,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15541 + - uid: 15648 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-47.5 parent: 2 - - uid: 15542 + - uid: 15649 components: - type: Transform rot: -1.5707963267948966 rad @@ -99278,12 +98680,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15543 + - uid: 15650 components: - type: Transform pos: -70.5,-37.5 parent: 2 - - uid: 15544 + - uid: 15651 components: - type: Transform rot: 1.5707963267948966 rad @@ -99291,7 +98693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15545 + - uid: 15652 components: - type: Transform rot: -1.5707963267948966 rad @@ -99299,7 +98701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15546 + - uid: 15653 components: - type: Transform rot: 1.5707963267948966 rad @@ -99307,7 +98709,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15547 + - uid: 15654 components: - type: Transform rot: -1.5707963267948966 rad @@ -99315,7 +98717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15548 + - uid: 15655 components: - type: Transform rot: -1.5707963267948966 rad @@ -99323,7 +98725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15549 + - uid: 15656 components: - type: Transform rot: 3.141592653589793 rad @@ -99331,14 +98733,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15550 + - uid: 15657 components: - type: Transform pos: -3.5,16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15551 + - uid: 15658 components: - type: Transform rot: -1.5707963267948966 rad @@ -99346,7 +98748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15552 + - uid: 15659 components: - type: Transform rot: 3.141592653589793 rad @@ -99354,15 +98756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15554 + - uid: 15660 components: - type: Transform rot: 1.5707963267948966 rad @@ -99370,21 +98764,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15555 + - uid: 15661 components: - type: Transform pos: -7.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15556 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15557 + - uid: 15662 components: - type: Transform rot: -1.5707963267948966 rad @@ -99392,7 +98779,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15558 + - uid: 15663 components: - type: Transform rot: 3.141592653589793 rad @@ -99400,21 +98787,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15559 + - uid: 15664 components: - type: Transform pos: 36.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15560 + - uid: 15665 components: - type: Transform pos: 29.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15561 + - uid: 15666 components: - type: Transform rot: 3.141592653589793 rad @@ -99422,7 +98809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15562 + - uid: 15667 components: - type: Transform rot: 3.141592653589793 rad @@ -99430,7 +98817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15563 + - uid: 15668 components: - type: Transform rot: 1.5707963267948966 rad @@ -99438,30 +98825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15564 - components: - - type: Transform - pos: -4.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15567 + - uid: 15669 components: - type: Transform rot: 1.5707963267948966 rad @@ -99469,7 +98833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15568 + - uid: 15670 components: - type: Transform rot: 3.141592653589793 rad @@ -99477,7 +98841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15569 + - uid: 15671 components: - type: Transform rot: 1.5707963267948966 rad @@ -99485,14 +98849,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15570 + - uid: 15672 components: - type: Transform pos: -12.5,7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15571 + - uid: 15673 components: - type: Transform rot: 3.141592653589793 rad @@ -99500,14 +98864,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15572 + - uid: 15674 components: - type: Transform pos: 34.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15573 + - uid: 15675 components: - type: Transform rot: 3.141592653589793 rad @@ -99515,7 +98879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15574 + - uid: 15676 components: - type: Transform rot: 1.5707963267948966 rad @@ -99523,30 +98887,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15577 + - uid: 15677 components: - type: Transform pos: 35.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15578 + - uid: 15678 components: - type: Transform rot: 3.141592653589793 rad @@ -99554,7 +98902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15579 + - uid: 15679 components: - type: Transform rot: 1.5707963267948966 rad @@ -99562,7 +98910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15580 + - uid: 15680 components: - type: Transform rot: 3.141592653589793 rad @@ -99570,14 +98918,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15581 + - uid: 15681 components: - type: Transform pos: 29.5,17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15582 + - uid: 15682 components: - type: Transform rot: 1.5707963267948966 rad @@ -99585,21 +98933,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15583 + - uid: 15683 components: - type: Transform pos: 14.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15584 + - uid: 15684 components: - type: Transform pos: 11.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15585 + - uid: 15685 components: - type: Transform rot: -1.5707963267948966 rad @@ -99607,7 +98955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15586 + - uid: 15686 components: - type: Transform rot: 3.141592653589793 rad @@ -99615,7 +98963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15587 + - uid: 15687 components: - type: Transform rot: 3.141592653589793 rad @@ -99623,7 +98971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15588 + - uid: 15688 components: - type: Transform rot: -1.5707963267948966 rad @@ -99631,7 +98979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15589 + - uid: 15689 components: - type: Transform rot: 1.5707963267948966 rad @@ -99639,14 +98987,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15590 + - uid: 15690 components: - type: Transform pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15591 + - uid: 15691 components: - type: Transform rot: -1.5707963267948966 rad @@ -99654,7 +99002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15592 + - uid: 15692 components: - type: Transform rot: 1.5707963267948966 rad @@ -99662,7 +99010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15593 + - uid: 15693 components: - type: Transform rot: 3.141592653589793 rad @@ -99670,14 +99018,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15594 + - uid: 15694 components: - type: Transform pos: 11.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15595 + - uid: 15695 components: - type: Transform rot: -1.5707963267948966 rad @@ -99685,7 +99033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15596 + - uid: 15696 components: - type: Transform rot: 1.5707963267948966 rad @@ -99693,7 +99041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15597 + - uid: 15697 components: - type: Transform rot: 1.5707963267948966 rad @@ -99701,7 +99049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15598 + - uid: 15698 components: - type: Transform rot: -1.5707963267948966 rad @@ -99709,7 +99057,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15599 + - uid: 15699 components: - type: Transform rot: -1.5707963267948966 rad @@ -99717,7 +99065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15600 + - uid: 15700 components: - type: Transform rot: 1.5707963267948966 rad @@ -99725,7 +99073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15601 + - uid: 15701 components: - type: Transform rot: 3.141592653589793 rad @@ -99733,7 +99081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15602 + - uid: 15702 components: - type: Transform rot: 3.141592653589793 rad @@ -99741,7 +99089,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15603 + - uid: 15703 components: - type: Transform rot: 3.141592653589793 rad @@ -99749,7 +99097,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15604 + - uid: 15704 components: - type: Transform rot: -1.5707963267948966 rad @@ -99757,7 +99105,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15605 + - uid: 15705 components: - type: Transform rot: 1.5707963267948966 rad @@ -99765,7 +99113,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15606 + - uid: 15706 components: - type: Transform rot: 3.141592653589793 rad @@ -99773,7 +99121,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15607 + - uid: 15707 components: - type: Transform rot: 3.141592653589793 rad @@ -99781,22 +99129,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15609 + - uid: 15708 components: - type: Transform pos: 11.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15610 + - uid: 15709 components: - type: Transform rot: 1.5707963267948966 rad @@ -99804,14 +99144,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15611 + - uid: 15710 components: - type: Transform pos: 36.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15612 + - uid: 15711 components: - type: Transform rot: -1.5707963267948966 rad @@ -99819,30 +99159,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15615 + - uid: 15712 components: - type: Transform pos: 1.5,7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15616 + - uid: 15713 components: - type: Transform rot: 1.5707963267948966 rad @@ -99850,7 +99174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15617 + - uid: 15714 components: - type: Transform rot: 3.141592653589793 rad @@ -99858,7 +99182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15618 + - uid: 15715 components: - type: Transform rot: -1.5707963267948966 rad @@ -99866,7 +99190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15619 + - uid: 15716 components: - type: Transform rot: 3.141592653589793 rad @@ -99874,7 +99198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15620 + - uid: 15717 components: - type: Transform rot: 3.141592653589793 rad @@ -99882,14 +99206,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15621 + - uid: 15718 components: - type: Transform pos: 8.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15622 + - uid: 15719 components: - type: Transform rot: -1.5707963267948966 rad @@ -99897,7 +99221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15623 + - uid: 15720 components: - type: Transform rot: 3.141592653589793 rad @@ -99905,7 +99229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15624 + - uid: 15721 components: - type: Transform rot: -1.5707963267948966 rad @@ -99913,14 +99237,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15625 + - uid: 15722 components: - type: Transform pos: 36.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15626 + - uid: 15723 components: - type: Transform rot: 3.141592653589793 rad @@ -99928,21 +99252,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15627 + - uid: 15724 components: - type: Transform pos: 2.5,5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15628 + - uid: 15725 components: - type: Transform pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15629 + - uid: 15726 components: - type: Transform rot: 3.141592653589793 rad @@ -99950,15 +99274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15631 + - uid: 15727 components: - type: Transform rot: 1.5707963267948966 rad @@ -99966,7 +99282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15632 + - uid: 15728 components: - type: Transform rot: 3.141592653589793 rad @@ -99974,7 +99290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15633 + - uid: 15729 components: - type: Transform rot: 3.141592653589793 rad @@ -99982,7 +99298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15634 + - uid: 15730 components: - type: Transform rot: 1.5707963267948966 rad @@ -99990,14 +99306,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15635 + - uid: 15731 components: - type: Transform pos: 24.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15636 + - uid: 15732 components: - type: Transform rot: -1.5707963267948966 rad @@ -100005,7 +99321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15637 + - uid: 15733 components: - type: Transform rot: 1.5707963267948966 rad @@ -100013,7 +99329,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15638 + - uid: 15734 components: - type: Transform rot: -1.5707963267948966 rad @@ -100021,7 +99337,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15639 + - uid: 15735 components: - type: Transform rot: 1.5707963267948966 rad @@ -100029,15 +99345,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15641 + - uid: 15736 components: - type: Transform rot: 1.5707963267948966 rad @@ -100045,7 +99353,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15642 + - uid: 15737 components: - type: Transform rot: -1.5707963267948966 rad @@ -100053,21 +99361,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15643 + - uid: 15738 components: - type: Transform pos: 36.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15644 + - uid: 15739 components: - type: Transform pos: 34.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15645 + - uid: 15740 components: - type: Transform rot: 1.5707963267948966 rad @@ -100075,7 +99383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15646 + - uid: 15741 components: - type: Transform rot: -1.5707963267948966 rad @@ -100083,14 +99391,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15647 + - uid: 15742 components: - type: Transform pos: 46.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15648 + - uid: 15743 components: - type: Transform rot: 3.141592653589793 rad @@ -100098,7 +99406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15649 + - uid: 15744 components: - type: Transform rot: 1.5707963267948966 rad @@ -100106,7 +99414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15650 + - uid: 15745 components: - type: Transform rot: -1.5707963267948966 rad @@ -100114,7 +99422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15651 + - uid: 15746 components: - type: Transform rot: 1.5707963267948966 rad @@ -100122,15 +99430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15653 + - uid: 15747 components: - type: Transform rot: 1.5707963267948966 rad @@ -100138,7 +99438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15654 + - uid: 15748 components: - type: Transform rot: -1.5707963267948966 rad @@ -100146,7 +99446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15655 + - uid: 15749 components: - type: Transform rot: 3.141592653589793 rad @@ -100154,7 +99454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15656 + - uid: 15750 components: - type: Transform rot: 3.141592653589793 rad @@ -100162,7 +99462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15657 + - uid: 15751 components: - type: Transform rot: 3.141592653589793 rad @@ -100170,7 +99470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15658 + - uid: 15752 components: - type: Transform rot: 3.141592653589793 rad @@ -100178,7 +99478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15659 + - uid: 15753 components: - type: Transform rot: -1.5707963267948966 rad @@ -100186,7 +99486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15660 + - uid: 15754 components: - type: Transform rot: 3.141592653589793 rad @@ -100194,7 +99494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15661 + - uid: 15755 components: - type: Transform rot: -1.5707963267948966 rad @@ -100202,7 +99502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15662 + - uid: 15756 components: - type: Transform rot: 3.141592653589793 rad @@ -100210,7 +99510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15663 + - uid: 15757 components: - type: Transform rot: 3.141592653589793 rad @@ -100218,7 +99518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15664 + - uid: 15758 components: - type: Transform rot: 3.141592653589793 rad @@ -100226,28 +99526,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15665 + - uid: 15759 components: - type: Transform pos: 57.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15666 + - uid: 15760 components: - type: Transform pos: 49.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15667 + - uid: 15761 components: - type: Transform pos: 63.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15668 + - uid: 15762 components: - type: Transform rot: 3.141592653589793 rad @@ -100255,7 +99555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15669 + - uid: 15763 components: - type: Transform rot: 1.5707963267948966 rad @@ -100263,14 +99563,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15670 + - uid: 15764 components: - type: Transform pos: 61.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15671 + - uid: 15765 components: - type: Transform rot: -1.5707963267948966 rad @@ -100278,14 +99578,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15672 + - uid: 15766 components: - type: Transform pos: 64.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15673 + - uid: 15767 components: - type: Transform rot: 3.141592653589793 rad @@ -100293,7 +99593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15674 + - uid: 15768 components: - type: Transform rot: -1.5707963267948966 rad @@ -100301,7 +99601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15675 + - uid: 15769 components: - type: Transform rot: 3.141592653589793 rad @@ -100309,7 +99609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15676 + - uid: 15770 components: - type: Transform rot: 1.5707963267948966 rad @@ -100317,7 +99617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15677 + - uid: 15771 components: - type: Transform rot: -1.5707963267948966 rad @@ -100325,14 +99625,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15678 + - uid: 15772 components: - type: Transform pos: 64.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15679 + - uid: 15773 components: - type: Transform rot: 1.5707963267948966 rad @@ -100340,7 +99640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15680 + - uid: 15774 components: - type: Transform rot: 1.5707963267948966 rad @@ -100348,7 +99648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15681 + - uid: 15775 components: - type: Transform rot: 3.141592653589793 rad @@ -100356,7 +99656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15682 + - uid: 15776 components: - type: Transform rot: -1.5707963267948966 rad @@ -100364,7 +99664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15683 + - uid: 15777 components: - type: Transform rot: 3.141592653589793 rad @@ -100372,7 +99672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15684 + - uid: 15778 components: - type: Transform rot: 1.5707963267948966 rad @@ -100380,7 +99680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15685 + - uid: 15779 components: - type: Transform rot: 1.5707963267948966 rad @@ -100388,7 +99688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15686 + - uid: 15780 components: - type: Transform rot: -1.5707963267948966 rad @@ -100396,7 +99696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15687 + - uid: 15781 components: - type: Transform rot: 3.141592653589793 rad @@ -100404,14 +99704,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15688 + - uid: 15782 components: - type: Transform pos: 52.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15689 + - uid: 15783 components: - type: Transform rot: 3.141592653589793 rad @@ -100419,28 +99719,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15690 + - uid: 15784 components: - type: Transform pos: -14.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15691 + - uid: 15785 components: - type: Transform pos: -18.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15692 + - uid: 15786 components: - type: Transform pos: -20.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15693 + - uid: 15787 components: - type: Transform rot: -1.5707963267948966 rad @@ -100448,7 +99748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15694 + - uid: 15788 components: - type: Transform rot: 3.141592653589793 rad @@ -100456,15 +99756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15696 + - uid: 15789 components: - type: Transform rot: 3.141592653589793 rad @@ -100472,7 +99764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15697 + - uid: 15790 components: - type: Transform rot: 1.5707963267948966 rad @@ -100480,7 +99772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15698 + - uid: 15791 components: - type: Transform rot: 3.141592653589793 rad @@ -100488,7 +99780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15699 + - uid: 15792 components: - type: Transform rot: 3.141592653589793 rad @@ -100496,7 +99788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15700 + - uid: 15793 components: - type: Transform rot: 1.5707963267948966 rad @@ -100504,7 +99796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15701 + - uid: 15794 components: - type: Transform rot: 1.5707963267948966 rad @@ -100512,7 +99804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15702 + - uid: 15795 components: - type: Transform rot: 3.141592653589793 rad @@ -100520,28 +99812,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15703 + - uid: 15796 components: - type: Transform pos: -42.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15704 + - uid: 15797 components: - type: Transform pos: -41.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15705 + - uid: 15798 components: - type: Transform pos: -31.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15706 + - uid: 15799 components: - type: Transform rot: 1.5707963267948966 rad @@ -100549,7 +99841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15707 + - uid: 15800 components: - type: Transform rot: 1.5707963267948966 rad @@ -100557,28 +99849,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15708 + - uid: 15801 components: - type: Transform pos: -50.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15709 + - uid: 15802 components: - type: Transform pos: -51.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15710 + - uid: 15803 components: - type: Transform pos: -47.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15711 + - uid: 15804 components: - type: Transform rot: 1.5707963267948966 rad @@ -100586,7 +99878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15712 + - uid: 15805 components: - type: Transform rot: -1.5707963267948966 rad @@ -100594,7 +99886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15713 + - uid: 15806 components: - type: Transform rot: -1.5707963267948966 rad @@ -100602,68 +99894,68 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15714 + - uid: 15807 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-55.5 parent: 2 - - uid: 15715 + - uid: 15808 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-53.5 parent: 2 - - uid: 15716 + - uid: 15809 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-51.5 parent: 2 - - uid: 15717 + - uid: 15810 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-49.5 parent: 2 - - uid: 15718 + - uid: 15811 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-47.5 parent: 2 - - uid: 15719 + - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-45.5 parent: 2 - - uid: 15720 + - uid: 15813 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-43.5 parent: 2 - - uid: 15721 + - uid: 15814 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-52.5 parent: 2 - - uid: 15722 + - uid: 15815 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-57.5 parent: 2 - - uid: 15723 + - uid: 15816 components: - type: Transform pos: -37.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 15724 + - uid: 15817 components: - type: Transform rot: 1.5707963267948966 rad @@ -100671,7 +99963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 15725 + - uid: 15818 components: - type: Transform rot: -1.5707963267948966 rad @@ -100679,7 +99971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15726 + - uid: 15819 components: - type: Transform rot: 1.5707963267948966 rad @@ -100687,7 +99979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15727 + - uid: 15820 components: - type: Transform rot: -1.5707963267948966 rad @@ -100695,7 +99987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15728 + - uid: 15821 components: - type: Transform rot: 1.5707963267948966 rad @@ -100703,7 +99995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15729 + - uid: 15822 components: - type: Transform rot: -1.5707963267948966 rad @@ -100711,14 +100003,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15730 + - uid: 15823 components: - type: Transform pos: -38.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15731 + - uid: 15824 components: - type: Transform rot: 3.141592653589793 rad @@ -100726,22 +100018,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15732 + - uid: 15825 components: - type: Transform pos: -40.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15734 + - uid: 15826 components: - type: Transform rot: 1.5707963267948966 rad @@ -100749,36 +100033,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15735 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15737 + - uid: 15827 components: - type: Transform pos: -41.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15738 + - uid: 15828 components: - type: Transform pos: -40.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15739 + - uid: 15829 components: - type: Transform rot: -1.5707963267948966 rad @@ -100786,7 +100055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15740 + - uid: 15830 components: - type: Transform rot: 1.5707963267948966 rad @@ -100794,7 +100063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15741 + - uid: 15831 components: - type: Transform rot: 1.5707963267948966 rad @@ -100802,19 +100071,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15742 + - uid: 15832 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 - - uid: 15743 + - uid: 15833 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 - - uid: 15744 + - uid: 15834 components: - type: Transform rot: 1.5707963267948966 rad @@ -100822,7 +100091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15745 + - uid: 15835 components: - type: Transform rot: 1.5707963267948966 rad @@ -100830,7 +100099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15746 + - uid: 15836 components: - type: Transform rot: -1.5707963267948966 rad @@ -100838,7 +100107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15747 + - uid: 15837 components: - type: Transform rot: -1.5707963267948966 rad @@ -100846,7 +100115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15748 + - uid: 15838 components: - type: Transform rot: 1.5707963267948966 rad @@ -100854,7 +100123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15749 + - uid: 15839 components: - type: Transform rot: -1.5707963267948966 rad @@ -100862,7 +100131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15750 + - uid: 15840 components: - type: Transform rot: 3.141592653589793 rad @@ -100870,7 +100139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15751 + - uid: 15841 components: - type: Transform rot: 1.5707963267948966 rad @@ -100878,7 +100147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15752 + - uid: 15842 components: - type: Transform rot: -1.5707963267948966 rad @@ -100886,7 +100155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15753 + - uid: 15843 components: - type: Transform rot: 1.5707963267948966 rad @@ -100894,14 +100163,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15754 + - uid: 15844 components: - type: Transform pos: -15.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15755 + - uid: 15845 components: - type: Transform rot: 3.141592653589793 rad @@ -100909,14 +100178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15756 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15757 + - uid: 15846 components: - type: Transform rot: 1.5707963267948966 rad @@ -100924,7 +100186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15758 + - uid: 15847 components: - type: Transform rot: 1.5707963267948966 rad @@ -100932,7 +100194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15759 + - uid: 15848 components: - type: Transform rot: -1.5707963267948966 rad @@ -100940,7 +100202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15760 + - uid: 15849 components: - type: Transform rot: -1.5707963267948966 rad @@ -100948,14 +100210,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15761 + - uid: 15850 components: - type: Transform pos: -15.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15762 + - uid: 15851 components: - type: Transform rot: 3.141592653589793 rad @@ -100963,7 +100225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15763 + - uid: 15852 components: - type: Transform rot: 1.5707963267948966 rad @@ -100971,7 +100233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15764 + - uid: 15853 components: - type: Transform rot: 1.5707963267948966 rad @@ -100979,7 +100241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15765 + - uid: 15854 components: - type: Transform rot: -1.5707963267948966 rad @@ -100987,7 +100249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15766 + - uid: 15855 components: - type: Transform rot: -1.5707963267948966 rad @@ -100995,7 +100257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15767 + - uid: 15856 components: - type: Transform rot: 3.141592653589793 rad @@ -101003,7 +100265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15768 + - uid: 15857 components: - type: Transform rot: -1.5707963267948966 rad @@ -101011,14 +100273,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15769 + - uid: 15858 components: - type: Transform pos: 3.5,69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15770 + - uid: 15859 components: - type: Transform rot: 1.5707963267948966 rad @@ -101026,7 +100288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15771 + - uid: 15860 components: - type: Transform rot: -1.5707963267948966 rad @@ -101034,7 +100296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15772 + - uid: 15861 components: - type: Transform rot: 1.5707963267948966 rad @@ -101042,7 +100304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15773 + - uid: 15862 components: - type: Transform rot: -1.5707963267948966 rad @@ -101050,7 +100312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15774 + - uid: 15863 components: - type: Transform rot: -1.5707963267948966 rad @@ -101058,7 +100320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15775 + - uid: 15864 components: - type: Transform rot: 3.141592653589793 rad @@ -101066,7 +100328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15776 + - uid: 15865 components: - type: Transform rot: 3.141592653589793 rad @@ -101074,7 +100336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15777 + - uid: 15866 components: - type: Transform rot: -1.5707963267948966 rad @@ -101082,7 +100344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15778 + - uid: 15867 components: - type: Transform rot: -1.5707963267948966 rad @@ -101090,28 +100352,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15779 + - uid: 15868 components: - type: Transform pos: 1.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15780 + - uid: 15869 components: - type: Transform pos: -0.5,58.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15781 + - uid: 15870 components: - type: Transform pos: 40.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15782 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad @@ -101119,7 +100381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15783 + - uid: 15872 components: - type: Transform rot: 1.5707963267948966 rad @@ -101127,7 +100389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15784 + - uid: 15873 components: - type: Transform rot: 1.5707963267948966 rad @@ -101135,7 +100397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15785 + - uid: 15874 components: - type: Transform rot: 3.141592653589793 rad @@ -101143,7 +100405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15786 + - uid: 15875 components: - type: Transform rot: 3.141592653589793 rad @@ -101151,7 +100413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15787 + - uid: 15876 components: - type: Transform rot: -1.5707963267948966 rad @@ -101159,28 +100421,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15788 + - uid: 15877 components: - type: Transform pos: 62.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15789 + - uid: 15878 components: - type: Transform pos: 75.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15790 + - uid: 15879 components: - type: Transform pos: 74.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15791 + - uid: 15880 components: - type: Transform rot: -1.5707963267948966 rad @@ -101188,7 +100450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15792 + - uid: 15881 components: - type: Transform rot: -1.5707963267948966 rad @@ -101196,7 +100458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15793 + - uid: 15882 components: - type: Transform rot: 1.5707963267948966 rad @@ -101204,7 +100466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15794 + - uid: 15883 components: - type: Transform rot: -1.5707963267948966 rad @@ -101212,7 +100474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15795 + - uid: 15884 components: - type: Transform rot: 1.5707963267948966 rad @@ -101220,7 +100482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15796 + - uid: 15885 components: - type: Transform rot: -1.5707963267948966 rad @@ -101228,14 +100490,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15797 + - uid: 15886 components: - type: Transform pos: 72.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15798 + - uid: 15887 components: - type: Transform rot: 3.141592653589793 rad @@ -101243,7 +100505,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15799 + - uid: 15888 components: - type: Transform rot: -1.5707963267948966 rad @@ -101251,40 +100513,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15800 + - uid: 15889 components: - type: Transform pos: -56.5,-58.5 parent: 2 - - uid: 15801 + - uid: 15890 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 - - uid: 15802 + - uid: 15891 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-61.5 parent: 2 - - uid: 15803 + - uid: 15892 components: - type: Transform pos: -55.5,-61.5 parent: 2 - - uid: 15804 + - uid: 15893 components: - type: Transform pos: 55.5,-48.5 parent: 2 - - uid: 15805 + - uid: 15894 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 - - uid: 15806 + - uid: 15895 components: - type: Transform rot: 3.141592653589793 rad @@ -101292,7 +100554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15807 + - uid: 15896 components: - type: Transform rot: 1.5707963267948966 rad @@ -101300,7 +100562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15808 + - uid: 15897 components: - type: Transform rot: 3.141592653589793 rad @@ -101308,44 +100570,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15809 + - uid: 15898 components: - type: Transform pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 15811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 15812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 15813 + - uid: 15899 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-35.5 parent: 2 - - uid: 15814 + - uid: 15900 components: - type: Transform rot: 1.5707963267948966 rad @@ -101353,7 +100591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15815 + - uid: 15901 components: - type: Transform rot: 3.141592653589793 rad @@ -101361,7 +100599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15816 + - uid: 15902 components: - type: Transform rot: 3.141592653589793 rad @@ -101369,7 +100607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15817 + - uid: 15903 components: - type: Transform rot: 3.141592653589793 rad @@ -101377,7 +100615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15818 + - uid: 15904 components: - type: Transform rot: 3.141592653589793 rad @@ -101385,7 +100623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15819 + - uid: 15905 components: - type: Transform rot: -1.5707963267948966 rad @@ -101393,7 +100631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15820 + - uid: 15906 components: - type: Transform rot: 3.141592653589793 rad @@ -101401,7 +100639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15821 + - uid: 15907 components: - type: Transform rot: 3.141592653589793 rad @@ -101409,7 +100647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15822 + - uid: 15908 components: - type: Transform rot: -1.5707963267948966 rad @@ -101417,7 +100655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15823 + - uid: 15909 components: - type: Transform rot: 1.5707963267948966 rad @@ -101425,7 +100663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15824 + - uid: 15910 components: - type: Transform rot: 1.5707963267948966 rad @@ -101433,33 +100671,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15825 + - uid: 15911 components: - type: Transform pos: -62.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15826 + - uid: 15912 components: - type: Transform pos: -67.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15827 + - uid: 15913 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-44.5 parent: 2 - - uid: 15828 + - uid: 15914 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-43.5 parent: 2 - - uid: 15829 + - uid: 15915 components: - type: Transform rot: -1.5707963267948966 rad @@ -101467,7 +100705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15830 + - uid: 15916 components: - type: Transform rot: -1.5707963267948966 rad @@ -101475,7 +100713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15831 + - uid: 15917 components: - type: Transform rot: 3.141592653589793 rad @@ -101483,14 +100721,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15832 + - uid: 15918 components: - type: Transform pos: 39.5,61.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15833 + - uid: 15919 components: - type: Transform rot: 3.141592653589793 rad @@ -101498,7 +100736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15834 + - uid: 15920 components: - type: Transform rot: 3.141592653589793 rad @@ -101506,14 +100744,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15835 + - uid: 15921 components: - type: Transform pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15836 + - uid: 15922 components: - type: Transform rot: -1.5707963267948966 rad @@ -101521,7 +100759,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15837 + - uid: 15923 components: - type: Transform rot: 1.5707963267948966 rad @@ -101529,7 +100767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15838 + - uid: 15924 components: - type: Transform rot: 1.5707963267948966 rad @@ -101537,7 +100775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15839 + - uid: 15925 components: - type: Transform rot: 1.5707963267948966 rad @@ -101545,7 +100783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15840 + - uid: 15926 components: - type: Transform rot: -1.5707963267948966 rad @@ -101553,14 +100791,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15841 + - uid: 15927 components: - type: Transform pos: 12.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15842 + - uid: 15928 components: - type: Transform rot: 1.5707963267948966 rad @@ -101568,244 +100806,420 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 31679 + - uid: 15929 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-37.5 + pos: -24.5,-61.5 parent: 2 - - uid: 31688 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-32.5 + pos: -3.5,-52.5 parent: 2 - - uid: 31689 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15933 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15937 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-32.5 + pos: -3.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15943 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-60.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - - uid: 15843 + - uid: 15947 components: - type: Transform pos: 38.5,1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15844 + - uid: 15948 components: - type: Transform pos: 31.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15845 + - uid: 15949 components: - type: Transform pos: 21.5,16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15846 + - uid: 15950 components: - type: Transform pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15847 + - uid: 15951 components: - type: Transform pos: 21.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15848 + - uid: 15952 components: - type: Transform pos: 17.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15849 + - uid: 15953 components: - type: Transform pos: 34.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15850 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 15851 + - uid: 15954 components: - type: Transform pos: -5.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15852 + - uid: 15955 components: - type: Transform pos: -3.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15853 + - uid: 15956 components: - type: Transform pos: 30.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15854 + - uid: 15957 components: - type: Transform pos: -32.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15855 + - uid: 15958 components: - type: Transform pos: -18.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15856 + - uid: 15959 components: - type: Transform pos: 49.5,20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15857 + - uid: 15960 components: - type: Transform pos: 50.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15858 + - uid: 15961 components: - type: Transform pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15859 + - uid: 15962 components: - type: Transform pos: 44.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15860 + - uid: 15963 components: - type: Transform pos: 64.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15861 + - uid: 15964 components: - type: Transform pos: 29.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15862 + - uid: 15965 components: - type: Transform pos: -41.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15863 + - uid: 15966 components: - type: Transform pos: -42.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15864 + - uid: 15967 components: - type: Transform pos: -20.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15865 + - uid: 15968 components: - type: Transform pos: -31.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15866 + - uid: 15969 components: - type: Transform pos: -32.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15867 + - uid: 15970 components: - type: Transform pos: -45.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15868 + - uid: 15971 components: - type: Transform pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15869 + - uid: 15972 components: - type: Transform pos: -16.5,43.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15870 + - uid: 15973 components: - type: Transform pos: -15.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15871 + - uid: 15974 components: - type: Transform pos: 68.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15872 + - uid: 15975 components: - type: Transform pos: -3.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19073 + - uid: 15976 components: - type: Transform - pos: 26.5,-30.5 + pos: -5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15977 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15978 + components: + - type: Transform + pos: -5.5,-59.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15979 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15980 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15981 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15982 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 15873 + - uid: 15983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15984 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15985 components: - type: Transform rot: -1.5707963267948966 rad @@ -101813,7 +101227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15874 + - uid: 15986 components: - type: Transform rot: 3.141592653589793 rad @@ -101821,7 +101235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15875 + - uid: 15987 components: - type: Transform rot: -1.5707963267948966 rad @@ -101829,7 +101243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15876 + - uid: 15988 components: - type: Transform rot: -1.5707963267948966 rad @@ -101837,56 +101251,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15877 + - uid: 15989 components: - type: Transform pos: 39.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15878 + - uid: 15990 components: - type: Transform pos: 39.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15879 + - uid: 15991 components: - type: Transform pos: 22.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15880 + - uid: 15992 components: - type: Transform pos: 28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15881 + - uid: 15993 components: - type: Transform pos: 28.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15882 + - uid: 15994 components: - type: Transform pos: 22.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15883 + - uid: 15995 components: - type: Transform pos: 2.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15884 + - uid: 15996 components: - type: Transform rot: 3.141592653589793 rad @@ -101894,7 +101308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15885 + - uid: 15997 components: - type: Transform rot: 1.5707963267948966 rad @@ -101902,21 +101316,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15886 + - uid: 15998 components: - type: Transform pos: 2.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15887 + - uid: 15999 components: - type: Transform pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15888 + - uid: 16000 components: - type: Transform rot: -1.5707963267948966 rad @@ -101924,21 +101338,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15889 + - uid: 16001 components: - type: Transform pos: -47.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15890 + - uid: 16002 components: - type: Transform pos: -71.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15891 + - uid: 16003 components: - type: Transform rot: 1.5707963267948966 rad @@ -101946,7 +101360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15892 + - uid: 16004 components: - type: Transform rot: 1.5707963267948966 rad @@ -101954,7 +101368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15893 + - uid: 16005 components: - type: Transform rot: -1.5707963267948966 rad @@ -101962,14 +101376,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15894 + - uid: 16006 components: - type: Transform pos: -72.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15895 + - uid: 16007 components: - type: Transform rot: 1.5707963267948966 rad @@ -101977,21 +101391,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15896 + - uid: 16008 components: - type: Transform pos: -70.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15897 + - uid: 16009 components: - type: Transform pos: -68.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15898 + - uid: 16010 components: - type: Transform rot: -1.5707963267948966 rad @@ -101999,7 +101413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15899 + - uid: 16011 components: - type: Transform rot: 1.5707963267948966 rad @@ -102007,126 +101421,126 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15900 + - uid: 16012 components: - type: Transform pos: -68.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15901 + - uid: 16013 components: - type: Transform pos: -73.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15902 + - uid: 16014 components: - type: Transform pos: -71.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15903 + - uid: 16015 components: - type: Transform pos: -71.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15904 + - uid: 16016 components: - type: Transform pos: -73.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15905 + - uid: 16017 components: - type: Transform pos: -71.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15906 + - uid: 16018 components: - type: Transform pos: -73.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15907 + - uid: 16019 components: - type: Transform pos: -73.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15908 + - uid: 16020 components: - type: Transform pos: -73.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15909 + - uid: 16021 components: - type: Transform pos: -73.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15910 + - uid: 16022 components: - type: Transform pos: -73.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15911 + - uid: 16023 components: - type: Transform pos: -73.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15912 + - uid: 16024 components: - type: Transform pos: -73.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15913 + - uid: 16025 components: - type: Transform pos: -73.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15914 + - uid: 16026 components: - type: Transform pos: -72.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15915 + - uid: 16027 components: - type: Transform pos: -72.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15916 + - uid: 16028 components: - type: Transform pos: -72.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15917 + - uid: 16029 components: - type: Transform rot: 1.5707963267948966 rad @@ -102134,7 +101548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15918 + - uid: 16030 components: - type: Transform rot: 1.5707963267948966 rad @@ -102142,7 +101556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15919 + - uid: 16031 components: - type: Transform rot: 1.5707963267948966 rad @@ -102150,41 +101564,41 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15920 + - uid: 16032 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 - - uid: 15921 + - uid: 16033 components: - type: Transform pos: -73.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15922 + - uid: 16034 components: - type: Transform pos: -73.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15923 + - uid: 16035 components: - type: Transform pos: -71.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15924 + - uid: 16036 components: - type: Transform pos: -71.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15925 + - uid: 16037 components: - type: Transform rot: 3.141592653589793 rad @@ -102192,7 +101606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15926 + - uid: 16038 components: - type: Transform rot: 3.141592653589793 rad @@ -102200,7 +101614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15927 + - uid: 16039 components: - type: Transform rot: 3.141592653589793 rad @@ -102208,7 +101622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15928 + - uid: 16040 components: - type: Transform rot: 1.5707963267948966 rad @@ -102216,7 +101630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15929 + - uid: 16041 components: - type: Transform rot: -1.5707963267948966 rad @@ -102224,21 +101638,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15930 + - uid: 16042 components: - type: Transform pos: -6.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15931 + - uid: 16043 components: - type: Transform pos: -3.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15932 + - uid: 16044 components: - type: Transform rot: 3.141592653589793 rad @@ -102246,7 +101660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15933 + - uid: 16045 components: - type: Transform rot: 3.141592653589793 rad @@ -102254,7 +101668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15934 + - uid: 16046 components: - type: Transform rot: 1.5707963267948966 rad @@ -102262,7 +101676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15935 + - uid: 16047 components: - type: Transform rot: 3.141592653589793 rad @@ -102270,7 +101684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15936 + - uid: 16048 components: - type: Transform rot: 3.141592653589793 rad @@ -102278,7 +101692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15937 + - uid: 16049 components: - type: Transform rot: 1.5707963267948966 rad @@ -102286,14 +101700,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15938 + - uid: 16050 components: - type: Transform pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15939 + - uid: 16051 components: - type: Transform rot: 3.141592653589793 rad @@ -102301,21 +101715,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15940 + - uid: 16052 components: - type: Transform pos: -18.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15941 + - uid: 16053 components: - type: Transform pos: 46.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15942 + - uid: 16054 components: - type: Transform rot: 3.141592653589793 rad @@ -102323,14 +101737,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15943 + - uid: 16055 components: - type: Transform pos: 46.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15944 + - uid: 16056 components: - type: Transform rot: -1.5707963267948966 rad @@ -102338,14 +101752,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15945 + - uid: 16057 components: - type: Transform pos: 34.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15946 + - uid: 16058 components: - type: Transform rot: 3.141592653589793 rad @@ -102353,7 +101767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15947 + - uid: 16059 components: - type: Transform rot: 3.141592653589793 rad @@ -102361,7 +101775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15948 + - uid: 16060 components: - type: Transform rot: -1.5707963267948966 rad @@ -102369,7 +101783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15949 + - uid: 16061 components: - type: Transform rot: 3.141592653589793 rad @@ -102377,7 +101791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15950 + - uid: 16062 components: - type: Transform rot: 3.141592653589793 rad @@ -102385,15 +101799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15952 + - uid: 16063 components: - type: Transform rot: 3.141592653589793 rad @@ -102401,7 +101807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15953 + - uid: 16064 components: - type: Transform rot: 1.5707963267948966 rad @@ -102409,42 +101815,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15954 + - uid: 16065 components: - type: Transform pos: -7.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15955 + - uid: 16066 components: - type: Transform pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15956 + - uid: 16067 components: - type: Transform pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15957 + - uid: 16068 components: - type: Transform pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15958 + - uid: 16069 components: - type: Transform pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15959 + - uid: 16070 components: - type: Transform rot: -1.5707963267948966 rad @@ -102452,14 +101858,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15960 + - uid: 16071 components: - type: Transform pos: -8.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15961 + - uid: 16072 components: - type: Transform rot: 3.141592653589793 rad @@ -102467,38 +101873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15962 - components: - - type: Transform - pos: -12.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15966 + - uid: 16073 components: - type: Transform rot: -1.5707963267948966 rad @@ -102506,7 +101881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15967 + - uid: 16074 components: - type: Transform rot: -1.5707963267948966 rad @@ -102514,7 +101889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15968 + - uid: 16075 components: - type: Transform rot: 3.141592653589793 rad @@ -102522,49 +101897,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15969 + - uid: 16076 components: - type: Transform pos: 46.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15970 + - uid: 16077 components: - type: Transform pos: 46.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15971 + - uid: 16078 components: - type: Transform pos: 46.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15972 + - uid: 16079 components: - type: Transform pos: 46.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15973 + - uid: 16080 components: - type: Transform pos: 8.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15974 + - uid: 16081 components: - type: Transform pos: 8.5,7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15975 + - uid: 16082 components: - type: Transform rot: -1.5707963267948966 rad @@ -102572,7 +101947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15976 + - uid: 16083 components: - type: Transform rot: 3.141592653589793 rad @@ -102580,7 +101955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15977 + - uid: 16084 components: - type: Transform rot: 1.5707963267948966 rad @@ -102588,7 +101963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15978 + - uid: 16085 components: - type: Transform rot: 1.5707963267948966 rad @@ -102596,7 +101971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15979 + - uid: 16086 components: - type: Transform rot: -1.5707963267948966 rad @@ -102604,14 +101979,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15980 + - uid: 16087 components: - type: Transform pos: 30.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15981 + - uid: 16088 components: - type: Transform rot: 3.141592653589793 rad @@ -102619,7 +101994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15982 + - uid: 16089 components: - type: Transform rot: 3.141592653589793 rad @@ -102627,7 +102002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15983 + - uid: 16090 components: - type: Transform rot: -1.5707963267948966 rad @@ -102635,7 +102010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15984 + - uid: 16091 components: - type: Transform rot: 1.5707963267948966 rad @@ -102643,7 +102018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15985 + - uid: 16092 components: - type: Transform rot: 1.5707963267948966 rad @@ -102651,7 +102026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15986 + - uid: 16093 components: - type: Transform rot: 1.5707963267948966 rad @@ -102659,7 +102034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15987 + - uid: 16094 components: - type: Transform rot: 1.5707963267948966 rad @@ -102667,21 +102042,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15988 + - uid: 16095 components: - type: Transform pos: 29.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15989 + - uid: 16096 components: - type: Transform pos: 29.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15990 + - uid: 16097 components: - type: Transform rot: 3.141592653589793 rad @@ -102689,117 +102064,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15991 + - uid: 16098 components: - type: Transform pos: 24.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 15992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15995 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16005 + - uid: 16099 components: - type: Transform rot: 3.141592653589793 rad @@ -102807,14 +102079,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16006 + - uid: 16100 components: - type: Transform pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16007 + - uid: 16101 components: - type: Transform rot: -1.5707963267948966 rad @@ -102822,35 +102094,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16008 + - uid: 16102 components: - type: Transform pos: -20.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16009 + - uid: 16103 components: - type: Transform pos: -20.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16010 + - uid: 16104 components: - type: Transform pos: -25.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16011 + - uid: 16105 components: - type: Transform pos: -25.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16012 + - uid: 16106 components: - type: Transform rot: 1.5707963267948966 rad @@ -102858,14 +102130,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16013 + - uid: 16107 components: - type: Transform pos: 35.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16014 + - uid: 16108 components: - type: Transform rot: 1.5707963267948966 rad @@ -102873,7 +102145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16015 + - uid: 16109 components: - type: Transform rot: 1.5707963267948966 rad @@ -102881,7 +102153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16016 + - uid: 16110 components: - type: Transform rot: 3.141592653589793 rad @@ -102889,28 +102161,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16017 + - uid: 16111 components: - type: Transform pos: -3.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16018 + - uid: 16112 components: - type: Transform pos: -3.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16019 + - uid: 16113 components: - type: Transform pos: -3.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16020 + - uid: 16114 components: - type: Transform rot: 1.5707963267948966 rad @@ -102918,7 +102190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16021 + - uid: 16115 components: - type: Transform rot: 3.141592653589793 rad @@ -102926,7 +102198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16022 + - uid: 16116 components: - type: Transform rot: 1.5707963267948966 rad @@ -102934,7 +102206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16023 + - uid: 16117 components: - type: Transform rot: 1.5707963267948966 rad @@ -102942,14 +102214,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16024 + - uid: 16118 components: - type: Transform pos: 3.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16025 + - uid: 16119 components: - type: Transform rot: 1.5707963267948966 rad @@ -102957,7 +102229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16026 + - uid: 16120 components: - type: Transform rot: 1.5707963267948966 rad @@ -102965,7 +102237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16027 + - uid: 16121 components: - type: Transform rot: 3.141592653589793 rad @@ -102973,7 +102245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16028 + - uid: 16122 components: - type: Transform rot: 3.141592653589793 rad @@ -102981,7 +102253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16029 + - uid: 16123 components: - type: Transform rot: 3.141592653589793 rad @@ -102989,7 +102261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16030 + - uid: 16124 components: - type: Transform rot: 3.141592653589793 rad @@ -102997,7 +102269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16031 + - uid: 16125 components: - type: Transform rot: 3.141592653589793 rad @@ -103005,7 +102277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16032 + - uid: 16126 components: - type: Transform rot: 1.5707963267948966 rad @@ -103013,7 +102285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16033 + - uid: 16127 components: - type: Transform rot: 3.141592653589793 rad @@ -103021,7 +102293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16034 + - uid: 16128 components: - type: Transform rot: 1.5707963267948966 rad @@ -103029,7 +102301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16035 + - uid: 16129 components: - type: Transform rot: 1.5707963267948966 rad @@ -103037,7 +102309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16036 + - uid: 16130 components: - type: Transform rot: 3.141592653589793 rad @@ -103045,14 +102317,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16037 + - uid: 16131 components: - type: Transform pos: 15.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16038 + - uid: 16132 components: - type: Transform rot: 1.5707963267948966 rad @@ -103060,7 +102332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16039 + - uid: 16133 components: - type: Transform rot: 1.5707963267948966 rad @@ -103068,7 +102340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16040 + - uid: 16134 components: - type: Transform rot: 1.5707963267948966 rad @@ -103076,7 +102348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16041 + - uid: 16135 components: - type: Transform rot: 1.5707963267948966 rad @@ -103084,21 +102356,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16042 + - uid: 16136 components: - type: Transform pos: 20.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16043 + - uid: 16137 components: - type: Transform pos: 20.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16044 + - uid: 16138 components: - type: Transform rot: -1.5707963267948966 rad @@ -103106,7 +102378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16045 + - uid: 16139 components: - type: Transform rot: -1.5707963267948966 rad @@ -103114,7 +102386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16046 + - uid: 16140 components: - type: Transform rot: 1.5707963267948966 rad @@ -103122,7 +102394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16047 + - uid: 16141 components: - type: Transform rot: -1.5707963267948966 rad @@ -103130,14 +102402,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16048 + - uid: 16142 components: - type: Transform pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16049 + - uid: 16143 components: - type: Transform rot: -1.5707963267948966 rad @@ -103145,7 +102417,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16050 + - uid: 16144 components: - type: Transform rot: 1.5707963267948966 rad @@ -103153,7 +102425,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16051 + - uid: 16145 components: - type: Transform rot: 1.5707963267948966 rad @@ -103161,14 +102433,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16052 + - uid: 16146 components: - type: Transform pos: 0.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16053 + - uid: 16147 components: - type: Transform rot: 3.141592653589793 rad @@ -103176,7 +102448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16054 + - uid: 16148 components: - type: Transform rot: 3.141592653589793 rad @@ -103184,7 +102456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16055 + - uid: 16149 components: - type: Transform rot: 1.5707963267948966 rad @@ -103192,7 +102464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16056 + - uid: 16150 components: - type: Transform rot: 1.5707963267948966 rad @@ -103200,14 +102472,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16057 + - uid: 16151 components: - type: Transform pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16058 + - uid: 16152 components: - type: Transform rot: 3.141592653589793 rad @@ -103215,7 +102487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16059 + - uid: 16153 components: - type: Transform rot: 1.5707963267948966 rad @@ -103223,7 +102495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16060 + - uid: 16154 components: - type: Transform rot: 1.5707963267948966 rad @@ -103231,7 +102503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16061 + - uid: 16155 components: - type: Transform rot: -1.5707963267948966 rad @@ -103239,7 +102511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16062 + - uid: 16156 components: - type: Transform rot: 1.5707963267948966 rad @@ -103247,14 +102519,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16063 + - uid: 16157 components: - type: Transform pos: 0.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16064 + - uid: 16158 components: - type: Transform rot: -1.5707963267948966 rad @@ -103262,77 +102534,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16065 + - uid: 16159 components: - type: Transform pos: -6.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16066 + - uid: 16160 components: - type: Transform pos: -6.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16067 + - uid: 16161 components: - type: Transform pos: -6.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16068 + - uid: 16162 components: - type: Transform pos: -8.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16069 + - uid: 16163 components: - type: Transform pos: 3.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16070 + - uid: 16164 components: - type: Transform pos: 15.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16071 + - uid: 16165 components: - type: Transform pos: 15.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16072 + - uid: 16166 components: - type: Transform pos: 15.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16073 + - uid: 16167 components: - type: Transform pos: -23.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16074 + - uid: 16168 components: - type: Transform pos: 17.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16075 + - uid: 16169 components: - type: Transform rot: 1.5707963267948966 rad @@ -103340,7 +102612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16076 + - uid: 16170 components: - type: Transform rot: 1.5707963267948966 rad @@ -103348,49 +102620,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16077 + - uid: 16171 components: - type: Transform pos: -18.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16078 + - uid: 16172 components: - type: Transform pos: -20.5,28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16079 + - uid: 16173 components: - type: Transform pos: 34.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16080 + - uid: 16174 components: - type: Transform pos: 31.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16081 + - uid: 16175 components: - type: Transform pos: 24.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16082 + - uid: 16176 components: - type: Transform pos: 36.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16083 + - uid: 16177 components: - type: Transform rot: -1.5707963267948966 rad @@ -103398,14 +102670,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16084 + - uid: 16178 components: - type: Transform pos: 47.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16085 + - uid: 16179 components: - type: Transform rot: 3.141592653589793 rad @@ -103413,21 +102685,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16086 + - uid: 16180 components: - type: Transform pos: 21.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16087 + - uid: 16181 components: - type: Transform pos: 8.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16088 + - uid: 16182 components: - type: Transform rot: 1.5707963267948966 rad @@ -103435,7 +102707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16089 + - uid: 16183 components: - type: Transform rot: 3.141592653589793 rad @@ -103443,28 +102715,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16090 + - uid: 16184 components: - type: Transform pos: -20.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16091 + - uid: 16185 components: - type: Transform pos: 8.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16092 + - uid: 16186 components: - type: Transform pos: -18.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16093 + - uid: 16187 components: - type: Transform rot: 1.5707963267948966 rad @@ -103472,7 +102744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16094 + - uid: 16188 components: - type: Transform rot: 3.141592653589793 rad @@ -103480,7 +102752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16095 + - uid: 16189 components: - type: Transform rot: -1.5707963267948966 rad @@ -103488,56 +102760,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16096 + - uid: 16190 components: - type: Transform pos: 15.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16097 + - uid: 16191 components: - type: Transform pos: -3.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16098 + - uid: 16192 components: - type: Transform pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16099 + - uid: 16193 components: - type: Transform pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16100 + - uid: 16194 components: - type: Transform pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16101 + - uid: 16195 components: - type: Transform pos: -3.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16102 + - uid: 16196 components: - type: Transform pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16103 + - uid: 16197 components: - type: Transform rot: -1.5707963267948966 rad @@ -103545,7 +102817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16104 + - uid: 16198 components: - type: Transform rot: 1.5707963267948966 rad @@ -103553,7 +102825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16105 + - uid: 16199 components: - type: Transform rot: 1.5707963267948966 rad @@ -103561,7 +102833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16106 + - uid: 16200 components: - type: Transform rot: -1.5707963267948966 rad @@ -103569,7 +102841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16107 + - uid: 16201 components: - type: Transform rot: -1.5707963267948966 rad @@ -103577,7 +102849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16108 + - uid: 16202 components: - type: Transform rot: 1.5707963267948966 rad @@ -103585,7 +102857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16109 + - uid: 16203 components: - type: Transform rot: 1.5707963267948966 rad @@ -103593,7 +102865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16110 + - uid: 16204 components: - type: Transform rot: 3.141592653589793 rad @@ -103601,23 +102873,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16111 + - uid: 16205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-58.5 + pos: -18.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16112 + - uid: 16206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-59.5 + pos: -18.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16113 + - uid: 16207 components: - type: Transform rot: 1.5707963267948966 rad @@ -103625,15 +102895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16115 + - uid: 16208 components: - type: Transform rot: 3.141592653589793 rad @@ -103641,7 +102903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16116 + - uid: 16209 components: - type: Transform rot: 3.141592653589793 rad @@ -103649,7 +102911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16117 + - uid: 16210 components: - type: Transform rot: 1.5707963267948966 rad @@ -103657,7 +102919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16118 + - uid: 16211 components: - type: Transform rot: 1.5707963267948966 rad @@ -103665,85 +102927,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16119 - components: - - type: Transform - pos: -9.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16120 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16121 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16122 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16123 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16125 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16126 + - uid: 16212 components: - type: Transform pos: -7.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16127 + - uid: 16213 components: - type: Transform pos: -7.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16128 + - uid: 16214 components: - type: Transform pos: -7.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16129 + - uid: 16215 components: - type: Transform pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16130 + - uid: 16216 components: - type: Transform rot: -1.5707963267948966 rad @@ -103751,7 +102963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16131 + - uid: 16217 components: - type: Transform rot: -1.5707963267948966 rad @@ -103759,21 +102971,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16132 + - uid: 16218 components: - type: Transform pos: -8.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16133 + - uid: 16219 components: - type: Transform pos: -8.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16134 + - uid: 16220 components: - type: Transform rot: 3.141592653589793 rad @@ -103781,53 +102993,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16137 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16140 + - uid: 16221 components: - type: Transform pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16141 + - uid: 16222 components: - type: Transform rot: 1.5707963267948966 rad @@ -103835,7 +103008,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16142 + - uid: 16223 components: - type: Transform rot: 1.5707963267948966 rad @@ -103843,7 +103016,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16143 + - uid: 16224 components: - type: Transform rot: 1.5707963267948966 rad @@ -103851,14 +103024,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16144 + - uid: 16225 components: - type: Transform pos: 17.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16145 + - uid: 16226 components: - type: Transform rot: -1.5707963267948966 rad @@ -103866,7 +103039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16146 + - uid: 16227 components: - type: Transform rot: -1.5707963267948966 rad @@ -103874,7 +103047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16147 + - uid: 16228 components: - type: Transform rot: -1.5707963267948966 rad @@ -103882,7 +103055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16148 + - uid: 16229 components: - type: Transform rot: -1.5707963267948966 rad @@ -103890,7 +103063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16149 + - uid: 16230 components: - type: Transform rot: -1.5707963267948966 rad @@ -103898,7 +103071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16150 + - uid: 16231 components: - type: Transform rot: -1.5707963267948966 rad @@ -103906,7 +103079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16151 + - uid: 16232 components: - type: Transform rot: -1.5707963267948966 rad @@ -103914,7 +103087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16152 + - uid: 16233 components: - type: Transform rot: -1.5707963267948966 rad @@ -103922,7 +103095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16153 + - uid: 16234 components: - type: Transform rot: -1.5707963267948966 rad @@ -103930,14 +103103,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16154 + - uid: 16235 components: - type: Transform pos: 42.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16155 + - uid: 16236 components: - type: Transform rot: 1.5707963267948966 rad @@ -103945,7 +103118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16156 + - uid: 16237 components: - type: Transform rot: 1.5707963267948966 rad @@ -103953,7 +103126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16157 + - uid: 16238 components: - type: Transform rot: 1.5707963267948966 rad @@ -103961,7 +103134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16158 + - uid: 16239 components: - type: Transform rot: 1.5707963267948966 rad @@ -103969,35 +103142,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16159 + - uid: 16240 components: - type: Transform pos: 38.5,2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16160 + - uid: 16241 components: - type: Transform pos: 38.5,4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16161 + - uid: 16242 components: - type: Transform pos: 25.5,10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16162 + - uid: 16243 components: - type: Transform pos: 25.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16163 + - uid: 16244 components: - type: Transform rot: 1.5707963267948966 rad @@ -104005,14 +103178,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16164 + - uid: 16245 components: - type: Transform pos: 21.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16165 + - uid: 16246 components: - type: Transform rot: 1.5707963267948966 rad @@ -104020,7 +103193,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16166 + - uid: 16247 components: - type: Transform rot: 1.5707963267948966 rad @@ -104028,21 +103201,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16167 + - uid: 16248 components: - type: Transform pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16168 + - uid: 16249 components: - type: Transform pos: -5.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16169 + - uid: 16250 components: - type: Transform rot: -1.5707963267948966 rad @@ -104050,7 +103223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16170 + - uid: 16251 components: - type: Transform rot: 3.141592653589793 rad @@ -104058,7 +103231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16171 + - uid: 16252 components: - type: Transform rot: 3.141592653589793 rad @@ -104066,7 +103239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16172 + - uid: 16253 components: - type: Transform rot: -1.5707963267948966 rad @@ -104074,23 +103247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16175 + - uid: 16254 components: - type: Transform rot: 3.141592653589793 rad @@ -104098,42 +103255,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16176 + - uid: 16255 components: - type: Transform pos: 15.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16177 + - uid: 16256 components: - type: Transform pos: -3.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16178 + - uid: 16257 components: - type: Transform pos: -3.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16179 + - uid: 16258 components: - type: Transform pos: -3.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16180 + - uid: 16259 components: - type: Transform pos: -3.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16181 + - uid: 16260 components: - type: Transform rot: 1.5707963267948966 rad @@ -104141,7 +103298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16182 + - uid: 16261 components: - type: Transform rot: -1.5707963267948966 rad @@ -104149,7 +103306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16183 + - uid: 16262 components: - type: Transform rot: 1.5707963267948966 rad @@ -104157,7 +103314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16184 + - uid: 16263 components: - type: Transform rot: 1.5707963267948966 rad @@ -104165,14 +103322,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16185 + - uid: 16264 components: - type: Transform pos: -20.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16186 + - uid: 16265 components: - type: Transform rot: -1.5707963267948966 rad @@ -104180,7 +103337,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16187 + - uid: 16266 components: - type: Transform rot: 1.5707963267948966 rad @@ -104188,7 +103345,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16188 + - uid: 16267 components: - type: Transform rot: 1.5707963267948966 rad @@ -104196,7 +103353,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16189 + - uid: 16268 components: - type: Transform rot: 1.5707963267948966 rad @@ -104204,7 +103361,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16190 + - uid: 16269 components: - type: Transform rot: 1.5707963267948966 rad @@ -104212,21 +103369,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16191 + - uid: 16270 components: - type: Transform pos: -8.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16192 + - uid: 16271 components: - type: Transform pos: -8.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16193 + - uid: 16272 components: - type: Transform rot: 1.5707963267948966 rad @@ -104234,7 +103391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16194 + - uid: 16273 components: - type: Transform rot: -1.5707963267948966 rad @@ -104242,14 +103399,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16195 + - uid: 16274 components: - type: Transform pos: -23.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16196 + - uid: 16275 components: - type: Transform rot: 1.5707963267948966 rad @@ -104257,7 +103414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16197 + - uid: 16276 components: - type: Transform rot: 3.141592653589793 rad @@ -104265,7 +103422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16198 + - uid: 16277 components: - type: Transform rot: 3.141592653589793 rad @@ -104273,14 +103430,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16199 + - uid: 16278 components: - type: Transform pos: -5.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16200 + - uid: 16279 components: - type: Transform rot: -1.5707963267948966 rad @@ -104288,7 +103445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16201 + - uid: 16280 components: - type: Transform rot: 1.5707963267948966 rad @@ -104296,7 +103453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16202 + - uid: 16281 components: - type: Transform rot: 1.5707963267948966 rad @@ -104304,7 +103461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16203 + - uid: 16282 components: - type: Transform rot: 1.5707963267948966 rad @@ -104312,7 +103469,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16204 + - uid: 16283 components: - type: Transform rot: -1.5707963267948966 rad @@ -104320,7 +103477,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16205 + - uid: 16284 components: - type: Transform rot: -1.5707963267948966 rad @@ -104328,7 +103485,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16206 + - uid: 16285 components: - type: Transform rot: 1.5707963267948966 rad @@ -104336,7 +103493,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16207 + - uid: 16286 components: - type: Transform rot: 1.5707963267948966 rad @@ -104344,7 +103501,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16208 + - uid: 16287 components: - type: Transform rot: 3.141592653589793 rad @@ -104352,7 +103509,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16209 + - uid: 16288 components: - type: Transform rot: 1.5707963267948966 rad @@ -104360,7 +103517,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16210 + - uid: 16289 components: - type: Transform rot: 1.5707963267948966 rad @@ -104368,14 +103525,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16211 + - uid: 16290 components: - type: Transform pos: -3.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16212 + - uid: 16291 components: - type: Transform rot: 3.141592653589793 rad @@ -104383,14 +103540,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16213 + - uid: 16292 components: - type: Transform pos: 47.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16214 + - uid: 16293 components: - type: Transform rot: -1.5707963267948966 rad @@ -104398,7 +103555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16215 + - uid: 16294 components: - type: Transform rot: -1.5707963267948966 rad @@ -104406,7 +103563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16216 + - uid: 16295 components: - type: Transform rot: -1.5707963267948966 rad @@ -104414,7 +103571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16217 + - uid: 16296 components: - type: Transform rot: -1.5707963267948966 rad @@ -104422,7 +103579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16218 + - uid: 16297 components: - type: Transform rot: -1.5707963267948966 rad @@ -104430,7 +103587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16219 + - uid: 16298 components: - type: Transform rot: -1.5707963267948966 rad @@ -104438,7 +103595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16220 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad @@ -104446,7 +103603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16221 + - uid: 16300 components: - type: Transform rot: -1.5707963267948966 rad @@ -104454,7 +103611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16222 + - uid: 16301 components: - type: Transform rot: -1.5707963267948966 rad @@ -104462,7 +103619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16223 + - uid: 16302 components: - type: Transform rot: -1.5707963267948966 rad @@ -104470,7 +103627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16224 + - uid: 16303 components: - type: Transform rot: 1.5707963267948966 rad @@ -104478,7 +103635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16225 + - uid: 16304 components: - type: Transform rot: -1.5707963267948966 rad @@ -104486,7 +103643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16226 + - uid: 16305 components: - type: Transform rot: 3.141592653589793 rad @@ -104494,7 +103651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16227 + - uid: 16306 components: - type: Transform rot: 3.141592653589793 rad @@ -104502,7 +103659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16228 + - uid: 16307 components: - type: Transform rot: 3.141592653589793 rad @@ -104510,7 +103667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16229 + - uid: 16308 components: - type: Transform rot: 3.141592653589793 rad @@ -104518,7 +103675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16230 + - uid: 16309 components: - type: Transform rot: 1.5707963267948966 rad @@ -104526,14 +103683,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16231 + - uid: 16310 components: - type: Transform pos: 10.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16232 + - uid: 16311 components: - type: Transform rot: 3.141592653589793 rad @@ -104541,7 +103698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16233 + - uid: 16312 components: - type: Transform rot: 3.141592653589793 rad @@ -104549,7 +103706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16234 + - uid: 16313 components: - type: Transform rot: 3.141592653589793 rad @@ -104557,50 +103714,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16235 + - uid: 16314 components: - type: Transform pos: 34.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16236 + - uid: 16315 components: - type: Transform pos: 10.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16237 + - uid: 16316 components: - type: Transform pos: -5.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16238 + - uid: 16317 components: - type: Transform pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16240 + - uid: 16318 components: - type: Transform pos: 34.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16241 + - uid: 16319 components: - type: Transform rot: 3.141592653589793 rad @@ -104608,7 +103757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16242 + - uid: 16320 components: - type: Transform rot: 1.5707963267948966 rad @@ -104616,7 +103765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16243 + - uid: 16321 components: - type: Transform rot: 1.5707963267948966 rad @@ -104624,7 +103773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16244 + - uid: 16322 components: - type: Transform rot: -1.5707963267948966 rad @@ -104632,7 +103781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16245 + - uid: 16323 components: - type: Transform rot: -1.5707963267948966 rad @@ -104640,7 +103789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16246 + - uid: 16324 components: - type: Transform rot: -1.5707963267948966 rad @@ -104648,28 +103797,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16247 + - uid: 16325 components: - type: Transform pos: 21.5,10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16248 + - uid: 16326 components: - type: Transform pos: 21.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16249 + - uid: 16327 components: - type: Transform pos: 21.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16250 + - uid: 16328 components: - type: Transform rot: 1.5707963267948966 rad @@ -104677,21 +103826,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16251 + - uid: 16329 components: - type: Transform pos: 25.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16252 + - uid: 16330 components: - type: Transform pos: 25.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16253 + - uid: 16331 components: - type: Transform rot: -1.5707963267948966 rad @@ -104699,7 +103848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16254 + - uid: 16332 components: - type: Transform rot: -1.5707963267948966 rad @@ -104707,7 +103856,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16255 + - uid: 16333 components: - type: Transform rot: 1.5707963267948966 rad @@ -104715,28 +103864,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16256 + - uid: 16334 components: - type: Transform pos: 38.5,3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16257 + - uid: 16335 components: - type: Transform pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16258 + - uid: 16336 components: - type: Transform pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16259 + - uid: 16337 components: - type: Transform rot: -1.5707963267948966 rad @@ -104744,7 +103893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16260 + - uid: 16338 components: - type: Transform rot: 1.5707963267948966 rad @@ -104752,35 +103901,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16261 + - uid: 16339 components: - type: Transform pos: 20.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16262 + - uid: 16340 components: - type: Transform pos: 20.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16263 + - uid: 16341 components: - type: Transform pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16264 + - uid: 16342 components: - type: Transform pos: 20.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16265 + - uid: 16343 components: - type: Transform rot: 1.5707963267948966 rad @@ -104788,7 +103937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16266 + - uid: 16344 components: - type: Transform rot: 3.141592653589793 rad @@ -104796,7 +103945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16267 + - uid: 16345 components: - type: Transform rot: 3.141592653589793 rad @@ -104804,7 +103953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16268 + - uid: 16346 components: - type: Transform rot: 3.141592653589793 rad @@ -104812,7 +103961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16269 + - uid: 16347 components: - type: Transform rot: 1.5707963267948966 rad @@ -104820,7 +103969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16270 + - uid: 16348 components: - type: Transform rot: 1.5707963267948966 rad @@ -104828,7 +103977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16271 + - uid: 16349 components: - type: Transform rot: 3.141592653589793 rad @@ -104836,7 +103985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16272 + - uid: 16350 components: - type: Transform rot: 3.141592653589793 rad @@ -104844,7 +103993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16273 + - uid: 16351 components: - type: Transform rot: 3.141592653589793 rad @@ -104852,7 +104001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16274 + - uid: 16352 components: - type: Transform rot: 1.5707963267948966 rad @@ -104860,7 +104009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16275 + - uid: 16353 components: - type: Transform rot: 1.5707963267948966 rad @@ -104868,7 +104017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16276 + - uid: 16354 components: - type: Transform rot: 1.5707963267948966 rad @@ -104876,14 +104025,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16277 + - uid: 16355 components: - type: Transform pos: -8.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16278 + - uid: 16356 components: - type: Transform rot: 1.5707963267948966 rad @@ -104891,7 +104040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16279 + - uid: 16357 components: - type: Transform rot: 1.5707963267948966 rad @@ -104899,7 +104048,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16280 + - uid: 16358 components: - type: Transform rot: 1.5707963267948966 rad @@ -104907,7 +104056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16281 + - uid: 16359 components: - type: Transform rot: 1.5707963267948966 rad @@ -104915,7 +104064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16282 + - uid: 16360 components: - type: Transform rot: 1.5707963267948966 rad @@ -104923,49 +104072,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16283 + - uid: 16361 components: - type: Transform pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16284 + - uid: 16362 components: - type: Transform pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16285 + - uid: 16363 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16286 + - uid: 16364 components: - type: Transform pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16287 + - uid: 16365 components: - type: Transform pos: 9.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16288 + - uid: 16366 components: - type: Transform pos: 9.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16289 + - uid: 16367 components: - type: Transform rot: 1.5707963267948966 rad @@ -104973,56 +104122,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16290 + - uid: 16368 components: - type: Transform pos: 11.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16291 + - uid: 16369 components: - type: Transform pos: 11.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16292 + - uid: 16370 components: - type: Transform pos: 11.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16293 + - uid: 16371 components: - type: Transform pos: 11.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16294 + - uid: 16372 components: - type: Transform pos: 11.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16295 + - uid: 16373 components: - type: Transform pos: 11.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16296 + - uid: 16374 components: - type: Transform pos: 11.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16297 + - uid: 16375 components: - type: Transform rot: -1.5707963267948966 rad @@ -105030,7 +104179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16298 + - uid: 16376 components: - type: Transform rot: 3.141592653589793 rad @@ -105038,7 +104187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16299 + - uid: 16377 components: - type: Transform rot: 1.5707963267948966 rad @@ -105046,7 +104195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16300 + - uid: 16378 components: - type: Transform rot: 1.5707963267948966 rad @@ -105054,21 +104203,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16301 + - uid: 16379 components: - type: Transform pos: 23.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16302 + - uid: 16380 components: - type: Transform pos: 23.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16303 + - uid: 16381 components: - type: Transform rot: 1.5707963267948966 rad @@ -105076,7 +104225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16304 + - uid: 16382 components: - type: Transform rot: 3.141592653589793 rad @@ -105084,7 +104233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16305 + - uid: 16383 components: - type: Transform rot: -1.5707963267948966 rad @@ -105092,7 +104241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16306 + - uid: 16384 components: - type: Transform rot: -1.5707963267948966 rad @@ -105100,21 +104249,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16307 + - uid: 16385 components: - type: Transform pos: 7.5,17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16308 + - uid: 16386 components: - type: Transform pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16309 + - uid: 16387 components: - type: Transform rot: 3.141592653589793 rad @@ -105122,14 +104271,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16310 + - uid: 16388 components: - type: Transform pos: 34.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16311 + - uid: 16389 components: - type: Transform rot: -1.5707963267948966 rad @@ -105137,22 +104286,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16313 + - uid: 16390 components: - type: Transform pos: 21.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16314 + - uid: 16391 components: - type: Transform rot: 3.141592653589793 rad @@ -105160,7 +104301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16315 + - uid: 16392 components: - type: Transform rot: 3.141592653589793 rad @@ -105168,7 +104309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16316 + - uid: 16393 components: - type: Transform rot: 3.141592653589793 rad @@ -105176,7 +104317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16317 + - uid: 16394 components: - type: Transform rot: 3.141592653589793 rad @@ -105184,7 +104325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16318 + - uid: 16395 components: - type: Transform rot: 3.141592653589793 rad @@ -105192,7 +104333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16319 + - uid: 16396 components: - type: Transform rot: 3.141592653589793 rad @@ -105200,7 +104341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16320 + - uid: 16397 components: - type: Transform rot: -1.5707963267948966 rad @@ -105208,7 +104349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16321 + - uid: 16398 components: - type: Transform rot: -1.5707963267948966 rad @@ -105216,7 +104357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16322 + - uid: 16399 components: - type: Transform rot: -1.5707963267948966 rad @@ -105224,7 +104365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16323 + - uid: 16400 components: - type: Transform rot: -1.5707963267948966 rad @@ -105232,7 +104373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16324 + - uid: 16401 components: - type: Transform rot: 1.5707963267948966 rad @@ -105240,7 +104381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16325 + - uid: 16402 components: - type: Transform rot: 1.5707963267948966 rad @@ -105248,7 +104389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16326 + - uid: 16403 components: - type: Transform rot: 1.5707963267948966 rad @@ -105256,7 +104397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16327 + - uid: 16404 components: - type: Transform rot: -1.5707963267948966 rad @@ -105264,21 +104405,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16328 + - uid: 16405 components: - type: Transform pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16329 + - uid: 16406 components: - type: Transform pos: 26.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16330 + - uid: 16407 components: - type: Transform rot: -1.5707963267948966 rad @@ -105286,7 +104427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16331 + - uid: 16408 components: - type: Transform rot: -1.5707963267948966 rad @@ -105294,7 +104435,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16332 + - uid: 16409 components: - type: Transform rot: 3.141592653589793 rad @@ -105302,7 +104443,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16333 + - uid: 16410 components: - type: Transform rot: 3.141592653589793 rad @@ -105310,7 +104451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16334 + - uid: 16411 components: - type: Transform rot: 3.141592653589793 rad @@ -105318,7 +104459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16335 + - uid: 16412 components: - type: Transform rot: 1.5707963267948966 rad @@ -105326,7 +104467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16336 + - uid: 16413 components: - type: Transform rot: 1.5707963267948966 rad @@ -105334,7 +104475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16337 + - uid: 16414 components: - type: Transform rot: 1.5707963267948966 rad @@ -105342,7 +104483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16338 + - uid: 16415 components: - type: Transform rot: 3.141592653589793 rad @@ -105350,7 +104491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16339 + - uid: 16416 components: - type: Transform rot: 1.5707963267948966 rad @@ -105358,21 +104499,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16340 + - uid: 16417 components: - type: Transform pos: 24.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16341 + - uid: 16418 components: - type: Transform pos: 24.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16342 + - uid: 16419 components: - type: Transform rot: 3.141592653589793 rad @@ -105380,7 +104521,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16343 + - uid: 16420 components: - type: Transform rot: 3.141592653589793 rad @@ -105388,7 +104529,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16344 + - uid: 16421 components: - type: Transform rot: 3.141592653589793 rad @@ -105396,7 +104537,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16345 + - uid: 16422 components: - type: Transform rot: -1.5707963267948966 rad @@ -105404,7 +104545,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16346 + - uid: 16423 components: - type: Transform rot: -1.5707963267948966 rad @@ -105412,28 +104553,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16347 + - uid: 16424 components: - type: Transform pos: 28.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16348 + - uid: 16425 components: - type: Transform pos: 22.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16349 + - uid: 16426 components: - type: Transform pos: 22.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16350 + - uid: 16427 components: - type: Transform rot: 3.141592653589793 rad @@ -105441,21 +104582,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16351 + - uid: 16428 components: - type: Transform pos: -11.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16352 + - uid: 16429 components: - type: Transform pos: -8.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16353 + - uid: 16430 components: - type: Transform rot: 1.5707963267948966 rad @@ -105463,7 +104604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16354 + - uid: 16431 components: - type: Transform rot: 1.5707963267948966 rad @@ -105471,7 +104612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16355 + - uid: 16432 components: - type: Transform rot: 1.5707963267948966 rad @@ -105479,7 +104620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16356 + - uid: 16433 components: - type: Transform rot: 1.5707963267948966 rad @@ -105487,7 +104628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16357 + - uid: 16434 components: - type: Transform rot: 1.5707963267948966 rad @@ -105495,7 +104636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16358 + - uid: 16435 components: - type: Transform rot: -1.5707963267948966 rad @@ -105503,7 +104644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16359 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad @@ -105511,7 +104652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16360 + - uid: 16437 components: - type: Transform rot: -1.5707963267948966 rad @@ -105519,280 +104660,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16361 + - uid: 16438 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16362 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16363 - components: - - type: Transform - pos: -10.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16364 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16365 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16366 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16367 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16368 - components: - - type: Transform - pos: -10.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16376 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16382 - components: - - type: Transform - pos: -15.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16383 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16384 - components: - - type: Transform - pos: -15.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16390 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16439 components: - type: Transform - pos: -12.5,-62.5 + pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16391 + color: '#990000FF' + - uid: 16440 components: - type: Transform - pos: -12.5,-63.5 + pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16392 + - uid: 16441 components: - type: Transform - pos: -12.5,-64.5 + pos: -10.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16393 + - uid: 16442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-60.5 + pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16394 + - uid: 16443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-60.5 + pos: -10.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16395 + - uid: 16444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-60.5 + pos: -10.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16396 + - uid: 16445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-60.5 + pos: -10.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16397 + - uid: 16446 components: - type: Transform rot: 3.141592653589793 rad @@ -105800,7 +104724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16398 + - uid: 16447 components: - type: Transform rot: 3.141592653589793 rad @@ -105808,7 +104732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16399 + - uid: 16448 components: - type: Transform rot: 3.141592653589793 rad @@ -105816,7 +104740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16400 + - uid: 16449 components: - type: Transform rot: -1.5707963267948966 rad @@ -105824,7 +104748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16401 + - uid: 16450 components: - type: Transform rot: -1.5707963267948966 rad @@ -105832,7 +104756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16402 + - uid: 16451 components: - type: Transform rot: -1.5707963267948966 rad @@ -105840,7 +104764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16403 + - uid: 16452 components: - type: Transform rot: -1.5707963267948966 rad @@ -105848,7 +104772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16404 + - uid: 16453 components: - type: Transform rot: -1.5707963267948966 rad @@ -105856,7 +104780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16405 + - uid: 16454 components: - type: Transform rot: -1.5707963267948966 rad @@ -105864,7 +104788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16406 + - uid: 16455 components: - type: Transform rot: 3.141592653589793 rad @@ -105872,23 +104796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16409 + - uid: 16456 components: - type: Transform rot: -1.5707963267948966 rad @@ -105896,7 +104804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16410 + - uid: 16457 components: - type: Transform rot: -1.5707963267948966 rad @@ -105904,7 +104812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16411 + - uid: 16458 components: - type: Transform rot: -1.5707963267948966 rad @@ -105912,7 +104820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16412 + - uid: 16459 components: - type: Transform rot: 1.5707963267948966 rad @@ -105920,7 +104828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16413 + - uid: 16460 components: - type: Transform rot: 1.5707963267948966 rad @@ -105928,7 +104836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16414 + - uid: 16461 components: - type: Transform rot: 1.5707963267948966 rad @@ -105936,7 +104844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16415 + - uid: 16462 components: - type: Transform rot: 1.5707963267948966 rad @@ -105944,7 +104852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16416 + - uid: 16463 components: - type: Transform rot: 1.5707963267948966 rad @@ -105952,7 +104860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16417 + - uid: 16464 components: - type: Transform rot: 1.5707963267948966 rad @@ -105960,42 +104868,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16418 + - uid: 16465 components: - type: Transform pos: -3.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16419 + - uid: 16466 components: - type: Transform pos: -3.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16420 + - uid: 16467 components: - type: Transform pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16421 + - uid: 16468 components: - type: Transform pos: -3.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16422 + - uid: 16469 components: - type: Transform pos: -3.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16423 + - uid: 16470 components: - type: Transform rot: 1.5707963267948966 rad @@ -106003,7 +104911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16424 + - uid: 16471 components: - type: Transform rot: 1.5707963267948966 rad @@ -106011,7 +104919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16425 + - uid: 16472 components: - type: Transform rot: -1.5707963267948966 rad @@ -106019,7 +104927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16426 + - uid: 16473 components: - type: Transform rot: -1.5707963267948966 rad @@ -106027,7 +104935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16427 + - uid: 16474 components: - type: Transform rot: -1.5707963267948966 rad @@ -106035,7 +104943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16428 + - uid: 16475 components: - type: Transform rot: -1.5707963267948966 rad @@ -106043,7 +104951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16429 + - uid: 16476 components: - type: Transform rot: -1.5707963267948966 rad @@ -106051,7 +104959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16430 + - uid: 16477 components: - type: Transform rot: 3.141592653589793 rad @@ -106059,14 +104967,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16431 + - uid: 16478 components: - type: Transform pos: 35.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16432 + - uid: 16479 components: - type: Transform rot: -1.5707963267948966 rad @@ -106074,7 +104982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16433 + - uid: 16480 components: - type: Transform rot: 1.5707963267948966 rad @@ -106082,7 +104990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16434 + - uid: 16481 components: - type: Transform rot: -1.5707963267948966 rad @@ -106090,7 +104998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16435 + - uid: 16482 components: - type: Transform rot: 3.141592653589793 rad @@ -106098,7 +105006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16436 + - uid: 16483 components: - type: Transform rot: 3.141592653589793 rad @@ -106106,7 +105014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16437 + - uid: 16484 components: - type: Transform rot: 1.5707963267948966 rad @@ -106114,7 +105022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16438 + - uid: 16485 components: - type: Transform rot: 1.5707963267948966 rad @@ -106122,7 +105030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16439 + - uid: 16486 components: - type: Transform rot: 1.5707963267948966 rad @@ -106130,7 +105038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16440 + - uid: 16487 components: - type: Transform rot: 1.5707963267948966 rad @@ -106138,14 +105046,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16441 + - uid: 16488 components: - type: Transform pos: -24.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16442 + - uid: 16489 components: - type: Transform rot: 1.5707963267948966 rad @@ -106153,35 +105061,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16443 + - uid: 16490 components: - type: Transform pos: -3.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16444 + - uid: 16491 components: - type: Transform pos: 35.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16445 + - uid: 16492 components: - type: Transform pos: 17.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16446 + - uid: 16493 components: - type: Transform pos: 17.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16447 + - uid: 16494 components: - type: Transform rot: -1.5707963267948966 rad @@ -106189,7 +105097,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16448 + - uid: 16495 components: - type: Transform rot: -1.5707963267948966 rad @@ -106197,7 +105105,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16449 + - uid: 16496 components: - type: Transform rot: -1.5707963267948966 rad @@ -106205,7 +105113,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16450 + - uid: 16497 components: - type: Transform rot: -1.5707963267948966 rad @@ -106213,7 +105121,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16451 + - uid: 16498 components: - type: Transform rot: 3.141592653589793 rad @@ -106221,7 +105129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16452 + - uid: 16499 components: - type: Transform rot: 1.5707963267948966 rad @@ -106229,7 +105137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16453 + - uid: 16500 components: - type: Transform rot: -1.5707963267948966 rad @@ -106237,21 +105145,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16454 + - uid: 16501 components: - type: Transform pos: -3.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16455 + - uid: 16502 components: - type: Transform pos: 7.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16456 + - uid: 16503 components: - type: Transform rot: 3.141592653589793 rad @@ -106259,14 +105167,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16457 + - uid: 16504 components: - type: Transform pos: 0.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16458 + - uid: 16505 components: - type: Transform rot: 1.5707963267948966 rad @@ -106274,7 +105182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16459 + - uid: 16506 components: - type: Transform rot: 1.5707963267948966 rad @@ -106282,7 +105190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16460 + - uid: 16507 components: - type: Transform rot: 1.5707963267948966 rad @@ -106290,28 +105198,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16461 + - uid: 16508 components: - type: Transform pos: 10.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16462 + - uid: 16509 components: - type: Transform pos: 10.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16463 + - uid: 16510 components: - type: Transform pos: 10.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16464 + - uid: 16511 components: - type: Transform rot: 3.141592653589793 rad @@ -106319,14 +105227,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16465 + - uid: 16512 components: - type: Transform pos: -19.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16466 + - uid: 16513 components: - type: Transform rot: 1.5707963267948966 rad @@ -106334,7 +105242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16467 + - uid: 16514 components: - type: Transform rot: 1.5707963267948966 rad @@ -106342,21 +105250,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16468 + - uid: 16515 components: - type: Transform pos: 31.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16469 + - uid: 16516 components: - type: Transform pos: 31.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16470 + - uid: 16517 components: - type: Transform rot: 3.141592653589793 rad @@ -106364,7 +105272,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16471 + - uid: 16518 components: - type: Transform rot: 3.141592653589793 rad @@ -106372,7 +105280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16472 + - uid: 16519 components: - type: Transform rot: -1.5707963267948966 rad @@ -106380,7 +105288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16473 + - uid: 16520 components: - type: Transform rot: 3.141592653589793 rad @@ -106388,7 +105296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16474 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad @@ -106396,7 +105304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16475 + - uid: 16522 components: - type: Transform rot: 1.5707963267948966 rad @@ -106404,7 +105312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16476 + - uid: 16523 components: - type: Transform rot: -1.5707963267948966 rad @@ -106412,7 +105320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16477 + - uid: 16524 components: - type: Transform rot: -1.5707963267948966 rad @@ -106420,7 +105328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16478 + - uid: 16525 components: - type: Transform rot: -1.5707963267948966 rad @@ -106428,7 +105336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16479 + - uid: 16526 components: - type: Transform rot: 3.141592653589793 rad @@ -106436,14 +105344,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16480 + - uid: 16527 components: - type: Transform pos: 8.5,6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16481 + - uid: 16528 components: - type: Transform rot: 3.141592653589793 rad @@ -106451,28 +105359,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16482 + - uid: 16529 components: - type: Transform pos: -3.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16483 + - uid: 16530 components: - type: Transform pos: -3.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16484 + - uid: 16531 components: - type: Transform pos: -3.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16485 + - uid: 16532 components: - type: Transform rot: 1.5707963267948966 rad @@ -106480,7 +105388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16486 + - uid: 16533 components: - type: Transform rot: 1.5707963267948966 rad @@ -106488,7 +105396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16487 + - uid: 16534 components: - type: Transform rot: 1.5707963267948966 rad @@ -106496,28 +105404,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16488 + - uid: 16535 components: - type: Transform pos: -6.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16489 + - uid: 16536 components: - type: Transform pos: -6.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16490 + - uid: 16537 components: - type: Transform pos: 15.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16491 + - uid: 16538 components: - type: Transform rot: 1.5707963267948966 rad @@ -106525,7 +105433,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16492 + - uid: 16539 components: - type: Transform rot: 1.5707963267948966 rad @@ -106533,7 +105441,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16493 + - uid: 16540 components: - type: Transform rot: 1.5707963267948966 rad @@ -106541,7 +105449,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16494 + - uid: 16541 components: - type: Transform rot: -1.5707963267948966 rad @@ -106549,7 +105457,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16495 + - uid: 16542 components: - type: Transform rot: 3.141592653589793 rad @@ -106557,7 +105465,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16496 + - uid: 16543 components: - type: Transform rot: -1.5707963267948966 rad @@ -106565,7 +105473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16497 + - uid: 16544 components: - type: Transform rot: 3.141592653589793 rad @@ -106573,7 +105481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16498 + - uid: 16545 components: - type: Transform rot: 3.141592653589793 rad @@ -106581,7 +105489,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16499 + - uid: 16546 components: - type: Transform rot: 3.141592653589793 rad @@ -106589,7 +105497,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16500 + - uid: 16547 components: - type: Transform rot: -1.5707963267948966 rad @@ -106597,14 +105505,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16501 + - uid: 16548 components: - type: Transform pos: 15.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16502 + - uid: 16549 components: - type: Transform rot: -1.5707963267948966 rad @@ -106612,7 +105520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16503 + - uid: 16550 components: - type: Transform rot: -1.5707963267948966 rad @@ -106620,7 +105528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16504 + - uid: 16551 components: - type: Transform rot: -1.5707963267948966 rad @@ -106628,14 +105536,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16505 + - uid: 16552 components: - type: Transform pos: 15.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16506 + - uid: 16553 components: - type: Transform rot: 3.141592653589793 rad @@ -106643,7 +105551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16507 + - uid: 16554 components: - type: Transform rot: 3.141592653589793 rad @@ -106651,7 +105559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16508 + - uid: 16555 components: - type: Transform rot: 3.141592653589793 rad @@ -106659,7 +105567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16509 + - uid: 16556 components: - type: Transform rot: 3.141592653589793 rad @@ -106667,7 +105575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16510 + - uid: 16557 components: - type: Transform rot: 3.141592653589793 rad @@ -106675,7 +105583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16511 + - uid: 16558 components: - type: Transform rot: -1.5707963267948966 rad @@ -106683,7 +105591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16512 + - uid: 16559 components: - type: Transform rot: -1.5707963267948966 rad @@ -106691,7 +105599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16513 + - uid: 16560 components: - type: Transform rot: -1.5707963267948966 rad @@ -106699,7 +105607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16514 + - uid: 16561 components: - type: Transform rot: -1.5707963267948966 rad @@ -106707,7 +105615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16515 + - uid: 16562 components: - type: Transform rot: -1.5707963267948966 rad @@ -106715,7 +105623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16516 + - uid: 16563 components: - type: Transform rot: 3.141592653589793 rad @@ -106723,14 +105631,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16517 + - uid: 16564 components: - type: Transform pos: 15.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16518 + - uid: 16565 components: - type: Transform rot: 3.141592653589793 rad @@ -106738,49 +105646,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16519 + - uid: 16566 components: - type: Transform pos: 15.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16520 + - uid: 16567 components: - type: Transform pos: 15.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16521 + - uid: 16568 components: - type: Transform pos: 15.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16522 + - uid: 16569 components: - type: Transform pos: 15.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16523 + - uid: 16570 components: - type: Transform pos: 15.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16524 + - uid: 16571 components: - type: Transform pos: 15.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16525 + - uid: 16572 components: - type: Transform rot: 1.5707963267948966 rad @@ -106788,14 +105696,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16526 + - uid: 16573 components: - type: Transform pos: 15.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16527 + - uid: 16574 components: - type: Transform rot: 1.5707963267948966 rad @@ -106803,7 +105711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16528 + - uid: 16575 components: - type: Transform rot: 1.5707963267948966 rad @@ -106811,7 +105719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16529 + - uid: 16576 components: - type: Transform rot: 1.5707963267948966 rad @@ -106819,7 +105727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16530 + - uid: 16577 components: - type: Transform rot: 3.141592653589793 rad @@ -106827,14 +105735,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16531 + - uid: 16578 components: - type: Transform pos: 26.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16532 + - uid: 16579 components: - type: Transform rot: 1.5707963267948966 rad @@ -106842,7 +105750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16533 + - uid: 16580 components: - type: Transform rot: -1.5707963267948966 rad @@ -106850,7 +105758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16534 + - uid: 16581 components: - type: Transform rot: -1.5707963267948966 rad @@ -106858,7 +105766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16535 + - uid: 16582 components: - type: Transform rot: -1.5707963267948966 rad @@ -106866,14 +105774,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16536 + - uid: 16583 components: - type: Transform pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16537 + - uid: 16584 components: - type: Transform rot: 3.141592653589793 rad @@ -106881,14 +105789,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16538 + - uid: 16585 components: - type: Transform pos: -3.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16539 + - uid: 16586 components: - type: Transform rot: 1.5707963267948966 rad @@ -106896,7 +105804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16540 + - uid: 16587 components: - type: Transform rot: 3.141592653589793 rad @@ -106904,14 +105812,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16541 + - uid: 16588 components: - type: Transform pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16542 + - uid: 16589 components: - type: Transform rot: 1.5707963267948966 rad @@ -106919,7 +105827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16543 + - uid: 16590 components: - type: Transform rot: -1.5707963267948966 rad @@ -106927,14 +105835,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16544 + - uid: 16591 components: - type: Transform pos: -3.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16545 + - uid: 16592 components: - type: Transform rot: -1.5707963267948966 rad @@ -106942,21 +105850,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16546 + - uid: 16593 components: - type: Transform pos: -23.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16547 + - uid: 16594 components: - type: Transform pos: -23.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16548 + - uid: 16595 components: - type: Transform rot: -1.5707963267948966 rad @@ -106964,7 +105872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16549 + - uid: 16596 components: - type: Transform rot: -1.5707963267948966 rad @@ -106972,7 +105880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16550 + - uid: 16597 components: - type: Transform rot: 3.141592653589793 rad @@ -106980,7 +105888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16551 + - uid: 16598 components: - type: Transform rot: -1.5707963267948966 rad @@ -106988,7 +105896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16552 + - uid: 16599 components: - type: Transform rot: 3.141592653589793 rad @@ -106996,30 +105904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16553 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16556 + - uid: 16600 components: - type: Transform rot: 3.141592653589793 rad @@ -107027,7 +105912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16557 + - uid: 16601 components: - type: Transform rot: -1.5707963267948966 rad @@ -107035,7 +105920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16558 + - uid: 16602 components: - type: Transform rot: -1.5707963267948966 rad @@ -107043,28 +105928,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16559 + - uid: 16603 components: - type: Transform pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16560 + - uid: 16604 components: - type: Transform pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16561 + - uid: 16605 components: - type: Transform pos: -5.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16562 + - uid: 16606 components: - type: Transform rot: -1.5707963267948966 rad @@ -107072,77 +105957,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16563 + - uid: 16607 components: - type: Transform pos: -5.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16564 + - uid: 16608 components: - type: Transform pos: -5.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16565 + - uid: 16609 components: - type: Transform pos: -5.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16566 + - uid: 16610 components: - type: Transform pos: -5.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16567 + - uid: 16611 components: - type: Transform pos: -5.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16568 + - uid: 16612 components: - type: Transform pos: -5.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16569 + - uid: 16613 components: - type: Transform pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16570 + - uid: 16614 components: - type: Transform pos: -5.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16571 + - uid: 16615 components: - type: Transform pos: -5.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16572 + - uid: 16616 components: - type: Transform pos: -5.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16573 + - uid: 16617 components: - type: Transform rot: 3.141592653589793 rad @@ -107150,7 +106035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16574 + - uid: 16618 components: - type: Transform rot: 3.141592653589793 rad @@ -107158,7 +106043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16575 + - uid: 16619 components: - type: Transform rot: 3.141592653589793 rad @@ -107166,7 +106051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16576 + - uid: 16620 components: - type: Transform rot: 3.141592653589793 rad @@ -107174,7 +106059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16577 + - uid: 16621 components: - type: Transform rot: 1.5707963267948966 rad @@ -107182,7 +106067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16578 + - uid: 16622 components: - type: Transform rot: 1.5707963267948966 rad @@ -107190,7 +106075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16579 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad @@ -107198,7 +106083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16580 + - uid: 16624 components: - type: Transform rot: -1.5707963267948966 rad @@ -107206,7 +106091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16581 + - uid: 16625 components: - type: Transform rot: 3.141592653589793 rad @@ -107214,7 +106099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16582 + - uid: 16626 components: - type: Transform rot: 3.141592653589793 rad @@ -107222,7 +106107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16583 + - uid: 16627 components: - type: Transform rot: -1.5707963267948966 rad @@ -107230,7 +106115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16584 + - uid: 16628 components: - type: Transform rot: -1.5707963267948966 rad @@ -107238,7 +106123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16585 + - uid: 16629 components: - type: Transform rot: 3.141592653589793 rad @@ -107246,7 +106131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16586 + - uid: 16630 components: - type: Transform rot: -1.5707963267948966 rad @@ -107254,7 +106139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16587 + - uid: 16631 components: - type: Transform rot: 3.141592653589793 rad @@ -107262,7 +106147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16588 + - uid: 16632 components: - type: Transform rot: 3.141592653589793 rad @@ -107270,7 +106155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16589 + - uid: 16633 components: - type: Transform rot: 1.5707963267948966 rad @@ -107278,7 +106163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16590 + - uid: 16634 components: - type: Transform rot: -1.5707963267948966 rad @@ -107286,7 +106171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16591 + - uid: 16635 components: - type: Transform rot: -1.5707963267948966 rad @@ -107294,21 +106179,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16592 + - uid: 16636 components: - type: Transform pos: -20.5,26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16593 + - uid: 16637 components: - type: Transform pos: 26.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16594 + - uid: 16638 components: - type: Transform rot: 3.141592653589793 rad @@ -107316,35 +106201,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16595 + - uid: 16639 components: - type: Transform pos: -3.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16596 + - uid: 16640 components: - type: Transform pos: -3.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16597 + - uid: 16641 components: - type: Transform pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16598 + - uid: 16642 components: - type: Transform pos: 47.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16599 + - uid: 16643 components: - type: Transform rot: 3.141592653589793 rad @@ -107352,7 +106237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16600 + - uid: 16644 components: - type: Transform rot: -1.5707963267948966 rad @@ -107360,7 +106245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16601 + - uid: 16645 components: - type: Transform rot: 3.141592653589793 rad @@ -107368,7 +106253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16602 + - uid: 16646 components: - type: Transform rot: 1.5707963267948966 rad @@ -107376,7 +106261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16603 + - uid: 16647 components: - type: Transform rot: 1.5707963267948966 rad @@ -107384,7 +106269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16604 + - uid: 16648 components: - type: Transform rot: 1.5707963267948966 rad @@ -107392,7 +106277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16605 + - uid: 16649 components: - type: Transform rot: -1.5707963267948966 rad @@ -107400,21 +106285,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16606 + - uid: 16650 components: - type: Transform pos: 26.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16607 + - uid: 16651 components: - type: Transform pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16608 + - uid: 16652 components: - type: Transform rot: -1.5707963267948966 rad @@ -107422,7 +106307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16609 + - uid: 16653 components: - type: Transform rot: -1.5707963267948966 rad @@ -107430,7 +106315,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16610 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad @@ -107438,7 +106323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16611 + - uid: 16655 components: - type: Transform rot: -1.5707963267948966 rad @@ -107446,7 +106331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16612 + - uid: 16656 components: - type: Transform rot: 3.141592653589793 rad @@ -107454,14 +106339,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16613 + - uid: 16657 components: - type: Transform pos: -11.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16614 + - uid: 16658 components: - type: Transform rot: 3.141592653589793 rad @@ -107469,7 +106354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16615 + - uid: 16659 components: - type: Transform rot: 3.141592653589793 rad @@ -107477,7 +106362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16616 + - uid: 16660 components: - type: Transform rot: -1.5707963267948966 rad @@ -107485,7 +106370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16617 + - uid: 16661 components: - type: Transform rot: 1.5707963267948966 rad @@ -107493,28 +106378,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16618 + - uid: 16662 components: - type: Transform pos: -3.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16619 + - uid: 16663 components: - type: Transform pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16620 + - uid: 16664 components: - type: Transform pos: -5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16621 + - uid: 16665 components: - type: Transform rot: -1.5707963267948966 rad @@ -107522,7 +106407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16622 + - uid: 16666 components: - type: Transform rot: -1.5707963267948966 rad @@ -107530,7 +106415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16623 + - uid: 16667 components: - type: Transform rot: -1.5707963267948966 rad @@ -107538,7 +106423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16624 + - uid: 16668 components: - type: Transform rot: -1.5707963267948966 rad @@ -107546,7 +106431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16625 + - uid: 16669 components: - type: Transform rot: 3.141592653589793 rad @@ -107554,7 +106439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16626 + - uid: 16670 components: - type: Transform rot: 1.5707963267948966 rad @@ -107562,7 +106447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16627 + - uid: 16671 components: - type: Transform rot: 3.141592653589793 rad @@ -107570,21 +106455,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16628 + - uid: 16672 components: - type: Transform pos: 0.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16629 + - uid: 16673 components: - type: Transform pos: 0.5,10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16630 + - uid: 16674 components: - type: Transform rot: 3.141592653589793 rad @@ -107592,7 +106477,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16631 + - uid: 16675 components: - type: Transform rot: 3.141592653589793 rad @@ -107600,21 +106485,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16632 + - uid: 16676 components: - type: Transform pos: 34.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16633 + - uid: 16677 components: - type: Transform pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16634 + - uid: 16678 components: - type: Transform rot: 1.5707963267948966 rad @@ -107622,7 +106507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16635 + - uid: 16679 components: - type: Transform rot: 1.5707963267948966 rad @@ -107630,7 +106515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16636 + - uid: 16680 components: - type: Transform rot: 1.5707963267948966 rad @@ -107638,7 +106523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16637 + - uid: 16681 components: - type: Transform rot: 3.141592653589793 rad @@ -107646,7 +106531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16638 + - uid: 16682 components: - type: Transform rot: -1.5707963267948966 rad @@ -107654,7 +106539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16639 + - uid: 16683 components: - type: Transform rot: 1.5707963267948966 rad @@ -107662,7 +106547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16640 + - uid: 16684 components: - type: Transform rot: 1.5707963267948966 rad @@ -107670,7 +106555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16641 + - uid: 16685 components: - type: Transform rot: 1.5707963267948966 rad @@ -107678,14 +106563,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16642 + - uid: 16686 components: - type: Transform pos: -8.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16643 + - uid: 16687 components: - type: Transform rot: 1.5707963267948966 rad @@ -107693,22 +106578,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16645 + - uid: 16688 components: - type: Transform pos: -3.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16646 + - uid: 16689 components: - type: Transform rot: -1.5707963267948966 rad @@ -107716,7 +106593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16647 + - uid: 16690 components: - type: Transform rot: 3.141592653589793 rad @@ -107724,7 +106601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16648 + - uid: 16691 components: - type: Transform rot: -1.5707963267948966 rad @@ -107732,7 +106609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16649 + - uid: 16692 components: - type: Transform rot: 1.5707963267948966 rad @@ -107740,7 +106617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16650 + - uid: 16693 components: - type: Transform rot: 1.5707963267948966 rad @@ -107748,7 +106625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16651 + - uid: 16694 components: - type: Transform rot: 1.5707963267948966 rad @@ -107756,7 +106633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16652 + - uid: 16695 components: - type: Transform rot: 1.5707963267948966 rad @@ -107764,56 +106641,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16653 + - uid: 16696 components: - type: Transform pos: 21.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16654 + - uid: 16697 components: - type: Transform pos: 21.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16655 + - uid: 16698 components: - type: Transform pos: 21.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16656 + - uid: 16699 components: - type: Transform pos: 21.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16657 + - uid: 16700 components: - type: Transform pos: 21.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16658 + - uid: 16701 components: - type: Transform pos: 21.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16659 + - uid: 16702 components: - type: Transform pos: 21.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16660 + - uid: 16703 components: - type: Transform rot: 3.141592653589793 rad @@ -107821,7 +106698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16661 + - uid: 16704 components: - type: Transform rot: 1.5707963267948966 rad @@ -107829,14 +106706,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16662 + - uid: 16705 components: - type: Transform pos: 20.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16663 + - uid: 16706 components: - type: Transform rot: 3.141592653589793 rad @@ -107844,35 +106721,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16664 + - uid: 16707 components: - type: Transform pos: 31.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16665 + - uid: 16708 components: - type: Transform pos: 33.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16666 + - uid: 16709 components: - type: Transform pos: -5.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16667 + - uid: 16710 components: - type: Transform pos: -5.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16668 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad @@ -107880,7 +106757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16669 + - uid: 16712 components: - type: Transform rot: -1.5707963267948966 rad @@ -107888,7 +106765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16670 + - uid: 16713 components: - type: Transform rot: -1.5707963267948966 rad @@ -107896,7 +106773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16671 + - uid: 16714 components: - type: Transform rot: -1.5707963267948966 rad @@ -107904,7 +106781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16672 + - uid: 16715 components: - type: Transform rot: -1.5707963267948966 rad @@ -107912,7 +106789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16673 + - uid: 16716 components: - type: Transform rot: 1.5707963267948966 rad @@ -107920,7 +106797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16674 + - uid: 16717 components: - type: Transform rot: -1.5707963267948966 rad @@ -107928,7 +106805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16675 + - uid: 16718 components: - type: Transform rot: -1.5707963267948966 rad @@ -107936,7 +106813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16676 + - uid: 16719 components: - type: Transform rot: -1.5707963267948966 rad @@ -107944,7 +106821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16677 + - uid: 16720 components: - type: Transform rot: -1.5707963267948966 rad @@ -107952,7 +106829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16678 + - uid: 16721 components: - type: Transform rot: -1.5707963267948966 rad @@ -107960,7 +106837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16679 + - uid: 16722 components: - type: Transform rot: -1.5707963267948966 rad @@ -107968,21 +106845,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16680 + - uid: 16723 components: - type: Transform pos: 36.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16681 + - uid: 16724 components: - type: Transform pos: 36.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16682 + - uid: 16725 components: - type: Transform rot: 3.141592653589793 rad @@ -107990,28 +106867,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16683 + - uid: 16726 components: - type: Transform pos: -18.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16684 + - uid: 16727 components: - type: Transform pos: 36.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16685 + - uid: 16728 components: - type: Transform pos: 47.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16686 + - uid: 16729 components: - type: Transform rot: -1.5707963267948966 rad @@ -108019,7 +106896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16687 + - uid: 16730 components: - type: Transform rot: 3.141592653589793 rad @@ -108027,7 +106904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16688 + - uid: 16731 components: - type: Transform rot: -1.5707963267948966 rad @@ -108035,22 +106912,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16690 + - uid: 16732 components: - type: Transform pos: -10.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16691 + - uid: 16733 components: - type: Transform rot: -1.5707963267948966 rad @@ -108058,7 +106927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16692 + - uid: 16734 components: - type: Transform rot: 1.5707963267948966 rad @@ -108066,7 +106935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16693 + - uid: 16735 components: - type: Transform rot: 1.5707963267948966 rad @@ -108074,7 +106943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16694 + - uid: 16736 components: - type: Transform rot: -1.5707963267948966 rad @@ -108082,7 +106951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16695 + - uid: 16737 components: - type: Transform rot: -1.5707963267948966 rad @@ -108090,7 +106959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16696 + - uid: 16738 components: - type: Transform rot: -1.5707963267948966 rad @@ -108098,7 +106967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16697 + - uid: 16739 components: - type: Transform rot: -1.5707963267948966 rad @@ -108106,7 +106975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16698 + - uid: 16740 components: - type: Transform rot: 3.141592653589793 rad @@ -108114,28 +106983,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16699 + - uid: 16741 components: - type: Transform pos: -20.5,27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16700 + - uid: 16742 components: - type: Transform pos: 22.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16701 + - uid: 16743 components: - type: Transform pos: -20.5,32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16702 + - uid: 16744 components: - type: Transform rot: 1.5707963267948966 rad @@ -108143,14 +107012,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16703 + - uid: 16745 components: - type: Transform pos: 36.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16704 + - uid: 16746 components: - type: Transform rot: 1.5707963267948966 rad @@ -108158,22 +107027,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16706 + - uid: 16747 components: - type: Transform pos: -23.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16707 + - uid: 16748 components: - type: Transform rot: 1.5707963267948966 rad @@ -108181,7 +107042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16708 + - uid: 16749 components: - type: Transform rot: -1.5707963267948966 rad @@ -108189,14 +107050,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16709 + - uid: 16750 components: - type: Transform pos: -23.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16710 + - uid: 16751 components: - type: Transform rot: 1.5707963267948966 rad @@ -108204,7 +107065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16711 + - uid: 16752 components: - type: Transform rot: 1.5707963267948966 rad @@ -108212,7 +107073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16712 + - uid: 16753 components: - type: Transform rot: -1.5707963267948966 rad @@ -108220,7 +107081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16713 + - uid: 16754 components: - type: Transform rot: -1.5707963267948966 rad @@ -108228,7 +107089,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16714 + - uid: 16755 components: - type: Transform rot: 3.141592653589793 rad @@ -108236,7 +107097,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16715 + - uid: 16756 components: - type: Transform rot: 1.5707963267948966 rad @@ -108244,7 +107105,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16716 + - uid: 16757 components: - type: Transform rot: 1.5707963267948966 rad @@ -108252,7 +107113,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16717 + - uid: 16758 components: - type: Transform rot: 1.5707963267948966 rad @@ -108260,14 +107121,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16718 + - uid: 16759 components: - type: Transform pos: 15.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16719 + - uid: 16760 components: - type: Transform rot: 3.141592653589793 rad @@ -108275,7 +107136,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16720 + - uid: 16761 components: - type: Transform rot: 3.141592653589793 rad @@ -108283,28 +107144,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16721 + - uid: 16762 components: - type: Transform pos: -3.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16722 + - uid: 16763 components: - type: Transform pos: 20.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16723 + - uid: 16764 components: - type: Transform pos: 20.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16724 + - uid: 16765 components: - type: Transform rot: -1.5707963267948966 rad @@ -108312,7 +107173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16725 + - uid: 16766 components: - type: Transform rot: -1.5707963267948966 rad @@ -108320,7 +107181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16726 + - uid: 16767 components: - type: Transform rot: -1.5707963267948966 rad @@ -108328,7 +107189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16727 + - uid: 16768 components: - type: Transform rot: 3.141592653589793 rad @@ -108336,7 +107197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16728 + - uid: 16769 components: - type: Transform rot: 3.141592653589793 rad @@ -108344,7 +107205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16729 + - uid: 16770 components: - type: Transform rot: -1.5707963267948966 rad @@ -108352,7 +107213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16730 + - uid: 16771 components: - type: Transform rot: -1.5707963267948966 rad @@ -108360,14 +107221,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16731 + - uid: 16772 components: - type: Transform pos: -24.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16732 + - uid: 16773 components: - type: Transform rot: -1.5707963267948966 rad @@ -108375,7 +107236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16733 + - uid: 16774 components: - type: Transform rot: -1.5707963267948966 rad @@ -108383,28 +107244,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16734 + - uid: 16775 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16735 + - uid: 16776 components: - type: Transform pos: -3.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16736 + - uid: 16777 components: - type: Transform pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16737 + - uid: 16778 components: - type: Transform rot: -1.5707963267948966 rad @@ -108412,7 +107273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16738 + - uid: 16779 components: - type: Transform rot: -1.5707963267948966 rad @@ -108420,7 +107281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16739 + - uid: 16780 components: - type: Transform rot: -1.5707963267948966 rad @@ -108428,7 +107289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16740 + - uid: 16781 components: - type: Transform rot: -1.5707963267948966 rad @@ -108436,7 +107297,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16741 + - uid: 16782 components: - type: Transform rot: -1.5707963267948966 rad @@ -108444,7 +107305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16742 + - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad @@ -108452,28 +107313,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16743 + - uid: 16784 components: - type: Transform pos: -3.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16744 + - uid: 16785 components: - type: Transform pos: -19.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16745 + - uid: 16786 components: - type: Transform pos: -19.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16746 + - uid: 16787 components: - type: Transform rot: 1.5707963267948966 rad @@ -108481,7 +107342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16747 + - uid: 16788 components: - type: Transform rot: 1.5707963267948966 rad @@ -108489,7 +107350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16748 + - uid: 16789 components: - type: Transform rot: 1.5707963267948966 rad @@ -108497,7 +107358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16749 + - uid: 16790 components: - type: Transform rot: 1.5707963267948966 rad @@ -108505,7 +107366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16750 + - uid: 16791 components: - type: Transform rot: 1.5707963267948966 rad @@ -108513,7 +107374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16751 + - uid: 16792 components: - type: Transform rot: 1.5707963267948966 rad @@ -108521,14 +107382,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16752 + - uid: 16793 components: - type: Transform pos: -3.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16753 + - uid: 16794 components: - type: Transform rot: 3.141592653589793 rad @@ -108536,7 +107397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16754 + - uid: 16795 components: - type: Transform rot: 3.141592653589793 rad @@ -108544,28 +107405,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16755 + - uid: 16796 components: - type: Transform pos: 34.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16756 + - uid: 16797 components: - type: Transform pos: -18.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16757 + - uid: 16798 components: - type: Transform pos: -18.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16758 + - uid: 16799 components: - type: Transform rot: -1.5707963267948966 rad @@ -108573,7 +107434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16759 + - uid: 16800 components: - type: Transform rot: -1.5707963267948966 rad @@ -108581,7 +107442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16760 + - uid: 16801 components: - type: Transform rot: 1.5707963267948966 rad @@ -108589,7 +107450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16761 + - uid: 16802 components: - type: Transform rot: -1.5707963267948966 rad @@ -108597,14 +107458,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16762 + - uid: 16803 components: - type: Transform pos: -23.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16763 + - uid: 16804 components: - type: Transform rot: -1.5707963267948966 rad @@ -108612,7 +107473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16764 + - uid: 16805 components: - type: Transform rot: 1.5707963267948966 rad @@ -108620,7 +107481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16765 + - uid: 16806 components: - type: Transform rot: 1.5707963267948966 rad @@ -108628,7 +107489,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16766 + - uid: 16807 components: - type: Transform rot: 3.141592653589793 rad @@ -108636,7 +107497,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16767 + - uid: 16808 components: - type: Transform rot: 3.141592653589793 rad @@ -108644,7 +107505,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16768 + - uid: 16809 components: - type: Transform rot: 3.141592653589793 rad @@ -108652,7 +107513,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16769 + - uid: 16810 components: - type: Transform rot: 3.141592653589793 rad @@ -108660,7 +107521,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16770 + - uid: 16811 components: - type: Transform rot: 3.141592653589793 rad @@ -108668,7 +107529,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16771 + - uid: 16812 components: - type: Transform rot: 3.141592653589793 rad @@ -108676,7 +107537,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16772 + - uid: 16813 components: - type: Transform rot: -1.5707963267948966 rad @@ -108684,7 +107545,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16773 + - uid: 16814 components: - type: Transform rot: -1.5707963267948966 rad @@ -108692,14 +107553,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16774 + - uid: 16815 components: - type: Transform pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16775 + - uid: 16816 components: - type: Transform rot: 3.141592653589793 rad @@ -108707,7 +107568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16776 + - uid: 16817 components: - type: Transform rot: 3.141592653589793 rad @@ -108715,7 +107576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16777 + - uid: 16818 components: - type: Transform rot: 3.141592653589793 rad @@ -108723,7 +107584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16778 + - uid: 16819 components: - type: Transform rot: 3.141592653589793 rad @@ -108731,7 +107592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16779 + - uid: 16820 components: - type: Transform rot: 3.141592653589793 rad @@ -108739,7 +107600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16780 + - uid: 16821 components: - type: Transform rot: -1.5707963267948966 rad @@ -108747,7 +107608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16781 + - uid: 16822 components: - type: Transform rot: -1.5707963267948966 rad @@ -108755,7 +107616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16782 + - uid: 16823 components: - type: Transform rot: -1.5707963267948966 rad @@ -108763,7 +107624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16783 + - uid: 16824 components: - type: Transform rot: -1.5707963267948966 rad @@ -108771,7 +107632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16784 + - uid: 16825 components: - type: Transform rot: -1.5707963267948966 rad @@ -108779,7 +107640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16785 + - uid: 16826 components: - type: Transform rot: -1.5707963267948966 rad @@ -108787,7 +107648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16786 + - uid: 16827 components: - type: Transform rot: -1.5707963267948966 rad @@ -108795,14 +107656,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16787 + - uid: 16828 components: - type: Transform pos: 36.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16788 + - uid: 16829 components: - type: Transform rot: -1.5707963267948966 rad @@ -108810,7 +107671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16789 + - uid: 16830 components: - type: Transform rot: -1.5707963267948966 rad @@ -108818,7 +107679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16790 + - uid: 16831 components: - type: Transform rot: -1.5707963267948966 rad @@ -108826,21 +107687,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16791 + - uid: 16832 components: - type: Transform pos: 34.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16792 + - uid: 16833 components: - type: Transform pos: 36.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16793 + - uid: 16834 components: - type: Transform rot: 1.5707963267948966 rad @@ -108848,70 +107709,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16794 + - uid: 16835 components: - type: Transform pos: -27.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16795 + - uid: 16836 components: - type: Transform pos: -20.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16796 + - uid: 16837 components: - type: Transform pos: -20.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16797 + - uid: 16838 components: - type: Transform pos: -20.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16798 + - uid: 16839 components: - type: Transform pos: -20.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16799 + - uid: 16840 components: - type: Transform pos: -20.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16800 + - uid: 16841 components: - type: Transform pos: -20.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16801 + - uid: 16842 components: - type: Transform pos: -20.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16802 + - uid: 16843 components: - type: Transform pos: -25.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16803 + - uid: 16844 components: - type: Transform rot: 1.5707963267948966 rad @@ -108919,7 +107780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16804 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad @@ -108927,7 +107788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16805 + - uid: 16846 components: - type: Transform rot: 3.141592653589793 rad @@ -108935,7 +107796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16806 + - uid: 16847 components: - type: Transform rot: 1.5707963267948966 rad @@ -108943,21 +107804,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16807 + - uid: 16848 components: - type: Transform pos: -23.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16808 + - uid: 16849 components: - type: Transform pos: -23.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16809 + - uid: 16850 components: - type: Transform rot: 1.5707963267948966 rad @@ -108965,7 +107826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16810 + - uid: 16851 components: - type: Transform rot: 1.5707963267948966 rad @@ -108973,7 +107834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16811 + - uid: 16852 components: - type: Transform rot: 3.141592653589793 rad @@ -108981,7 +107842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16812 + - uid: 16853 components: - type: Transform rot: 3.141592653589793 rad @@ -108989,7 +107850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16813 + - uid: 16854 components: - type: Transform rot: -1.5707963267948966 rad @@ -108997,7 +107858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16814 + - uid: 16855 components: - type: Transform rot: 3.141592653589793 rad @@ -109005,14 +107866,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16815 + - uid: 16856 components: - type: Transform pos: -20.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16816 + - uid: 16857 components: - type: Transform rot: 3.141592653589793 rad @@ -109020,7 +107881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16817 + - uid: 16858 components: - type: Transform rot: 1.5707963267948966 rad @@ -109028,7 +107889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16818 + - uid: 16859 components: - type: Transform rot: 1.5707963267948966 rad @@ -109036,7 +107897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16819 + - uid: 16860 components: - type: Transform rot: -1.5707963267948966 rad @@ -109044,7 +107905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16820 + - uid: 16861 components: - type: Transform rot: -1.5707963267948966 rad @@ -109052,7 +107913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16821 + - uid: 16862 components: - type: Transform rot: -1.5707963267948966 rad @@ -109060,7 +107921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16822 + - uid: 16863 components: - type: Transform rot: 1.5707963267948966 rad @@ -109068,7 +107929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16823 + - uid: 16864 components: - type: Transform rot: -1.5707963267948966 rad @@ -109076,7 +107937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16824 + - uid: 16865 components: - type: Transform rot: 3.141592653589793 rad @@ -109084,7 +107945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16825 + - uid: 16866 components: - type: Transform rot: 3.141592653589793 rad @@ -109092,7 +107953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16826 + - uid: 16867 components: - type: Transform rot: 3.141592653589793 rad @@ -109100,7 +107961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16827 + - uid: 16868 components: - type: Transform rot: 3.141592653589793 rad @@ -109108,7 +107969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16828 + - uid: 16869 components: - type: Transform rot: 3.141592653589793 rad @@ -109116,7 +107977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16829 + - uid: 16870 components: - type: Transform rot: 3.141592653589793 rad @@ -109124,7 +107985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16830 + - uid: 16871 components: - type: Transform rot: 3.141592653589793 rad @@ -109132,7 +107993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16831 + - uid: 16872 components: - type: Transform rot: 3.141592653589793 rad @@ -109140,35 +108001,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16832 + - uid: 16873 components: - type: Transform pos: -20.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16833 + - uid: 16874 components: - type: Transform pos: -18.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16834 + - uid: 16875 components: - type: Transform pos: -18.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16835 + - uid: 16876 components: - type: Transform pos: -18.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16836 + - uid: 16877 components: - type: Transform rot: 3.141592653589793 rad @@ -109176,7 +108037,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16837 + - uid: 16878 components: - type: Transform rot: 3.141592653589793 rad @@ -109184,7 +108045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16838 + - uid: 16879 components: - type: Transform rot: 3.141592653589793 rad @@ -109192,7 +108053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16839 + - uid: 16880 components: - type: Transform rot: 3.141592653589793 rad @@ -109200,7 +108061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16840 + - uid: 16881 components: - type: Transform rot: 3.141592653589793 rad @@ -109208,7 +108069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16841 + - uid: 16882 components: - type: Transform rot: 3.141592653589793 rad @@ -109216,7 +108077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16842 + - uid: 16883 components: - type: Transform rot: 3.141592653589793 rad @@ -109224,7 +108085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16843 + - uid: 16884 components: - type: Transform rot: 3.141592653589793 rad @@ -109232,7 +108093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16844 + - uid: 16885 components: - type: Transform rot: 3.141592653589793 rad @@ -109240,7 +108101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16845 + - uid: 16886 components: - type: Transform rot: 3.141592653589793 rad @@ -109248,7 +108109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16846 + - uid: 16887 components: - type: Transform rot: 3.141592653589793 rad @@ -109256,7 +108117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16847 + - uid: 16888 components: - type: Transform rot: 3.141592653589793 rad @@ -109264,7 +108125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16848 + - uid: 16889 components: - type: Transform rot: 1.5707963267948966 rad @@ -109272,7 +108133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16849 + - uid: 16890 components: - type: Transform rot: 1.5707963267948966 rad @@ -109280,7 +108141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16850 + - uid: 16891 components: - type: Transform rot: 1.5707963267948966 rad @@ -109288,7 +108149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16851 + - uid: 16892 components: - type: Transform rot: 1.5707963267948966 rad @@ -109296,7 +108157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16852 + - uid: 16893 components: - type: Transform rot: -1.5707963267948966 rad @@ -109304,7 +108165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16853 + - uid: 16894 components: - type: Transform rot: -1.5707963267948966 rad @@ -109312,7 +108173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16854 + - uid: 16895 components: - type: Transform rot: 1.5707963267948966 rad @@ -109320,7 +108181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16855 + - uid: 16896 components: - type: Transform rot: -1.5707963267948966 rad @@ -109328,7 +108189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16856 + - uid: 16897 components: - type: Transform rot: -1.5707963267948966 rad @@ -109336,7 +108197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16857 + - uid: 16898 components: - type: Transform rot: 1.5707963267948966 rad @@ -109344,21 +108205,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16858 + - uid: 16899 components: - type: Transform pos: 11.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16859 + - uid: 16900 components: - type: Transform pos: 11.5,17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16860 + - uid: 16901 components: - type: Transform rot: 3.141592653589793 rad @@ -109366,7 +108227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16861 + - uid: 16902 components: - type: Transform rot: 3.141592653589793 rad @@ -109374,7 +108235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16862 + - uid: 16903 components: - type: Transform rot: 3.141592653589793 rad @@ -109382,7 +108243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16863 + - uid: 16904 components: - type: Transform rot: 3.141592653589793 rad @@ -109390,7 +108251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16864 + - uid: 16905 components: - type: Transform rot: 3.141592653589793 rad @@ -109398,7 +108259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16865 + - uid: 16906 components: - type: Transform rot: 3.141592653589793 rad @@ -109406,7 +108267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16866 + - uid: 16907 components: - type: Transform rot: 3.141592653589793 rad @@ -109414,7 +108275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16867 + - uid: 16908 components: - type: Transform rot: -1.5707963267948966 rad @@ -109422,7 +108283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16868 + - uid: 16909 components: - type: Transform rot: -1.5707963267948966 rad @@ -109430,7 +108291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16869 + - uid: 16910 components: - type: Transform rot: -1.5707963267948966 rad @@ -109438,7 +108299,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16870 + - uid: 16911 components: - type: Transform rot: -1.5707963267948966 rad @@ -109446,7 +108307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16871 + - uid: 16912 components: - type: Transform rot: 3.141592653589793 rad @@ -109454,7 +108315,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16872 + - uid: 16913 components: - type: Transform rot: 3.141592653589793 rad @@ -109462,7 +108323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16873 + - uid: 16914 components: - type: Transform rot: 3.141592653589793 rad @@ -109470,7 +108331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16874 + - uid: 16915 components: - type: Transform rot: 3.141592653589793 rad @@ -109478,7 +108339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16875 + - uid: 16916 components: - type: Transform rot: -1.5707963267948966 rad @@ -109486,14 +108347,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16876 + - uid: 16917 components: - type: Transform pos: 11.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16877 + - uid: 16918 components: - type: Transform rot: 1.5707963267948966 rad @@ -109501,7 +108362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16878 + - uid: 16919 components: - type: Transform rot: 1.5707963267948966 rad @@ -109509,7 +108370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16879 + - uid: 16920 components: - type: Transform rot: 1.5707963267948966 rad @@ -109517,7 +108378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16880 + - uid: 16921 components: - type: Transform rot: 1.5707963267948966 rad @@ -109525,7 +108386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16881 + - uid: 16922 components: - type: Transform rot: -1.5707963267948966 rad @@ -109533,7 +108394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16882 + - uid: 16923 components: - type: Transform rot: -1.5707963267948966 rad @@ -109541,7 +108402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16883 + - uid: 16924 components: - type: Transform rot: -1.5707963267948966 rad @@ -109549,7 +108410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16884 + - uid: 16925 components: - type: Transform rot: -1.5707963267948966 rad @@ -109557,7 +108418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16885 + - uid: 16926 components: - type: Transform rot: -1.5707963267948966 rad @@ -109565,7 +108426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16886 + - uid: 16927 components: - type: Transform rot: -1.5707963267948966 rad @@ -109573,7 +108434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16887 + - uid: 16928 components: - type: Transform rot: -1.5707963267948966 rad @@ -109581,7 +108442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16888 + - uid: 16929 components: - type: Transform rot: -1.5707963267948966 rad @@ -109589,7 +108450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16889 + - uid: 16930 components: - type: Transform rot: -1.5707963267948966 rad @@ -109597,7 +108458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16890 + - uid: 16931 components: - type: Transform rot: -1.5707963267948966 rad @@ -109605,7 +108466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16891 + - uid: 16932 components: - type: Transform rot: -1.5707963267948966 rad @@ -109613,7 +108474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16892 + - uid: 16933 components: - type: Transform rot: -1.5707963267948966 rad @@ -109621,35 +108482,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16893 + - uid: 16934 components: - type: Transform pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16894 + - uid: 16935 components: - type: Transform pos: 21.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16895 + - uid: 16936 components: - type: Transform pos: 20.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16896 + - uid: 16937 components: - type: Transform pos: 20.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16897 + - uid: 16938 components: - type: Transform rot: 3.141592653589793 rad @@ -109657,7 +108518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16898 + - uid: 16939 components: - type: Transform rot: 3.141592653589793 rad @@ -109665,7 +108526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16899 + - uid: 16940 components: - type: Transform rot: 3.141592653589793 rad @@ -109673,7 +108534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16900 + - uid: 16941 components: - type: Transform rot: 3.141592653589793 rad @@ -109681,7 +108542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16901 + - uid: 16942 components: - type: Transform rot: 3.141592653589793 rad @@ -109689,7 +108550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16902 + - uid: 16943 components: - type: Transform rot: 3.141592653589793 rad @@ -109697,7 +108558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16903 + - uid: 16944 components: - type: Transform rot: 3.141592653589793 rad @@ -109705,7 +108566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16904 + - uid: 16945 components: - type: Transform rot: 3.141592653589793 rad @@ -109713,7 +108574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16905 + - uid: 16946 components: - type: Transform rot: 3.141592653589793 rad @@ -109721,7 +108582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16906 + - uid: 16947 components: - type: Transform rot: 3.141592653589793 rad @@ -109729,7 +108590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16907 + - uid: 16948 components: - type: Transform rot: 3.141592653589793 rad @@ -109737,7 +108598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16908 + - uid: 16949 components: - type: Transform rot: 3.141592653589793 rad @@ -109745,7 +108606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16909 + - uid: 16950 components: - type: Transform rot: 3.141592653589793 rad @@ -109753,7 +108614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16910 + - uid: 16951 components: - type: Transform rot: 3.141592653589793 rad @@ -109761,7 +108622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16911 + - uid: 16952 components: - type: Transform rot: 3.141592653589793 rad @@ -109769,7 +108630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16912 + - uid: 16953 components: - type: Transform rot: 3.141592653589793 rad @@ -109777,7 +108638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16913 + - uid: 16954 components: - type: Transform rot: 3.141592653589793 rad @@ -109785,7 +108646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16914 + - uid: 16955 components: - type: Transform rot: 3.141592653589793 rad @@ -109793,7 +108654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16915 + - uid: 16956 components: - type: Transform rot: 3.141592653589793 rad @@ -109801,7 +108662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16916 + - uid: 16957 components: - type: Transform rot: 3.141592653589793 rad @@ -109809,7 +108670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16917 + - uid: 16958 components: - type: Transform rot: 1.5707963267948966 rad @@ -109817,7 +108678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16918 + - uid: 16959 components: - type: Transform rot: -1.5707963267948966 rad @@ -109825,7 +108686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16919 + - uid: 16960 components: - type: Transform rot: -1.5707963267948966 rad @@ -109833,7 +108694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16920 + - uid: 16961 components: - type: Transform rot: -1.5707963267948966 rad @@ -109841,7 +108702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16921 + - uid: 16962 components: - type: Transform rot: -1.5707963267948966 rad @@ -109849,7 +108710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16922 + - uid: 16963 components: - type: Transform rot: -1.5707963267948966 rad @@ -109857,7 +108718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16923 + - uid: 16964 components: - type: Transform rot: -1.5707963267948966 rad @@ -109865,7 +108726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16924 + - uid: 16965 components: - type: Transform rot: -1.5707963267948966 rad @@ -109873,7 +108734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16925 + - uid: 16966 components: - type: Transform rot: -1.5707963267948966 rad @@ -109881,7 +108742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16926 + - uid: 16967 components: - type: Transform rot: -1.5707963267948966 rad @@ -109889,7 +108750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16927 + - uid: 16968 components: - type: Transform rot: -1.5707963267948966 rad @@ -109897,7 +108758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16928 + - uid: 16969 components: - type: Transform rot: -1.5707963267948966 rad @@ -109905,7 +108766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16929 + - uid: 16970 components: - type: Transform rot: -1.5707963267948966 rad @@ -109913,7 +108774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16930 + - uid: 16971 components: - type: Transform rot: -1.5707963267948966 rad @@ -109921,7 +108782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16931 + - uid: 16972 components: - type: Transform rot: 1.5707963267948966 rad @@ -109929,7 +108790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16932 + - uid: 16973 components: - type: Transform rot: 1.5707963267948966 rad @@ -109937,7 +108798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16933 + - uid: 16974 components: - type: Transform rot: 1.5707963267948966 rad @@ -109945,7 +108806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16934 + - uid: 16975 components: - type: Transform rot: 1.5707963267948966 rad @@ -109953,7 +108814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16935 + - uid: 16976 components: - type: Transform rot: 1.5707963267948966 rad @@ -109961,7 +108822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16936 + - uid: 16977 components: - type: Transform rot: 1.5707963267948966 rad @@ -109969,7 +108830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16937 + - uid: 16978 components: - type: Transform rot: -1.5707963267948966 rad @@ -109977,7 +108838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16938 + - uid: 16979 components: - type: Transform rot: 3.141592653589793 rad @@ -109985,7 +108846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16939 + - uid: 16980 components: - type: Transform rot: 3.141592653589793 rad @@ -109993,7 +108854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16940 + - uid: 16981 components: - type: Transform rot: 3.141592653589793 rad @@ -110001,7 +108862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16941 + - uid: 16982 components: - type: Transform rot: 3.141592653589793 rad @@ -110009,7 +108870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16942 + - uid: 16983 components: - type: Transform rot: -1.5707963267948966 rad @@ -110017,7 +108878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16943 + - uid: 16984 components: - type: Transform rot: 3.141592653589793 rad @@ -110025,7 +108886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16944 + - uid: 16985 components: - type: Transform rot: 3.141592653589793 rad @@ -110033,7 +108894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16945 + - uid: 16986 components: - type: Transform rot: 3.141592653589793 rad @@ -110041,7 +108902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16946 + - uid: 16987 components: - type: Transform rot: 3.141592653589793 rad @@ -110049,7 +108910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16947 + - uid: 16988 components: - type: Transform rot: 3.141592653589793 rad @@ -110057,7 +108918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16948 + - uid: 16989 components: - type: Transform rot: 1.5707963267948966 rad @@ -110065,7 +108926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16949 + - uid: 16990 components: - type: Transform rot: 1.5707963267948966 rad @@ -110073,7 +108934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16950 + - uid: 16991 components: - type: Transform rot: 1.5707963267948966 rad @@ -110081,7 +108942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16951 + - uid: 16992 components: - type: Transform rot: 1.5707963267948966 rad @@ -110089,7 +108950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16952 + - uid: 16993 components: - type: Transform rot: 3.141592653589793 rad @@ -110097,7 +108958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16953 + - uid: 16994 components: - type: Transform rot: 3.141592653589793 rad @@ -110105,7 +108966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16954 + - uid: 16995 components: - type: Transform rot: 3.141592653589793 rad @@ -110113,7 +108974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16955 + - uid: 16996 components: - type: Transform rot: 3.141592653589793 rad @@ -110121,7 +108982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16956 + - uid: 16997 components: - type: Transform rot: 3.141592653589793 rad @@ -110129,7 +108990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16957 + - uid: 16998 components: - type: Transform rot: 3.141592653589793 rad @@ -110137,7 +108998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16958 + - uid: 16999 components: - type: Transform rot: 1.5707963267948966 rad @@ -110145,7 +109006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16959 + - uid: 17000 components: - type: Transform rot: 1.5707963267948966 rad @@ -110153,7 +109014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16960 + - uid: 17001 components: - type: Transform rot: 3.141592653589793 rad @@ -110161,7 +109022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16961 + - uid: 17002 components: - type: Transform rot: 3.141592653589793 rad @@ -110169,7 +109030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16962 + - uid: 17003 components: - type: Transform rot: 3.141592653589793 rad @@ -110177,7 +109038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16963 + - uid: 17004 components: - type: Transform rot: 1.5707963267948966 rad @@ -110185,7 +109046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16964 + - uid: 17005 components: - type: Transform rot: 1.5707963267948966 rad @@ -110193,7 +109054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16965 + - uid: 17006 components: - type: Transform rot: 1.5707963267948966 rad @@ -110201,7 +109062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16966 + - uid: 17007 components: - type: Transform rot: 1.5707963267948966 rad @@ -110209,7 +109070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16967 + - uid: 17008 components: - type: Transform rot: 1.5707963267948966 rad @@ -110217,7 +109078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16968 + - uid: 17009 components: - type: Transform rot: 3.141592653589793 rad @@ -110225,7 +109086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16969 + - uid: 17010 components: - type: Transform rot: 3.141592653589793 rad @@ -110233,7 +109094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16970 + - uid: 17011 components: - type: Transform rot: 3.141592653589793 rad @@ -110241,7 +109102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16971 + - uid: 17012 components: - type: Transform rot: 3.141592653589793 rad @@ -110249,7 +109110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16972 + - uid: 17013 components: - type: Transform rot: 1.5707963267948966 rad @@ -110257,7 +109118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16973 + - uid: 17014 components: - type: Transform rot: 1.5707963267948966 rad @@ -110265,7 +109126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16974 + - uid: 17015 components: - type: Transform rot: 1.5707963267948966 rad @@ -110273,7 +109134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16975 + - uid: 17016 components: - type: Transform rot: 1.5707963267948966 rad @@ -110281,7 +109142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16976 + - uid: 17017 components: - type: Transform rot: 3.141592653589793 rad @@ -110289,7 +109150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16977 + - uid: 17018 components: - type: Transform rot: 3.141592653589793 rad @@ -110297,7 +109158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16978 + - uid: 17019 components: - type: Transform rot: 3.141592653589793 rad @@ -110305,7 +109166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16979 + - uid: 17020 components: - type: Transform rot: 3.141592653589793 rad @@ -110313,7 +109174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16980 + - uid: 17021 components: - type: Transform rot: 1.5707963267948966 rad @@ -110321,7 +109182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16981 + - uid: 17022 components: - type: Transform rot: -1.5707963267948966 rad @@ -110329,7 +109190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16982 + - uid: 17023 components: - type: Transform rot: -1.5707963267948966 rad @@ -110337,7 +109198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16983 + - uid: 17024 components: - type: Transform rot: -1.5707963267948966 rad @@ -110345,7 +109206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16984 + - uid: 17025 components: - type: Transform rot: -1.5707963267948966 rad @@ -110353,7 +109214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16985 + - uid: 17026 components: - type: Transform rot: -1.5707963267948966 rad @@ -110361,21 +109222,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16986 + - uid: 17027 components: - type: Transform pos: 49.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16987 + - uid: 17028 components: - type: Transform pos: 49.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16988 + - uid: 17029 components: - type: Transform rot: -1.5707963267948966 rad @@ -110383,7 +109244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16989 + - uid: 17030 components: - type: Transform rot: -1.5707963267948966 rad @@ -110391,7 +109252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16990 + - uid: 17031 components: - type: Transform rot: -1.5707963267948966 rad @@ -110399,77 +109260,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16991 + - uid: 17032 components: - type: Transform pos: 58.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16992 + - uid: 17033 components: - type: Transform pos: 58.5,17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16993 + - uid: 17034 components: - type: Transform pos: 59.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16994 + - uid: 17035 components: - type: Transform pos: 59.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16995 + - uid: 17036 components: - type: Transform pos: 58.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16996 + - uid: 17037 components: - type: Transform pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16997 + - uid: 17038 components: - type: Transform pos: 58.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 16998 + - uid: 17039 components: - type: Transform pos: 59.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16999 + - uid: 17040 components: - type: Transform pos: 59.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17000 + - uid: 17041 components: - type: Transform pos: 59.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17001 + - uid: 17042 components: - type: Transform rot: 1.5707963267948966 rad @@ -110477,7 +109338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17002 + - uid: 17043 components: - type: Transform rot: 1.5707963267948966 rad @@ -110485,7 +109346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17003 + - uid: 17044 components: - type: Transform rot: 1.5707963267948966 rad @@ -110493,7 +109354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17004 + - uid: 17045 components: - type: Transform rot: 1.5707963267948966 rad @@ -110501,7 +109362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17005 + - uid: 17046 components: - type: Transform rot: -1.5707963267948966 rad @@ -110509,7 +109370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17006 + - uid: 17047 components: - type: Transform rot: -1.5707963267948966 rad @@ -110517,7 +109378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17007 + - uid: 17048 components: - type: Transform rot: -1.5707963267948966 rad @@ -110525,7 +109386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17008 + - uid: 17049 components: - type: Transform rot: -1.5707963267948966 rad @@ -110533,7 +109394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17009 + - uid: 17050 components: - type: Transform rot: -1.5707963267948966 rad @@ -110541,7 +109402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17010 + - uid: 17051 components: - type: Transform rot: -1.5707963267948966 rad @@ -110549,7 +109410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17011 + - uid: 17052 components: - type: Transform rot: -1.5707963267948966 rad @@ -110557,7 +109418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17012 + - uid: 17053 components: - type: Transform rot: -1.5707963267948966 rad @@ -110565,7 +109426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17013 + - uid: 17054 components: - type: Transform rot: -1.5707963267948966 rad @@ -110573,7 +109434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17014 + - uid: 17055 components: - type: Transform rot: -1.5707963267948966 rad @@ -110581,7 +109442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17015 + - uid: 17056 components: - type: Transform rot: -1.5707963267948966 rad @@ -110589,7 +109450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17016 + - uid: 17057 components: - type: Transform rot: -1.5707963267948966 rad @@ -110597,7 +109458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17017 + - uid: 17058 components: - type: Transform rot: -1.5707963267948966 rad @@ -110605,7 +109466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17018 + - uid: 17059 components: - type: Transform rot: -1.5707963267948966 rad @@ -110613,7 +109474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17019 + - uid: 17060 components: - type: Transform rot: -1.5707963267948966 rad @@ -110621,7 +109482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17020 + - uid: 17061 components: - type: Transform rot: -1.5707963267948966 rad @@ -110629,7 +109490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17021 + - uid: 17062 components: - type: Transform rot: -1.5707963267948966 rad @@ -110637,7 +109498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17022 + - uid: 17063 components: - type: Transform rot: -1.5707963267948966 rad @@ -110645,7 +109506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17023 + - uid: 17064 components: - type: Transform rot: -1.5707963267948966 rad @@ -110653,7 +109514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17024 + - uid: 17065 components: - type: Transform rot: -1.5707963267948966 rad @@ -110661,7 +109522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17025 + - uid: 17066 components: - type: Transform rot: -1.5707963267948966 rad @@ -110669,7 +109530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17026 + - uid: 17067 components: - type: Transform rot: -1.5707963267948966 rad @@ -110677,7 +109538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17027 + - uid: 17068 components: - type: Transform rot: -1.5707963267948966 rad @@ -110685,7 +109546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17028 + - uid: 17069 components: - type: Transform rot: -1.5707963267948966 rad @@ -110693,7 +109554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17029 + - uid: 17070 components: - type: Transform rot: -1.5707963267948966 rad @@ -110701,7 +109562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17030 + - uid: 17071 components: - type: Transform rot: -1.5707963267948966 rad @@ -110709,7 +109570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17031 + - uid: 17072 components: - type: Transform rot: -1.5707963267948966 rad @@ -110717,7 +109578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17032 + - uid: 17073 components: - type: Transform rot: -1.5707963267948966 rad @@ -110725,7 +109586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17033 + - uid: 17074 components: - type: Transform rot: -1.5707963267948966 rad @@ -110733,7 +109594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17034 + - uid: 17075 components: - type: Transform rot: -1.5707963267948966 rad @@ -110741,7 +109602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17035 + - uid: 17076 components: - type: Transform rot: -1.5707963267948966 rad @@ -110749,7 +109610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17036 + - uid: 17077 components: - type: Transform rot: -1.5707963267948966 rad @@ -110757,7 +109618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17037 + - uid: 17078 components: - type: Transform rot: -1.5707963267948966 rad @@ -110765,7 +109626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17038 + - uid: 17079 components: - type: Transform rot: -1.5707963267948966 rad @@ -110773,7 +109634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17039 + - uid: 17080 components: - type: Transform rot: -1.5707963267948966 rad @@ -110781,7 +109642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17040 + - uid: 17081 components: - type: Transform rot: -1.5707963267948966 rad @@ -110789,7 +109650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17041 + - uid: 17082 components: - type: Transform rot: -1.5707963267948966 rad @@ -110797,7 +109658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17042 + - uid: 17083 components: - type: Transform rot: -1.5707963267948966 rad @@ -110805,7 +109666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17043 + - uid: 17084 components: - type: Transform rot: -1.5707963267948966 rad @@ -110813,7 +109674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17044 + - uid: 17085 components: - type: Transform rot: -1.5707963267948966 rad @@ -110821,7 +109682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17045 + - uid: 17086 components: - type: Transform rot: -1.5707963267948966 rad @@ -110829,7 +109690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17046 + - uid: 17087 components: - type: Transform rot: -1.5707963267948966 rad @@ -110837,7 +109698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17047 + - uid: 17088 components: - type: Transform rot: -1.5707963267948966 rad @@ -110845,7 +109706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17048 + - uid: 17089 components: - type: Transform rot: -1.5707963267948966 rad @@ -110853,7 +109714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17049 + - uid: 17090 components: - type: Transform rot: -1.5707963267948966 rad @@ -110861,7 +109722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17050 + - uid: 17091 components: - type: Transform rot: -1.5707963267948966 rad @@ -110869,105 +109730,105 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17051 + - uid: 17092 components: - type: Transform pos: 52.5,0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17052 + - uid: 17093 components: - type: Transform pos: 52.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17053 + - uid: 17094 components: - type: Transform pos: 52.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17054 + - uid: 17095 components: - type: Transform pos: 52.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17055 + - uid: 17096 components: - type: Transform pos: 52.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17056 + - uid: 17097 components: - type: Transform pos: 52.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17057 + - uid: 17098 components: - type: Transform pos: 52.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17058 + - uid: 17099 components: - type: Transform pos: 52.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17059 + - uid: 17100 components: - type: Transform pos: 52.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17060 + - uid: 17101 components: - type: Transform pos: 53.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17061 + - uid: 17102 components: - type: Transform pos: 53.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17062 + - uid: 17103 components: - type: Transform pos: 53.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17063 + - uid: 17104 components: - type: Transform pos: 53.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17064 + - uid: 17105 components: - type: Transform pos: 53.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17065 + - uid: 17106 components: - type: Transform rot: 1.5707963267948966 rad @@ -110975,7 +109836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17066 + - uid: 17107 components: - type: Transform rot: 1.5707963267948966 rad @@ -110983,21 +109844,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17067 + - uid: 17108 components: - type: Transform pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17068 + - uid: 17109 components: - type: Transform pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17069 + - uid: 17110 components: - type: Transform rot: 3.141592653589793 rad @@ -111005,7 +109866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17070 + - uid: 17111 components: - type: Transform rot: 3.141592653589793 rad @@ -111013,7 +109874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17071 + - uid: 17112 components: - type: Transform rot: 1.5707963267948966 rad @@ -111021,7 +109882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17072 + - uid: 17113 components: - type: Transform rot: 1.5707963267948966 rad @@ -111029,7 +109890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17073 + - uid: 17114 components: - type: Transform rot: 1.5707963267948966 rad @@ -111037,7 +109898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17074 + - uid: 17115 components: - type: Transform rot: 1.5707963267948966 rad @@ -111045,7 +109906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17075 + - uid: 17116 components: - type: Transform rot: 1.5707963267948966 rad @@ -111053,7 +109914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17076 + - uid: 17117 components: - type: Transform rot: 1.5707963267948966 rad @@ -111061,7 +109922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17077 + - uid: 17118 components: - type: Transform rot: 1.5707963267948966 rad @@ -111069,7 +109930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17078 + - uid: 17119 components: - type: Transform rot: 1.5707963267948966 rad @@ -111077,7 +109938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17079 + - uid: 17120 components: - type: Transform rot: 1.5707963267948966 rad @@ -111085,7 +109946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17080 + - uid: 17121 components: - type: Transform rot: 1.5707963267948966 rad @@ -111093,7 +109954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17081 + - uid: 17122 components: - type: Transform rot: 1.5707963267948966 rad @@ -111101,7 +109962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17082 + - uid: 17123 components: - type: Transform rot: 1.5707963267948966 rad @@ -111109,56 +109970,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17083 + - uid: 17124 components: - type: Transform pos: 42.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17084 + - uid: 17125 components: - type: Transform pos: 42.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17085 + - uid: 17126 components: - type: Transform pos: 41.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17086 + - uid: 17127 components: - type: Transform pos: 41.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17087 + - uid: 17128 components: - type: Transform pos: 41.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17088 + - uid: 17129 components: - type: Transform pos: 41.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17089 + - uid: 17130 components: - type: Transform pos: 42.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17090 + - uid: 17131 components: - type: Transform rot: -1.5707963267948966 rad @@ -111166,49 +110027,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17091 + - uid: 17132 components: - type: Transform pos: 24.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17092 + - uid: 17133 components: - type: Transform pos: 24.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17093 + - uid: 17134 components: - type: Transform pos: 24.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17094 + - uid: 17135 components: - type: Transform pos: 24.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17095 + - uid: 17136 components: - type: Transform pos: 24.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17096 + - uid: 17137 components: - type: Transform pos: 24.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17097 + - uid: 17138 components: - type: Transform rot: 3.141592653589793 rad @@ -111216,7 +110077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17098 + - uid: 17139 components: - type: Transform rot: 3.141592653589793 rad @@ -111224,7 +110085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17099 + - uid: 17140 components: - type: Transform rot: 3.141592653589793 rad @@ -111232,77 +110093,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17100 + - uid: 17141 components: - type: Transform pos: 26.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17101 + - uid: 17142 components: - type: Transform pos: 26.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17102 + - uid: 17143 components: - type: Transform pos: 26.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17103 + - uid: 17144 components: - type: Transform pos: 26.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17104 + - uid: 17145 components: - type: Transform pos: 26.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17105 + - uid: 17146 components: - type: Transform pos: 26.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17106 + - uid: 17147 components: - type: Transform pos: 26.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17107 + - uid: 17148 components: - type: Transform pos: 26.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17108 + - uid: 17149 components: - type: Transform pos: 26.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17109 + - uid: 17150 components: - type: Transform pos: 26.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17110 + - uid: 17151 components: - type: Transform rot: 1.5707963267948966 rad @@ -111310,7 +110171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17111 + - uid: 17152 components: - type: Transform rot: 1.5707963267948966 rad @@ -111318,7 +110179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17112 + - uid: 17153 components: - type: Transform rot: 1.5707963267948966 rad @@ -111326,7 +110187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17113 + - uid: 17154 components: - type: Transform rot: 1.5707963267948966 rad @@ -111334,28 +110195,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17114 + - uid: 17155 components: - type: Transform pos: 52.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17115 + - uid: 17156 components: - type: Transform pos: 52.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17116 + - uid: 17157 components: - type: Transform pos: 52.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17117 + - uid: 17158 components: - type: Transform rot: 1.5707963267948966 rad @@ -111363,7 +110224,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17118 + - uid: 17159 components: - type: Transform rot: 1.5707963267948966 rad @@ -111371,7 +110232,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17119 + - uid: 17160 components: - type: Transform rot: 1.5707963267948966 rad @@ -111379,7 +110240,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17120 + - uid: 17161 components: - type: Transform rot: 1.5707963267948966 rad @@ -111387,35 +110248,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17121 + - uid: 17162 components: - type: Transform pos: 62.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17122 + - uid: 17163 components: - type: Transform pos: 62.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17123 + - uid: 17164 components: - type: Transform pos: 73.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17124 + - uid: 17165 components: - type: Transform pos: 49.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17125 + - uid: 17166 components: - type: Transform rot: 1.5707963267948966 rad @@ -111423,7 +110284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17126 + - uid: 17167 components: - type: Transform rot: 1.5707963267948966 rad @@ -111431,7 +110292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17127 + - uid: 17168 components: - type: Transform rot: 1.5707963267948966 rad @@ -111439,7 +110300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17128 + - uid: 17169 components: - type: Transform rot: 1.5707963267948966 rad @@ -111447,7 +110308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17129 + - uid: 17170 components: - type: Transform rot: 1.5707963267948966 rad @@ -111455,7 +110316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17130 + - uid: 17171 components: - type: Transform rot: 1.5707963267948966 rad @@ -111463,7 +110324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17131 + - uid: 17172 components: - type: Transform rot: 1.5707963267948966 rad @@ -111471,7 +110332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17132 + - uid: 17173 components: - type: Transform rot: 1.5707963267948966 rad @@ -111479,7 +110340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17133 + - uid: 17174 components: - type: Transform rot: 1.5707963267948966 rad @@ -111487,7 +110348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17134 + - uid: 17175 components: - type: Transform rot: 1.5707963267948966 rad @@ -111495,63 +110356,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17135 + - uid: 17176 components: - type: Transform pos: 43.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17136 + - uid: 17177 components: - type: Transform pos: 43.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17137 + - uid: 17178 components: - type: Transform pos: 43.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17138 + - uid: 17179 components: - type: Transform pos: 43.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17139 + - uid: 17180 components: - type: Transform pos: 43.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17140 + - uid: 17181 components: - type: Transform pos: 42.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17141 + - uid: 17182 components: - type: Transform pos: 42.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17142 + - uid: 17183 components: - type: Transform pos: 42.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17143 + - uid: 17184 components: - type: Transform rot: 3.141592653589793 rad @@ -111559,7 +110420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17144 + - uid: 17185 components: - type: Transform rot: 1.5707963267948966 rad @@ -111567,7 +110428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17145 + - uid: 17186 components: - type: Transform rot: 1.5707963267948966 rad @@ -111575,7 +110436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17146 + - uid: 17187 components: - type: Transform rot: 1.5707963267948966 rad @@ -111583,7 +110444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17147 + - uid: 17188 components: - type: Transform rot: 1.5707963267948966 rad @@ -111591,7 +110452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17148 + - uid: 17189 components: - type: Transform rot: 1.5707963267948966 rad @@ -111599,21 +110460,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17149 + - uid: 17190 components: - type: Transform pos: 57.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17150 + - uid: 17191 components: - type: Transform pos: 57.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17151 + - uid: 17192 components: - type: Transform rot: 1.5707963267948966 rad @@ -111621,7 +110482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17152 + - uid: 17193 components: - type: Transform rot: 1.5707963267948966 rad @@ -111629,7 +110490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17153 + - uid: 17194 components: - type: Transform rot: -1.5707963267948966 rad @@ -111637,7 +110498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17154 + - uid: 17195 components: - type: Transform rot: 1.5707963267948966 rad @@ -111645,7 +110506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17155 + - uid: 17196 components: - type: Transform rot: 1.5707963267948966 rad @@ -111653,7 +110514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17156 + - uid: 17197 components: - type: Transform rot: 3.141592653589793 rad @@ -111661,7 +110522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17157 + - uid: 17198 components: - type: Transform rot: 3.141592653589793 rad @@ -111669,56 +110530,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17158 + - uid: 17199 components: - type: Transform pos: 50.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17159 + - uid: 17200 components: - type: Transform pos: 50.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17160 + - uid: 17201 components: - type: Transform pos: 50.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17161 + - uid: 17202 components: - type: Transform pos: 50.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17162 + - uid: 17203 components: - type: Transform pos: 50.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17163 + - uid: 17204 components: - type: Transform pos: 50.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17164 + - uid: 17205 components: - type: Transform pos: 49.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17165 + - uid: 17206 components: - type: Transform rot: -1.5707963267948966 rad @@ -111726,7 +110587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17166 + - uid: 17207 components: - type: Transform rot: -1.5707963267948966 rad @@ -111734,7 +110595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17167 + - uid: 17208 components: - type: Transform rot: -1.5707963267948966 rad @@ -111742,7 +110603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17168 + - uid: 17209 components: - type: Transform rot: -1.5707963267948966 rad @@ -111750,7 +110611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17169 + - uid: 17210 components: - type: Transform rot: 1.5707963267948966 rad @@ -111758,7 +110619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17170 + - uid: 17211 components: - type: Transform rot: 1.5707963267948966 rad @@ -111766,7 +110627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17171 + - uid: 17212 components: - type: Transform rot: 1.5707963267948966 rad @@ -111774,7 +110635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17172 + - uid: 17213 components: - type: Transform rot: 1.5707963267948966 rad @@ -111782,7 +110643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17173 + - uid: 17214 components: - type: Transform rot: 1.5707963267948966 rad @@ -111790,7 +110651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17174 + - uid: 17215 components: - type: Transform rot: 3.141592653589793 rad @@ -111798,7 +110659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17175 + - uid: 17216 components: - type: Transform rot: -1.5707963267948966 rad @@ -111806,7 +110667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17176 + - uid: 17217 components: - type: Transform rot: -1.5707963267948966 rad @@ -111814,7 +110675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17177 + - uid: 17218 components: - type: Transform rot: -1.5707963267948966 rad @@ -111822,7 +110683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17178 + - uid: 17219 components: - type: Transform rot: -1.5707963267948966 rad @@ -111830,7 +110691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17179 + - uid: 17220 components: - type: Transform rot: -1.5707963267948966 rad @@ -111838,7 +110699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17180 + - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad @@ -111846,7 +110707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17181 + - uid: 17222 components: - type: Transform rot: -1.5707963267948966 rad @@ -111854,7 +110715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17182 + - uid: 17223 components: - type: Transform rot: -1.5707963267948966 rad @@ -111862,7 +110723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17183 + - uid: 17224 components: - type: Transform rot: -1.5707963267948966 rad @@ -111870,7 +110731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17184 + - uid: 17225 components: - type: Transform rot: 3.141592653589793 rad @@ -111878,7 +110739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17185 + - uid: 17226 components: - type: Transform rot: 3.141592653589793 rad @@ -111886,7 +110747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17186 + - uid: 17227 components: - type: Transform rot: 3.141592653589793 rad @@ -111894,7 +110755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17187 + - uid: 17228 components: - type: Transform rot: 3.141592653589793 rad @@ -111902,7 +110763,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17188 + - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad @@ -111910,7 +110771,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17189 + - uid: 17230 components: - type: Transform rot: 3.141592653589793 rad @@ -111918,7 +110779,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17190 + - uid: 17231 components: - type: Transform rot: 3.141592653589793 rad @@ -111926,7 +110787,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17191 + - uid: 17232 components: - type: Transform rot: 3.141592653589793 rad @@ -111934,7 +110795,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17192 + - uid: 17233 components: - type: Transform rot: 3.141592653589793 rad @@ -111942,28 +110803,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17193 + - uid: 17234 components: - type: Transform pos: 62.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17194 + - uid: 17235 components: - type: Transform pos: 62.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17195 + - uid: 17236 components: - type: Transform pos: 62.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17196 + - uid: 17237 components: - type: Transform rot: -1.5707963267948966 rad @@ -111971,7 +110832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17197 + - uid: 17238 components: - type: Transform rot: 3.141592653589793 rad @@ -111979,7 +110840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17198 + - uid: 17239 components: - type: Transform rot: 1.5707963267948966 rad @@ -111987,7 +110848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17199 + - uid: 17240 components: - type: Transform rot: 1.5707963267948966 rad @@ -111995,21 +110856,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17200 + - uid: 17241 components: - type: Transform pos: 64.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17201 + - uid: 17242 components: - type: Transform pos: 60.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17202 + - uid: 17243 components: - type: Transform rot: 3.141592653589793 rad @@ -112017,7 +110878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17203 + - uid: 17244 components: - type: Transform rot: 3.141592653589793 rad @@ -112025,7 +110886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17204 + - uid: 17245 components: - type: Transform rot: 3.141592653589793 rad @@ -112033,7 +110894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17205 + - uid: 17246 components: - type: Transform rot: 3.141592653589793 rad @@ -112041,7 +110902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17206 + - uid: 17247 components: - type: Transform rot: 3.141592653589793 rad @@ -112049,7 +110910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17207 + - uid: 17248 components: - type: Transform rot: 3.141592653589793 rad @@ -112057,7 +110918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17208 + - uid: 17249 components: - type: Transform rot: 3.141592653589793 rad @@ -112065,7 +110926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17209 + - uid: 17250 components: - type: Transform rot: 3.141592653589793 rad @@ -112073,7 +110934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17210 + - uid: 17251 components: - type: Transform rot: 3.141592653589793 rad @@ -112081,7 +110942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17211 + - uid: 17252 components: - type: Transform rot: 3.141592653589793 rad @@ -112089,7 +110950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17212 + - uid: 17253 components: - type: Transform rot: 3.141592653589793 rad @@ -112097,399 +110958,399 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17213 + - uid: 17254 components: - type: Transform pos: 61.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17214 + - uid: 17255 components: - type: Transform pos: 61.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17215 + - uid: 17256 components: - type: Transform pos: 61.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17216 + - uid: 17257 components: - type: Transform pos: 61.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17217 + - uid: 17258 components: - type: Transform pos: 61.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17218 + - uid: 17259 components: - type: Transform pos: 61.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17219 + - uid: 17260 components: - type: Transform pos: 61.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17220 + - uid: 17261 components: - type: Transform pos: 61.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17221 + - uid: 17262 components: - type: Transform pos: 61.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17222 + - uid: 17263 components: - type: Transform pos: 61.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17223 + - uid: 17264 components: - type: Transform pos: 61.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17224 + - uid: 17265 components: - type: Transform pos: 61.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17225 + - uid: 17266 components: - type: Transform pos: 61.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17226 + - uid: 17267 components: - type: Transform pos: 62.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17227 + - uid: 17268 components: - type: Transform pos: 62.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17228 + - uid: 17269 components: - type: Transform pos: 62.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17229 + - uid: 17270 components: - type: Transform pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17230 + - uid: 17271 components: - type: Transform pos: 61.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17231 + - uid: 17272 components: - type: Transform pos: 61.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17232 + - uid: 17273 components: - type: Transform pos: 63.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17233 + - uid: 17274 components: - type: Transform pos: 63.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17234 + - uid: 17275 components: - type: Transform pos: 63.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17235 + - uid: 17276 components: - type: Transform pos: 63.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17236 + - uid: 17277 components: - type: Transform pos: 63.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17237 + - uid: 17278 components: - type: Transform pos: 63.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17238 + - uid: 17279 components: - type: Transform pos: 63.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17239 + - uid: 17280 components: - type: Transform pos: 63.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17240 + - uid: 17281 components: - type: Transform pos: 63.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17241 + - uid: 17282 components: - type: Transform pos: 63.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17242 + - uid: 17283 components: - type: Transform pos: 63.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17243 + - uid: 17284 components: - type: Transform pos: 63.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17244 + - uid: 17285 components: - type: Transform pos: 63.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17245 + - uid: 17286 components: - type: Transform pos: 63.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17246 + - uid: 17287 components: - type: Transform pos: 63.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17247 + - uid: 17288 components: - type: Transform pos: 63.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17248 + - uid: 17289 components: - type: Transform pos: 63.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17249 + - uid: 17290 components: - type: Transform pos: 63.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17250 + - uid: 17291 components: - type: Transform pos: 63.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17251 + - uid: 17292 components: - type: Transform pos: 63.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17252 + - uid: 17293 components: - type: Transform pos: 63.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17253 + - uid: 17294 components: - type: Transform pos: 63.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17254 + - uid: 17295 components: - type: Transform pos: 64.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17255 + - uid: 17296 components: - type: Transform pos: 64.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17256 + - uid: 17297 components: - type: Transform pos: 64.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17257 + - uid: 17298 components: - type: Transform pos: 64.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17258 + - uid: 17299 components: - type: Transform pos: 60.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17259 + - uid: 17300 components: - type: Transform pos: 60.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17260 + - uid: 17301 components: - type: Transform pos: 60.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17261 + - uid: 17302 components: - type: Transform pos: 60.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17262 + - uid: 17303 components: - type: Transform pos: 50.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17263 + - uid: 17304 components: - type: Transform pos: 49.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17264 + - uid: 17305 components: - type: Transform pos: 49.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17265 + - uid: 17306 components: - type: Transform pos: 49.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17266 + - uid: 17307 components: - type: Transform pos: 50.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17267 + - uid: 17308 components: - type: Transform pos: 50.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17268 + - uid: 17309 components: - type: Transform pos: 49.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17269 + - uid: 17310 components: - type: Transform rot: 1.5707963267948966 rad @@ -112497,7 +111358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17270 + - uid: 17311 components: - type: Transform rot: 1.5707963267948966 rad @@ -112505,7 +111366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17271 + - uid: 17312 components: - type: Transform rot: 1.5707963267948966 rad @@ -112513,7 +111374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17272 + - uid: 17313 components: - type: Transform rot: 1.5707963267948966 rad @@ -112521,7 +111382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17273 + - uid: 17314 components: - type: Transform rot: 1.5707963267948966 rad @@ -112529,7 +111390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17274 + - uid: 17315 components: - type: Transform rot: 1.5707963267948966 rad @@ -112537,7 +111398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17275 + - uid: 17316 components: - type: Transform rot: 1.5707963267948966 rad @@ -112545,7 +111406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17276 + - uid: 17317 components: - type: Transform rot: 1.5707963267948966 rad @@ -112553,7 +111414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17277 + - uid: 17318 components: - type: Transform rot: 1.5707963267948966 rad @@ -112561,7 +111422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17278 + - uid: 17319 components: - type: Transform rot: 1.5707963267948966 rad @@ -112569,7 +111430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17279 + - uid: 17320 components: - type: Transform rot: 1.5707963267948966 rad @@ -112577,7 +111438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17280 + - uid: 17321 components: - type: Transform rot: 1.5707963267948966 rad @@ -112585,7 +111446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17281 + - uid: 17322 components: - type: Transform rot: 1.5707963267948966 rad @@ -112593,7 +111454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17282 + - uid: 17323 components: - type: Transform rot: 1.5707963267948966 rad @@ -112601,7 +111462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17283 + - uid: 17324 components: - type: Transform rot: 1.5707963267948966 rad @@ -112609,7 +111470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17284 + - uid: 17325 components: - type: Transform rot: 1.5707963267948966 rad @@ -112617,7 +111478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17285 + - uid: 17326 components: - type: Transform rot: 3.141592653589793 rad @@ -112625,7 +111486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17286 + - uid: 17327 components: - type: Transform rot: 1.5707963267948966 rad @@ -112633,7 +111494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17287 + - uid: 17328 components: - type: Transform rot: 1.5707963267948966 rad @@ -112641,7 +111502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17288 + - uid: 17329 components: - type: Transform rot: 3.141592653589793 rad @@ -112649,7 +111510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17289 + - uid: 17330 components: - type: Transform rot: 1.5707963267948966 rad @@ -112657,7 +111518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17290 + - uid: 17331 components: - type: Transform rot: 1.5707963267948966 rad @@ -112665,7 +111526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17291 + - uid: 17332 components: - type: Transform rot: 1.5707963267948966 rad @@ -112673,7 +111534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17292 + - uid: 17333 components: - type: Transform rot: 1.5707963267948966 rad @@ -112681,7 +111542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17293 + - uid: 17334 components: - type: Transform rot: 1.5707963267948966 rad @@ -112689,7 +111550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17294 + - uid: 17335 components: - type: Transform rot: 1.5707963267948966 rad @@ -112697,7 +111558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17295 + - uid: 17336 components: - type: Transform rot: 3.141592653589793 rad @@ -112705,56 +111566,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17296 + - uid: 17337 components: - type: Transform pos: 29.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17297 + - uid: 17338 components: - type: Transform pos: 29.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17298 + - uid: 17339 components: - type: Transform pos: 29.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17299 + - uid: 17340 components: - type: Transform pos: 29.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17300 + - uid: 17341 components: - type: Transform pos: 29.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17301 + - uid: 17342 components: - type: Transform pos: 29.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17302 + - uid: 17343 components: - type: Transform pos: 29.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17303 + - uid: 17344 components: - type: Transform rot: -1.5707963267948966 rad @@ -112762,7 +111623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17304 + - uid: 17345 components: - type: Transform rot: -1.5707963267948966 rad @@ -112770,7 +111631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17305 + - uid: 17346 components: - type: Transform rot: -1.5707963267948966 rad @@ -112778,7 +111639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17306 + - uid: 17347 components: - type: Transform rot: 3.141592653589793 rad @@ -112786,7 +111647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17307 + - uid: 17348 components: - type: Transform rot: 1.5707963267948966 rad @@ -112794,49 +111655,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17308 + - uid: 17349 components: - type: Transform pos: 32.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17309 + - uid: 17350 components: - type: Transform pos: 32.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17310 + - uid: 17351 components: - type: Transform pos: 32.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17311 + - uid: 17352 components: - type: Transform pos: 32.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17312 + - uid: 17353 components: - type: Transform pos: 32.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17313 + - uid: 17354 components: - type: Transform pos: 32.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17314 + - uid: 17355 components: - type: Transform rot: 1.5707963267948966 rad @@ -112844,7 +111705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17315 + - uid: 17356 components: - type: Transform rot: 3.141592653589793 rad @@ -112852,7 +111713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17316 + - uid: 17357 components: - type: Transform rot: 3.141592653589793 rad @@ -112860,7 +111721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17317 + - uid: 17358 components: - type: Transform rot: -1.5707963267948966 rad @@ -112868,7 +111729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17318 + - uid: 17359 components: - type: Transform rot: 3.141592653589793 rad @@ -112876,7 +111737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17319 + - uid: 17360 components: - type: Transform rot: 3.141592653589793 rad @@ -112884,7 +111745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17320 + - uid: 17361 components: - type: Transform rot: -1.5707963267948966 rad @@ -112892,7 +111753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17321 + - uid: 17362 components: - type: Transform rot: -1.5707963267948966 rad @@ -112900,7 +111761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17322 + - uid: 17363 components: - type: Transform rot: -1.5707963267948966 rad @@ -112908,7 +111769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17323 + - uid: 17364 components: - type: Transform rot: -1.5707963267948966 rad @@ -112916,21 +111777,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17324 + - uid: 17365 components: - type: Transform pos: 49.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17325 + - uid: 17366 components: - type: Transform pos: 49.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17326 + - uid: 17367 components: - type: Transform rot: -1.5707963267948966 rad @@ -112938,7 +111799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17327 + - uid: 17368 components: - type: Transform rot: -1.5707963267948966 rad @@ -112946,7 +111807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17328 + - uid: 17369 components: - type: Transform rot: -1.5707963267948966 rad @@ -112954,7 +111815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17329 + - uid: 17370 components: - type: Transform rot: -1.5707963267948966 rad @@ -112962,7 +111823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17330 + - uid: 17371 components: - type: Transform rot: -1.5707963267948966 rad @@ -112970,7 +111831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17331 + - uid: 17372 components: - type: Transform rot: 1.5707963267948966 rad @@ -112978,7 +111839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17332 + - uid: 17373 components: - type: Transform rot: 1.5707963267948966 rad @@ -112986,21 +111847,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17333 + - uid: 17374 components: - type: Transform pos: -19.5,6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17334 + - uid: 17375 components: - type: Transform pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17335 + - uid: 17376 components: - type: Transform rot: 1.5707963267948966 rad @@ -113008,7 +111869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17336 + - uid: 17377 components: - type: Transform rot: 1.5707963267948966 rad @@ -113016,7 +111877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17337 + - uid: 17378 components: - type: Transform rot: 1.5707963267948966 rad @@ -113024,7 +111885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17338 + - uid: 17379 components: - type: Transform rot: 1.5707963267948966 rad @@ -113032,7 +111893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17339 + - uid: 17380 components: - type: Transform rot: 1.5707963267948966 rad @@ -113040,7 +111901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17340 + - uid: 17381 components: - type: Transform rot: 1.5707963267948966 rad @@ -113048,7 +111909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17341 + - uid: 17382 components: - type: Transform rot: 1.5707963267948966 rad @@ -113056,7 +111917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17342 + - uid: 17383 components: - type: Transform rot: 1.5707963267948966 rad @@ -113064,7 +111925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17343 + - uid: 17384 components: - type: Transform rot: 1.5707963267948966 rad @@ -113072,7 +111933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17344 + - uid: 17385 components: - type: Transform rot: 1.5707963267948966 rad @@ -113080,7 +111941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17345 + - uid: 17386 components: - type: Transform rot: 1.5707963267948966 rad @@ -113088,7 +111949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17346 + - uid: 17387 components: - type: Transform rot: 1.5707963267948966 rad @@ -113096,7 +111957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17347 + - uid: 17388 components: - type: Transform rot: 1.5707963267948966 rad @@ -113104,7 +111965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17348 + - uid: 17389 components: - type: Transform rot: 1.5707963267948966 rad @@ -113112,7 +111973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17349 + - uid: 17390 components: - type: Transform rot: 1.5707963267948966 rad @@ -113120,7 +111981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17350 + - uid: 17391 components: - type: Transform rot: -1.5707963267948966 rad @@ -113128,7 +111989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17351 + - uid: 17392 components: - type: Transform rot: -1.5707963267948966 rad @@ -113136,7 +111997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17352 + - uid: 17393 components: - type: Transform rot: 3.141592653589793 rad @@ -113144,7 +112005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17353 + - uid: 17394 components: - type: Transform rot: 3.141592653589793 rad @@ -113152,7 +112013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17354 + - uid: 17395 components: - type: Transform rot: 3.141592653589793 rad @@ -113160,7 +112021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17355 + - uid: 17396 components: - type: Transform rot: 3.141592653589793 rad @@ -113168,7 +112029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17356 + - uid: 17397 components: - type: Transform rot: 3.141592653589793 rad @@ -113176,7 +112037,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17357 + - uid: 17398 components: - type: Transform rot: 3.141592653589793 rad @@ -113184,7 +112045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17358 + - uid: 17399 components: - type: Transform rot: 3.141592653589793 rad @@ -113192,7 +112053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17359 + - uid: 17400 components: - type: Transform rot: 3.141592653589793 rad @@ -113200,7 +112061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17360 + - uid: 17401 components: - type: Transform rot: 3.141592653589793 rad @@ -113208,7 +112069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17361 + - uid: 17402 components: - type: Transform rot: 3.141592653589793 rad @@ -113216,7 +112077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17362 + - uid: 17403 components: - type: Transform rot: 3.141592653589793 rad @@ -113224,7 +112085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17363 + - uid: 17404 components: - type: Transform rot: 3.141592653589793 rad @@ -113232,7 +112093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17364 + - uid: 17405 components: - type: Transform rot: 3.141592653589793 rad @@ -113240,7 +112101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17365 + - uid: 17406 components: - type: Transform rot: 3.141592653589793 rad @@ -113248,7 +112109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17366 + - uid: 17407 components: - type: Transform rot: 3.141592653589793 rad @@ -113256,7 +112117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17367 + - uid: 17408 components: - type: Transform rot: 3.141592653589793 rad @@ -113264,7 +112125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17368 + - uid: 17409 components: - type: Transform rot: 3.141592653589793 rad @@ -113272,7 +112133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17369 + - uid: 17410 components: - type: Transform rot: 3.141592653589793 rad @@ -113280,7 +112141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17370 + - uid: 17411 components: - type: Transform rot: 3.141592653589793 rad @@ -113288,7 +112149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17371 + - uid: 17412 components: - type: Transform rot: 3.141592653589793 rad @@ -113296,7 +112157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17372 + - uid: 17413 components: - type: Transform rot: 3.141592653589793 rad @@ -113304,7 +112165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17373 + - uid: 17414 components: - type: Transform rot: 3.141592653589793 rad @@ -113312,7 +112173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17374 + - uid: 17415 components: - type: Transform rot: 3.141592653589793 rad @@ -113320,14 +112181,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17375 + - uid: 17416 components: - type: Transform pos: -23.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17376 + - uid: 17417 components: - type: Transform rot: 3.141592653589793 rad @@ -113335,7 +112196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17377 + - uid: 17418 components: - type: Transform rot: 3.141592653589793 rad @@ -113343,7 +112204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17378 + - uid: 17419 components: - type: Transform rot: 3.141592653589793 rad @@ -113351,7 +112212,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17379 + - uid: 17420 components: - type: Transform rot: 3.141592653589793 rad @@ -113359,7 +112220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17380 + - uid: 17421 components: - type: Transform rot: 3.141592653589793 rad @@ -113367,7 +112228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17381 + - uid: 17422 components: - type: Transform rot: 3.141592653589793 rad @@ -113375,7 +112236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17382 + - uid: 17423 components: - type: Transform rot: 3.141592653589793 rad @@ -113383,7 +112244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17383 + - uid: 17424 components: - type: Transform rot: 3.141592653589793 rad @@ -113391,7 +112252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17384 + - uid: 17425 components: - type: Transform rot: -1.5707963267948966 rad @@ -113399,7 +112260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17385 + - uid: 17426 components: - type: Transform rot: -1.5707963267948966 rad @@ -113407,7 +112268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17386 + - uid: 17427 components: - type: Transform rot: -1.5707963267948966 rad @@ -113415,7 +112276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17387 + - uid: 17428 components: - type: Transform rot: -1.5707963267948966 rad @@ -113423,7 +112284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17388 + - uid: 17429 components: - type: Transform rot: -1.5707963267948966 rad @@ -113431,7 +112292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17389 + - uid: 17430 components: - type: Transform rot: -1.5707963267948966 rad @@ -113439,7 +112300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17390 + - uid: 17431 components: - type: Transform rot: -1.5707963267948966 rad @@ -113447,7 +112308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17391 + - uid: 17432 components: - type: Transform rot: -1.5707963267948966 rad @@ -113455,7 +112316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17392 + - uid: 17433 components: - type: Transform rot: -1.5707963267948966 rad @@ -113463,7 +112324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17393 + - uid: 17434 components: - type: Transform rot: -1.5707963267948966 rad @@ -113471,7 +112332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17394 + - uid: 17435 components: - type: Transform rot: 1.5707963267948966 rad @@ -113479,7 +112340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17395 + - uid: 17436 components: - type: Transform rot: 1.5707963267948966 rad @@ -113487,91 +112348,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17396 + - uid: 17437 components: - type: Transform pos: -20.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17397 + - uid: 17438 components: - type: Transform pos: -20.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17398 + - uid: 17439 components: - type: Transform pos: -20.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17399 + - uid: 17440 components: - type: Transform pos: -20.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17400 + - uid: 17441 components: - type: Transform pos: -20.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17401 + - uid: 17442 components: - type: Transform pos: -20.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17402 + - uid: 17443 components: - type: Transform pos: -20.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17403 + - uid: 17444 components: - type: Transform pos: -18.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17404 + - uid: 17445 components: - type: Transform pos: -18.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17405 + - uid: 17446 components: - type: Transform pos: -18.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17406 + - uid: 17447 components: - type: Transform pos: -18.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17407 + - uid: 17448 components: - type: Transform pos: -18.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17408 + - uid: 17449 components: - type: Transform rot: -1.5707963267948966 rad @@ -113579,7 +112440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17409 + - uid: 17450 components: - type: Transform rot: -1.5707963267948966 rad @@ -113587,7 +112448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17410 + - uid: 17451 components: - type: Transform rot: -1.5707963267948966 rad @@ -113595,7 +112456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17411 + - uid: 17452 components: - type: Transform rot: -1.5707963267948966 rad @@ -113603,7 +112464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17412 + - uid: 17453 components: - type: Transform rot: -1.5707963267948966 rad @@ -113611,7 +112472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17413 + - uid: 17454 components: - type: Transform rot: -1.5707963267948966 rad @@ -113619,7 +112480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17414 + - uid: 17455 components: - type: Transform rot: -1.5707963267948966 rad @@ -113627,28 +112488,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17415 + - uid: 17456 components: - type: Transform pos: -25.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17416 + - uid: 17457 components: - type: Transform pos: -25.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17417 + - uid: 17458 components: - type: Transform pos: -25.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17418 + - uid: 17459 components: - type: Transform rot: 1.5707963267948966 rad @@ -113656,7 +112517,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17419 + - uid: 17460 components: - type: Transform rot: 1.5707963267948966 rad @@ -113664,7 +112525,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17420 + - uid: 17461 components: - type: Transform rot: 3.141592653589793 rad @@ -113672,42 +112533,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17421 + - uid: 17462 components: - type: Transform pos: -23.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17422 + - uid: 17463 components: - type: Transform pos: -23.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17423 + - uid: 17464 components: - type: Transform pos: -23.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17424 + - uid: 17465 components: - type: Transform pos: -23.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17425 + - uid: 17466 components: - type: Transform pos: -18.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17426 + - uid: 17467 components: - type: Transform rot: -1.5707963267948966 rad @@ -113715,7 +112576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17427 + - uid: 17468 components: - type: Transform rot: -1.5707963267948966 rad @@ -113723,7 +112584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17428 + - uid: 17469 components: - type: Transform rot: -1.5707963267948966 rad @@ -113731,7 +112592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17429 + - uid: 17470 components: - type: Transform rot: -1.5707963267948966 rad @@ -113739,7 +112600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17430 + - uid: 17471 components: - type: Transform rot: -1.5707963267948966 rad @@ -113747,7 +112608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17431 + - uid: 17472 components: - type: Transform rot: -1.5707963267948966 rad @@ -113755,7 +112616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17432 + - uid: 17473 components: - type: Transform rot: -1.5707963267948966 rad @@ -113763,7 +112624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17433 + - uid: 17474 components: - type: Transform rot: 1.5707963267948966 rad @@ -113771,7 +112632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17434 + - uid: 17475 components: - type: Transform rot: 1.5707963267948966 rad @@ -113779,7 +112640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17435 + - uid: 17476 components: - type: Transform rot: 1.5707963267948966 rad @@ -113787,7 +112648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17436 + - uid: 17477 components: - type: Transform rot: 1.5707963267948966 rad @@ -113795,7 +112656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17437 + - uid: 17478 components: - type: Transform rot: 1.5707963267948966 rad @@ -113803,7 +112664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17438 + - uid: 17479 components: - type: Transform rot: 1.5707963267948966 rad @@ -113811,7 +112672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17439 + - uid: 17480 components: - type: Transform rot: 1.5707963267948966 rad @@ -113819,7 +112680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17440 + - uid: 17481 components: - type: Transform rot: 1.5707963267948966 rad @@ -113827,7 +112688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17441 + - uid: 17482 components: - type: Transform rot: 1.5707963267948966 rad @@ -113835,7 +112696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17442 + - uid: 17483 components: - type: Transform rot: 1.5707963267948966 rad @@ -113843,7 +112704,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17443 + - uid: 17484 components: - type: Transform rot: 1.5707963267948966 rad @@ -113851,7 +112712,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17444 + - uid: 17485 components: - type: Transform rot: -1.5707963267948966 rad @@ -113859,7 +112720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17445 + - uid: 17486 components: - type: Transform rot: -1.5707963267948966 rad @@ -113867,7 +112728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17446 + - uid: 17487 components: - type: Transform rot: -1.5707963267948966 rad @@ -113875,7 +112736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17447 + - uid: 17488 components: - type: Transform rot: -1.5707963267948966 rad @@ -113883,7 +112744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17448 + - uid: 17489 components: - type: Transform rot: -1.5707963267948966 rad @@ -113891,7 +112752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17449 + - uid: 17490 components: - type: Transform rot: -1.5707963267948966 rad @@ -113899,7 +112760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17450 + - uid: 17491 components: - type: Transform rot: -1.5707963267948966 rad @@ -113907,7 +112768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17451 + - uid: 17492 components: - type: Transform rot: 3.141592653589793 rad @@ -113915,7 +112776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17452 + - uid: 17493 components: - type: Transform rot: 3.141592653589793 rad @@ -113923,7 +112784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17453 + - uid: 17494 components: - type: Transform rot: 3.141592653589793 rad @@ -113931,7 +112792,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17454 + - uid: 17495 components: - type: Transform rot: 3.141592653589793 rad @@ -113939,7 +112800,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17455 + - uid: 17496 components: - type: Transform rot: 3.141592653589793 rad @@ -113947,7 +112808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17456 + - uid: 17497 components: - type: Transform rot: 3.141592653589793 rad @@ -113955,7 +112816,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17457 + - uid: 17498 components: - type: Transform rot: 3.141592653589793 rad @@ -113963,7 +112824,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17458 + - uid: 17499 components: - type: Transform rot: 3.141592653589793 rad @@ -113971,7 +112832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17459 + - uid: 17500 components: - type: Transform rot: 3.141592653589793 rad @@ -113979,7 +112840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17460 + - uid: 17501 components: - type: Transform rot: 3.141592653589793 rad @@ -113987,7 +112848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17461 + - uid: 17502 components: - type: Transform rot: 3.141592653589793 rad @@ -113995,7 +112856,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17462 + - uid: 17503 components: - type: Transform rot: 3.141592653589793 rad @@ -114003,7 +112864,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17463 + - uid: 17504 components: - type: Transform rot: 3.141592653589793 rad @@ -114011,7 +112872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17464 + - uid: 17505 components: - type: Transform rot: 3.141592653589793 rad @@ -114019,7 +112880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17465 + - uid: 17506 components: - type: Transform rot: 3.141592653589793 rad @@ -114027,7 +112888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17466 + - uid: 17507 components: - type: Transform rot: 3.141592653589793 rad @@ -114035,7 +112896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17467 + - uid: 17508 components: - type: Transform rot: 3.141592653589793 rad @@ -114043,7 +112904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17468 + - uid: 17509 components: - type: Transform rot: 3.141592653589793 rad @@ -114051,7 +112912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17469 + - uid: 17510 components: - type: Transform rot: 3.141592653589793 rad @@ -114059,7 +112920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17470 + - uid: 17511 components: - type: Transform rot: 3.141592653589793 rad @@ -114067,7 +112928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17471 + - uid: 17512 components: - type: Transform rot: 3.141592653589793 rad @@ -114075,7 +112936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17472 + - uid: 17513 components: - type: Transform rot: 3.141592653589793 rad @@ -114083,14 +112944,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17473 + - uid: 17514 components: - type: Transform pos: 50.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17474 + - uid: 17515 components: - type: Transform rot: 3.141592653589793 rad @@ -114098,7 +112959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17475 + - uid: 17516 components: - type: Transform rot: 3.141592653589793 rad @@ -114106,7 +112967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17476 + - uid: 17517 components: - type: Transform rot: 1.5707963267948966 rad @@ -114114,7 +112975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17477 + - uid: 17518 components: - type: Transform rot: 3.141592653589793 rad @@ -114122,7 +112983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17478 + - uid: 17519 components: - type: Transform rot: 3.141592653589793 rad @@ -114130,7 +112991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17479 + - uid: 17520 components: - type: Transform rot: 3.141592653589793 rad @@ -114138,7 +112999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17480 + - uid: 17521 components: - type: Transform rot: 3.141592653589793 rad @@ -114146,7 +113007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17481 + - uid: 17522 components: - type: Transform rot: -1.5707963267948966 rad @@ -114154,7 +113015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17482 + - uid: 17523 components: - type: Transform rot: -1.5707963267948966 rad @@ -114162,7 +113023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17483 + - uid: 17524 components: - type: Transform rot: -1.5707963267948966 rad @@ -114170,7 +113031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17484 + - uid: 17525 components: - type: Transform rot: 3.141592653589793 rad @@ -114178,7 +113039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17485 + - uid: 17526 components: - type: Transform rot: 3.141592653589793 rad @@ -114186,7 +113047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17486 + - uid: 17527 components: - type: Transform rot: 3.141592653589793 rad @@ -114194,7 +113055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17487 + - uid: 17528 components: - type: Transform rot: 3.141592653589793 rad @@ -114202,7 +113063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17488 + - uid: 17529 components: - type: Transform rot: 3.141592653589793 rad @@ -114210,7 +113071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17489 + - uid: 17530 components: - type: Transform rot: 3.141592653589793 rad @@ -114218,7 +113079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17490 + - uid: 17531 components: - type: Transform rot: 3.141592653589793 rad @@ -114226,7 +113087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17491 + - uid: 17532 components: - type: Transform rot: 3.141592653589793 rad @@ -114234,7 +113095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17492 + - uid: 17533 components: - type: Transform rot: 3.141592653589793 rad @@ -114242,7 +113103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17493 + - uid: 17534 components: - type: Transform rot: -1.5707963267948966 rad @@ -114250,7 +113111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17494 + - uid: 17535 components: - type: Transform rot: -1.5707963267948966 rad @@ -114258,7 +113119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17495 + - uid: 17536 components: - type: Transform rot: -1.5707963267948966 rad @@ -114266,7 +113127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17496 + - uid: 17537 components: - type: Transform rot: -1.5707963267948966 rad @@ -114274,7 +113135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17497 + - uid: 17538 components: - type: Transform rot: -1.5707963267948966 rad @@ -114282,7 +113143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17498 + - uid: 17539 components: - type: Transform rot: -1.5707963267948966 rad @@ -114290,7 +113151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17499 + - uid: 17540 components: - type: Transform rot: -1.5707963267948966 rad @@ -114298,7 +113159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17500 + - uid: 17541 components: - type: Transform rot: -1.5707963267948966 rad @@ -114306,7 +113167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17501 + - uid: 17542 components: - type: Transform rot: -1.5707963267948966 rad @@ -114314,7 +113175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17502 + - uid: 17543 components: - type: Transform rot: -1.5707963267948966 rad @@ -114322,7 +113183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17503 + - uid: 17544 components: - type: Transform rot: -1.5707963267948966 rad @@ -114330,7 +113191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17504 + - uid: 17545 components: - type: Transform rot: -1.5707963267948966 rad @@ -114338,7 +113199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17505 + - uid: 17546 components: - type: Transform rot: -1.5707963267948966 rad @@ -114346,7 +113207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17506 + - uid: 17547 components: - type: Transform rot: -1.5707963267948966 rad @@ -114354,7 +113215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17507 + - uid: 17548 components: - type: Transform rot: -1.5707963267948966 rad @@ -114362,140 +113223,140 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17508 + - uid: 17549 components: - type: Transform pos: -18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17509 + - uid: 17550 components: - type: Transform pos: -18.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17510 + - uid: 17551 components: - type: Transform pos: -18.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17511 + - uid: 17552 components: - type: Transform pos: -18.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17512 + - uid: 17553 components: - type: Transform pos: -18.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17513 + - uid: 17554 components: - type: Transform pos: -18.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17514 + - uid: 17555 components: - type: Transform pos: -18.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17515 + - uid: 17556 components: - type: Transform pos: -18.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17516 + - uid: 17557 components: - type: Transform pos: -18.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17517 + - uid: 17558 components: - type: Transform pos: -18.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17518 + - uid: 17559 components: - type: Transform pos: -20.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17519 + - uid: 17560 components: - type: Transform pos: -20.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17520 + - uid: 17561 components: - type: Transform pos: -20.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17521 + - uid: 17562 components: - type: Transform pos: -20.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17522 + - uid: 17563 components: - type: Transform pos: -20.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17523 + - uid: 17564 components: - type: Transform pos: -20.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17524 + - uid: 17565 components: - type: Transform pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17525 + - uid: 17566 components: - type: Transform pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17526 + - uid: 17567 components: - type: Transform pos: -18.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17527 + - uid: 17568 components: - type: Transform rot: 3.141592653589793 rad @@ -114503,7 +113364,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17528 + - uid: 17569 components: - type: Transform rot: 3.141592653589793 rad @@ -114511,7 +113372,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17529 + - uid: 17570 components: - type: Transform rot: 3.141592653589793 rad @@ -114519,7 +113380,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17530 + - uid: 17571 components: - type: Transform rot: 3.141592653589793 rad @@ -114527,7 +113388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17531 + - uid: 17572 components: - type: Transform rot: 1.5707963267948966 rad @@ -114535,7 +113396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17532 + - uid: 17573 components: - type: Transform rot: 3.141592653589793 rad @@ -114543,7 +113404,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17533 + - uid: 17574 components: - type: Transform rot: 3.141592653589793 rad @@ -114551,7 +113412,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17534 + - uid: 17575 components: - type: Transform rot: 3.141592653589793 rad @@ -114559,7 +113420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17535 + - uid: 17576 components: - type: Transform rot: 3.141592653589793 rad @@ -114567,7 +113428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17536 + - uid: 17577 components: - type: Transform rot: 1.5707963267948966 rad @@ -114575,7 +113436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17537 + - uid: 17578 components: - type: Transform rot: 1.5707963267948966 rad @@ -114583,35 +113444,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17538 + - uid: 17579 components: - type: Transform pos: 38.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17539 + - uid: 17580 components: - type: Transform pos: 38.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17540 + - uid: 17581 components: - type: Transform pos: 40.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17541 + - uid: 17582 components: - type: Transform pos: 40.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17542 + - uid: 17583 components: - type: Transform rot: 1.5707963267948966 rad @@ -114619,7 +113480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17543 + - uid: 17584 components: - type: Transform rot: 1.5707963267948966 rad @@ -114627,7 +113488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17544 + - uid: 17585 components: - type: Transform rot: 1.5707963267948966 rad @@ -114635,7 +113496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17545 + - uid: 17586 components: - type: Transform rot: 3.141592653589793 rad @@ -114643,7 +113504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17546 + - uid: 17587 components: - type: Transform rot: 3.141592653589793 rad @@ -114651,7 +113512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17547 + - uid: 17588 components: - type: Transform rot: 1.5707963267948966 rad @@ -114659,7 +113520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17548 + - uid: 17589 components: - type: Transform rot: 3.141592653589793 rad @@ -114667,7 +113528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17549 + - uid: 17590 components: - type: Transform rot: 1.5707963267948966 rad @@ -114675,7 +113536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17550 + - uid: 17591 components: - type: Transform rot: 3.141592653589793 rad @@ -114683,7 +113544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17551 + - uid: 17592 components: - type: Transform rot: 3.141592653589793 rad @@ -114691,7 +113552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17552 + - uid: 17593 components: - type: Transform rot: 3.141592653589793 rad @@ -114699,7 +113560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17553 + - uid: 17594 components: - type: Transform rot: 3.141592653589793 rad @@ -114707,55 +113568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17560 + - uid: 17595 components: - type: Transform rot: 3.141592653589793 rad @@ -114763,14 +113576,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17561 + - uid: 17596 components: - type: Transform pos: -31.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17562 + - uid: 17597 components: - type: Transform rot: 1.5707963267948966 rad @@ -114778,7 +113591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17563 + - uid: 17598 components: - type: Transform rot: 1.5707963267948966 rad @@ -114786,7 +113599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17564 + - uid: 17599 components: - type: Transform rot: -1.5707963267948966 rad @@ -114794,7 +113607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17565 + - uid: 17600 components: - type: Transform rot: -1.5707963267948966 rad @@ -114802,28 +113615,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17566 + - uid: 17601 components: - type: Transform pos: -31.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17567 + - uid: 17602 components: - type: Transform pos: -31.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17568 + - uid: 17603 components: - type: Transform pos: -31.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17569 + - uid: 17604 components: - type: Transform rot: 3.141592653589793 rad @@ -114831,7 +113644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17570 + - uid: 17605 components: - type: Transform rot: 3.141592653589793 rad @@ -114839,7 +113652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17571 + - uid: 17606 components: - type: Transform rot: 3.141592653589793 rad @@ -114847,7 +113660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17572 + - uid: 17607 components: - type: Transform rot: 3.141592653589793 rad @@ -114855,7 +113668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17573 + - uid: 17608 components: - type: Transform rot: 3.141592653589793 rad @@ -114863,7 +113676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17574 + - uid: 17609 components: - type: Transform rot: 1.5707963267948966 rad @@ -114871,7 +113684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17575 + - uid: 17610 components: - type: Transform rot: 1.5707963267948966 rad @@ -114879,7 +113692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17576 + - uid: 17611 components: - type: Transform rot: 1.5707963267948966 rad @@ -114887,7 +113700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17577 + - uid: 17612 components: - type: Transform rot: 1.5707963267948966 rad @@ -114895,7 +113708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17578 + - uid: 17613 components: - type: Transform rot: 1.5707963267948966 rad @@ -114903,7 +113716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17579 + - uid: 17614 components: - type: Transform rot: 1.5707963267948966 rad @@ -114911,112 +113724,112 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17580 + - uid: 17615 components: - type: Transform pos: -32.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17581 + - uid: 17616 components: - type: Transform pos: -32.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17582 + - uid: 17617 components: - type: Transform pos: -32.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17583 + - uid: 17618 components: - type: Transform pos: -31.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17584 + - uid: 17619 components: - type: Transform pos: -31.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17585 + - uid: 17620 components: - type: Transform pos: -31.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17586 + - uid: 17621 components: - type: Transform pos: -32.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17587 + - uid: 17622 components: - type: Transform pos: -32.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17588 + - uid: 17623 components: - type: Transform pos: -32.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17589 + - uid: 17624 components: - type: Transform pos: -32.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17590 + - uid: 17625 components: - type: Transform pos: -31.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17591 + - uid: 17626 components: - type: Transform pos: -31.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17592 + - uid: 17627 components: - type: Transform pos: -31.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17593 + - uid: 17628 components: - type: Transform pos: -31.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17594 + - uid: 17629 components: - type: Transform pos: -31.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17595 + - uid: 17630 components: - type: Transform rot: 3.141592653589793 rad @@ -115024,7 +113837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17596 + - uid: 17631 components: - type: Transform rot: 3.141592653589793 rad @@ -115032,7 +113845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17597 + - uid: 17632 components: - type: Transform rot: 3.141592653589793 rad @@ -115040,7 +113853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17598 + - uid: 17633 components: - type: Transform rot: 3.141592653589793 rad @@ -115048,7 +113861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17599 + - uid: 17634 components: - type: Transform rot: 3.141592653589793 rad @@ -115056,7 +113869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17600 + - uid: 17635 components: - type: Transform rot: 3.141592653589793 rad @@ -115064,7 +113877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17601 + - uid: 17636 components: - type: Transform rot: 3.141592653589793 rad @@ -115072,7 +113885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17602 + - uid: 17637 components: - type: Transform rot: 3.141592653589793 rad @@ -115080,7 +113893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17603 + - uid: 17638 components: - type: Transform rot: 1.5707963267948966 rad @@ -115088,7 +113901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17604 + - uid: 17639 components: - type: Transform rot: 1.5707963267948966 rad @@ -115096,7 +113909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17605 + - uid: 17640 components: - type: Transform rot: 1.5707963267948966 rad @@ -115104,7 +113917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17606 + - uid: 17641 components: - type: Transform rot: -1.5707963267948966 rad @@ -115112,7 +113925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17607 + - uid: 17642 components: - type: Transform rot: -1.5707963267948966 rad @@ -115120,7 +113933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17608 + - uid: 17643 components: - type: Transform rot: -1.5707963267948966 rad @@ -115128,7 +113941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17609 + - uid: 17644 components: - type: Transform rot: -1.5707963267948966 rad @@ -115136,7 +113949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17610 + - uid: 17645 components: - type: Transform rot: -1.5707963267948966 rad @@ -115144,7 +113957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17611 + - uid: 17646 components: - type: Transform rot: -1.5707963267948966 rad @@ -115152,7 +113965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17612 + - uid: 17647 components: - type: Transform rot: -1.5707963267948966 rad @@ -115160,7 +113973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17613 + - uid: 17648 components: - type: Transform rot: -1.5707963267948966 rad @@ -115168,7 +113981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17614 + - uid: 17649 components: - type: Transform rot: -1.5707963267948966 rad @@ -115176,7 +113989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17615 + - uid: 17650 components: - type: Transform rot: -1.5707963267948966 rad @@ -115184,70 +113997,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17616 + - uid: 17651 components: - type: Transform pos: -42.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17617 + - uid: 17652 components: - type: Transform pos: -42.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17618 + - uid: 17653 components: - type: Transform pos: -42.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17619 + - uid: 17654 components: - type: Transform pos: -42.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17620 + - uid: 17655 components: - type: Transform pos: -41.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17621 + - uid: 17656 components: - type: Transform pos: -41.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17622 + - uid: 17657 components: - type: Transform pos: -41.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17623 + - uid: 17658 components: - type: Transform pos: -41.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17624 + - uid: 17659 components: - type: Transform pos: -20.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17625 + - uid: 17660 components: - type: Transform rot: -1.5707963267948966 rad @@ -115255,7 +114068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17626 + - uid: 17661 components: - type: Transform rot: -1.5707963267948966 rad @@ -115263,7 +114076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17627 + - uid: 17662 components: - type: Transform rot: -1.5707963267948966 rad @@ -115271,7 +114084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17628 + - uid: 17663 components: - type: Transform rot: -1.5707963267948966 rad @@ -115279,7 +114092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17629 + - uid: 17664 components: - type: Transform rot: -1.5707963267948966 rad @@ -115287,7 +114100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17630 + - uid: 17665 components: - type: Transform rot: -1.5707963267948966 rad @@ -115295,7 +114108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17631 + - uid: 17666 components: - type: Transform rot: -1.5707963267948966 rad @@ -115303,7 +114116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17632 + - uid: 17667 components: - type: Transform rot: -1.5707963267948966 rad @@ -115311,7 +114124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17633 + - uid: 17668 components: - type: Transform rot: -1.5707963267948966 rad @@ -115319,7 +114132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17634 + - uid: 17669 components: - type: Transform rot: -1.5707963267948966 rad @@ -115327,7 +114140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17635 + - uid: 17670 components: - type: Transform rot: 3.141592653589793 rad @@ -115335,7 +114148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17636 + - uid: 17671 components: - type: Transform rot: 3.141592653589793 rad @@ -115343,7 +114156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17637 + - uid: 17672 components: - type: Transform rot: 3.141592653589793 rad @@ -115351,7 +114164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17638 + - uid: 17673 components: - type: Transform rot: 3.141592653589793 rad @@ -115359,7 +114172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17639 + - uid: 17674 components: - type: Transform rot: 3.141592653589793 rad @@ -115367,7 +114180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17640 + - uid: 17675 components: - type: Transform rot: 3.141592653589793 rad @@ -115375,7 +114188,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17641 + - uid: 17676 components: - type: Transform rot: 3.141592653589793 rad @@ -115383,7 +114196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17642 + - uid: 17677 components: - type: Transform rot: 3.141592653589793 rad @@ -115391,7 +114204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17643 + - uid: 17678 components: - type: Transform rot: 3.141592653589793 rad @@ -115399,7 +114212,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17644 + - uid: 17679 components: - type: Transform rot: 3.141592653589793 rad @@ -115407,7 +114220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17645 + - uid: 17680 components: - type: Transform rot: 3.141592653589793 rad @@ -115415,7 +114228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17646 + - uid: 17681 components: - type: Transform rot: 3.141592653589793 rad @@ -115423,7 +114236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17647 + - uid: 17682 components: - type: Transform rot: 3.141592653589793 rad @@ -115431,7 +114244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17648 + - uid: 17683 components: - type: Transform rot: 3.141592653589793 rad @@ -115439,7 +114252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17649 + - uid: 17684 components: - type: Transform rot: 3.141592653589793 rad @@ -115447,7 +114260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17650 + - uid: 17685 components: - type: Transform rot: 3.141592653589793 rad @@ -115455,7 +114268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17651 + - uid: 17686 components: - type: Transform rot: 3.141592653589793 rad @@ -115463,7 +114276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17652 + - uid: 17687 components: - type: Transform rot: 3.141592653589793 rad @@ -115471,7 +114284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17653 + - uid: 17688 components: - type: Transform rot: -1.5707963267948966 rad @@ -115479,7 +114292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17654 + - uid: 17689 components: - type: Transform rot: -1.5707963267948966 rad @@ -115487,7 +114300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17655 + - uid: 17690 components: - type: Transform rot: -1.5707963267948966 rad @@ -115495,7 +114308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17656 + - uid: 17691 components: - type: Transform rot: 3.141592653589793 rad @@ -115503,7 +114316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17657 + - uid: 17692 components: - type: Transform rot: 3.141592653589793 rad @@ -115511,7 +114324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17658 + - uid: 17693 components: - type: Transform rot: 1.5707963267948966 rad @@ -115519,7 +114332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17659 + - uid: 17694 components: - type: Transform rot: 1.5707963267948966 rad @@ -115527,7 +114340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17660 + - uid: 17695 components: - type: Transform rot: 1.5707963267948966 rad @@ -115535,7 +114348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17661 + - uid: 17696 components: - type: Transform rot: 1.5707963267948966 rad @@ -115543,7 +114356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17662 + - uid: 17697 components: - type: Transform rot: 3.141592653589793 rad @@ -115551,7 +114364,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17663 + - uid: 17698 components: - type: Transform rot: 3.141592653589793 rad @@ -115559,7 +114372,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17664 + - uid: 17699 components: - type: Transform rot: 3.141592653589793 rad @@ -115567,7 +114380,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17665 + - uid: 17700 components: - type: Transform rot: 1.5707963267948966 rad @@ -115575,7 +114388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17666 + - uid: 17701 components: - type: Transform rot: 1.5707963267948966 rad @@ -115583,7 +114396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17667 + - uid: 17702 components: - type: Transform rot: 1.5707963267948966 rad @@ -115591,7 +114404,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17668 + - uid: 17703 components: - type: Transform rot: 1.5707963267948966 rad @@ -115599,7 +114412,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17669 + - uid: 17704 components: - type: Transform rot: 1.5707963267948966 rad @@ -115607,7 +114420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17670 + - uid: 17705 components: - type: Transform rot: 1.5707963267948966 rad @@ -115615,7 +114428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17671 + - uid: 17706 components: - type: Transform rot: 1.5707963267948966 rad @@ -115623,7 +114436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17672 + - uid: 17707 components: - type: Transform rot: 1.5707963267948966 rad @@ -115631,7 +114444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17673 + - uid: 17708 components: - type: Transform rot: 1.5707963267948966 rad @@ -115639,7 +114452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17674 + - uid: 17709 components: - type: Transform rot: 1.5707963267948966 rad @@ -115647,7 +114460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17675 + - uid: 17710 components: - type: Transform rot: 1.5707963267948966 rad @@ -115655,7 +114468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17676 + - uid: 17711 components: - type: Transform rot: 1.5707963267948966 rad @@ -115663,7 +114476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17677 + - uid: 17712 components: - type: Transform rot: 1.5707963267948966 rad @@ -115671,7 +114484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17678 + - uid: 17713 components: - type: Transform rot: 1.5707963267948966 rad @@ -115679,119 +114492,119 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17679 + - uid: 17714 components: - type: Transform pos: -53.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17680 + - uid: 17715 components: - type: Transform pos: -53.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17681 + - uid: 17716 components: - type: Transform pos: -53.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17682 + - uid: 17717 components: - type: Transform pos: -53.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17683 + - uid: 17718 components: - type: Transform pos: -53.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17684 + - uid: 17719 components: - type: Transform pos: -53.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17685 + - uid: 17720 components: - type: Transform pos: -53.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17686 + - uid: 17721 components: - type: Transform pos: -52.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17687 + - uid: 17722 components: - type: Transform pos: -52.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17688 + - uid: 17723 components: - type: Transform pos: -52.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17689 + - uid: 17724 components: - type: Transform pos: -52.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17690 + - uid: 17725 components: - type: Transform pos: -52.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17691 + - uid: 17726 components: - type: Transform pos: -52.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17692 + - uid: 17727 components: - type: Transform pos: -52.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17693 + - uid: 17728 components: - type: Transform pos: -52.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17694 + - uid: 17729 components: - type: Transform pos: -52.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17695 + - uid: 17730 components: - type: Transform rot: 3.141592653589793 rad @@ -115799,7 +114612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17696 + - uid: 17731 components: - type: Transform rot: 3.141592653589793 rad @@ -115807,7 +114620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17697 + - uid: 17732 components: - type: Transform rot: 3.141592653589793 rad @@ -115815,7 +114628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17698 + - uid: 17733 components: - type: Transform rot: 3.141592653589793 rad @@ -115823,7 +114636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17699 + - uid: 17734 components: - type: Transform rot: 3.141592653589793 rad @@ -115831,7 +114644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17700 + - uid: 17735 components: - type: Transform rot: 1.5707963267948966 rad @@ -115839,7 +114652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17701 + - uid: 17736 components: - type: Transform rot: 1.5707963267948966 rad @@ -115847,56 +114660,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17702 + - uid: 17737 components: - type: Transform pos: -50.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17703 + - uid: 17738 components: - type: Transform pos: -50.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17704 + - uid: 17739 components: - type: Transform pos: -50.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17705 + - uid: 17740 components: - type: Transform pos: -51.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17706 + - uid: 17741 components: - type: Transform pos: -51.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17707 + - uid: 17742 components: - type: Transform pos: -51.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17708 + - uid: 17743 components: - type: Transform pos: -47.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17709 + - uid: 17744 components: - type: Transform rot: 1.5707963267948966 rad @@ -115904,7 +114717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17710 + - uid: 17745 components: - type: Transform rot: 1.5707963267948966 rad @@ -115912,7 +114725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17711 + - uid: 17746 components: - type: Transform rot: 3.141592653589793 rad @@ -115920,7 +114733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17712 + - uid: 17747 components: - type: Transform rot: -1.5707963267948966 rad @@ -115928,7 +114741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17713 + - uid: 17748 components: - type: Transform rot: -1.5707963267948966 rad @@ -115936,77 +114749,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17714 + - uid: 17749 components: - type: Transform pos: -53.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17715 + - uid: 17750 components: - type: Transform pos: -53.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17716 + - uid: 17751 components: - type: Transform pos: -53.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17717 + - uid: 17752 components: - type: Transform pos: -53.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17718 + - uid: 17753 components: - type: Transform pos: -53.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17719 + - uid: 17754 components: - type: Transform pos: -54.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17720 + - uid: 17755 components: - type: Transform pos: -54.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17721 + - uid: 17756 components: - type: Transform pos: -54.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17722 + - uid: 17757 components: - type: Transform pos: -54.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17723 + - uid: 17758 components: - type: Transform pos: -54.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17724 + - uid: 17759 components: - type: Transform rot: -1.5707963267948966 rad @@ -116014,7 +114827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17725 + - uid: 17760 components: - type: Transform rot: 1.5707963267948966 rad @@ -116022,7 +114835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17726 + - uid: 17761 components: - type: Transform rot: 1.5707963267948966 rad @@ -116030,7 +114843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17727 + - uid: 17762 components: - type: Transform rot: 1.5707963267948966 rad @@ -116038,7 +114851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17728 + - uid: 17763 components: - type: Transform rot: 1.5707963267948966 rad @@ -116046,7 +114859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17729 + - uid: 17764 components: - type: Transform rot: 1.5707963267948966 rad @@ -116054,7 +114867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17730 + - uid: 17765 components: - type: Transform rot: 1.5707963267948966 rad @@ -116062,7 +114875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17731 + - uid: 17766 components: - type: Transform rot: 1.5707963267948966 rad @@ -116070,7 +114883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17732 + - uid: 17767 components: - type: Transform rot: 1.5707963267948966 rad @@ -116078,7 +114891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17733 + - uid: 17768 components: - type: Transform rot: -1.5707963267948966 rad @@ -116086,7 +114899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17734 + - uid: 17769 components: - type: Transform rot: -1.5707963267948966 rad @@ -116094,7 +114907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17735 + - uid: 17770 components: - type: Transform rot: -1.5707963267948966 rad @@ -116102,7 +114915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17736 + - uid: 17771 components: - type: Transform rot: -1.5707963267948966 rad @@ -116110,7 +114923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17737 + - uid: 17772 components: - type: Transform rot: -1.5707963267948966 rad @@ -116118,7 +114931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17738 + - uid: 17773 components: - type: Transform rot: -1.5707963267948966 rad @@ -116126,7 +114939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17739 + - uid: 17774 components: - type: Transform rot: -1.5707963267948966 rad @@ -116134,49 +114947,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17740 + - uid: 17775 components: - type: Transform pos: -68.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17741 + - uid: 17776 components: - type: Transform pos: -68.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17742 + - uid: 17777 components: - type: Transform pos: -68.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17743 + - uid: 17778 components: - type: Transform pos: -68.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17744 + - uid: 17779 components: - type: Transform pos: -68.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17745 + - uid: 17780 components: - type: Transform pos: -68.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17746 + - uid: 17781 components: - type: Transform rot: -1.5707963267948966 rad @@ -116184,7 +114997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17747 + - uid: 17782 components: - type: Transform rot: -1.5707963267948966 rad @@ -116192,7 +115005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17748 + - uid: 17783 components: - type: Transform rot: -1.5707963267948966 rad @@ -116200,7 +115013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17749 + - uid: 17784 components: - type: Transform rot: -1.5707963267948966 rad @@ -116208,14 +115021,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17750 + - uid: 17785 components: - type: Transform pos: -64.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17751 + - uid: 17786 components: - type: Transform rot: 3.141592653589793 rad @@ -116223,7 +115036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17752 + - uid: 17787 components: - type: Transform rot: 3.141592653589793 rad @@ -116231,7 +115044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17753 + - uid: 17788 components: - type: Transform rot: 3.141592653589793 rad @@ -116239,486 +115052,486 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17754 + - uid: 17789 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-42.5 parent: 2 - - uid: 17755 + - uid: 17790 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-44.5 parent: 2 - - uid: 17756 + - uid: 17791 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-46.5 parent: 2 - - uid: 17757 + - uid: 17792 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-48.5 parent: 2 - - uid: 17758 + - uid: 17793 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-50.5 parent: 2 - - uid: 17759 + - uid: 17794 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-52.5 parent: 2 - - uid: 17760 + - uid: 17795 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-54.5 parent: 2 - - uid: 17761 + - uid: 17796 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-55.5 parent: 2 - - uid: 17762 + - uid: 17797 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-55.5 parent: 2 - - uid: 17763 + - uid: 17798 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 - - uid: 17764 + - uid: 17799 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-53.5 parent: 2 - - uid: 17765 + - uid: 17800 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-53.5 parent: 2 - - uid: 17766 + - uid: 17801 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-53.5 parent: 2 - - uid: 17767 + - uid: 17802 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-51.5 parent: 2 - - uid: 17768 + - uid: 17803 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 2 - - uid: 17769 + - uid: 17804 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-51.5 parent: 2 - - uid: 17770 + - uid: 17805 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-49.5 parent: 2 - - uid: 17771 + - uid: 17806 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-49.5 parent: 2 - - uid: 17772 + - uid: 17807 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-49.5 parent: 2 - - uid: 17773 + - uid: 17808 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-47.5 parent: 2 - - uid: 17774 + - uid: 17809 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-47.5 parent: 2 - - uid: 17775 + - uid: 17810 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-47.5 parent: 2 - - uid: 17776 + - uid: 17811 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-45.5 parent: 2 - - uid: 17777 + - uid: 17812 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-45.5 parent: 2 - - uid: 17778 + - uid: 17813 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-45.5 parent: 2 - - uid: 17779 + - uid: 17814 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-43.5 parent: 2 - - uid: 17780 + - uid: 17815 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-43.5 parent: 2 - - uid: 17781 + - uid: 17816 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-43.5 parent: 2 - - uid: 17782 + - uid: 17817 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-52.5 parent: 2 - - uid: 17783 + - uid: 17818 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-52.5 parent: 2 - - uid: 17784 + - uid: 17819 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 - - uid: 17785 + - uid: 17820 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-54.5 parent: 2 - - uid: 17786 + - uid: 17821 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 - - uid: 17787 + - uid: 17822 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-50.5 parent: 2 - - uid: 17788 + - uid: 17823 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-48.5 parent: 2 - - uid: 17789 + - uid: 17824 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-48.5 parent: 2 - - uid: 17790 + - uid: 17825 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-46.5 parent: 2 - - uid: 17791 + - uid: 17826 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-46.5 parent: 2 - - uid: 17792 + - uid: 17827 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-44.5 parent: 2 - - uid: 17793 + - uid: 17828 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-44.5 parent: 2 - - uid: 17794 + - uid: 17829 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-42.5 parent: 2 - - uid: 17795 + - uid: 17830 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-42.5 parent: 2 - - uid: 17796 + - uid: 17831 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-55.5 parent: 2 - - uid: 17797 + - uid: 17832 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-55.5 parent: 2 - - uid: 17798 + - uid: 17833 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-53.5 parent: 2 - - uid: 17799 + - uid: 17834 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-53.5 parent: 2 - - uid: 17800 + - uid: 17835 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-53.5 parent: 2 - - uid: 17801 + - uid: 17836 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-51.5 parent: 2 - - uid: 17802 + - uid: 17837 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-51.5 parent: 2 - - uid: 17803 + - uid: 17838 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-51.5 parent: 2 - - uid: 17804 + - uid: 17839 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-49.5 parent: 2 - - uid: 17805 + - uid: 17840 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-49.5 parent: 2 - - uid: 17806 + - uid: 17841 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-49.5 parent: 2 - - uid: 17807 + - uid: 17842 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-47.5 parent: 2 - - uid: 17808 + - uid: 17843 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-47.5 parent: 2 - - uid: 17809 + - uid: 17844 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-47.5 parent: 2 - - uid: 17810 + - uid: 17845 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-45.5 parent: 2 - - uid: 17811 + - uid: 17846 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-45.5 parent: 2 - - uid: 17812 + - uid: 17847 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-45.5 parent: 2 - - uid: 17813 + - uid: 17848 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-43.5 parent: 2 - - uid: 17814 + - uid: 17849 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-43.5 parent: 2 - - uid: 17815 + - uid: 17850 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-43.5 parent: 2 - - uid: 17816 + - uid: 17851 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-54.5 parent: 2 - - uid: 17817 + - uid: 17852 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-54.5 parent: 2 - - uid: 17818 + - uid: 17853 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-53.5 parent: 2 - - uid: 17819 + - uid: 17854 components: - type: Transform pos: -42.5,-50.5 parent: 2 - - uid: 17820 + - uid: 17855 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 17821 + - uid: 17856 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 17822 + - uid: 17857 components: - type: Transform pos: -42.5,-44.5 parent: 2 - - uid: 17823 + - uid: 17858 components: - type: Transform pos: -42.5,-42.5 parent: 2 - - uid: 17824 + - uid: 17859 components: - type: Transform pos: -44.5,-43.5 parent: 2 - - uid: 17825 + - uid: 17860 components: - type: Transform pos: -44.5,-45.5 parent: 2 - - uid: 17826 + - uid: 17861 components: - type: Transform pos: -44.5,-47.5 parent: 2 - - uid: 17827 + - uid: 17862 components: - type: Transform pos: -44.5,-49.5 parent: 2 - - uid: 17828 + - uid: 17863 components: - type: Transform pos: -44.5,-51.5 parent: 2 - - uid: 17829 + - uid: 17864 components: - type: Transform pos: -44.5,-53.5 parent: 2 - - uid: 17830 + - uid: 17865 components: - type: Transform pos: -44.5,-55.5 parent: 2 - - uid: 17831 + - uid: 17866 components: - type: Transform pos: -44.5,-56.5 parent: 2 - - uid: 17832 + - uid: 17867 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-57.5 parent: 2 - - uid: 17833 + - uid: 17868 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-57.5 parent: 2 - - uid: 17834 + - uid: 17869 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-57.5 parent: 2 - - uid: 17835 + - uid: 17870 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-57.5 parent: 2 - - uid: 17836 + - uid: 17871 components: - type: Transform rot: 1.5707963267948966 rad @@ -116726,7 +115539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17837 + - uid: 17872 components: - type: Transform rot: 1.5707963267948966 rad @@ -116734,37 +115547,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17838 + - uid: 17873 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 - - uid: 17839 + - uid: 17874 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 - - uid: 17840 + - uid: 17875 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 - - uid: 17841 + - uid: 17876 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 - - uid: 17842 + - uid: 17877 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 - - uid: 17843 + - uid: 17878 components: - type: Transform rot: 3.141592653589793 rad @@ -116772,7 +115585,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17844 + - uid: 17879 components: - type: Transform rot: 3.141592653589793 rad @@ -116780,7 +115593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17845 + - uid: 17880 components: - type: Transform rot: 1.5707963267948966 rad @@ -116788,7 +115601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17846 + - uid: 17881 components: - type: Transform rot: -1.5707963267948966 rad @@ -116796,7 +115609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17847 + - uid: 17882 components: - type: Transform rot: 1.5707963267948966 rad @@ -116804,7 +115617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17848 + - uid: 17883 components: - type: Transform rot: 3.141592653589793 rad @@ -116812,7 +115625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17849 + - uid: 17884 components: - type: Transform rot: 3.141592653589793 rad @@ -116820,7 +115633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17850 + - uid: 17885 components: - type: Transform rot: 1.5707963267948966 rad @@ -116828,35 +115641,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17851 + - uid: 17886 components: - type: Transform pos: -31.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17852 + - uid: 17887 components: - type: Transform pos: -32.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17853 + - uid: 17888 components: - type: Transform pos: -32.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17854 + - uid: 17889 components: - type: Transform pos: -31.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17855 + - uid: 17890 components: - type: Transform rot: 3.141592653589793 rad @@ -116864,7 +115677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17856 + - uid: 17891 components: - type: Transform rot: 3.141592653589793 rad @@ -116872,7 +115685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17857 + - uid: 17892 components: - type: Transform rot: 1.5707963267948966 rad @@ -116880,7 +115693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17858 + - uid: 17893 components: - type: Transform rot: 1.5707963267948966 rad @@ -116888,7 +115701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17859 + - uid: 17894 components: - type: Transform rot: 1.5707963267948966 rad @@ -116896,7 +115709,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17860 + - uid: 17895 components: - type: Transform rot: 1.5707963267948966 rad @@ -116904,7 +115717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17861 + - uid: 17896 components: - type: Transform rot: 1.5707963267948966 rad @@ -116912,7 +115725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17862 + - uid: 17897 components: - type: Transform rot: 1.5707963267948966 rad @@ -116920,7 +115733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17863 + - uid: 17898 components: - type: Transform rot: 1.5707963267948966 rad @@ -116928,7 +115741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17864 + - uid: 17899 components: - type: Transform rot: 1.5707963267948966 rad @@ -116936,7 +115749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17865 + - uid: 17900 components: - type: Transform rot: 1.5707963267948966 rad @@ -116944,7 +115757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17866 + - uid: 17901 components: - type: Transform rot: 1.5707963267948966 rad @@ -116952,7 +115765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17867 + - uid: 17902 components: - type: Transform rot: 1.5707963267948966 rad @@ -116960,7 +115773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17868 + - uid: 17903 components: - type: Transform rot: 1.5707963267948966 rad @@ -116968,7 +115781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17869 + - uid: 17904 components: - type: Transform rot: 1.5707963267948966 rad @@ -116976,7 +115789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17870 + - uid: 17905 components: - type: Transform rot: 1.5707963267948966 rad @@ -116984,7 +115797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17871 + - uid: 17906 components: - type: Transform rot: 1.5707963267948966 rad @@ -116992,7 +115805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17872 + - uid: 17907 components: - type: Transform rot: 1.5707963267948966 rad @@ -117000,7 +115813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17873 + - uid: 17908 components: - type: Transform rot: 1.5707963267948966 rad @@ -117008,70 +115821,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17874 + - uid: 17909 components: - type: Transform pos: -32.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17875 + - uid: 17910 components: - type: Transform pos: -32.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17876 + - uid: 17911 components: - type: Transform pos: -32.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17877 + - uid: 17912 components: - type: Transform pos: -31.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17878 + - uid: 17913 components: - type: Transform pos: -31.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17879 + - uid: 17914 components: - type: Transform pos: -31.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17880 + - uid: 17915 components: - type: Transform pos: -31.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17881 + - uid: 17916 components: - type: Transform pos: -31.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17882 + - uid: 17917 components: - type: Transform pos: -32.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17883 + - uid: 17918 components: - type: Transform rot: -1.5707963267948966 rad @@ -117079,7 +115892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17884 + - uid: 17919 components: - type: Transform rot: -1.5707963267948966 rad @@ -117087,7 +115900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17885 + - uid: 17920 components: - type: Transform rot: -1.5707963267948966 rad @@ -117095,7 +115908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17886 + - uid: 17921 components: - type: Transform rot: -1.5707963267948966 rad @@ -117103,7 +115916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17887 + - uid: 17922 components: - type: Transform rot: -1.5707963267948966 rad @@ -117111,7 +115924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17888 + - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad @@ -117119,21 +115932,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17889 + - uid: 17924 components: - type: Transform pos: -37.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17890 + - uid: 17925 components: - type: Transform pos: -37.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17891 + - uid: 17926 components: - type: Transform rot: 1.5707963267948966 rad @@ -117141,7 +115954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17892 + - uid: 17927 components: - type: Transform rot: 3.141592653589793 rad @@ -117149,7 +115962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17893 + - uid: 17928 components: - type: Transform rot: 3.141592653589793 rad @@ -117157,7 +115970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17894 + - uid: 17929 components: - type: Transform rot: 3.141592653589793 rad @@ -117165,7 +115978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17895 + - uid: 17930 components: - type: Transform rot: 3.141592653589793 rad @@ -117173,7 +115986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17896 + - uid: 17931 components: - type: Transform rot: 3.141592653589793 rad @@ -117181,7 +115994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17897 + - uid: 17932 components: - type: Transform rot: 3.141592653589793 rad @@ -117189,7 +116002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17898 + - uid: 17933 components: - type: Transform rot: 3.141592653589793 rad @@ -117197,7 +116010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17899 + - uid: 17934 components: - type: Transform rot: 3.141592653589793 rad @@ -117205,7 +116018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17900 + - uid: 17935 components: - type: Transform rot: 3.141592653589793 rad @@ -117213,7 +116026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17901 + - uid: 17936 components: - type: Transform rot: 3.141592653589793 rad @@ -117221,7 +116034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17902 + - uid: 17937 components: - type: Transform rot: 3.141592653589793 rad @@ -117229,7 +116042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17903 + - uid: 17938 components: - type: Transform rot: 3.141592653589793 rad @@ -117237,7 +116050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17904 + - uid: 17939 components: - type: Transform rot: 3.141592653589793 rad @@ -117245,7 +116058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17905 + - uid: 17940 components: - type: Transform rot: 3.141592653589793 rad @@ -117253,7 +116066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17906 + - uid: 17941 components: - type: Transform rot: 3.141592653589793 rad @@ -117261,7 +116074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17907 + - uid: 17942 components: - type: Transform rot: 3.141592653589793 rad @@ -117269,7 +116082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17908 + - uid: 17943 components: - type: Transform rot: 3.141592653589793 rad @@ -117277,7 +116090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17909 + - uid: 17944 components: - type: Transform rot: 3.141592653589793 rad @@ -117285,7 +116098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17910 + - uid: 17945 components: - type: Transform rot: 3.141592653589793 rad @@ -117293,7 +116106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17911 + - uid: 17946 components: - type: Transform rot: 3.141592653589793 rad @@ -117301,7 +116114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17912 + - uid: 17947 components: - type: Transform rot: 3.141592653589793 rad @@ -117309,7 +116122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17913 + - uid: 17948 components: - type: Transform rot: 3.141592653589793 rad @@ -117317,7 +116130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17914 + - uid: 17949 components: - type: Transform rot: -1.5707963267948966 rad @@ -117325,14 +116138,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17915 + - uid: 17950 components: - type: Transform pos: -34.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17916 + - uid: 17951 components: - type: Transform rot: -1.5707963267948966 rad @@ -117340,7 +116153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17917 + - uid: 17952 components: - type: Transform rot: -1.5707963267948966 rad @@ -117348,7 +116161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17918 + - uid: 17953 components: - type: Transform rot: -1.5707963267948966 rad @@ -117356,63 +116169,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17919 + - uid: 17954 components: - type: Transform pos: -38.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17920 + - uid: 17955 components: - type: Transform pos: -38.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 17921 + - uid: 17956 components: - type: Transform pos: -38.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17922 + - uid: 17957 components: - type: Transform pos: -38.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17923 + - uid: 17958 components: - type: Transform pos: -38.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17924 + - uid: 17959 components: - type: Transform pos: -38.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17925 + - uid: 17960 components: - type: Transform pos: -38.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17926 + - uid: 17961 components: - type: Transform pos: -38.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17927 + - uid: 17962 components: - type: Transform rot: -1.5707963267948966 rad @@ -117420,7 +116233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17928 + - uid: 17963 components: - type: Transform rot: -1.5707963267948966 rad @@ -117428,7 +116241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17929 + - uid: 17964 components: - type: Transform rot: -1.5707963267948966 rad @@ -117436,7 +116249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17930 + - uid: 17965 components: - type: Transform rot: 3.141592653589793 rad @@ -117444,39 +116257,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17931 + - uid: 17966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-57.5 + rot: 1.5707963267948966 rad + pos: -23.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17932 + - uid: 17967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-57.5 + rot: 1.5707963267948966 rad + pos: -21.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17933 + - uid: 17968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 + pos: -24.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17934 + - uid: 17969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-57.5 + pos: -24.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17935 + - uid: 17970 components: - type: Transform rot: -1.5707963267948966 rad @@ -117484,7 +116295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17936 + - uid: 17971 components: - type: Transform rot: -1.5707963267948966 rad @@ -117492,7 +116303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17937 + - uid: 17972 components: - type: Transform rot: -1.5707963267948966 rad @@ -117500,7 +116311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17938 + - uid: 17973 components: - type: Transform rot: -1.5707963267948966 rad @@ -117508,7 +116319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17939 + - uid: 17974 components: - type: Transform rot: -1.5707963267948966 rad @@ -117516,7 +116327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17940 + - uid: 17975 components: - type: Transform rot: -1.5707963267948966 rad @@ -117524,7 +116335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17941 + - uid: 17976 components: - type: Transform rot: -1.5707963267948966 rad @@ -117532,7 +116343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17942 + - uid: 17977 components: - type: Transform rot: -1.5707963267948966 rad @@ -117540,7 +116351,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17943 + - uid: 17978 components: - type: Transform rot: -1.5707963267948966 rad @@ -117548,7 +116359,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17944 + - uid: 17979 components: - type: Transform rot: 3.141592653589793 rad @@ -117556,7 +116367,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17945 + - uid: 17980 components: - type: Transform rot: -1.5707963267948966 rad @@ -117564,7 +116375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17946 + - uid: 17981 components: - type: Transform rot: 3.141592653589793 rad @@ -117572,7 +116383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17947 + - uid: 17982 components: - type: Transform rot: -1.5707963267948966 rad @@ -117580,7 +116391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17948 + - uid: 17983 components: - type: Transform rot: -1.5707963267948966 rad @@ -117588,7 +116399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17949 + - uid: 17984 components: - type: Transform rot: -1.5707963267948966 rad @@ -117596,7 +116407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17950 + - uid: 17985 components: - type: Transform rot: -1.5707963267948966 rad @@ -117604,7 +116415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17951 + - uid: 17986 components: - type: Transform rot: -1.5707963267948966 rad @@ -117612,7 +116423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17952 + - uid: 17987 components: - type: Transform rot: -1.5707963267948966 rad @@ -117620,7 +116431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17953 + - uid: 17988 components: - type: Transform rot: -1.5707963267948966 rad @@ -117628,7 +116439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17954 + - uid: 17989 components: - type: Transform rot: -1.5707963267948966 rad @@ -117636,7 +116447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17955 + - uid: 17990 components: - type: Transform rot: -1.5707963267948966 rad @@ -117644,7 +116455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17956 + - uid: 17991 components: - type: Transform rot: -1.5707963267948966 rad @@ -117652,7 +116463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17957 + - uid: 17992 components: - type: Transform rot: -1.5707963267948966 rad @@ -117660,7 +116471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17958 + - uid: 17993 components: - type: Transform rot: -1.5707963267948966 rad @@ -117668,7 +116479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17959 + - uid: 17994 components: - type: Transform rot: -1.5707963267948966 rad @@ -117676,7 +116487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17960 + - uid: 17995 components: - type: Transform rot: -1.5707963267948966 rad @@ -117684,7 +116495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17961 + - uid: 17996 components: - type: Transform rot: -1.5707963267948966 rad @@ -117692,7 +116503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17962 + - uid: 17997 components: - type: Transform rot: -1.5707963267948966 rad @@ -117700,7 +116511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17963 + - uid: 17998 components: - type: Transform rot: -1.5707963267948966 rad @@ -117708,7 +116519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17964 + - uid: 17999 components: - type: Transform rot: -1.5707963267948966 rad @@ -117716,7 +116527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17965 + - uid: 18000 components: - type: Transform rot: -1.5707963267948966 rad @@ -117724,7 +116535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17966 + - uid: 18001 components: - type: Transform rot: -1.5707963267948966 rad @@ -117732,7 +116543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17967 + - uid: 18002 components: - type: Transform rot: -1.5707963267948966 rad @@ -117740,7 +116551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17968 + - uid: 18003 components: - type: Transform rot: -1.5707963267948966 rad @@ -117748,7 +116559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17969 + - uid: 18004 components: - type: Transform rot: -1.5707963267948966 rad @@ -117756,7 +116567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17970 + - uid: 18005 components: - type: Transform rot: -1.5707963267948966 rad @@ -117764,7 +116575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17971 + - uid: 18006 components: - type: Transform rot: -1.5707963267948966 rad @@ -117772,7 +116583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17972 + - uid: 18007 components: - type: Transform rot: -1.5707963267948966 rad @@ -117780,7 +116591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17973 + - uid: 18008 components: - type: Transform rot: -1.5707963267948966 rad @@ -117788,7 +116599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17974 + - uid: 18009 components: - type: Transform rot: -1.5707963267948966 rad @@ -117796,30 +116607,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17975 + - uid: 18010 components: - type: Transform pos: -42.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17977 + - uid: 18011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 + rot: -1.5707963267948966 rad + pos: -22.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17978 + - uid: 18012 components: - type: Transform rot: 3.141592653589793 rad @@ -117827,14 +116630,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17979 + - uid: 18013 components: - type: Transform pos: 23.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17980 + - uid: 18014 components: - type: Transform rot: -1.5707963267948966 rad @@ -117842,7 +116645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17981 + - uid: 18015 components: - type: Transform rot: -1.5707963267948966 rad @@ -117850,7 +116653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17982 + - uid: 18016 components: - type: Transform rot: -1.5707963267948966 rad @@ -117858,7 +116661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17983 + - uid: 18017 components: - type: Transform rot: -1.5707963267948966 rad @@ -117866,91 +116669,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17984 + - uid: 18018 components: - type: Transform pos: -20.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17985 + - uid: 18019 components: - type: Transform pos: -20.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17986 + - uid: 18020 components: - type: Transform pos: -20.5,17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17987 + - uid: 18021 components: - type: Transform pos: -20.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17988 + - uid: 18022 components: - type: Transform pos: -20.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17989 + - uid: 18023 components: - type: Transform pos: -18.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17990 + - uid: 18024 components: - type: Transform pos: -18.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17991 + - uid: 18025 components: - type: Transform pos: -18.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17992 + - uid: 18026 components: - type: Transform pos: -18.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17993 + - uid: 18027 components: - type: Transform pos: -18.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17994 + - uid: 18028 components: - type: Transform pos: -18.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17995 + - uid: 18029 components: - type: Transform pos: -18.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17996 + - uid: 18030 components: - type: Transform rot: 3.141592653589793 rad @@ -117958,7 +116761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17997 + - uid: 18031 components: - type: Transform rot: -1.5707963267948966 rad @@ -117966,7 +116769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17998 + - uid: 18032 components: - type: Transform rot: -1.5707963267948966 rad @@ -117974,7 +116777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17999 + - uid: 18033 components: - type: Transform rot: 3.141592653589793 rad @@ -117982,7 +116785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18000 + - uid: 18034 components: - type: Transform rot: -1.5707963267948966 rad @@ -117990,7 +116793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18001 + - uid: 18035 components: - type: Transform rot: -1.5707963267948966 rad @@ -117998,7 +116801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18002 + - uid: 18036 components: - type: Transform rot: -1.5707963267948966 rad @@ -118006,7 +116809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18003 + - uid: 18037 components: - type: Transform rot: -1.5707963267948966 rad @@ -118014,7 +116817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18004 + - uid: 18038 components: - type: Transform rot: -1.5707963267948966 rad @@ -118022,7 +116825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18005 + - uid: 18039 components: - type: Transform rot: -1.5707963267948966 rad @@ -118030,7 +116833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18006 + - uid: 18040 components: - type: Transform rot: -1.5707963267948966 rad @@ -118038,7 +116841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18007 + - uid: 18041 components: - type: Transform rot: 1.5707963267948966 rad @@ -118046,7 +116849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18008 + - uid: 18042 components: - type: Transform rot: 1.5707963267948966 rad @@ -118054,7 +116857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18009 + - uid: 18043 components: - type: Transform rot: 1.5707963267948966 rad @@ -118062,7 +116865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18010 + - uid: 18044 components: - type: Transform rot: 1.5707963267948966 rad @@ -118070,7 +116873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18011 + - uid: 18045 components: - type: Transform rot: 1.5707963267948966 rad @@ -118078,7 +116881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18012 + - uid: 18046 components: - type: Transform rot: 1.5707963267948966 rad @@ -118086,7 +116889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18013 + - uid: 18047 components: - type: Transform rot: 1.5707963267948966 rad @@ -118094,7 +116897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18014 + - uid: 18048 components: - type: Transform rot: 1.5707963267948966 rad @@ -118102,7 +116905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18015 + - uid: 18049 components: - type: Transform rot: 1.5707963267948966 rad @@ -118110,7 +116913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18016 + - uid: 18050 components: - type: Transform rot: 1.5707963267948966 rad @@ -118118,7 +116921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18017 + - uid: 18051 components: - type: Transform rot: 1.5707963267948966 rad @@ -118126,77 +116929,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18018 + - uid: 18052 components: - type: Transform pos: -32.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18019 + - uid: 18053 components: - type: Transform pos: -32.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18020 + - uid: 18054 components: - type: Transform pos: -32.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18021 + - uid: 18055 components: - type: Transform pos: -32.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18022 + - uid: 18056 components: - type: Transform pos: -33.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18023 + - uid: 18057 components: - type: Transform pos: -33.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18024 + - uid: 18058 components: - type: Transform pos: -33.5,24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18025 + - uid: 18059 components: - type: Transform pos: -33.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18026 + - uid: 18060 components: - type: Transform pos: -33.5,26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18027 + - uid: 18061 components: - type: Transform pos: -33.5,27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18028 + - uid: 18062 components: - type: Transform rot: 1.5707963267948966 rad @@ -118204,7 +117007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18029 + - uid: 18063 components: - type: Transform rot: 1.5707963267948966 rad @@ -118212,7 +117015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18030 + - uid: 18064 components: - type: Transform rot: 1.5707963267948966 rad @@ -118220,7 +117023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18031 + - uid: 18065 components: - type: Transform rot: 1.5707963267948966 rad @@ -118228,7 +117031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18032 + - uid: 18066 components: - type: Transform rot: 1.5707963267948966 rad @@ -118236,7 +117039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18033 + - uid: 18067 components: - type: Transform rot: 1.5707963267948966 rad @@ -118244,7 +117047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18034 + - uid: 18068 components: - type: Transform rot: 1.5707963267948966 rad @@ -118252,84 +117055,84 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18035 + - uid: 18069 components: - type: Transform pos: -40.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18036 + - uid: 18070 components: - type: Transform pos: -40.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18037 + - uid: 18071 components: - type: Transform pos: -40.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18038 + - uid: 18072 components: - type: Transform pos: -40.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18039 + - uid: 18073 components: - type: Transform pos: -41.5,21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18040 + - uid: 18074 components: - type: Transform pos: -41.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18041 + - uid: 18075 components: - type: Transform pos: -41.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18042 + - uid: 18076 components: - type: Transform pos: -41.5,24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18043 + - uid: 18077 components: - type: Transform pos: -41.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18044 + - uid: 18078 components: - type: Transform pos: -41.5,26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18045 + - uid: 18079 components: - type: Transform pos: -41.5,27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18046 + - uid: 18080 components: - type: Transform rot: -1.5707963267948966 rad @@ -118337,49 +117140,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18047 + - uid: 18081 components: - type: Transform pos: -40.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18048 + - uid: 18082 components: - type: Transform pos: -40.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18049 + - uid: 18083 components: - type: Transform pos: -41.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18050 + - uid: 18084 components: - type: Transform pos: -40.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18051 + - uid: 18085 components: - type: Transform pos: -40.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18052 + - uid: 18086 components: - type: Transform pos: -41.5,28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18053 + - uid: 18087 components: - type: Transform rot: -1.5707963267948966 rad @@ -118387,7 +117190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18054 + - uid: 18088 components: - type: Transform rot: -1.5707963267948966 rad @@ -118395,7 +117198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18055 + - uid: 18089 components: - type: Transform rot: -1.5707963267948966 rad @@ -118403,7 +117206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18056 + - uid: 18090 components: - type: Transform rot: -1.5707963267948966 rad @@ -118411,7 +117214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18057 + - uid: 18091 components: - type: Transform rot: -1.5707963267948966 rad @@ -118419,7 +117222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18058 + - uid: 18092 components: - type: Transform rot: -1.5707963267948966 rad @@ -118427,7 +117230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18059 + - uid: 18093 components: - type: Transform rot: -1.5707963267948966 rad @@ -118435,7 +117238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18060 + - uid: 18094 components: - type: Transform rot: -1.5707963267948966 rad @@ -118443,7 +117246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18061 + - uid: 18095 components: - type: Transform rot: -1.5707963267948966 rad @@ -118451,7 +117254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18062 + - uid: 18096 components: - type: Transform rot: -1.5707963267948966 rad @@ -118459,14 +117262,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18063 + - uid: 18097 components: - type: Transform pos: -49.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18064 + - uid: 18098 components: - type: Transform rot: 1.5707963267948966 rad @@ -118474,7 +117277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18065 + - uid: 18099 components: - type: Transform rot: 1.5707963267948966 rad @@ -118482,7 +117285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18066 + - uid: 18100 components: - type: Transform rot: 1.5707963267948966 rad @@ -118490,7 +117293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18067 + - uid: 18101 components: - type: Transform rot: 1.5707963267948966 rad @@ -118498,7 +117301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18068 + - uid: 18102 components: - type: Transform rot: -1.5707963267948966 rad @@ -118506,7 +117309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18069 + - uid: 18103 components: - type: Transform rot: -1.5707963267948966 rad @@ -118514,7 +117317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18070 + - uid: 18104 components: - type: Transform rot: -1.5707963267948966 rad @@ -118522,7 +117325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18071 + - uid: 18105 components: - type: Transform rot: -1.5707963267948966 rad @@ -118530,7 +117333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18072 + - uid: 18106 components: - type: Transform rot: -1.5707963267948966 rad @@ -118538,7 +117341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18073 + - uid: 18107 components: - type: Transform rot: -1.5707963267948966 rad @@ -118546,7 +117349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18074 + - uid: 18108 components: - type: Transform rot: -1.5707963267948966 rad @@ -118554,7 +117357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18075 + - uid: 18109 components: - type: Transform rot: -1.5707963267948966 rad @@ -118562,7 +117365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18076 + - uid: 18110 components: - type: Transform rot: -1.5707963267948966 rad @@ -118570,7 +117373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18077 + - uid: 18111 components: - type: Transform rot: -1.5707963267948966 rad @@ -118578,7 +117381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18078 + - uid: 18112 components: - type: Transform rot: -1.5707963267948966 rad @@ -118586,14 +117389,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18079 + - uid: 18113 components: - type: Transform pos: 71.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 18080 + - uid: 18114 components: - type: Transform rot: -1.5707963267948966 rad @@ -118601,7 +117404,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18081 + - uid: 18115 components: - type: Transform rot: -1.5707963267948966 rad @@ -118609,7 +117412,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18082 + - uid: 18116 components: - type: Transform rot: -1.5707963267948966 rad @@ -118617,7 +117420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18083 + - uid: 18117 components: - type: Transform rot: -1.5707963267948966 rad @@ -118625,7 +117428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18084 + - uid: 18118 components: - type: Transform rot: -1.5707963267948966 rad @@ -118633,7 +117436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18085 + - uid: 18119 components: - type: Transform rot: -1.5707963267948966 rad @@ -118641,7 +117444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18086 + - uid: 18120 components: - type: Transform rot: -1.5707963267948966 rad @@ -118649,7 +117452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18087 + - uid: 18121 components: - type: Transform rot: -1.5707963267948966 rad @@ -118657,7 +117460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18088 + - uid: 18122 components: - type: Transform rot: -1.5707963267948966 rad @@ -118665,7 +117468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18089 + - uid: 18123 components: - type: Transform rot: -1.5707963267948966 rad @@ -118673,7 +117476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18090 + - uid: 18124 components: - type: Transform rot: -1.5707963267948966 rad @@ -118681,7 +117484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18091 + - uid: 18125 components: - type: Transform rot: -1.5707963267948966 rad @@ -118689,7 +117492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18092 + - uid: 18126 components: - type: Transform rot: -1.5707963267948966 rad @@ -118697,7 +117500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18093 + - uid: 18127 components: - type: Transform rot: -1.5707963267948966 rad @@ -118705,7 +117508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18094 + - uid: 18128 components: - type: Transform rot: -1.5707963267948966 rad @@ -118713,7 +117516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18095 + - uid: 18129 components: - type: Transform rot: -1.5707963267948966 rad @@ -118721,7 +117524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18096 + - uid: 18130 components: - type: Transform rot: -1.5707963267948966 rad @@ -118729,7 +117532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18097 + - uid: 18131 components: - type: Transform rot: -1.5707963267948966 rad @@ -118737,7 +117540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18098 + - uid: 18132 components: - type: Transform rot: -1.5707963267948966 rad @@ -118745,7 +117548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18099 + - uid: 18133 components: - type: Transform rot: -1.5707963267948966 rad @@ -118753,7 +117556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18100 + - uid: 18134 components: - type: Transform rot: -1.5707963267948966 rad @@ -118761,56 +117564,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18101 + - uid: 18135 components: - type: Transform pos: -28.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18102 + - uid: 18136 components: - type: Transform pos: -28.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18103 + - uid: 18137 components: - type: Transform pos: -28.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18104 + - uid: 18138 components: - type: Transform pos: -28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18105 + - uid: 18139 components: - type: Transform pos: -29.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18106 + - uid: 18140 components: - type: Transform pos: -29.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18107 + - uid: 18141 components: - type: Transform pos: -29.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18108 + - uid: 18142 components: - type: Transform rot: 3.141592653589793 rad @@ -118818,7 +117621,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18109 + - uid: 18143 components: - type: Transform rot: 3.141592653589793 rad @@ -118826,7 +117629,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18110 + - uid: 18144 components: - type: Transform rot: 3.141592653589793 rad @@ -118834,7 +117637,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18111 + - uid: 18145 components: - type: Transform rot: 3.141592653589793 rad @@ -118842,7 +117645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18112 + - uid: 18146 components: - type: Transform rot: 3.141592653589793 rad @@ -118850,7 +117653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18113 + - uid: 18147 components: - type: Transform rot: 3.141592653589793 rad @@ -118858,7 +117661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18114 + - uid: 18148 components: - type: Transform rot: 3.141592653589793 rad @@ -118866,7 +117669,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18115 + - uid: 18149 components: - type: Transform rot: 3.141592653589793 rad @@ -118874,7 +117677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18116 + - uid: 18150 components: - type: Transform rot: 3.141592653589793 rad @@ -118882,7 +117685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18117 + - uid: 18151 components: - type: Transform rot: 3.141592653589793 rad @@ -118890,7 +117693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18118 + - uid: 18152 components: - type: Transform rot: 3.141592653589793 rad @@ -118898,7 +117701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18119 + - uid: 18153 components: - type: Transform rot: 3.141592653589793 rad @@ -118906,7 +117709,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18120 + - uid: 18154 components: - type: Transform rot: 3.141592653589793 rad @@ -118914,7 +117717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18121 + - uid: 18155 components: - type: Transform rot: 3.141592653589793 rad @@ -118922,7 +117725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18122 + - uid: 18156 components: - type: Transform rot: 3.141592653589793 rad @@ -118930,7 +117733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18123 + - uid: 18157 components: - type: Transform rot: 3.141592653589793 rad @@ -118938,7 +117741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18124 + - uid: 18158 components: - type: Transform rot: 3.141592653589793 rad @@ -118946,7 +117749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18125 + - uid: 18159 components: - type: Transform rot: 3.141592653589793 rad @@ -118954,7 +117757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18126 + - uid: 18160 components: - type: Transform rot: 3.141592653589793 rad @@ -118962,14 +117765,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18127 + - uid: 18161 components: - type: Transform pos: -38.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18128 + - uid: 18162 components: - type: Transform rot: 1.5707963267948966 rad @@ -118977,7 +117780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18129 + - uid: 18163 components: - type: Transform rot: 1.5707963267948966 rad @@ -118985,7 +117788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18130 + - uid: 18164 components: - type: Transform rot: 1.5707963267948966 rad @@ -118993,7 +117796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18131 + - uid: 18165 components: - type: Transform rot: 1.5707963267948966 rad @@ -119001,7 +117804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18132 + - uid: 18166 components: - type: Transform rot: 1.5707963267948966 rad @@ -119009,7 +117812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18133 + - uid: 18167 components: - type: Transform rot: 1.5707963267948966 rad @@ -119017,7 +117820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18134 + - uid: 18168 components: - type: Transform rot: 1.5707963267948966 rad @@ -119025,7 +117828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18135 + - uid: 18169 components: - type: Transform rot: 1.5707963267948966 rad @@ -119033,7 +117836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18136 + - uid: 18170 components: - type: Transform rot: 1.5707963267948966 rad @@ -119041,7 +117844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18137 + - uid: 18171 components: - type: Transform rot: 1.5707963267948966 rad @@ -119049,7 +117852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18138 + - uid: 18172 components: - type: Transform rot: 1.5707963267948966 rad @@ -119057,7 +117860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18139 + - uid: 18173 components: - type: Transform rot: 1.5707963267948966 rad @@ -119065,7 +117868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18140 + - uid: 18174 components: - type: Transform rot: 1.5707963267948966 rad @@ -119073,7 +117876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18141 + - uid: 18175 components: - type: Transform rot: -1.5707963267948966 rad @@ -119081,7 +117884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18142 + - uid: 18176 components: - type: Transform rot: -1.5707963267948966 rad @@ -119089,7 +117892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18143 + - uid: 18177 components: - type: Transform rot: -1.5707963267948966 rad @@ -119097,7 +117900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18144 + - uid: 18178 components: - type: Transform rot: -1.5707963267948966 rad @@ -119105,7 +117908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18145 + - uid: 18179 components: - type: Transform rot: -1.5707963267948966 rad @@ -119113,7 +117916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18146 + - uid: 18180 components: - type: Transform rot: -1.5707963267948966 rad @@ -119121,7 +117924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18147 + - uid: 18181 components: - type: Transform rot: -1.5707963267948966 rad @@ -119129,7 +117932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18148 + - uid: 18182 components: - type: Transform rot: -1.5707963267948966 rad @@ -119137,7 +117940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18149 + - uid: 18183 components: - type: Transform rot: -1.5707963267948966 rad @@ -119145,7 +117948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18150 + - uid: 18184 components: - type: Transform rot: -1.5707963267948966 rad @@ -119153,7 +117956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18151 + - uid: 18185 components: - type: Transform rot: 3.141592653589793 rad @@ -119161,7 +117964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18152 + - uid: 18186 components: - type: Transform rot: 3.141592653589793 rad @@ -119169,7 +117972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18153 + - uid: 18187 components: - type: Transform rot: 3.141592653589793 rad @@ -119177,7 +117980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18154 + - uid: 18188 components: - type: Transform rot: 3.141592653589793 rad @@ -119185,7 +117988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18155 + - uid: 18189 components: - type: Transform rot: 3.141592653589793 rad @@ -119193,7 +117996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18156 + - uid: 18190 components: - type: Transform rot: 3.141592653589793 rad @@ -119201,7 +118004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18157 + - uid: 18191 components: - type: Transform rot: 3.141592653589793 rad @@ -119209,7 +118012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18158 + - uid: 18192 components: - type: Transform rot: 3.141592653589793 rad @@ -119217,7 +118020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18159 + - uid: 18193 components: - type: Transform rot: -1.5707963267948966 rad @@ -119225,7 +118028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18160 + - uid: 18194 components: - type: Transform rot: -1.5707963267948966 rad @@ -119233,7 +118036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18161 + - uid: 18195 components: - type: Transform rot: -1.5707963267948966 rad @@ -119241,7 +118044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18162 + - uid: 18196 components: - type: Transform rot: -1.5707963267948966 rad @@ -119249,49 +118052,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18163 + - uid: 18197 components: - type: Transform pos: -45.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18164 + - uid: 18198 components: - type: Transform pos: -45.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18165 + - uid: 18199 components: - type: Transform pos: -45.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18166 + - uid: 18200 components: - type: Transform pos: -45.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18167 + - uid: 18201 components: - type: Transform pos: -47.5,1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18168 + - uid: 18202 components: - type: Transform pos: -47.5,2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18169 + - uid: 18203 components: - type: Transform rot: 3.141592653589793 rad @@ -119299,7 +118102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18170 + - uid: 18204 components: - type: Transform rot: 3.141592653589793 rad @@ -119307,7 +118110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18171 + - uid: 18205 components: - type: Transform rot: 3.141592653589793 rad @@ -119315,7 +118118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18172 + - uid: 18206 components: - type: Transform rot: 3.141592653589793 rad @@ -119323,7 +118126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18173 + - uid: 18207 components: - type: Transform rot: 3.141592653589793 rad @@ -119331,7 +118134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18174 + - uid: 18208 components: - type: Transform rot: 3.141592653589793 rad @@ -119339,7 +118142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18175 + - uid: 18209 components: - type: Transform rot: -1.5707963267948966 rad @@ -119347,7 +118150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18176 + - uid: 18210 components: - type: Transform rot: 3.141592653589793 rad @@ -119355,7 +118158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18177 + - uid: 18211 components: - type: Transform rot: 3.141592653589793 rad @@ -119363,7 +118166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18178 + - uid: 18212 components: - type: Transform rot: 3.141592653589793 rad @@ -119371,7 +118174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18179 + - uid: 18213 components: - type: Transform rot: 1.5707963267948966 rad @@ -119379,7 +118182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18180 + - uid: 18214 components: - type: Transform rot: 1.5707963267948966 rad @@ -119387,42 +118190,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18181 + - uid: 18215 components: - type: Transform pos: -52.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18182 + - uid: 18216 components: - type: Transform pos: -52.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18183 + - uid: 18217 components: - type: Transform pos: -52.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18184 + - uid: 18218 components: - type: Transform pos: -52.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18185 + - uid: 18219 components: - type: Transform pos: -52.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18186 + - uid: 18220 components: - type: Transform rot: -1.5707963267948966 rad @@ -119430,7 +118233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18187 + - uid: 18221 components: - type: Transform rot: -1.5707963267948966 rad @@ -119438,7 +118241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18188 + - uid: 18222 components: - type: Transform rot: -1.5707963267948966 rad @@ -119446,7 +118249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18189 + - uid: 18223 components: - type: Transform rot: 1.5707963267948966 rad @@ -119454,7 +118257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18190 + - uid: 18224 components: - type: Transform rot: 1.5707963267948966 rad @@ -119462,7 +118265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18191 + - uid: 18225 components: - type: Transform rot: 1.5707963267948966 rad @@ -119470,7 +118273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18192 + - uid: 18226 components: - type: Transform rot: 1.5707963267948966 rad @@ -119478,7 +118281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18193 + - uid: 18227 components: - type: Transform rot: 1.5707963267948966 rad @@ -119486,28 +118289,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18194 + - uid: 18228 components: - type: Transform pos: -45.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18195 + - uid: 18229 components: - type: Transform pos: -45.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18196 + - uid: 18230 components: - type: Transform pos: -45.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18197 + - uid: 18231 components: - type: Transform rot: 3.141592653589793 rad @@ -119515,7 +118318,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18198 + - uid: 18232 components: - type: Transform rot: 3.141592653589793 rad @@ -119523,7 +118326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18199 + - uid: 18233 components: - type: Transform rot: 1.5707963267948966 rad @@ -119531,7 +118334,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18200 + - uid: 18234 components: - type: Transform rot: 1.5707963267948966 rad @@ -119539,7 +118342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18201 + - uid: 18235 components: - type: Transform rot: 1.5707963267948966 rad @@ -119547,7 +118350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18202 + - uid: 18236 components: - type: Transform rot: 1.5707963267948966 rad @@ -119555,7 +118358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18203 + - uid: 18237 components: - type: Transform rot: -1.5707963267948966 rad @@ -119563,7 +118366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18204 + - uid: 18238 components: - type: Transform rot: 1.5707963267948966 rad @@ -119571,7 +118374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18205 + - uid: 18239 components: - type: Transform rot: 3.141592653589793 rad @@ -119579,7 +118382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18206 + - uid: 18240 components: - type: Transform rot: 3.141592653589793 rad @@ -119587,14 +118390,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18207 + - uid: 18241 components: - type: Transform pos: -46.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18208 + - uid: 18242 components: - type: Transform rot: 3.141592653589793 rad @@ -119602,7 +118405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18209 + - uid: 18243 components: - type: Transform rot: 3.141592653589793 rad @@ -119610,7 +118413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18210 + - uid: 18244 components: - type: Transform rot: 3.141592653589793 rad @@ -119618,7 +118421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18211 + - uid: 18245 components: - type: Transform rot: 3.141592653589793 rad @@ -119626,7 +118429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18212 + - uid: 18246 components: - type: Transform rot: 3.141592653589793 rad @@ -119634,7 +118437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18213 + - uid: 18247 components: - type: Transform rot: 1.5707963267948966 rad @@ -119642,7 +118445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18214 + - uid: 18248 components: - type: Transform rot: 1.5707963267948966 rad @@ -119650,7 +118453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18215 + - uid: 18249 components: - type: Transform rot: 1.5707963267948966 rad @@ -119658,7 +118461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18216 + - uid: 18250 components: - type: Transform rot: 1.5707963267948966 rad @@ -119666,7 +118469,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18217 + - uid: 18251 components: - type: Transform rot: 1.5707963267948966 rad @@ -119674,7 +118477,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18218 + - uid: 18252 components: - type: Transform rot: 1.5707963267948966 rad @@ -119682,7 +118485,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18219 + - uid: 18253 components: - type: Transform rot: 1.5707963267948966 rad @@ -119690,7 +118493,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18220 + - uid: 18254 components: - type: Transform rot: 1.5707963267948966 rad @@ -119698,7 +118501,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18221 + - uid: 18255 components: - type: Transform rot: -1.5707963267948966 rad @@ -119706,7 +118509,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18222 + - uid: 18256 components: - type: Transform rot: -1.5707963267948966 rad @@ -119714,35 +118517,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18223 + - uid: 18257 components: - type: Transform pos: -45.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18224 + - uid: 18258 components: - type: Transform pos: -45.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18225 + - uid: 18259 components: - type: Transform pos: -45.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18226 + - uid: 18260 components: - type: Transform pos: -45.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18227 + - uid: 18261 components: - type: Transform rot: -1.5707963267948966 rad @@ -119750,7 +118553,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18228 + - uid: 18262 components: - type: Transform rot: -1.5707963267948966 rad @@ -119758,7 +118561,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18229 + - uid: 18263 components: - type: Transform rot: -1.5707963267948966 rad @@ -119766,7 +118569,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18230 + - uid: 18264 components: - type: Transform rot: -1.5707963267948966 rad @@ -119774,7 +118577,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18231 + - uid: 18265 components: - type: Transform rot: -1.5707963267948966 rad @@ -119782,7 +118585,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18232 + - uid: 18266 components: - type: Transform rot: -1.5707963267948966 rad @@ -119790,7 +118593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18233 + - uid: 18267 components: - type: Transform rot: -1.5707963267948966 rad @@ -119798,7 +118601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18234 + - uid: 18268 components: - type: Transform rot: -1.5707963267948966 rad @@ -119806,7 +118609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18235 + - uid: 18269 components: - type: Transform rot: -1.5707963267948966 rad @@ -119814,7 +118617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18236 + - uid: 18270 components: - type: Transform rot: -1.5707963267948966 rad @@ -119822,7 +118625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18237 + - uid: 18271 components: - type: Transform rot: -1.5707963267948966 rad @@ -119830,7 +118633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18238 + - uid: 18272 components: - type: Transform rot: -1.5707963267948966 rad @@ -119838,7 +118641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18239 + - uid: 18273 components: - type: Transform rot: -1.5707963267948966 rad @@ -119846,7 +118649,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18240 + - uid: 18274 components: - type: Transform rot: 3.141592653589793 rad @@ -119854,7 +118657,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18241 + - uid: 18275 components: - type: Transform rot: 3.141592653589793 rad @@ -119862,7 +118665,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18242 + - uid: 18276 components: - type: Transform rot: 1.5707963267948966 rad @@ -119870,7 +118673,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18243 + - uid: 18277 components: - type: Transform rot: 1.5707963267948966 rad @@ -119878,7 +118681,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18244 + - uid: 18278 components: - type: Transform rot: 1.5707963267948966 rad @@ -119886,7 +118689,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18245 + - uid: 18279 components: - type: Transform rot: 1.5707963267948966 rad @@ -119894,7 +118697,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18246 + - uid: 18280 components: - type: Transform rot: 1.5707963267948966 rad @@ -119902,7 +118705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18247 + - uid: 18281 components: - type: Transform rot: 1.5707963267948966 rad @@ -119910,7 +118713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18248 + - uid: 18282 components: - type: Transform rot: 1.5707963267948966 rad @@ -119918,7 +118721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18249 + - uid: 18283 components: - type: Transform rot: 1.5707963267948966 rad @@ -119926,7 +118729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18250 + - uid: 18284 components: - type: Transform rot: 1.5707963267948966 rad @@ -119934,7 +118737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18251 + - uid: 18285 components: - type: Transform rot: 1.5707963267948966 rad @@ -119942,21 +118745,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18252 + - uid: 18286 components: - type: Transform pos: -15.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18253 + - uid: 18287 components: - type: Transform pos: -19.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18254 + - uid: 18288 components: - type: Transform rot: -1.5707963267948966 rad @@ -119964,14 +118767,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18255 + - uid: 18289 components: - type: Transform - pos: -20.5,-59.5 + rot: -1.5707963267948966 rad + pos: -21.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18256 + - uid: 18290 components: - type: Transform rot: -1.5707963267948966 rad @@ -119979,7 +118783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18257 + - uid: 18291 components: - type: Transform rot: -1.5707963267948966 rad @@ -119987,7 +118791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18258 + - uid: 18292 components: - type: Transform rot: -1.5707963267948966 rad @@ -119995,7 +118799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18259 + - uid: 18293 components: - type: Transform rot: -1.5707963267948966 rad @@ -120003,7 +118807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18260 + - uid: 18294 components: - type: Transform rot: -1.5707963267948966 rad @@ -120011,7 +118815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18261 + - uid: 18295 components: - type: Transform rot: -1.5707963267948966 rad @@ -120019,7 +118823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18262 + - uid: 18296 components: - type: Transform rot: -1.5707963267948966 rad @@ -120027,7 +118831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18263 + - uid: 18297 components: - type: Transform rot: -1.5707963267948966 rad @@ -120035,7 +118839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18264 + - uid: 18298 components: - type: Transform rot: -1.5707963267948966 rad @@ -120043,7 +118847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18265 + - uid: 18299 components: - type: Transform rot: 1.5707963267948966 rad @@ -120051,15 +118855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 18267 + - uid: 18300 components: - type: Transform rot: 3.141592653589793 rad @@ -120067,7 +118863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18268 + - uid: 18301 components: - type: Transform rot: 3.141592653589793 rad @@ -120075,7 +118871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18269 + - uid: 18302 components: - type: Transform rot: 3.141592653589793 rad @@ -120083,7 +118879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18270 + - uid: 18303 components: - type: Transform rot: 3.141592653589793 rad @@ -120091,7 +118887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18271 + - uid: 18304 components: - type: Transform rot: 3.141592653589793 rad @@ -120099,7 +118895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18272 + - uid: 18305 components: - type: Transform rot: 3.141592653589793 rad @@ -120107,7 +118903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18273 + - uid: 18306 components: - type: Transform rot: 3.141592653589793 rad @@ -120115,7 +118911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18274 + - uid: 18307 components: - type: Transform rot: 3.141592653589793 rad @@ -120123,7 +118919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18275 + - uid: 18308 components: - type: Transform rot: -1.5707963267948966 rad @@ -120131,7 +118927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18276 + - uid: 18309 components: - type: Transform rot: 3.141592653589793 rad @@ -120139,7 +118935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18277 + - uid: 18310 components: - type: Transform rot: 3.141592653589793 rad @@ -120147,7 +118943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18278 + - uid: 18311 components: - type: Transform rot: 3.141592653589793 rad @@ -120155,7 +118951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18279 + - uid: 18312 components: - type: Transform rot: 3.141592653589793 rad @@ -120163,7 +118959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18280 + - uid: 18313 components: - type: Transform rot: 3.141592653589793 rad @@ -120171,7 +118967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18281 + - uid: 18314 components: - type: Transform rot: 3.141592653589793 rad @@ -120179,7 +118975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18282 + - uid: 18315 components: - type: Transform rot: 3.141592653589793 rad @@ -120187,7 +118983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18283 + - uid: 18316 components: - type: Transform rot: 3.141592653589793 rad @@ -120195,7 +118991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18284 + - uid: 18317 components: - type: Transform rot: 3.141592653589793 rad @@ -120203,7 +118999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18285 + - uid: 18318 components: - type: Transform rot: 3.141592653589793 rad @@ -120211,7 +119007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18286 + - uid: 18319 components: - type: Transform rot: 3.141592653589793 rad @@ -120219,7 +119015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18287 + - uid: 18320 components: - type: Transform rot: 3.141592653589793 rad @@ -120227,7 +119023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18288 + - uid: 18321 components: - type: Transform rot: 1.5707963267948966 rad @@ -120235,7 +119031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18289 + - uid: 18322 components: - type: Transform rot: 1.5707963267948966 rad @@ -120243,7 +119039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18290 + - uid: 18323 components: - type: Transform rot: 1.5707963267948966 rad @@ -120251,7 +119047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18291 + - uid: 18324 components: - type: Transform rot: 1.5707963267948966 rad @@ -120259,7 +119055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18292 + - uid: 18325 components: - type: Transform rot: 1.5707963267948966 rad @@ -120267,7 +119063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18293 + - uid: 18326 components: - type: Transform rot: 1.5707963267948966 rad @@ -120275,7 +119071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18294 + - uid: 18327 components: - type: Transform rot: 1.5707963267948966 rad @@ -120283,7 +119079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18295 + - uid: 18328 components: - type: Transform rot: 1.5707963267948966 rad @@ -120291,7 +119087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18296 + - uid: 18329 components: - type: Transform rot: 1.5707963267948966 rad @@ -120299,7 +119095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18297 + - uid: 18330 components: - type: Transform rot: 1.5707963267948966 rad @@ -120307,7 +119103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18298 + - uid: 18331 components: - type: Transform rot: 1.5707963267948966 rad @@ -120315,7 +119111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18299 + - uid: 18332 components: - type: Transform rot: 1.5707963267948966 rad @@ -120323,7 +119119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18300 + - uid: 18333 components: - type: Transform rot: 1.5707963267948966 rad @@ -120331,7 +119127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18301 + - uid: 18334 components: - type: Transform rot: 1.5707963267948966 rad @@ -120339,7 +119135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18302 + - uid: 18335 components: - type: Transform rot: 1.5707963267948966 rad @@ -120347,7 +119143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18303 + - uid: 18336 components: - type: Transform rot: 3.141592653589793 rad @@ -120355,7 +119151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18304 + - uid: 18337 components: - type: Transform rot: 3.141592653589793 rad @@ -120363,7 +119159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18305 + - uid: 18338 components: - type: Transform rot: 3.141592653589793 rad @@ -120371,7 +119167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18306 + - uid: 18339 components: - type: Transform rot: 3.141592653589793 rad @@ -120379,7 +119175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18307 + - uid: 18340 components: - type: Transform rot: 3.141592653589793 rad @@ -120387,7 +119183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18308 + - uid: 18341 components: - type: Transform rot: 3.141592653589793 rad @@ -120395,7 +119191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18309 + - uid: 18342 components: - type: Transform rot: 3.141592653589793 rad @@ -120403,7 +119199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18310 + - uid: 18343 components: - type: Transform rot: 3.141592653589793 rad @@ -120411,7 +119207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18311 + - uid: 18344 components: - type: Transform rot: 3.141592653589793 rad @@ -120419,7 +119215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18312 + - uid: 18345 components: - type: Transform rot: 3.141592653589793 rad @@ -120427,7 +119223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18313 + - uid: 18346 components: - type: Transform rot: 3.141592653589793 rad @@ -120435,7 +119231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18314 + - uid: 18347 components: - type: Transform rot: 3.141592653589793 rad @@ -120443,7 +119239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18315 + - uid: 18348 components: - type: Transform rot: 3.141592653589793 rad @@ -120451,7 +119247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18316 + - uid: 18349 components: - type: Transform rot: 3.141592653589793 rad @@ -120459,7 +119255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18317 + - uid: 18350 components: - type: Transform rot: 3.141592653589793 rad @@ -120467,7 +119263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18318 + - uid: 18351 components: - type: Transform rot: 3.141592653589793 rad @@ -120475,7 +119271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18319 + - uid: 18352 components: - type: Transform rot: 3.141592653589793 rad @@ -120483,7 +119279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18320 + - uid: 18353 components: - type: Transform rot: 3.141592653589793 rad @@ -120491,7 +119287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18321 + - uid: 18354 components: - type: Transform rot: 3.141592653589793 rad @@ -120499,7 +119295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18322 + - uid: 18355 components: - type: Transform rot: 3.141592653589793 rad @@ -120507,7 +119303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18323 + - uid: 18356 components: - type: Transform rot: 3.141592653589793 rad @@ -120515,7 +119311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18324 + - uid: 18357 components: - type: Transform rot: 3.141592653589793 rad @@ -120523,7 +119319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18325 + - uid: 18358 components: - type: Transform rot: 3.141592653589793 rad @@ -120531,7 +119327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18326 + - uid: 18359 components: - type: Transform rot: 3.141592653589793 rad @@ -120539,7 +119335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18327 + - uid: 18360 components: - type: Transform rot: 3.141592653589793 rad @@ -120547,7 +119343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18328 + - uid: 18361 components: - type: Transform rot: 3.141592653589793 rad @@ -120555,7 +119351,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18329 + - uid: 18362 components: - type: Transform rot: 3.141592653589793 rad @@ -120563,7 +119359,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18330 + - uid: 18363 components: - type: Transform rot: 3.141592653589793 rad @@ -120571,7 +119367,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18331 + - uid: 18364 components: - type: Transform rot: 3.141592653589793 rad @@ -120579,7 +119375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18332 + - uid: 18365 components: - type: Transform rot: 3.141592653589793 rad @@ -120587,7 +119383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18333 + - uid: 18366 components: - type: Transform rot: 3.141592653589793 rad @@ -120595,7 +119391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18334 + - uid: 18367 components: - type: Transform rot: 3.141592653589793 rad @@ -120603,7 +119399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18335 + - uid: 18368 components: - type: Transform rot: 3.141592653589793 rad @@ -120611,7 +119407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18336 + - uid: 18369 components: - type: Transform rot: 3.141592653589793 rad @@ -120619,7 +119415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18337 + - uid: 18370 components: - type: Transform rot: 3.141592653589793 rad @@ -120627,7 +119423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18338 + - uid: 18371 components: - type: Transform rot: 3.141592653589793 rad @@ -120635,7 +119431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18339 + - uid: 18372 components: - type: Transform rot: 3.141592653589793 rad @@ -120643,7 +119439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18340 + - uid: 18373 components: - type: Transform rot: 3.141592653589793 rad @@ -120651,7 +119447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18341 + - uid: 18374 components: - type: Transform rot: 3.141592653589793 rad @@ -120659,7 +119455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18342 + - uid: 18375 components: - type: Transform rot: 3.141592653589793 rad @@ -120667,7 +119463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18343 + - uid: 18376 components: - type: Transform rot: 3.141592653589793 rad @@ -120675,7 +119471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18344 + - uid: 18377 components: - type: Transform rot: 3.141592653589793 rad @@ -120683,7 +119479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18345 + - uid: 18378 components: - type: Transform rot: 3.141592653589793 rad @@ -120691,7 +119487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18346 + - uid: 18379 components: - type: Transform rot: 3.141592653589793 rad @@ -120699,7 +119495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18347 + - uid: 18380 components: - type: Transform rot: 3.141592653589793 rad @@ -120707,7 +119503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18348 + - uid: 18381 components: - type: Transform rot: 3.141592653589793 rad @@ -120715,7 +119511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18349 + - uid: 18382 components: - type: Transform rot: 3.141592653589793 rad @@ -120723,7 +119519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18350 + - uid: 18383 components: - type: Transform rot: 3.141592653589793 rad @@ -120731,7 +119527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18351 + - uid: 18384 components: - type: Transform rot: 3.141592653589793 rad @@ -120739,7 +119535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18352 + - uid: 18385 components: - type: Transform rot: 3.141592653589793 rad @@ -120747,7 +119543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18353 + - uid: 18386 components: - type: Transform rot: 3.141592653589793 rad @@ -120755,7 +119551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18354 + - uid: 18387 components: - type: Transform rot: 3.141592653589793 rad @@ -120763,7 +119559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18355 + - uid: 18388 components: - type: Transform rot: 3.141592653589793 rad @@ -120771,49 +119567,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18356 + - uid: 18389 components: - type: Transform pos: -16.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18357 + - uid: 18390 components: - type: Transform pos: -15.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18358 + - uid: 18391 components: - type: Transform pos: -15.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18359 + - uid: 18392 components: - type: Transform pos: -15.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18360 + - uid: 18393 components: - type: Transform pos: -16.5,32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18361 + - uid: 18394 components: - type: Transform pos: -16.5,33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18362 + - uid: 18395 components: - type: Transform rot: 1.5707963267948966 rad @@ -120821,7 +119617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18363 + - uid: 18396 components: - type: Transform rot: 1.5707963267948966 rad @@ -120829,7 +119625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18364 + - uid: 18397 components: - type: Transform rot: 1.5707963267948966 rad @@ -120837,7 +119633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18365 + - uid: 18398 components: - type: Transform rot: 1.5707963267948966 rad @@ -120845,7 +119641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18366 + - uid: 18399 components: - type: Transform rot: 1.5707963267948966 rad @@ -120853,133 +119649,133 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18367 + - uid: 18400 components: - type: Transform pos: -16.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18368 + - uid: 18401 components: - type: Transform pos: -16.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18369 + - uid: 18402 components: - type: Transform pos: -16.5,37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18370 + - uid: 18403 components: - type: Transform pos: -16.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18371 + - uid: 18404 components: - type: Transform pos: -16.5,40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18372 + - uid: 18405 components: - type: Transform pos: -16.5,41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18373 + - uid: 18406 components: - type: Transform pos: -16.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18374 + - uid: 18407 components: - type: Transform pos: -15.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18375 + - uid: 18408 components: - type: Transform pos: -15.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18376 + - uid: 18409 components: - type: Transform pos: -15.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18377 + - uid: 18410 components: - type: Transform pos: -15.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18378 + - uid: 18411 components: - type: Transform pos: -15.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18379 + - uid: 18412 components: - type: Transform pos: -15.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18380 + - uid: 18413 components: - type: Transform pos: -15.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18381 + - uid: 18414 components: - type: Transform pos: -15.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18382 + - uid: 18415 components: - type: Transform pos: -15.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18383 + - uid: 18416 components: - type: Transform pos: -16.5,44.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18384 + - uid: 18417 components: - type: Transform pos: -16.5,45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18385 + - uid: 18418 components: - type: Transform rot: 1.5707963267948966 rad @@ -120987,7 +119783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18386 + - uid: 18419 components: - type: Transform rot: 1.5707963267948966 rad @@ -120995,7 +119791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18387 + - uid: 18420 components: - type: Transform rot: 1.5707963267948966 rad @@ -121003,7 +119799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18388 + - uid: 18421 components: - type: Transform rot: 1.5707963267948966 rad @@ -121011,7 +119807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18389 + - uid: 18422 components: - type: Transform rot: 1.5707963267948966 rad @@ -121019,7 +119815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18390 + - uid: 18423 components: - type: Transform rot: 1.5707963267948966 rad @@ -121027,7 +119823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18391 + - uid: 18424 components: - type: Transform rot: 1.5707963267948966 rad @@ -121035,7 +119831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18392 + - uid: 18425 components: - type: Transform rot: -1.5707963267948966 rad @@ -121043,7 +119839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18393 + - uid: 18426 components: - type: Transform rot: 3.141592653589793 rad @@ -121051,7 +119847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18394 + - uid: 18427 components: - type: Transform rot: 3.141592653589793 rad @@ -121059,7 +119855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18395 + - uid: 18428 components: - type: Transform rot: 3.141592653589793 rad @@ -121067,7 +119863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18396 + - uid: 18429 components: - type: Transform rot: 3.141592653589793 rad @@ -121075,7 +119871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18397 + - uid: 18430 components: - type: Transform rot: 3.141592653589793 rad @@ -121083,7 +119879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18398 + - uid: 18431 components: - type: Transform rot: 3.141592653589793 rad @@ -121091,7 +119887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18399 + - uid: 18432 components: - type: Transform rot: 3.141592653589793 rad @@ -121099,7 +119895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18400 + - uid: 18433 components: - type: Transform rot: 1.5707963267948966 rad @@ -121107,7 +119903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18401 + - uid: 18434 components: - type: Transform rot: -1.5707963267948966 rad @@ -121115,7 +119911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18402 + - uid: 18435 components: - type: Transform rot: -1.5707963267948966 rad @@ -121123,7 +119919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18403 + - uid: 18436 components: - type: Transform rot: -1.5707963267948966 rad @@ -121131,7 +119927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18404 + - uid: 18437 components: - type: Transform rot: -1.5707963267948966 rad @@ -121139,7 +119935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18405 + - uid: 18438 components: - type: Transform rot: -1.5707963267948966 rad @@ -121147,7 +119943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18406 + - uid: 18439 components: - type: Transform rot: -1.5707963267948966 rad @@ -121155,32 +119951,32 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18407 + - uid: 18440 components: - type: Transform pos: 1.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18408 + - uid: 18441 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 - - uid: 18409 + - uid: 18442 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 - - uid: 18410 + - uid: 18443 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 - - uid: 18411 + - uid: 18444 components: - type: Transform rot: -1.5707963267948966 rad @@ -121188,7 +119984,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18412 + - uid: 18445 components: - type: Transform rot: -1.5707963267948966 rad @@ -121196,7 +119992,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18413 + - uid: 18446 components: - type: Transform rot: -1.5707963267948966 rad @@ -121204,7 +120000,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18414 + - uid: 18447 components: - type: Transform rot: -1.5707963267948966 rad @@ -121212,7 +120008,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18415 + - uid: 18448 components: - type: Transform rot: -1.5707963267948966 rad @@ -121220,7 +120016,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18416 + - uid: 18449 components: - type: Transform rot: -1.5707963267948966 rad @@ -121228,7 +120024,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18417 + - uid: 18450 components: - type: Transform rot: -1.5707963267948966 rad @@ -121236,7 +120032,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18418 + - uid: 18451 components: - type: Transform rot: -1.5707963267948966 rad @@ -121244,7 +120040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18419 + - uid: 18452 components: - type: Transform rot: -1.5707963267948966 rad @@ -121252,7 +120048,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18420 + - uid: 18453 components: - type: Transform rot: -1.5707963267948966 rad @@ -121260,7 +120056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18421 + - uid: 18454 components: - type: Transform rot: -1.5707963267948966 rad @@ -121268,7 +120064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18422 + - uid: 18455 components: - type: Transform rot: -1.5707963267948966 rad @@ -121276,7 +120072,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18423 + - uid: 18456 components: - type: Transform rot: -1.5707963267948966 rad @@ -121284,7 +120080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18424 + - uid: 18457 components: - type: Transform rot: -1.5707963267948966 rad @@ -121292,7 +120088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18425 + - uid: 18458 components: - type: Transform rot: -1.5707963267948966 rad @@ -121300,49 +120096,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18426 + - uid: 18459 components: - type: Transform pos: 47.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18427 + - uid: 18460 components: - type: Transform pos: 47.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18428 + - uid: 18461 components: - type: Transform pos: 47.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18429 + - uid: 18462 components: - type: Transform pos: 45.5,48.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18430 + - uid: 18463 components: - type: Transform pos: 45.5,47.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18431 + - uid: 18464 components: - type: Transform pos: 45.5,46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18432 + - uid: 18465 components: - type: Transform rot: -1.5707963267948966 rad @@ -121350,7 +120146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18433 + - uid: 18466 components: - type: Transform rot: -1.5707963267948966 rad @@ -121358,7 +120154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18434 + - uid: 18467 components: - type: Transform rot: -1.5707963267948966 rad @@ -121366,7 +120162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18435 + - uid: 18468 components: - type: Transform rot: -1.5707963267948966 rad @@ -121374,7 +120170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18436 + - uid: 18469 components: - type: Transform rot: -1.5707963267948966 rad @@ -121382,7 +120178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18437 + - uid: 18470 components: - type: Transform rot: -1.5707963267948966 rad @@ -121390,7 +120186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18438 + - uid: 18471 components: - type: Transform rot: -1.5707963267948966 rad @@ -121398,7 +120194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18439 + - uid: 18472 components: - type: Transform rot: -1.5707963267948966 rad @@ -121406,7 +120202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18440 + - uid: 18473 components: - type: Transform rot: -1.5707963267948966 rad @@ -121414,7 +120210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18441 + - uid: 18474 components: - type: Transform rot: -1.5707963267948966 rad @@ -121422,7 +120218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18442 + - uid: 18475 components: - type: Transform rot: 3.141592653589793 rad @@ -121430,7 +120226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18443 + - uid: 18476 components: - type: Transform rot: 3.141592653589793 rad @@ -121438,7 +120234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18444 + - uid: 18477 components: - type: Transform rot: 3.141592653589793 rad @@ -121446,7 +120242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18445 + - uid: 18478 components: - type: Transform rot: 3.141592653589793 rad @@ -121454,7 +120250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18446 + - uid: 18479 components: - type: Transform rot: 3.141592653589793 rad @@ -121462,7 +120258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18447 + - uid: 18480 components: - type: Transform rot: 3.141592653589793 rad @@ -121470,7 +120266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18448 + - uid: 18481 components: - type: Transform rot: 3.141592653589793 rad @@ -121478,7 +120274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18449 + - uid: 18482 components: - type: Transform rot: 3.141592653589793 rad @@ -121486,7 +120282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18450 + - uid: 18483 components: - type: Transform rot: 3.141592653589793 rad @@ -121494,7 +120290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18451 + - uid: 18484 components: - type: Transform rot: 3.141592653589793 rad @@ -121502,7 +120298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18452 + - uid: 18485 components: - type: Transform rot: 3.141592653589793 rad @@ -121510,7 +120306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18453 + - uid: 18486 components: - type: Transform rot: 3.141592653589793 rad @@ -121518,7 +120314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18454 + - uid: 18487 components: - type: Transform rot: 3.141592653589793 rad @@ -121526,7 +120322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18455 + - uid: 18488 components: - type: Transform rot: 3.141592653589793 rad @@ -121534,7 +120330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18456 + - uid: 18489 components: - type: Transform rot: 3.141592653589793 rad @@ -121542,7 +120338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18457 + - uid: 18490 components: - type: Transform rot: 3.141592653589793 rad @@ -121550,7 +120346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18458 + - uid: 18491 components: - type: Transform rot: 1.5707963267948966 rad @@ -121558,7 +120354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18459 + - uid: 18492 components: - type: Transform rot: 1.5707963267948966 rad @@ -121566,91 +120362,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18460 + - uid: 18493 components: - type: Transform pos: -2.5,66.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18461 + - uid: 18494 components: - type: Transform pos: -2.5,65.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18462 + - uid: 18495 components: - type: Transform pos: -2.5,64.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18463 + - uid: 18496 components: - type: Transform pos: -2.5,63.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18464 + - uid: 18497 components: - type: Transform pos: -2.5,61.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18465 + - uid: 18498 components: - type: Transform pos: -2.5,60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18466 + - uid: 18499 components: - type: Transform pos: -2.5,59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18467 + - uid: 18500 components: - type: Transform pos: -1.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18468 + - uid: 18501 components: - type: Transform pos: -1.5,64.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18469 + - uid: 18502 components: - type: Transform pos: -1.5,63.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18470 + - uid: 18503 components: - type: Transform pos: -1.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18471 + - uid: 18504 components: - type: Transform pos: -1.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18472 + - uid: 18505 components: - type: Transform rot: -1.5707963267948966 rad @@ -121658,7 +120454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18473 + - uid: 18506 components: - type: Transform rot: -1.5707963267948966 rad @@ -121666,7 +120462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18474 + - uid: 18507 components: - type: Transform rot: -1.5707963267948966 rad @@ -121674,7 +120470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18475 + - uid: 18508 components: - type: Transform rot: -1.5707963267948966 rad @@ -121682,7 +120478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18476 + - uid: 18509 components: - type: Transform rot: -1.5707963267948966 rad @@ -121690,7 +120486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18477 + - uid: 18510 components: - type: Transform rot: -1.5707963267948966 rad @@ -121698,7 +120494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18478 + - uid: 18511 components: - type: Transform rot: -1.5707963267948966 rad @@ -121706,7 +120502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18479 + - uid: 18512 components: - type: Transform rot: -1.5707963267948966 rad @@ -121714,7 +120510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18480 + - uid: 18513 components: - type: Transform rot: -1.5707963267948966 rad @@ -121722,7 +120518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18481 + - uid: 18514 components: - type: Transform rot: -1.5707963267948966 rad @@ -121730,7 +120526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18482 + - uid: 18515 components: - type: Transform rot: -1.5707963267948966 rad @@ -121738,7 +120534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18483 + - uid: 18516 components: - type: Transform rot: -1.5707963267948966 rad @@ -121746,7 +120542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18484 + - uid: 18517 components: - type: Transform rot: -1.5707963267948966 rad @@ -121754,7 +120550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18485 + - uid: 18518 components: - type: Transform rot: -1.5707963267948966 rad @@ -121762,7 +120558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18486 + - uid: 18519 components: - type: Transform rot: -1.5707963267948966 rad @@ -121770,7 +120566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18487 + - uid: 18520 components: - type: Transform rot: -1.5707963267948966 rad @@ -121778,7 +120574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18488 + - uid: 18521 components: - type: Transform rot: -1.5707963267948966 rad @@ -121786,7 +120582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18489 + - uid: 18522 components: - type: Transform rot: -1.5707963267948966 rad @@ -121794,7 +120590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18490 + - uid: 18523 components: - type: Transform rot: -1.5707963267948966 rad @@ -121802,7 +120598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18491 + - uid: 18524 components: - type: Transform rot: -1.5707963267948966 rad @@ -121810,7 +120606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18492 + - uid: 18525 components: - type: Transform rot: -1.5707963267948966 rad @@ -121818,7 +120614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18493 + - uid: 18526 components: - type: Transform rot: -1.5707963267948966 rad @@ -121826,7 +120622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18494 + - uid: 18527 components: - type: Transform rot: -1.5707963267948966 rad @@ -121834,7 +120630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18495 + - uid: 18528 components: - type: Transform rot: -1.5707963267948966 rad @@ -121842,7 +120638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18496 + - uid: 18529 components: - type: Transform rot: 3.141592653589793 rad @@ -121850,7 +120646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18497 + - uid: 18530 components: - type: Transform rot: 3.141592653589793 rad @@ -121858,98 +120654,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18498 + - uid: 18531 components: - type: Transform pos: 1.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18499 + - uid: 18532 components: - type: Transform pos: 1.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18500 + - uid: 18533 components: - type: Transform pos: 1.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18501 + - uid: 18534 components: - type: Transform pos: 1.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18502 + - uid: 18535 components: - type: Transform pos: 1.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18503 + - uid: 18536 components: - type: Transform pos: 1.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18504 + - uid: 18537 components: - type: Transform pos: 1.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18505 + - uid: 18538 components: - type: Transform pos: -0.5,49.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18506 + - uid: 18539 components: - type: Transform pos: -0.5,50.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18507 + - uid: 18540 components: - type: Transform pos: -0.5,51.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18508 + - uid: 18541 components: - type: Transform pos: -0.5,52.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18509 + - uid: 18542 components: - type: Transform pos: -0.5,53.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18510 + - uid: 18543 components: - type: Transform pos: -0.5,54.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18511 + - uid: 18544 components: - type: Transform rot: -1.5707963267948966 rad @@ -121957,7 +120753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18512 + - uid: 18545 components: - type: Transform rot: -1.5707963267948966 rad @@ -121965,7 +120761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18513 + - uid: 18546 components: - type: Transform rot: -1.5707963267948966 rad @@ -121973,7 +120769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18514 + - uid: 18547 components: - type: Transform rot: -1.5707963267948966 rad @@ -121981,7 +120777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18515 + - uid: 18548 components: - type: Transform rot: -1.5707963267948966 rad @@ -121989,7 +120785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18516 + - uid: 18549 components: - type: Transform rot: -1.5707963267948966 rad @@ -121997,7 +120793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18517 + - uid: 18550 components: - type: Transform rot: 3.141592653589793 rad @@ -122005,7 +120801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18518 + - uid: 18551 components: - type: Transform rot: 3.141592653589793 rad @@ -122013,7 +120809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18519 + - uid: 18552 components: - type: Transform rot: 3.141592653589793 rad @@ -122021,7 +120817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18520 + - uid: 18553 components: - type: Transform rot: 3.141592653589793 rad @@ -122029,7 +120825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18521 + - uid: 18554 components: - type: Transform rot: 1.5707963267948966 rad @@ -122037,7 +120833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18522 + - uid: 18555 components: - type: Transform rot: 1.5707963267948966 rad @@ -122045,7 +120841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18523 + - uid: 18556 components: - type: Transform rot: 1.5707963267948966 rad @@ -122053,7 +120849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18524 + - uid: 18557 components: - type: Transform rot: 1.5707963267948966 rad @@ -122061,7 +120857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18525 + - uid: 18558 components: - type: Transform rot: 1.5707963267948966 rad @@ -122069,7 +120865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18526 + - uid: 18559 components: - type: Transform rot: 1.5707963267948966 rad @@ -122077,140 +120873,140 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18527 + - uid: 18560 components: - type: Transform pos: -21.5,52.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18528 + - uid: 18561 components: - type: Transform pos: -21.5,53.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18529 + - uid: 18562 components: - type: Transform pos: -21.5,54.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18530 + - uid: 18563 components: - type: Transform pos: -21.5,55.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18531 + - uid: 18564 components: - type: Transform pos: -21.5,56.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18532 + - uid: 18565 components: - type: Transform pos: -21.5,57.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18533 + - uid: 18566 components: - type: Transform pos: -22.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18534 + - uid: 18567 components: - type: Transform pos: -22.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18535 + - uid: 18568 components: - type: Transform pos: -22.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18536 + - uid: 18569 components: - type: Transform pos: -22.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18537 + - uid: 18570 components: - type: Transform pos: -22.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18538 + - uid: 18571 components: - type: Transform pos: -22.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18539 + - uid: 18572 components: - type: Transform pos: -22.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18540 + - uid: 18573 components: - type: Transform pos: -22.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18541 + - uid: 18574 components: - type: Transform pos: -22.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18542 + - uid: 18575 components: - type: Transform pos: -21.5,59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18543 + - uid: 18576 components: - type: Transform pos: -21.5,60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18544 + - uid: 18577 components: - type: Transform pos: -21.5,61.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18545 + - uid: 18578 components: - type: Transform pos: -22.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18546 + - uid: 18579 components: - type: Transform rot: -1.5707963267948966 rad @@ -122218,7 +121014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18547 + - uid: 18580 components: - type: Transform rot: -1.5707963267948966 rad @@ -122226,7 +121022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18548 + - uid: 18581 components: - type: Transform rot: -1.5707963267948966 rad @@ -122234,7 +121030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18549 + - uid: 18582 components: - type: Transform rot: -1.5707963267948966 rad @@ -122242,7 +121038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18550 + - uid: 18583 components: - type: Transform rot: -1.5707963267948966 rad @@ -122250,7 +121046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18551 + - uid: 18584 components: - type: Transform rot: -1.5707963267948966 rad @@ -122258,7 +121054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18552 + - uid: 18585 components: - type: Transform rot: -1.5707963267948966 rad @@ -122266,140 +121062,140 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18553 + - uid: 18586 components: - type: Transform pos: -22.5,63.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18554 + - uid: 18587 components: - type: Transform pos: -22.5,64.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18555 + - uid: 18588 components: - type: Transform pos: -22.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18556 + - uid: 18589 components: - type: Transform pos: -22.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18557 + - uid: 18590 components: - type: Transform pos: -22.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18558 + - uid: 18591 components: - type: Transform pos: -22.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18559 + - uid: 18592 components: - type: Transform pos: -22.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18560 + - uid: 18593 components: - type: Transform pos: -22.5,71.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18561 + - uid: 18594 components: - type: Transform pos: -22.5,72.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18562 + - uid: 18595 components: - type: Transform pos: -21.5,63.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18563 + - uid: 18596 components: - type: Transform pos: -21.5,64.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18564 + - uid: 18597 components: - type: Transform pos: -21.5,65.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18565 + - uid: 18598 components: - type: Transform pos: -21.5,66.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18566 + - uid: 18599 components: - type: Transform pos: -21.5,67.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18567 + - uid: 18600 components: - type: Transform pos: -21.5,68.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18568 + - uid: 18601 components: - type: Transform pos: -21.5,69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18569 + - uid: 18602 components: - type: Transform pos: -21.5,70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18570 + - uid: 18603 components: - type: Transform pos: -21.5,71.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18571 + - uid: 18604 components: - type: Transform pos: -21.5,72.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18572 + - uid: 18605 components: - type: Transform rot: -1.5707963267948966 rad @@ -122407,7 +121203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18573 + - uid: 18606 components: - type: Transform rot: -1.5707963267948966 rad @@ -122415,7 +121211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18574 + - uid: 18607 components: - type: Transform rot: -1.5707963267948966 rad @@ -122423,7 +121219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18575 + - uid: 18608 components: - type: Transform rot: -1.5707963267948966 rad @@ -122431,7 +121227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18576 + - uid: 18609 components: - type: Transform rot: -1.5707963267948966 rad @@ -122439,7 +121235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18577 + - uid: 18610 components: - type: Transform rot: -1.5707963267948966 rad @@ -122447,7 +121243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18578 + - uid: 18611 components: - type: Transform rot: -1.5707963267948966 rad @@ -122455,168 +121251,168 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18579 + - uid: 18612 components: - type: Transform pos: -13.5,61.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18580 + - uid: 18613 components: - type: Transform pos: -13.5,60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18581 + - uid: 18614 components: - type: Transform pos: -13.5,59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18582 + - uid: 18615 components: - type: Transform pos: -12.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18583 + - uid: 18616 components: - type: Transform pos: -12.5,63.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18584 + - uid: 18617 components: - type: Transform pos: -12.5,64.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18585 + - uid: 18618 components: - type: Transform pos: -12.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18586 + - uid: 18619 components: - type: Transform pos: -12.5,66.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18587 + - uid: 18620 components: - type: Transform pos: -12.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18588 + - uid: 18621 components: - type: Transform pos: -12.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18589 + - uid: 18622 components: - type: Transform pos: -12.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18590 + - uid: 18623 components: - type: Transform pos: -12.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18591 + - uid: 18624 components: - type: Transform pos: -12.5,71.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18592 + - uid: 18625 components: - type: Transform pos: -12.5,72.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18593 + - uid: 18626 components: - type: Transform pos: -13.5,63.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18594 + - uid: 18627 components: - type: Transform pos: -13.5,64.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18595 + - uid: 18628 components: - type: Transform pos: -13.5,65.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18596 + - uid: 18629 components: - type: Transform pos: -13.5,67.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18597 + - uid: 18630 components: - type: Transform pos: -13.5,68.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18598 + - uid: 18631 components: - type: Transform pos: -13.5,69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18599 + - uid: 18632 components: - type: Transform pos: -13.5,70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18600 + - uid: 18633 components: - type: Transform pos: -13.5,71.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18601 + - uid: 18634 components: - type: Transform pos: -13.5,72.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18602 + - uid: 18635 components: - type: Transform rot: 1.5707963267948966 rad @@ -122624,7 +121420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18603 + - uid: 18636 components: - type: Transform rot: 1.5707963267948966 rad @@ -122632,7 +121428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18604 + - uid: 18637 components: - type: Transform rot: 1.5707963267948966 rad @@ -122640,7 +121436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18605 + - uid: 18638 components: - type: Transform rot: 1.5707963267948966 rad @@ -122648,7 +121444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18606 + - uid: 18639 components: - type: Transform rot: 1.5707963267948966 rad @@ -122656,7 +121452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18607 + - uid: 18640 components: - type: Transform rot: 1.5707963267948966 rad @@ -122664,7 +121460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18608 + - uid: 18641 components: - type: Transform rot: 1.5707963267948966 rad @@ -122672,7 +121468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18609 + - uid: 18642 components: - type: Transform rot: 1.5707963267948966 rad @@ -122680,7 +121476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18610 + - uid: 18643 components: - type: Transform rot: 1.5707963267948966 rad @@ -122688,7 +121484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18611 + - uid: 18644 components: - type: Transform rot: 1.5707963267948966 rad @@ -122696,7 +121492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18612 + - uid: 18645 components: - type: Transform rot: 1.5707963267948966 rad @@ -122704,7 +121500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18613 + - uid: 18646 components: - type: Transform rot: 1.5707963267948966 rad @@ -122712,7 +121508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18614 + - uid: 18647 components: - type: Transform rot: 1.5707963267948966 rad @@ -122720,7 +121516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18615 + - uid: 18648 components: - type: Transform rot: 1.5707963267948966 rad @@ -122728,7 +121524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18616 + - uid: 18649 components: - type: Transform rot: 1.5707963267948966 rad @@ -122736,7 +121532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18617 + - uid: 18650 components: - type: Transform rot: 1.5707963267948966 rad @@ -122744,98 +121540,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18618 + - uid: 18651 components: - type: Transform pos: -12.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18619 + - uid: 18652 components: - type: Transform pos: -12.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18620 + - uid: 18653 components: - type: Transform pos: -12.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18621 + - uid: 18654 components: - type: Transform pos: -12.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18622 + - uid: 18655 components: - type: Transform pos: -12.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18623 + - uid: 18656 components: - type: Transform pos: -12.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18624 + - uid: 18657 components: - type: Transform pos: -12.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18625 + - uid: 18658 components: - type: Transform pos: -12.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18626 + - uid: 18659 components: - type: Transform pos: -13.5,56.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18627 + - uid: 18660 components: - type: Transform pos: -13.5,55.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18628 + - uid: 18661 components: - type: Transform pos: -13.5,54.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18629 + - uid: 18662 components: - type: Transform pos: -13.5,53.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18630 + - uid: 18663 components: - type: Transform pos: -13.5,52.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18631 + - uid: 18664 components: - type: Transform rot: 1.5707963267948966 rad @@ -122843,7 +121639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18632 + - uid: 18665 components: - type: Transform rot: 1.5707963267948966 rad @@ -122851,7 +121647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18633 + - uid: 18666 components: - type: Transform rot: 1.5707963267948966 rad @@ -122859,7 +121655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18634 + - uid: 18667 components: - type: Transform rot: 1.5707963267948966 rad @@ -122867,7 +121663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18635 + - uid: 18668 components: - type: Transform rot: -1.5707963267948966 rad @@ -122875,7 +121671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18636 + - uid: 18669 components: - type: Transform rot: 1.5707963267948966 rad @@ -122883,14 +121679,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18637 + - uid: 18670 components: - type: Transform pos: -0.5,57.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18638 + - uid: 18671 components: - type: Transform rot: 1.5707963267948966 rad @@ -122898,35 +121694,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18639 + - uid: 18672 components: - type: Transform pos: -0.5,55.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18640 + - uid: 18673 components: - type: Transform pos: 1.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18641 + - uid: 18674 components: - type: Transform pos: 1.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18642 + - uid: 18675 components: - type: Transform pos: 1.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18643 + - uid: 18676 components: - type: Transform rot: -1.5707963267948966 rad @@ -122934,7 +121730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18644 + - uid: 18677 components: - type: Transform rot: -1.5707963267948966 rad @@ -122942,7 +121738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18645 + - uid: 18678 components: - type: Transform rot: -1.5707963267948966 rad @@ -122950,7 +121746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18646 + - uid: 18679 components: - type: Transform rot: -1.5707963267948966 rad @@ -122958,7 +121754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18647 + - uid: 18680 components: - type: Transform rot: -1.5707963267948966 rad @@ -122966,7 +121762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18648 + - uid: 18681 components: - type: Transform rot: -1.5707963267948966 rad @@ -122974,7 +121770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18649 + - uid: 18682 components: - type: Transform rot: -1.5707963267948966 rad @@ -122982,7 +121778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18650 + - uid: 18683 components: - type: Transform rot: -1.5707963267948966 rad @@ -122990,7 +121786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18651 + - uid: 18684 components: - type: Transform rot: -1.5707963267948966 rad @@ -122998,7 +121794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18652 + - uid: 18685 components: - type: Transform rot: -1.5707963267948966 rad @@ -123006,7 +121802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18653 + - uid: 18686 components: - type: Transform rot: -1.5707963267948966 rad @@ -123014,7 +121810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18654 + - uid: 18687 components: - type: Transform rot: -1.5707963267948966 rad @@ -123022,7 +121818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18655 + - uid: 18688 components: - type: Transform rot: -1.5707963267948966 rad @@ -123030,7 +121826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18656 + - uid: 18689 components: - type: Transform rot: -1.5707963267948966 rad @@ -123038,7 +121834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18657 + - uid: 18690 components: - type: Transform rot: -1.5707963267948966 rad @@ -123046,7 +121842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18658 + - uid: 18691 components: - type: Transform rot: -1.5707963267948966 rad @@ -123054,7 +121850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18659 + - uid: 18692 components: - type: Transform rot: -1.5707963267948966 rad @@ -123062,7 +121858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18660 + - uid: 18693 components: - type: Transform rot: -1.5707963267948966 rad @@ -123070,7 +121866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18661 + - uid: 18694 components: - type: Transform rot: 1.5707963267948966 rad @@ -123078,7 +121874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18662 + - uid: 18695 components: - type: Transform rot: 1.5707963267948966 rad @@ -123086,7 +121882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18663 + - uid: 18696 components: - type: Transform rot: 1.5707963267948966 rad @@ -123094,7 +121890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18664 + - uid: 18697 components: - type: Transform rot: 1.5707963267948966 rad @@ -123102,7 +121898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18665 + - uid: 18698 components: - type: Transform rot: 1.5707963267948966 rad @@ -123110,7 +121906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18666 + - uid: 18699 components: - type: Transform rot: 1.5707963267948966 rad @@ -123118,7 +121914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18667 + - uid: 18700 components: - type: Transform rot: 1.5707963267948966 rad @@ -123126,7 +121922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18668 + - uid: 18701 components: - type: Transform rot: 1.5707963267948966 rad @@ -123134,7 +121930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18669 + - uid: 18702 components: - type: Transform rot: 1.5707963267948966 rad @@ -123142,7 +121938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18670 + - uid: 18703 components: - type: Transform rot: 1.5707963267948966 rad @@ -123150,7 +121946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18671 + - uid: 18704 components: - type: Transform rot: 3.141592653589793 rad @@ -123158,98 +121954,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18672 + - uid: 18705 components: - type: Transform pos: -22.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18673 + - uid: 18706 components: - type: Transform pos: -22.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18674 + - uid: 18707 components: - type: Transform pos: -22.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18675 + - uid: 18708 components: - type: Transform pos: -22.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18676 + - uid: 18709 components: - type: Transform pos: -22.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18677 + - uid: 18710 components: - type: Transform pos: -22.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18678 + - uid: 18711 components: - type: Transform pos: -20.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18679 + - uid: 18712 components: - type: Transform pos: -20.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18680 + - uid: 18713 components: - type: Transform pos: -20.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18681 + - uid: 18714 components: - type: Transform pos: -20.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18682 + - uid: 18715 components: - type: Transform pos: -20.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18683 + - uid: 18716 components: - type: Transform pos: -20.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18684 + - uid: 18717 components: - type: Transform pos: -20.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18685 + - uid: 18718 components: - type: Transform rot: 3.141592653589793 rad @@ -123257,7 +122053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18686 + - uid: 18719 components: - type: Transform rot: 1.5707963267948966 rad @@ -123265,7 +122061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18687 + - uid: 18720 components: - type: Transform rot: 1.5707963267948966 rad @@ -123273,7 +122069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18688 + - uid: 18721 components: - type: Transform rot: 1.5707963267948966 rad @@ -123281,7 +122077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18689 + - uid: 18722 components: - type: Transform rot: 1.5707963267948966 rad @@ -123289,7 +122085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18690 + - uid: 18723 components: - type: Transform rot: 1.5707963267948966 rad @@ -123297,7 +122093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18691 + - uid: 18724 components: - type: Transform rot: 1.5707963267948966 rad @@ -123305,7 +122101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18692 + - uid: 18725 components: - type: Transform rot: 1.5707963267948966 rad @@ -123313,7 +122109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18693 + - uid: 18726 components: - type: Transform rot: 1.5707963267948966 rad @@ -123321,7 +122117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18694 + - uid: 18727 components: - type: Transform rot: 1.5707963267948966 rad @@ -123329,7 +122125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18695 + - uid: 18728 components: - type: Transform rot: 1.5707963267948966 rad @@ -123337,7 +122133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18696 + - uid: 18729 components: - type: Transform rot: 1.5707963267948966 rad @@ -123345,7 +122141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18697 + - uid: 18730 components: - type: Transform rot: 1.5707963267948966 rad @@ -123353,7 +122149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18698 + - uid: 18731 components: - type: Transform rot: 1.5707963267948966 rad @@ -123361,7 +122157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18699 + - uid: 18732 components: - type: Transform rot: 1.5707963267948966 rad @@ -123369,7 +122165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18700 + - uid: 18733 components: - type: Transform rot: 1.5707963267948966 rad @@ -123377,7 +122173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18701 + - uid: 18734 components: - type: Transform rot: 1.5707963267948966 rad @@ -123385,7 +122181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18702 + - uid: 18735 components: - type: Transform rot: 1.5707963267948966 rad @@ -123393,7 +122189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18703 + - uid: 18736 components: - type: Transform rot: 1.5707963267948966 rad @@ -123401,7 +122197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18704 + - uid: 18737 components: - type: Transform rot: 1.5707963267948966 rad @@ -123409,7 +122205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18705 + - uid: 18738 components: - type: Transform rot: 1.5707963267948966 rad @@ -123417,7 +122213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18706 + - uid: 18739 components: - type: Transform rot: 1.5707963267948966 rad @@ -123425,7 +122221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18707 + - uid: 18740 components: - type: Transform rot: 1.5707963267948966 rad @@ -123433,7 +122229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18708 + - uid: 18741 components: - type: Transform rot: 1.5707963267948966 rad @@ -123441,7 +122237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18709 + - uid: 18742 components: - type: Transform rot: 1.5707963267948966 rad @@ -123449,7 +122245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18710 + - uid: 18743 components: - type: Transform rot: 1.5707963267948966 rad @@ -123457,7 +122253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18711 + - uid: 18744 components: - type: Transform rot: 1.5707963267948966 rad @@ -123465,7 +122261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18712 + - uid: 18745 components: - type: Transform rot: 1.5707963267948966 rad @@ -123473,7 +122269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18713 + - uid: 18746 components: - type: Transform rot: 1.5707963267948966 rad @@ -123481,7 +122277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18714 + - uid: 18747 components: - type: Transform rot: 1.5707963267948966 rad @@ -123489,7 +122285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18715 + - uid: 18748 components: - type: Transform rot: 1.5707963267948966 rad @@ -123497,7 +122293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18716 + - uid: 18749 components: - type: Transform rot: 1.5707963267948966 rad @@ -123505,7 +122301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18717 + - uid: 18750 components: - type: Transform rot: 1.5707963267948966 rad @@ -123513,7 +122309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18718 + - uid: 18751 components: - type: Transform rot: 1.5707963267948966 rad @@ -123521,7 +122317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18719 + - uid: 18752 components: - type: Transform rot: 1.5707963267948966 rad @@ -123529,7 +122325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18720 + - uid: 18753 components: - type: Transform rot: 1.5707963267948966 rad @@ -123537,7 +122333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18721 + - uid: 18754 components: - type: Transform rot: 1.5707963267948966 rad @@ -123545,7 +122341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18722 + - uid: 18755 components: - type: Transform rot: 1.5707963267948966 rad @@ -123553,7 +122349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18723 + - uid: 18756 components: - type: Transform rot: 1.5707963267948966 rad @@ -123561,7 +122357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18724 + - uid: 18757 components: - type: Transform rot: 1.5707963267948966 rad @@ -123569,7 +122365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18725 + - uid: 18758 components: - type: Transform rot: 1.5707963267948966 rad @@ -123577,7 +122373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18726 + - uid: 18759 components: - type: Transform rot: 1.5707963267948966 rad @@ -123585,7 +122381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18727 + - uid: 18760 components: - type: Transform rot: 1.5707963267948966 rad @@ -123593,112 +122389,112 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18728 + - uid: 18761 components: - type: Transform pos: -8.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18729 + - uid: 18762 components: - type: Transform pos: -8.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18730 + - uid: 18763 components: - type: Transform pos: -8.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18731 + - uid: 18764 components: - type: Transform pos: -8.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18732 + - uid: 18765 components: - type: Transform pos: -8.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18733 + - uid: 18766 components: - type: Transform pos: -7.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18734 + - uid: 18767 components: - type: Transform pos: -7.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18735 + - uid: 18768 components: - type: Transform pos: -7.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18736 + - uid: 18769 components: - type: Transform pos: -7.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18737 + - uid: 18770 components: - type: Transform pos: -8.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18738 + - uid: 18771 components: - type: Transform pos: -8.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18739 + - uid: 18772 components: - type: Transform pos: -8.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18740 + - uid: 18773 components: - type: Transform pos: -8.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18741 + - uid: 18774 components: - type: Transform pos: -8.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18742 + - uid: 18775 components: - type: Transform pos: -8.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18743 + - uid: 18776 components: - type: Transform rot: 3.141592653589793 rad @@ -123706,7 +122502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18744 + - uid: 18777 components: - type: Transform rot: 3.141592653589793 rad @@ -123714,7 +122510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18745 + - uid: 18778 components: - type: Transform rot: 3.141592653589793 rad @@ -123722,7 +122518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18746 + - uid: 18779 components: - type: Transform rot: 3.141592653589793 rad @@ -123730,7 +122526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18747 + - uid: 18780 components: - type: Transform rot: 3.141592653589793 rad @@ -123738,7 +122534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18748 + - uid: 18781 components: - type: Transform rot: 3.141592653589793 rad @@ -123746,7 +122542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18749 + - uid: 18782 components: - type: Transform rot: 3.141592653589793 rad @@ -123754,7 +122550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18750 + - uid: 18783 components: - type: Transform rot: -1.5707963267948966 rad @@ -123762,7 +122558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18751 + - uid: 18784 components: - type: Transform rot: -1.5707963267948966 rad @@ -123770,7 +122566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18752 + - uid: 18785 components: - type: Transform rot: -1.5707963267948966 rad @@ -123778,7 +122574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18753 + - uid: 18786 components: - type: Transform rot: -1.5707963267948966 rad @@ -123786,7 +122582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18754 + - uid: 18787 components: - type: Transform rot: -1.5707963267948966 rad @@ -123794,7 +122590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18755 + - uid: 18788 components: - type: Transform rot: -1.5707963267948966 rad @@ -123802,7 +122598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18756 + - uid: 18789 components: - type: Transform rot: 1.5707963267948966 rad @@ -123810,7 +122606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18757 + - uid: 18790 components: - type: Transform rot: 1.5707963267948966 rad @@ -123818,14 +122614,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18758 + - uid: 18791 components: - type: Transform pos: 70.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18759 + - uid: 18792 components: - type: Transform rot: -1.5707963267948966 rad @@ -123833,7 +122629,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18760 + - uid: 18793 components: - type: Transform rot: -1.5707963267948966 rad @@ -123841,7 +122637,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18761 + - uid: 18794 components: - type: Transform rot: -1.5707963267948966 rad @@ -123849,7 +122645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18762 + - uid: 18795 components: - type: Transform rot: -1.5707963267948966 rad @@ -123857,7 +122653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18763 + - uid: 18796 components: - type: Transform rot: -1.5707963267948966 rad @@ -123865,7 +122661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18764 + - uid: 18797 components: - type: Transform rot: -1.5707963267948966 rad @@ -123873,7 +122669,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18765 + - uid: 18798 components: - type: Transform rot: -1.5707963267948966 rad @@ -123881,7 +122677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18766 + - uid: 18799 components: - type: Transform rot: -1.5707963267948966 rad @@ -123889,7 +122685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18767 + - uid: 18800 components: - type: Transform rot: -1.5707963267948966 rad @@ -123897,7 +122693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18768 + - uid: 18801 components: - type: Transform rot: -1.5707963267948966 rad @@ -123905,7 +122701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18769 + - uid: 18802 components: - type: Transform rot: -1.5707963267948966 rad @@ -123913,7 +122709,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18770 + - uid: 18803 components: - type: Transform rot: -1.5707963267948966 rad @@ -123921,14 +122717,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18771 + - uid: 18804 components: - type: Transform pos: 72.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 18772 + - uid: 18805 components: - type: Transform rot: -1.5707963267948966 rad @@ -123936,7 +122732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18773 + - uid: 18806 components: - type: Transform rot: -1.5707963267948966 rad @@ -123944,70 +122740,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18774 + - uid: 18807 components: - type: Transform pos: 74.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18775 + - uid: 18808 components: - type: Transform pos: 74.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18776 + - uid: 18809 components: - type: Transform pos: 74.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18777 + - uid: 18810 components: - type: Transform pos: 74.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18778 + - uid: 18811 components: - type: Transform pos: 74.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18779 + - uid: 18812 components: - type: Transform pos: 74.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18780 + - uid: 18813 components: - type: Transform pos: 75.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18781 + - uid: 18814 components: - type: Transform pos: 75.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18782 + - uid: 18815 components: - type: Transform pos: 75.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18783 + - uid: 18816 components: - type: Transform rot: 1.5707963267948966 rad @@ -124015,21 +122811,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18784 + - uid: 18817 components: - type: Transform pos: 75.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18785 + - uid: 18818 components: - type: Transform pos: 75.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18786 + - uid: 18819 components: - type: Transform rot: 3.141592653589793 rad @@ -124037,7 +122833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 18787 + - uid: 18820 components: - type: Transform rot: 3.141592653589793 rad @@ -124045,7 +122841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18788 + - uid: 18821 components: - type: Transform rot: 3.141592653589793 rad @@ -124053,7 +122849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18789 + - uid: 18822 components: - type: Transform rot: 3.141592653589793 rad @@ -124061,7 +122857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18790 + - uid: 18823 components: - type: Transform rot: 3.141592653589793 rad @@ -124069,7 +122865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18791 + - uid: 18824 components: - type: Transform rot: 3.141592653589793 rad @@ -124077,7 +122873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18792 + - uid: 18825 components: - type: Transform rot: 3.141592653589793 rad @@ -124085,7 +122881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18793 + - uid: 18826 components: - type: Transform rot: 3.141592653589793 rad @@ -124093,7 +122889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18794 + - uid: 18827 components: - type: Transform rot: 3.141592653589793 rad @@ -124101,7 +122897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18795 + - uid: 18828 components: - type: Transform rot: 1.5707963267948966 rad @@ -124109,7 +122905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18796 + - uid: 18829 components: - type: Transform rot: 1.5707963267948966 rad @@ -124117,7 +122913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18797 + - uid: 18830 components: - type: Transform rot: 1.5707963267948966 rad @@ -124125,7 +122921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18798 + - uid: 18831 components: - type: Transform rot: -1.5707963267948966 rad @@ -124133,7 +122929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18799 + - uid: 18832 components: - type: Transform rot: -1.5707963267948966 rad @@ -124141,21 +122937,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18800 + - uid: 18833 components: - type: Transform pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18801 + - uid: 18834 components: - type: Transform pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18802 + - uid: 18835 components: - type: Transform rot: -1.5707963267948966 rad @@ -124163,7 +122959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18803 + - uid: 18836 components: - type: Transform rot: -1.5707963267948966 rad @@ -124171,14 +122967,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18804 + - uid: 18837 components: - type: Transform pos: 66.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18805 + - uid: 18838 components: - type: Transform rot: 1.5707963267948966 rad @@ -124186,7 +122982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18806 + - uid: 18839 components: - type: Transform rot: -1.5707963267948966 rad @@ -124194,7 +122990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18807 + - uid: 18840 components: - type: Transform rot: -1.5707963267948966 rad @@ -124202,7 +122998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18808 + - uid: 18841 components: - type: Transform rot: -1.5707963267948966 rad @@ -124210,7 +123006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 18809 + - uid: 18842 components: - type: Transform rot: -1.5707963267948966 rad @@ -124218,14 +123014,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18810 + - uid: 18843 components: - type: Transform pos: 71.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 18811 + - uid: 18844 components: - type: Transform rot: 1.5707963267948966 rad @@ -124233,7 +123029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18812 + - uid: 18845 components: - type: Transform rot: 1.5707963267948966 rad @@ -124241,12 +123037,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18813 + - uid: 18846 components: - type: Transform pos: -55.5,-62.5 parent: 2 - - uid: 18814 + - uid: 18847 components: - type: Transform rot: -1.5707963267948966 rad @@ -124254,7 +123050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 18815 + - uid: 18848 components: - type: Transform rot: -1.5707963267948966 rad @@ -124262,7 +123058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 18816 + - uid: 18849 components: - type: Transform rot: 3.141592653589793 rad @@ -124270,7 +123066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18817 + - uid: 18850 components: - type: Transform rot: 3.141592653589793 rad @@ -124278,21 +123074,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18818 + - uid: 18851 components: - type: Transform pos: 5.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18819 + - uid: 18852 components: - type: Transform pos: 5.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18820 + - uid: 18853 components: - type: Transform rot: 1.5707963267948966 rad @@ -124300,35 +123096,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18821 + - uid: 18854 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-50.5 parent: 2 - - uid: 18822 + - uid: 18855 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 - - uid: 18823 + - uid: 18856 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 - - uid: 18824 + - uid: 18857 components: - type: Transform pos: -54.5,-62.5 parent: 2 - - uid: 18825 + - uid: 18858 components: - type: Transform pos: -54.5,-61.5 parent: 2 - - uid: 18826 + - uid: 18859 components: - type: Transform rot: -1.5707963267948966 rad @@ -124336,7 +123132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18827 + - uid: 18860 components: - type: Transform rot: -1.5707963267948966 rad @@ -124344,7 +123140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18828 + - uid: 18861 components: - type: Transform rot: -1.5707963267948966 rad @@ -124352,7 +123148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18829 + - uid: 18862 components: - type: Transform rot: -1.5707963267948966 rad @@ -124360,7 +123156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18830 + - uid: 18863 components: - type: Transform rot: -1.5707963267948966 rad @@ -124368,7 +123164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18831 + - uid: 18864 components: - type: Transform rot: -1.5707963267948966 rad @@ -124376,7 +123172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18832 + - uid: 18865 components: - type: Transform rot: 1.5707963267948966 rad @@ -124384,7 +123180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18833 + - uid: 18866 components: - type: Transform rot: 1.5707963267948966 rad @@ -124392,7 +123188,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18834 + - uid: 18867 components: - type: Transform rot: 1.5707963267948966 rad @@ -124400,7 +123196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18835 + - uid: 18868 components: - type: Transform rot: 1.5707963267948966 rad @@ -124408,7 +123204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18836 + - uid: 18869 components: - type: Transform rot: 1.5707963267948966 rad @@ -124416,7 +123212,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18837 + - uid: 18870 components: - type: Transform rot: 1.5707963267948966 rad @@ -124424,7 +123220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18838 + - uid: 18871 components: - type: Transform rot: 1.5707963267948966 rad @@ -124432,7 +123228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18839 + - uid: 18872 components: - type: Transform rot: 1.5707963267948966 rad @@ -124440,7 +123236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18840 + - uid: 18873 components: - type: Transform rot: 1.5707963267948966 rad @@ -124448,7 +123244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18841 + - uid: 18874 components: - type: Transform rot: 1.5707963267948966 rad @@ -124456,7 +123252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18842 + - uid: 18875 components: - type: Transform rot: 1.5707963267948966 rad @@ -124464,7 +123260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18843 + - uid: 18876 components: - type: Transform rot: 1.5707963267948966 rad @@ -124472,7 +123268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18844 + - uid: 18877 components: - type: Transform rot: 1.5707963267948966 rad @@ -124480,7 +123276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18845 + - uid: 18878 components: - type: Transform rot: 1.5707963267948966 rad @@ -124488,7 +123284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18846 + - uid: 18879 components: - type: Transform rot: 1.5707963267948966 rad @@ -124496,7 +123292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18847 + - uid: 18880 components: - type: Transform rot: -1.5707963267948966 rad @@ -124504,7 +123300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18848 + - uid: 18881 components: - type: Transform rot: -1.5707963267948966 rad @@ -124512,14 +123308,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 18849 + - uid: 18882 components: - type: Transform pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18850 + - uid: 18883 components: - type: Transform rot: -1.5707963267948966 rad @@ -124527,7 +123323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18851 + - uid: 18884 components: - type: Transform rot: -1.5707963267948966 rad @@ -124535,7 +123331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18852 + - uid: 18885 components: - type: Transform rot: -1.5707963267948966 rad @@ -124543,7 +123339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18853 + - uid: 18886 components: - type: Transform rot: -1.5707963267948966 rad @@ -124551,7 +123347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18854 + - uid: 18887 components: - type: Transform rot: -1.5707963267948966 rad @@ -124559,7 +123355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18855 + - uid: 18888 components: - type: Transform rot: -1.5707963267948966 rad @@ -124567,7 +123363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18856 + - uid: 18889 components: - type: Transform rot: 3.141592653589793 rad @@ -124575,7 +123371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18857 + - uid: 18890 components: - type: Transform rot: 3.141592653589793 rad @@ -124583,7 +123379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18858 + - uid: 18891 components: - type: Transform rot: 3.141592653589793 rad @@ -124591,7 +123387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18859 + - uid: 18892 components: - type: Transform rot: 3.141592653589793 rad @@ -124599,7 +123395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18860 + - uid: 18893 components: - type: Transform rot: 3.141592653589793 rad @@ -124607,7 +123403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18861 + - uid: 18894 components: - type: Transform rot: 3.141592653589793 rad @@ -124615,7 +123411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18862 + - uid: 18895 components: - type: Transform rot: -1.5707963267948966 rad @@ -124623,14 +123419,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18863 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18864 + - uid: 18896 components: - type: Transform rot: 3.141592653589793 rad @@ -124638,7 +123427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18865 + - uid: 18897 components: - type: Transform rot: 3.141592653589793 rad @@ -124646,7 +123435,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18866 + - uid: 18898 components: - type: Transform rot: 3.141592653589793 rad @@ -124654,7 +123443,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18867 + - uid: 18899 components: - type: Transform rot: 3.141592653589793 rad @@ -124662,7 +123451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18868 + - uid: 18900 components: - type: Transform rot: 1.5707963267948966 rad @@ -124670,7 +123459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18869 + - uid: 18901 components: - type: Transform rot: 1.5707963267948966 rad @@ -124678,25 +123467,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18870 + - uid: 18902 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-35.5 parent: 2 - - uid: 18871 + - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-35.5 parent: 2 - - uid: 18872 + - uid: 18904 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-35.5 parent: 2 - - uid: 18873 + - uid: 18905 components: - type: Transform rot: 3.141592653589793 rad @@ -124704,7 +123493,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18874 + - uid: 18906 components: - type: Transform rot: 3.141592653589793 rad @@ -124712,7 +123501,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18875 + - uid: 18907 components: - type: Transform rot: 3.141592653589793 rad @@ -124720,7 +123509,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18876 + - uid: 18908 components: - type: Transform rot: 3.141592653589793 rad @@ -124728,7 +123517,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18877 + - uid: 18909 components: - type: Transform rot: 3.141592653589793 rad @@ -124736,7 +123525,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18878 + - uid: 18910 components: - type: Transform rot: 1.5707963267948966 rad @@ -124744,7 +123533,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18879 + - uid: 18911 components: - type: Transform rot: 3.141592653589793 rad @@ -124752,7 +123541,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18880 + - uid: 18912 components: - type: Transform rot: 1.5707963267948966 rad @@ -124760,7 +123549,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18881 + - uid: 18913 components: - type: Transform rot: 3.141592653589793 rad @@ -124768,7 +123557,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18882 + - uid: 18914 components: - type: Transform rot: 1.5707963267948966 rad @@ -124776,7 +123565,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18883 + - uid: 18915 components: - type: Transform rot: 1.5707963267948966 rad @@ -124784,7 +123573,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18884 + - uid: 18916 components: - type: Transform rot: 1.5707963267948966 rad @@ -124792,7 +123581,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18885 + - uid: 18917 components: - type: Transform rot: 1.5707963267948966 rad @@ -124800,7 +123589,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18886 + - uid: 18918 components: - type: Transform rot: 1.5707963267948966 rad @@ -124808,7 +123597,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18887 + - uid: 18919 components: - type: Transform rot: 1.5707963267948966 rad @@ -124816,7 +123605,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18888 + - uid: 18920 components: - type: Transform rot: 1.5707963267948966 rad @@ -124824,7 +123613,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18889 + - uid: 18921 components: - type: Transform rot: 1.5707963267948966 rad @@ -124832,7 +123621,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18890 + - uid: 18922 components: - type: Transform rot: 1.5707963267948966 rad @@ -124840,7 +123629,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18891 + - uid: 18923 components: - type: Transform rot: 1.5707963267948966 rad @@ -124848,7 +123637,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18892 + - uid: 18924 components: - type: Transform rot: 1.5707963267948966 rad @@ -124856,7 +123645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18893 + - uid: 18925 components: - type: Transform rot: 1.5707963267948966 rad @@ -124864,7 +123653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18894 + - uid: 18926 components: - type: Transform rot: 1.5707963267948966 rad @@ -124872,7 +123661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18895 + - uid: 18927 components: - type: Transform rot: 3.141592653589793 rad @@ -124880,7 +123669,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18896 + - uid: 18928 components: - type: Transform rot: 1.5707963267948966 rad @@ -124888,7 +123677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18897 + - uid: 18929 components: - type: Transform rot: 1.5707963267948966 rad @@ -124896,7 +123685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18898 + - uid: 18930 components: - type: Transform rot: 1.5707963267948966 rad @@ -124904,7 +123693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18899 + - uid: 18931 components: - type: Transform rot: -1.5707963267948966 rad @@ -124912,7 +123701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18900 + - uid: 18932 components: - type: Transform rot: 1.5707963267948966 rad @@ -124920,7 +123709,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18901 + - uid: 18933 components: - type: Transform rot: 3.141592653589793 rad @@ -124928,7 +123717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18902 + - uid: 18934 components: - type: Transform rot: 3.141592653589793 rad @@ -124936,7 +123725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18903 + - uid: 18935 components: - type: Transform rot: 1.5707963267948966 rad @@ -124944,7 +123733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18904 + - uid: 18936 components: - type: Transform rot: 1.5707963267948966 rad @@ -124952,7 +123741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18905 + - uid: 18937 components: - type: Transform rot: 1.5707963267948966 rad @@ -124960,7 +123749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18906 + - uid: 18938 components: - type: Transform rot: 1.5707963267948966 rad @@ -124968,7 +123757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18907 + - uid: 18939 components: - type: Transform rot: 1.5707963267948966 rad @@ -124976,7 +123765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18908 + - uid: 18940 components: - type: Transform rot: 1.5707963267948966 rad @@ -124984,7 +123773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18909 + - uid: 18941 components: - type: Transform rot: 1.5707963267948966 rad @@ -124992,7 +123781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18910 + - uid: 18942 components: - type: Transform rot: -1.5707963267948966 rad @@ -125000,7 +123789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18911 + - uid: 18943 components: - type: Transform rot: -1.5707963267948966 rad @@ -125008,7 +123797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18912 + - uid: 18944 components: - type: Transform rot: -1.5707963267948966 rad @@ -125016,7 +123805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18913 + - uid: 18945 components: - type: Transform rot: -1.5707963267948966 rad @@ -125024,7 +123813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18914 + - uid: 18946 components: - type: Transform rot: -1.5707963267948966 rad @@ -125032,7 +123821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18915 + - uid: 18947 components: - type: Transform rot: -1.5707963267948966 rad @@ -125040,7 +123829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18916 + - uid: 18948 components: - type: Transform rot: -1.5707963267948966 rad @@ -125048,7 +123837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18917 + - uid: 18949 components: - type: Transform rot: -1.5707963267948966 rad @@ -125056,7 +123845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18918 + - uid: 18950 components: - type: Transform rot: -1.5707963267948966 rad @@ -125064,7 +123853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18919 + - uid: 18951 components: - type: Transform rot: -1.5707963267948966 rad @@ -125072,7 +123861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18920 + - uid: 18952 components: - type: Transform rot: 1.5707963267948966 rad @@ -125080,7 +123869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18921 + - uid: 18953 components: - type: Transform rot: 1.5707963267948966 rad @@ -125088,7 +123877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18922 + - uid: 18954 components: - type: Transform rot: 3.141592653589793 rad @@ -125096,7 +123885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18923 + - uid: 18955 components: - type: Transform rot: 3.141592653589793 rad @@ -125104,7 +123893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18924 + - uid: 18956 components: - type: Transform rot: 3.141592653589793 rad @@ -125112,7 +123901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18925 + - uid: 18957 components: - type: Transform rot: 3.141592653589793 rad @@ -125120,7 +123909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18926 + - uid: 18958 components: - type: Transform rot: 3.141592653589793 rad @@ -125128,7 +123917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18927 + - uid: 18959 components: - type: Transform rot: 3.141592653589793 rad @@ -125136,7 +123925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18928 + - uid: 18960 components: - type: Transform rot: 1.5707963267948966 rad @@ -125144,7 +123933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18929 + - uid: 18961 components: - type: Transform rot: 3.141592653589793 rad @@ -125152,7 +123941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18930 + - uid: 18962 components: - type: Transform rot: 3.141592653589793 rad @@ -125160,7 +123949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18931 + - uid: 18963 components: - type: Transform rot: 3.141592653589793 rad @@ -125168,7 +123957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18932 + - uid: 18964 components: - type: Transform rot: 3.141592653589793 rad @@ -125176,7 +123965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18933 + - uid: 18965 components: - type: Transform rot: 3.141592653589793 rad @@ -125184,7 +123973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18934 + - uid: 18966 components: - type: Transform rot: 3.141592653589793 rad @@ -125192,7 +123981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18935 + - uid: 18967 components: - type: Transform rot: 3.141592653589793 rad @@ -125200,7 +123989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18936 + - uid: 18968 components: - type: Transform rot: 3.141592653589793 rad @@ -125208,7 +123997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18937 + - uid: 18969 components: - type: Transform rot: 1.5707963267948966 rad @@ -125216,7 +124005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18938 + - uid: 18970 components: - type: Transform rot: 1.5707963267948966 rad @@ -125224,7 +124013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18939 + - uid: 18971 components: - type: Transform rot: 3.141592653589793 rad @@ -125232,7 +124021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18940 + - uid: 18972 components: - type: Transform rot: 3.141592653589793 rad @@ -125240,7 +124029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18941 + - uid: 18973 components: - type: Transform rot: 3.141592653589793 rad @@ -125248,7 +124037,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18942 + - uid: 18974 components: - type: Transform rot: 1.5707963267948966 rad @@ -125256,7 +124045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18943 + - uid: 18975 components: - type: Transform rot: 1.5707963267948966 rad @@ -125264,7 +124053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18944 + - uid: 18976 components: - type: Transform rot: 3.141592653589793 rad @@ -125272,7 +124061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18945 + - uid: 18977 components: - type: Transform rot: 3.141592653589793 rad @@ -125280,7 +124069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18946 + - uid: 18978 components: - type: Transform rot: 3.141592653589793 rad @@ -125288,7 +124077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18947 + - uid: 18979 components: - type: Transform rot: 3.141592653589793 rad @@ -125296,7 +124085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18948 + - uid: 18980 components: - type: Transform rot: 1.5707963267948966 rad @@ -125304,7 +124093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18949 + - uid: 18981 components: - type: Transform rot: 1.5707963267948966 rad @@ -125312,7 +124101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18950 + - uid: 18982 components: - type: Transform rot: 1.5707963267948966 rad @@ -125320,7 +124109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18951 + - uid: 18983 components: - type: Transform rot: 1.5707963267948966 rad @@ -125328,7 +124117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18952 + - uid: 18984 components: - type: Transform rot: 1.5707963267948966 rad @@ -125336,7 +124125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18953 + - uid: 18985 components: - type: Transform rot: -1.5707963267948966 rad @@ -125344,7 +124133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18954 + - uid: 18986 components: - type: Transform rot: -1.5707963267948966 rad @@ -125352,7 +124141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18955 + - uid: 18987 components: - type: Transform rot: -1.5707963267948966 rad @@ -125360,7 +124149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18956 + - uid: 18988 components: - type: Transform rot: -1.5707963267948966 rad @@ -125368,7 +124157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18957 + - uid: 18989 components: - type: Transform rot: -1.5707963267948966 rad @@ -125376,7 +124165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18958 + - uid: 18990 components: - type: Transform rot: -1.5707963267948966 rad @@ -125384,7 +124173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18959 + - uid: 18991 components: - type: Transform rot: -1.5707963267948966 rad @@ -125392,7 +124181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18960 + - uid: 18992 components: - type: Transform rot: -1.5707963267948966 rad @@ -125400,7 +124189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18961 + - uid: 18993 components: - type: Transform rot: -1.5707963267948966 rad @@ -125408,35 +124197,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18962 + - uid: 18994 components: - type: Transform pos: 12.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18963 + - uid: 18995 components: - type: Transform pos: 12.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18964 + - uid: 18996 components: - type: Transform pos: 12.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18965 + - uid: 18997 components: - type: Transform pos: 12.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18966 + - uid: 18998 components: - type: Transform rot: 3.141592653589793 rad @@ -125444,7 +124233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18967 + - uid: 18999 components: - type: Transform rot: 3.141592653589793 rad @@ -125452,7 +124241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18968 + - uid: 19000 components: - type: Transform rot: 1.5707963267948966 rad @@ -125460,7 +124249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18969 + - uid: 19001 components: - type: Transform rot: 1.5707963267948966 rad @@ -125468,7 +124257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18970 + - uid: 19002 components: - type: Transform rot: 1.5707963267948966 rad @@ -125476,7 +124265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18971 + - uid: 19003 components: - type: Transform rot: 1.5707963267948966 rad @@ -125484,7 +124273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18972 + - uid: 19004 components: - type: Transform rot: 1.5707963267948966 rad @@ -125492,7 +124281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18973 + - uid: 19005 components: - type: Transform rot: 1.5707963267948966 rad @@ -125500,7 +124289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18974 + - uid: 19006 components: - type: Transform rot: 1.5707963267948966 rad @@ -125508,147 +124297,147 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18975 + - uid: 19007 components: - type: Transform pos: -47.5,33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18976 + - uid: 19008 components: - type: Transform pos: -47.5,32.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18977 + - uid: 19009 components: - type: Transform pos: -45.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18978 + - uid: 19010 components: - type: Transform pos: -45.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18979 + - uid: 19011 components: - type: Transform pos: -45.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18980 + - uid: 19012 components: - type: Transform pos: -45.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18981 + - uid: 19013 components: - type: Transform pos: -45.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18982 + - uid: 19014 components: - type: Transform pos: -45.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18983 + - uid: 19015 components: - type: Transform pos: -45.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18984 + - uid: 19016 components: - type: Transform pos: -45.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18985 + - uid: 19017 components: - type: Transform pos: -45.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18986 + - uid: 19018 components: - type: Transform pos: -46.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18987 + - uid: 19019 components: - type: Transform pos: -46.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18988 + - uid: 19020 components: - type: Transform pos: -46.5,37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18989 + - uid: 19021 components: - type: Transform pos: -46.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18990 + - uid: 19022 components: - type: Transform pos: -46.5,39.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18991 + - uid: 19023 components: - type: Transform pos: -46.5,40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18992 + - uid: 19024 components: - type: Transform pos: -46.5,41.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18993 + - uid: 19025 components: - type: Transform pos: -46.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18994 + - uid: 19026 components: - type: Transform pos: 68.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18995 + - uid: 19027 components: - type: Transform rot: 1.5707963267948966 rad @@ -125656,7 +124445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18996 + - uid: 19028 components: - type: Transform rot: 1.5707963267948966 rad @@ -125664,7 +124453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18997 + - uid: 19029 components: - type: Transform rot: 1.5707963267948966 rad @@ -125672,7 +124461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18998 + - uid: 19030 components: - type: Transform rot: 3.141592653589793 rad @@ -125680,14 +124469,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18999 + - uid: 19031 components: - type: Transform pos: -3.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19000 + - uid: 19032 components: - type: Transform rot: -1.5707963267948966 rad @@ -125695,26 +124484,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19001 + - uid: 19033 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-43.5 parent: 2 - - uid: 19002 + - uid: 19034 components: - type: Transform pos: -70.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19003 + - uid: 19035 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 - - uid: 19004 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 19036 components: - type: Transform rot: 1.5707963267948966 rad @@ -125722,7 +124515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19005 + - uid: 19037 components: - type: Transform rot: 1.5707963267948966 rad @@ -125730,7 +124523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19006 + - uid: 19038 components: - type: Transform rot: 1.5707963267948966 rad @@ -125738,7 +124531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19007 + - uid: 19039 components: - type: Transform rot: 1.5707963267948966 rad @@ -125746,7 +124539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19008 + - uid: 19040 components: - type: Transform rot: 1.5707963267948966 rad @@ -125754,7 +124547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19009 + - uid: 19041 components: - type: Transform rot: 1.5707963267948966 rad @@ -125762,7 +124555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19010 + - uid: 19042 components: - type: Transform rot: 1.5707963267948966 rad @@ -125770,22 +124563,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19011 + - uid: 19043 components: - type: Transform pos: -44.5,-37.5 parent: 2 - - uid: 19012 + - uid: 19044 components: - type: Transform pos: -44.5,-39.5 parent: 2 - - uid: 19013 + - uid: 19045 components: - type: Transform pos: -44.5,-38.5 parent: 2 - - uid: 19014 + - uid: 19046 components: - type: Transform rot: -1.5707963267948966 rad @@ -125793,7 +124586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19015 + - uid: 19047 components: - type: Transform rot: -1.5707963267948966 rad @@ -125801,7 +124594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19016 + - uid: 19048 components: - type: Transform rot: -1.5707963267948966 rad @@ -125809,7 +124602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19017 + - uid: 19049 components: - type: Transform rot: -1.5707963267948966 rad @@ -125817,56 +124610,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19018 + - uid: 19050 components: - type: Transform pos: 2.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19019 + - uid: 19051 components: - type: Transform pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19020 + - uid: 19052 components: - type: Transform pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19021 + - uid: 19053 components: - type: Transform pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19022 + - uid: 19054 components: - type: Transform pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19023 + - uid: 19055 components: - type: Transform pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19024 + - uid: 19056 components: - type: Transform pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19025 + - uid: 19057 components: - type: Transform rot: 1.5707963267948966 rad @@ -125874,7 +124667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19026 + - uid: 19058 components: - type: Transform rot: 1.5707963267948966 rad @@ -125882,7 +124675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19027 + - uid: 19059 components: - type: Transform rot: 3.141592653589793 rad @@ -125890,7 +124683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19028 + - uid: 19060 components: - type: Transform rot: 1.5707963267948966 rad @@ -125898,7 +124691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19029 + - uid: 19061 components: - type: Transform rot: 3.141592653589793 rad @@ -125906,21 +124699,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19030 + - uid: 19062 components: - type: Transform pos: 28.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19032 + - uid: 19063 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19064 components: - type: Transform pos: 22.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19033 + - uid: 19065 components: - type: Transform rot: -1.5707963267948966 rad @@ -125928,112 +124728,112 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19034 + - uid: 19066 components: - type: Transform pos: 17.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19035 + - uid: 19067 components: - type: Transform pos: 39.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19036 + - uid: 19068 components: - type: Transform pos: 40.5,60.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19037 + - uid: 19069 components: - type: Transform pos: 40.5,59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19038 + - uid: 19070 components: - type: Transform pos: 39.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19039 + - uid: 19071 components: - type: Transform pos: 39.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19040 + - uid: 19072 components: - type: Transform pos: 39.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19041 + - uid: 19073 components: - type: Transform pos: 39.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19042 + - uid: 19074 components: - type: Transform pos: 39.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19043 + - uid: 19075 components: - type: Transform pos: 39.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19044 + - uid: 19076 components: - type: Transform pos: 39.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19045 + - uid: 19077 components: - type: Transform pos: 39.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19046 + - uid: 19078 components: - type: Transform pos: 39.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19047 + - uid: 19079 components: - type: Transform pos: 39.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19048 + - uid: 19080 components: - type: Transform pos: 3.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19049 + - uid: 19081 components: - type: Transform rot: 1.5707963267948966 rad @@ -126041,21 +124841,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19050 + - uid: 19082 components: - type: Transform pos: 5.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19051 + - uid: 19083 components: - type: Transform pos: 5.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19052 + - uid: 19084 components: - type: Transform rot: -1.5707963267948966 rad @@ -126063,7 +124863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19053 + - uid: 19085 components: - type: Transform rot: 1.5707963267948966 rad @@ -126071,7 +124871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19054 + - uid: 19086 components: - type: Transform rot: 3.141592653589793 rad @@ -126079,126 +124879,806 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19055 + - uid: 19087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19089 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19095 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19096 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19097 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19114 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19115 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-58.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19171 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 + pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19056 + - uid: 19173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 + pos: 2.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19057 + - uid: 19174 components: - type: Transform - pos: -3.5,-14.5 + rot: -1.5707963267948966 rad + pos: -12.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19058 + - uid: 19175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,22.5 + rot: -1.5707963267948966 rad + pos: -13.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19059 + color: '#990000FF' + - uid: 19176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 + rot: -1.5707963267948966 rad + pos: -14.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19060 + - uid: 19177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-40.5 + rot: -1.5707963267948966 rad + pos: -12.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19061 + color: '#0055CCFF' + - uid: 19178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-40.5 + rot: -1.5707963267948966 rad + pos: -13.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19062 + - uid: 19179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-39.5 + rot: -1.5707963267948966 rad + pos: -14.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 31680 + - uid: 19180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,-60.5 parent: 2 - - uid: 31681 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-37.5 + rot: 3.141592653589793 rad + pos: -15.5,-60.5 parent: 2 - - uid: 31682 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19182 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-37.5 + pos: -17.5,-60.5 parent: 2 - - uid: 31683 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + rot: -1.5707963267948966 rad + pos: 1.5,-61.5 parent: 2 - - uid: 31685 + - uid: 19184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-35.5 + rot: 1.5707963267948966 rad + pos: -22.5,-61.5 parent: 2 - - uid: 31686 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-34.5 + pos: -18.5,-64.5 parent: 2 - - uid: 31687 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-33.5 + pos: -20.5,-63.5 parent: 2 - - uid: 31690 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 19187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 + pos: 2.5,-61.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 19031 + - uid: 19188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-37.5 + pos: -20.5,-61.5 parent: 2 - - uid: 19063 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19189 components: - type: Transform rot: 3.141592653589793 rad @@ -126206,7 +125686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19064 + - uid: 19190 components: - type: Transform rot: 3.141592653589793 rad @@ -126214,7 +125694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19065 + - uid: 19191 components: - type: Transform rot: 1.5707963267948966 rad @@ -126222,7 +125702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19066 + - uid: 19192 components: - type: Transform rot: -1.5707963267948966 rad @@ -126230,20 +125710,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19067 + - uid: 19193 components: - type: Transform pos: -4.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19068 + - uid: 19194 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,13.5 parent: 2 - - uid: 19069 + - uid: 19195 components: - type: Transform rot: -1.5707963267948966 rad @@ -126251,7 +125731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19070 + - uid: 19196 components: - type: Transform rot: 3.141592653589793 rad @@ -126259,7 +125739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19071 + - uid: 19197 components: - type: Transform rot: 3.141592653589793 rad @@ -126267,14 +125747,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19072 + - uid: 19198 components: - type: Transform pos: 18.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19074 + - uid: 19199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19200 components: - type: Transform rot: 3.141592653589793 rad @@ -126282,7 +125770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19075 + - uid: 19201 components: - type: Transform rot: 3.141592653589793 rad @@ -126290,7 +125778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19076 + - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad @@ -126298,21 +125786,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19077 + - uid: 19203 components: - type: Transform pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19078 + - uid: 19204 components: - type: Transform pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19079 + - uid: 19205 components: - type: Transform rot: 1.5707963267948966 rad @@ -126320,7 +125808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19080 + - uid: 19206 components: - type: Transform rot: 1.5707963267948966 rad @@ -126328,14 +125816,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19081 + - uid: 19207 components: - type: Transform pos: -71.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19082 + - uid: 19208 components: - type: Transform rot: 1.5707963267948966 rad @@ -126343,7 +125831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19083 + - uid: 19209 components: - type: Transform rot: 1.5707963267948966 rad @@ -126351,7 +125839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19084 + - uid: 19210 components: - type: Transform rot: -1.5707963267948966 rad @@ -126359,7 +125847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19085 + - uid: 19211 components: - type: Transform rot: 3.141592653589793 rad @@ -126367,7 +125855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19086 + - uid: 19212 components: - type: Transform rot: 3.141592653589793 rad @@ -126375,7 +125863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19087 + - uid: 19213 components: - type: Transform rot: 3.141592653589793 rad @@ -126383,7 +125871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19088 + - uid: 19214 components: - type: Transform rot: 3.141592653589793 rad @@ -126391,7 +125879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19089 + - uid: 19215 components: - type: Transform rot: 1.5707963267948966 rad @@ -126399,7 +125887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19090 + - uid: 19216 components: - type: Transform rot: 3.141592653589793 rad @@ -126407,7 +125895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19091 + - uid: 19217 components: - type: Transform rot: 1.5707963267948966 rad @@ -126415,7 +125903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19092 + - uid: 19218 components: - type: Transform rot: 3.141592653589793 rad @@ -126423,7 +125911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19093 + - uid: 19219 components: - type: Transform rot: 1.5707963267948966 rad @@ -126431,7 +125919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19094 + - uid: 19220 components: - type: Transform rot: 1.5707963267948966 rad @@ -126439,7 +125927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19095 + - uid: 19221 components: - type: Transform rot: 1.5707963267948966 rad @@ -126447,28 +125935,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19096 + - uid: 19222 components: - type: Transform pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19097 - components: - - type: Transform - pos: -8.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19098 + - uid: 19223 components: - type: Transform pos: -12.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19099 + - uid: 19224 components: - type: Transform rot: -1.5707963267948966 rad @@ -126476,7 +125957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19100 + - uid: 19225 components: - type: Transform rot: 1.5707963267948966 rad @@ -126484,7 +125965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19101 + - uid: 19226 components: - type: Transform rot: 1.5707963267948966 rad @@ -126492,7 +125973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19102 + - uid: 19227 components: - type: Transform rot: -1.5707963267948966 rad @@ -126500,7 +125981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19103 + - uid: 19228 components: - type: Transform rot: -1.5707963267948966 rad @@ -126508,7 +125989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19104 + - uid: 19229 components: - type: Transform rot: 3.141592653589793 rad @@ -126516,37 +125997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19106 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19107 - components: - - type: Transform - pos: -8.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19109 + - uid: 19230 components: - type: Transform rot: 3.141592653589793 rad @@ -126554,7 +126005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19110 + - uid: 19231 components: - type: Transform rot: -1.5707963267948966 rad @@ -126562,7 +126013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19111 + - uid: 19232 components: - type: Transform rot: 3.141592653589793 rad @@ -126570,7 +126021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19112 + - uid: 19233 components: - type: Transform rot: 3.141592653589793 rad @@ -126578,7 +126029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19113 + - uid: 19234 components: - type: Transform rot: 1.5707963267948966 rad @@ -126586,7 +126037,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19114 + - uid: 19235 components: - type: Transform rot: -1.5707963267948966 rad @@ -126594,21 +126045,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19115 + - uid: 19236 components: - type: Transform pos: 7.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19116 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19117 + - uid: 19237 components: - type: Transform rot: -1.5707963267948966 rad @@ -126616,7 +126060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19118 + - uid: 19238 components: - type: Transform rot: 1.5707963267948966 rad @@ -126624,7 +126068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19119 + - uid: 19239 components: - type: Transform rot: 1.5707963267948966 rad @@ -126632,7 +126076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19120 + - uid: 19240 components: - type: Transform rot: 1.5707963267948966 rad @@ -126640,7 +126084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19121 + - uid: 19241 components: - type: Transform rot: 3.141592653589793 rad @@ -126648,7 +126092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19122 + - uid: 19242 components: - type: Transform rot: -1.5707963267948966 rad @@ -126656,15 +126100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19124 + - uid: 19243 components: - type: Transform rot: 3.141592653589793 rad @@ -126672,37 +126108,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19125 + - uid: 19244 components: - type: Transform pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19126 + - uid: 19245 components: - type: Transform pos: -8.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19129 + - uid: 19246 components: - type: Transform rot: 1.5707963267948966 rad @@ -126710,7 +126130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19130 + - uid: 19247 components: - type: Transform rot: 3.141592653589793 rad @@ -126718,7 +126138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19131 + - uid: 19248 components: - type: Transform rot: -1.5707963267948966 rad @@ -126726,14 +126146,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19132 + - uid: 19249 components: - type: Transform pos: 41.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19133 + - uid: 19250 components: - type: Transform rot: 3.141592653589793 rad @@ -126741,7 +126161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19134 + - uid: 19251 components: - type: Transform rot: 1.5707963267948966 rad @@ -126749,7 +126169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19135 + - uid: 19252 components: - type: Transform rot: 1.5707963267948966 rad @@ -126757,14 +126177,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19136 + - uid: 19253 components: - type: Transform pos: 44.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19137 + - uid: 19254 components: - type: Transform rot: 3.141592653589793 rad @@ -126772,7 +126192,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19138 + - uid: 19255 components: - type: Transform rot: 3.141592653589793 rad @@ -126780,14 +126200,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19139 + - uid: 19256 components: - type: Transform pos: -7.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19140 + - uid: 19257 components: - type: Transform rot: 3.141592653589793 rad @@ -126795,7 +126215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19141 + - uid: 19258 components: - type: Transform rot: 1.5707963267948966 rad @@ -126803,7 +126223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19142 + - uid: 19259 components: - type: Transform rot: 3.141592653589793 rad @@ -126811,7 +126231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19143 + - uid: 19260 components: - type: Transform rot: 3.141592653589793 rad @@ -126819,14 +126239,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19144 + - uid: 19261 components: - type: Transform pos: 28.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19145 + - uid: 19262 components: - type: Transform rot: -1.5707963267948966 rad @@ -126834,7 +126254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19146 + - uid: 19263 components: - type: Transform rot: -1.5707963267948966 rad @@ -126842,7 +126262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19147 + - uid: 19264 components: - type: Transform rot: -1.5707963267948966 rad @@ -126850,14 +126270,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19148 + - uid: 19265 components: - type: Transform pos: 34.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19149 + - uid: 19266 components: - type: Transform rot: 3.141592653589793 rad @@ -126865,7 +126285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19150 + - uid: 19267 components: - type: Transform rot: -1.5707963267948966 rad @@ -126873,7 +126293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19151 + - uid: 19268 components: - type: Transform rot: 3.141592653589793 rad @@ -126881,7 +126301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19152 + - uid: 19269 components: - type: Transform rot: 3.141592653589793 rad @@ -126889,7 +126309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19153 + - uid: 19270 components: - type: Transform rot: 3.141592653589793 rad @@ -126897,14 +126317,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19154 + - uid: 19271 components: - type: Transform pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19155 + - uid: 19272 components: - type: Transform rot: 3.141592653589793 rad @@ -126912,7 +126332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19156 + - uid: 19273 components: - type: Transform rot: 3.141592653589793 rad @@ -126920,7 +126340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19157 + - uid: 19274 components: - type: Transform rot: 3.141592653589793 rad @@ -126928,7 +126348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19158 + - uid: 19275 components: - type: Transform rot: 3.141592653589793 rad @@ -126936,7 +126356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19159 + - uid: 19276 components: - type: Transform rot: 1.5707963267948966 rad @@ -126944,14 +126364,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19160 + - uid: 19277 components: - type: Transform pos: 4.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19161 + - uid: 19278 components: - type: Transform rot: -1.5707963267948966 rad @@ -126959,7 +126379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19162 + - uid: 19279 components: - type: Transform rot: 1.5707963267948966 rad @@ -126967,7 +126387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19163 + - uid: 19280 components: - type: Transform rot: -1.5707963267948966 rad @@ -126975,14 +126395,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19164 + - uid: 19281 components: - type: Transform pos: 21.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19165 + - uid: 19282 components: - type: Transform rot: -1.5707963267948966 rad @@ -126990,7 +126410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19166 + - uid: 19283 components: - type: Transform rot: 1.5707963267948966 rad @@ -126998,7 +126418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19167 + - uid: 19284 components: - type: Transform rot: -1.5707963267948966 rad @@ -127006,14 +126426,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19168 + - uid: 19285 components: - type: Transform pos: 20.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19169 + - uid: 19286 components: - type: Transform rot: 3.141592653589793 rad @@ -127021,7 +126441,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19170 + - uid: 19287 components: - type: Transform rot: 1.5707963267948966 rad @@ -127029,73 +126449,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19171 + - uid: 19288 components: - type: Transform pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19172 - components: - - type: Transform - pos: -2.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19174 - components: - - type: Transform - pos: -15.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19175 - components: - - type: Transform - pos: -0.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19177 - components: - - type: Transform - pos: -12.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19179 + - uid: 19289 components: - type: Transform pos: 5.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19180 + - uid: 19290 components: - type: Transform rot: 1.5707963267948966 rad @@ -127103,14 +126471,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19181 + - uid: 19291 components: - type: Transform pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19182 + - uid: 19292 components: - type: Transform rot: 3.141592653589793 rad @@ -127118,21 +126486,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19183 + - uid: 19293 components: - type: Transform pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19184 + - uid: 19294 components: - type: Transform pos: 20.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19185 + - uid: 19295 components: - type: Transform rot: 3.141592653589793 rad @@ -127140,7 +126508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19186 + - uid: 19296 components: - type: Transform rot: -1.5707963267948966 rad @@ -127148,7 +126516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19187 + - uid: 19297 components: - type: Transform rot: -1.5707963267948966 rad @@ -127156,7 +126524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19188 + - uid: 19298 components: - type: Transform rot: 3.141592653589793 rad @@ -127164,7 +126532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19189 + - uid: 19299 components: - type: Transform rot: -1.5707963267948966 rad @@ -127172,7 +126540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19190 + - uid: 19300 components: - type: Transform rot: 1.5707963267948966 rad @@ -127180,14 +126548,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19191 + - uid: 19301 components: - type: Transform pos: 10.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19192 + - uid: 19302 components: - type: Transform rot: 1.5707963267948966 rad @@ -127195,14 +126563,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19193 + - uid: 19303 components: - type: Transform pos: 0.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19194 + - uid: 19304 components: - type: Transform rot: 3.141592653589793 rad @@ -127210,7 +126578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19195 + - uid: 19305 components: - type: Transform rot: -1.5707963267948966 rad @@ -127218,7 +126586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19196 + - uid: 19306 components: - type: Transform rot: 3.141592653589793 rad @@ -127226,7 +126594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19197 + - uid: 19307 components: - type: Transform rot: 1.5707963267948966 rad @@ -127234,7 +126602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19198 + - uid: 19308 components: - type: Transform rot: 3.141592653589793 rad @@ -127242,7 +126610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19199 + - uid: 19309 components: - type: Transform rot: 1.5707963267948966 rad @@ -127250,7 +126618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19200 + - uid: 19310 components: - type: Transform rot: 1.5707963267948966 rad @@ -127258,14 +126626,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19201 + - uid: 19311 components: - type: Transform pos: 22.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19202 + - uid: 19312 components: - type: Transform rot: 3.141592653589793 rad @@ -127273,7 +126641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19203 + - uid: 19313 components: - type: Transform rot: -1.5707963267948966 rad @@ -127281,7 +126649,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19204 + - uid: 19314 components: - type: Transform rot: -1.5707963267948966 rad @@ -127289,7 +126657,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19205 + - uid: 19315 components: - type: Transform rot: -1.5707963267948966 rad @@ -127297,7 +126665,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19206 + - uid: 19316 components: - type: Transform rot: -1.5707963267948966 rad @@ -127305,7 +126673,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19207 + - uid: 19317 components: - type: Transform rot: 1.5707963267948966 rad @@ -127313,7 +126681,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19208 + - uid: 19318 components: - type: Transform rot: -1.5707963267948966 rad @@ -127321,14 +126689,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19209 + - uid: 19319 components: - type: Transform pos: -5.5,7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19210 + - uid: 19320 components: - type: Transform rot: -1.5707963267948966 rad @@ -127336,14 +126704,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19211 + - uid: 19321 components: - type: Transform pos: -20.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19212 + - uid: 19322 components: - type: Transform rot: -1.5707963267948966 rad @@ -127351,7 +126719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19213 + - uid: 19323 components: - type: Transform rot: 1.5707963267948966 rad @@ -127359,7 +126727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19214 + - uid: 19324 components: - type: Transform rot: 3.141592653589793 rad @@ -127367,7 +126735,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19215 + - uid: 19325 components: - type: Transform rot: 1.5707963267948966 rad @@ -127375,7 +126743,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19216 + - uid: 19326 components: - type: Transform rot: 3.141592653589793 rad @@ -127383,14 +126751,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19217 + - uid: 19327 components: - type: Transform pos: -5.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19218 + - uid: 19328 components: - type: Transform rot: 3.141592653589793 rad @@ -127398,7 +126766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19219 + - uid: 19329 components: - type: Transform rot: -1.5707963267948966 rad @@ -127406,7 +126774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19220 + - uid: 19330 components: - type: Transform rot: 3.141592653589793 rad @@ -127414,15 +126782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19222 + - uid: 19331 components: - type: Transform rot: -1.5707963267948966 rad @@ -127430,7 +126790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19223 + - uid: 19332 components: - type: Transform rot: 3.141592653589793 rad @@ -127438,15 +126798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19225 + - uid: 19333 components: - type: Transform rot: 1.5707963267948966 rad @@ -127454,7 +126806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19226 + - uid: 19334 components: - type: Transform rot: -1.5707963267948966 rad @@ -127462,7 +126814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19227 + - uid: 19335 components: - type: Transform rot: -1.5707963267948966 rad @@ -127470,7 +126822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19228 + - uid: 19336 components: - type: Transform rot: -1.5707963267948966 rad @@ -127478,35 +126830,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19229 + - uid: 19337 components: - type: Transform pos: -22.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19230 + - uid: 19338 components: - type: Transform pos: 26.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19231 + - uid: 19339 components: - type: Transform pos: 6.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19232 + - uid: 19340 components: - type: Transform pos: 6.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19233 + - uid: 19341 components: - type: Transform rot: 3.141592653589793 rad @@ -127514,14 +126866,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19234 + - uid: 19342 components: - type: Transform pos: 5.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19235 + - uid: 19343 components: - type: Transform rot: 1.5707963267948966 rad @@ -127529,7 +126881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19236 + - uid: 19344 components: - type: Transform rot: -1.5707963267948966 rad @@ -127537,35 +126889,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19237 + - uid: 19345 components: - type: Transform pos: 7.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19238 + - uid: 19346 components: - type: Transform pos: -3.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19239 - components: - - type: Transform - pos: -19.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19240 + - uid: 19347 components: - type: Transform pos: 41.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19241 + - uid: 19348 components: - type: Transform rot: 3.141592653589793 rad @@ -127573,7 +126918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19242 + - uid: 19349 components: - type: Transform rot: 1.5707963267948966 rad @@ -127581,7 +126926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19243 + - uid: 19350 components: - type: Transform rot: 1.5707963267948966 rad @@ -127589,14 +126934,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19244 + - uid: 19351 components: - type: Transform pos: -27.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19245 + - uid: 19352 components: - type: Transform rot: 3.141592653589793 rad @@ -127604,7 +126949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19246 + - uid: 19353 components: - type: Transform rot: -1.5707963267948966 rad @@ -127612,7 +126957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19247 + - uid: 19354 components: - type: Transform rot: 1.5707963267948966 rad @@ -127620,7 +126965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19248 + - uid: 19355 components: - type: Transform rot: -1.5707963267948966 rad @@ -127628,7 +126973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19249 + - uid: 19356 components: - type: Transform rot: -1.5707963267948966 rad @@ -127636,7 +126981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19250 + - uid: 19357 components: - type: Transform rot: -1.5707963267948966 rad @@ -127644,7 +126989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19251 + - uid: 19358 components: - type: Transform rot: 1.5707963267948966 rad @@ -127652,7 +126997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19252 + - uid: 19359 components: - type: Transform rot: 1.5707963267948966 rad @@ -127660,7 +127005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19253 + - uid: 19360 components: - type: Transform rot: -1.5707963267948966 rad @@ -127668,7 +127013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19254 + - uid: 19361 components: - type: Transform rot: -1.5707963267948966 rad @@ -127676,7 +127021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19255 + - uid: 19362 components: - type: Transform rot: -1.5707963267948966 rad @@ -127684,7 +127029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19256 + - uid: 19363 components: - type: Transform rot: 1.5707963267948966 rad @@ -127692,22 +127037,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19258 - components: - - type: Transform - pos: -18.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19259 + - uid: 19364 components: - type: Transform rot: 1.5707963267948966 rad @@ -127715,7 +127045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19260 + - uid: 19365 components: - type: Transform rot: 3.141592653589793 rad @@ -127723,7 +127053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19261 + - uid: 19366 components: - type: Transform rot: 3.141592653589793 rad @@ -127731,14 +127061,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19262 + - uid: 19367 components: - type: Transform pos: 33.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19263 + - uid: 19368 components: - type: Transform rot: 3.141592653589793 rad @@ -127746,7 +127076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19264 + - uid: 19369 components: - type: Transform rot: 3.141592653589793 rad @@ -127754,7 +127084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19265 + - uid: 19370 components: - type: Transform rot: -1.5707963267948966 rad @@ -127762,14 +127092,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19266 + - uid: 19371 components: - type: Transform pos: 21.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19267 + - uid: 19372 components: - type: Transform rot: 3.141592653589793 rad @@ -127777,14 +127107,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19268 + - uid: 19373 components: - type: Transform pos: 40.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19269 + - uid: 19374 components: - type: Transform rot: 1.5707963267948966 rad @@ -127792,7 +127122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19270 + - uid: 19375 components: - type: Transform rot: -1.5707963267948966 rad @@ -127800,21 +127130,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19271 + - uid: 19376 components: - type: Transform pos: 42.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19272 + - uid: 19377 components: - type: Transform pos: 44.5,15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19273 + - uid: 19378 components: - type: Transform rot: 3.141592653589793 rad @@ -127822,14 +127152,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19274 + - uid: 19379 components: - type: Transform pos: 47.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19275 + - uid: 19380 components: - type: Transform rot: 3.141592653589793 rad @@ -127837,7 +127167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19276 + - uid: 19381 components: - type: Transform rot: -1.5707963267948966 rad @@ -127845,7 +127175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19277 + - uid: 19382 components: - type: Transform rot: -1.5707963267948966 rad @@ -127853,7 +127183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19278 + - uid: 19383 components: - type: Transform rot: -1.5707963267948966 rad @@ -127861,7 +127191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19279 + - uid: 19384 components: - type: Transform rot: 3.141592653589793 rad @@ -127869,7 +127199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19280 + - uid: 19385 components: - type: Transform rot: 3.141592653589793 rad @@ -127877,7 +127207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19281 + - uid: 19386 components: - type: Transform rot: -1.5707963267948966 rad @@ -127885,7 +127215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19282 + - uid: 19387 components: - type: Transform rot: 3.141592653589793 rad @@ -127893,7 +127223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19283 + - uid: 19388 components: - type: Transform rot: 3.141592653589793 rad @@ -127901,7 +127231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19284 + - uid: 19389 components: - type: Transform rot: -1.5707963267948966 rad @@ -127909,7 +127239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19285 + - uid: 19390 components: - type: Transform rot: 1.5707963267948966 rad @@ -127917,7 +127247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19286 + - uid: 19391 components: - type: Transform rot: 1.5707963267948966 rad @@ -127925,7 +127255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19287 + - uid: 19392 components: - type: Transform rot: 1.5707963267948966 rad @@ -127933,7 +127263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19288 + - uid: 19393 components: - type: Transform rot: 1.5707963267948966 rad @@ -127941,14 +127271,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19289 + - uid: 19394 components: - type: Transform pos: 40.5,20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19290 + - uid: 19395 components: - type: Transform rot: 3.141592653589793 rad @@ -127956,7 +127286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19291 + - uid: 19396 components: - type: Transform rot: 3.141592653589793 rad @@ -127964,7 +127294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19292 + - uid: 19397 components: - type: Transform rot: 3.141592653589793 rad @@ -127972,14 +127302,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19293 + - uid: 19398 components: - type: Transform pos: 44.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19294 + - uid: 19399 components: - type: Transform rot: 3.141592653589793 rad @@ -127987,21 +127317,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19295 + - uid: 19400 components: - type: Transform pos: 53.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19296 + - uid: 19401 components: - type: Transform pos: 52.5,1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19297 + - uid: 19402 components: - type: Transform rot: 1.5707963267948966 rad @@ -128009,7 +127339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19298 + - uid: 19403 components: - type: Transform rot: -1.5707963267948966 rad @@ -128017,7 +127347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19299 + - uid: 19404 components: - type: Transform rot: 3.141592653589793 rad @@ -128025,7 +127355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19300 + - uid: 19405 components: - type: Transform rot: -1.5707963267948966 rad @@ -128033,7 +127363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19301 + - uid: 19406 components: - type: Transform rot: -1.5707963267948966 rad @@ -128041,7 +127371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19302 + - uid: 19407 components: - type: Transform rot: -1.5707963267948966 rad @@ -128049,7 +127379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19303 + - uid: 19408 components: - type: Transform rot: -1.5707963267948966 rad @@ -128057,7 +127387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19304 + - uid: 19409 components: - type: Transform rot: 3.141592653589793 rad @@ -128065,7 +127395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19305 + - uid: 19410 components: - type: Transform rot: -1.5707963267948966 rad @@ -128073,7 +127403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19306 + - uid: 19411 components: - type: Transform rot: -1.5707963267948966 rad @@ -128081,7 +127411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19307 + - uid: 19412 components: - type: Transform rot: 3.141592653589793 rad @@ -128089,7 +127419,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19308 + - uid: 19413 components: - type: Transform rot: 3.141592653589793 rad @@ -128097,7 +127427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19309 + - uid: 19414 components: - type: Transform rot: 3.141592653589793 rad @@ -128105,28 +127435,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19310 + - uid: 19415 components: - type: Transform pos: 44.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19311 + - uid: 19416 components: - type: Transform pos: 49.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19312 + - uid: 19417 components: - type: Transform pos: 49.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19313 + - uid: 19418 components: - type: Transform rot: 3.141592653589793 rad @@ -128134,21 +127464,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19314 + - uid: 19419 components: - type: Transform pos: 50.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19315 + - uid: 19420 components: - type: Transform pos: 56.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19316 + - uid: 19421 components: - type: Transform rot: 3.141592653589793 rad @@ -128156,7 +127486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19317 + - uid: 19422 components: - type: Transform rot: 3.141592653589793 rad @@ -128164,7 +127494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19318 + - uid: 19423 components: - type: Transform rot: -1.5707963267948966 rad @@ -128172,7 +127502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19319 + - uid: 19424 components: - type: Transform rot: 1.5707963267948966 rad @@ -128180,7 +127510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19320 + - uid: 19425 components: - type: Transform rot: 1.5707963267948966 rad @@ -128188,7 +127518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19321 + - uid: 19426 components: - type: Transform rot: -1.5707963267948966 rad @@ -128196,7 +127526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19322 + - uid: 19427 components: - type: Transform rot: -1.5707963267948966 rad @@ -128204,7 +127534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19323 + - uid: 19428 components: - type: Transform rot: 1.5707963267948966 rad @@ -128212,7 +127542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19324 + - uid: 19429 components: - type: Transform rot: -1.5707963267948966 rad @@ -128220,7 +127550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19325 + - uid: 19430 components: - type: Transform rot: 1.5707963267948966 rad @@ -128228,14 +127558,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19326 + - uid: 19431 components: - type: Transform pos: 60.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19327 + - uid: 19432 components: - type: Transform rot: -1.5707963267948966 rad @@ -128243,7 +127573,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19328 + - uid: 19433 components: - type: Transform rot: 1.5707963267948966 rad @@ -128251,14 +127581,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19329 + - uid: 19434 components: - type: Transform pos: 55.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19330 + - uid: 19435 components: - type: Transform rot: 1.5707963267948966 rad @@ -128266,7 +127596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19331 + - uid: 19436 components: - type: Transform rot: 1.5707963267948966 rad @@ -128274,7 +127604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19332 + - uid: 19437 components: - type: Transform rot: 1.5707963267948966 rad @@ -128282,7 +127612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19333 + - uid: 19438 components: - type: Transform rot: 3.141592653589793 rad @@ -128290,7 +127620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19334 + - uid: 19439 components: - type: Transform rot: 3.141592653589793 rad @@ -128298,7 +127628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19335 + - uid: 19440 components: - type: Transform rot: 1.5707963267948966 rad @@ -128306,7 +127636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19336 + - uid: 19441 components: - type: Transform rot: 1.5707963267948966 rad @@ -128314,7 +127644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19337 + - uid: 19442 components: - type: Transform rot: 1.5707963267948966 rad @@ -128322,7 +127652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19338 + - uid: 19443 components: - type: Transform rot: -1.5707963267948966 rad @@ -128330,14 +127660,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19339 + - uid: 19444 components: - type: Transform pos: 32.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19340 + - uid: 19445 components: - type: Transform rot: -1.5707963267948966 rad @@ -128345,7 +127675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19341 + - uid: 19446 components: - type: Transform rot: 1.5707963267948966 rad @@ -128353,14 +127683,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19342 + - uid: 19447 components: - type: Transform pos: -19.5,7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19343 + - uid: 19448 components: - type: Transform rot: 3.141592653589793 rad @@ -128368,7 +127698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19344 + - uid: 19449 components: - type: Transform rot: 3.141592653589793 rad @@ -128376,14 +127706,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19345 + - uid: 19450 components: - type: Transform pos: -13.5,7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19346 + - uid: 19451 components: - type: Transform rot: 1.5707963267948966 rad @@ -128391,7 +127721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19347 + - uid: 19452 components: - type: Transform rot: -1.5707963267948966 rad @@ -128399,7 +127729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19348 + - uid: 19453 components: - type: Transform rot: -1.5707963267948966 rad @@ -128407,7 +127737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19349 + - uid: 19454 components: - type: Transform rot: -1.5707963267948966 rad @@ -128415,7 +127745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19350 + - uid: 19455 components: - type: Transform rot: 1.5707963267948966 rad @@ -128423,7 +127753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19351 + - uid: 19456 components: - type: Transform rot: -1.5707963267948966 rad @@ -128431,7 +127761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19352 + - uid: 19457 components: - type: Transform rot: -1.5707963267948966 rad @@ -128439,14 +127769,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19353 + - uid: 19458 components: - type: Transform pos: -23.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19354 + - uid: 19459 components: - type: Transform rot: 3.141592653589793 rad @@ -128454,21 +127784,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19355 + - uid: 19460 components: - type: Transform pos: -24.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19356 + - uid: 19461 components: - type: Transform pos: -28.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19357 + - uid: 19462 components: - type: Transform rot: 3.141592653589793 rad @@ -128476,14 +127806,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19358 + - uid: 19463 components: - type: Transform pos: -25.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19359 + - uid: 19464 components: - type: Transform rot: 3.141592653589793 rad @@ -128491,7 +127821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19360 + - uid: 19465 components: - type: Transform rot: 1.5707963267948966 rad @@ -128499,7 +127829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19361 + - uid: 19466 components: - type: Transform rot: -1.5707963267948966 rad @@ -128507,7 +127837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19362 + - uid: 19467 components: - type: Transform rot: -1.5707963267948966 rad @@ -128515,7 +127845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19363 + - uid: 19468 components: - type: Transform rot: 1.5707963267948966 rad @@ -128523,7 +127853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19364 + - uid: 19469 components: - type: Transform rot: -1.5707963267948966 rad @@ -128531,7 +127861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19365 + - uid: 19470 components: - type: Transform rot: 3.141592653589793 rad @@ -128539,7 +127869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19366 + - uid: 19471 components: - type: Transform rot: 3.141592653589793 rad @@ -128547,7 +127877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19367 + - uid: 19472 components: - type: Transform rot: 1.5707963267948966 rad @@ -128555,7 +127885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19368 + - uid: 19473 components: - type: Transform rot: -1.5707963267948966 rad @@ -128563,7 +127893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19369 + - uid: 19474 components: - type: Transform rot: 1.5707963267948966 rad @@ -128571,7 +127901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19370 + - uid: 19475 components: - type: Transform rot: 1.5707963267948966 rad @@ -128579,7 +127909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19371 + - uid: 19476 components: - type: Transform rot: 1.5707963267948966 rad @@ -128587,14 +127917,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19372 + - uid: 19477 components: - type: Transform pos: 48.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19373 + - uid: 19478 components: - type: Transform rot: 1.5707963267948966 rad @@ -128602,7 +127932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19374 + - uid: 19479 components: - type: Transform rot: -1.5707963267948966 rad @@ -128610,7 +127940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19375 + - uid: 19480 components: - type: Transform rot: -1.5707963267948966 rad @@ -128618,21 +127948,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19376 + - uid: 19481 components: - type: Transform pos: 47.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19377 + - uid: 19482 components: - type: Transform pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19378 + - uid: 19483 components: - type: Transform rot: 1.5707963267948966 rad @@ -128640,7 +127970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19379 + - uid: 19484 components: - type: Transform rot: 1.5707963267948966 rad @@ -128648,7 +127978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19380 + - uid: 19485 components: - type: Transform rot: -1.5707963267948966 rad @@ -128656,7 +127986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19381 + - uid: 19486 components: - type: Transform rot: -1.5707963267948966 rad @@ -128664,7 +127994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19382 + - uid: 19487 components: - type: Transform rot: 1.5707963267948966 rad @@ -128672,7 +128002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19383 + - uid: 19488 components: - type: Transform rot: -1.5707963267948966 rad @@ -128680,7 +128010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19384 + - uid: 19489 components: - type: Transform rot: 3.141592653589793 rad @@ -128688,14 +128018,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19385 + - uid: 19490 components: - type: Transform pos: -36.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19386 + - uid: 19491 components: - type: Transform rot: 1.5707963267948966 rad @@ -128703,7 +128033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19387 + - uid: 19492 components: - type: Transform rot: -1.5707963267948966 rad @@ -128711,7 +128041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19388 + - uid: 19493 components: - type: Transform rot: -1.5707963267948966 rad @@ -128719,7 +128049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19389 + - uid: 19494 components: - type: Transform rot: -1.5707963267948966 rad @@ -128727,7 +128057,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19390 + - uid: 19495 components: - type: Transform rot: -1.5707963267948966 rad @@ -128735,7 +128065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19391 + - uid: 19496 components: - type: Transform rot: 3.141592653589793 rad @@ -128743,21 +128073,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19392 + - uid: 19497 components: - type: Transform pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19393 + - uid: 19498 components: - type: Transform pos: -46.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19394 + - uid: 19499 components: - type: Transform rot: 3.141592653589793 rad @@ -128765,7 +128095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19395 + - uid: 19500 components: - type: Transform rot: -1.5707963267948966 rad @@ -128773,7 +128103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19396 + - uid: 19501 components: - type: Transform rot: -1.5707963267948966 rad @@ -128781,7 +128111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19397 + - uid: 19502 components: - type: Transform rot: 1.5707963267948966 rad @@ -128789,7 +128119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19398 + - uid: 19503 components: - type: Transform rot: 3.141592653589793 rad @@ -128797,21 +128127,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19399 + - uid: 19504 components: - type: Transform pos: -56.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19400 + - uid: 19505 components: - type: Transform pos: -68.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19401 + - uid: 19506 components: - type: Transform rot: 1.5707963267948966 rad @@ -128819,14 +128149,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19402 + - uid: 19507 components: - type: Transform pos: -64.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19403 + - uid: 19508 components: - type: Transform rot: -1.5707963267948966 rad @@ -128834,19 +128164,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19404 + - uid: 19509 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-55.5 parent: 2 - - uid: 19405 + - uid: 19510 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-53.5 parent: 2 - - uid: 19406 + - uid: 19511 components: - type: Transform rot: 3.141592653589793 rad @@ -128854,7 +128184,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 19407 + - uid: 19512 components: - type: Transform rot: 1.5707963267948966 rad @@ -128862,13 +128192,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19408 + - uid: 19513 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-41.5 parent: 2 - - uid: 19409 + - uid: 19514 components: - type: Transform rot: 3.141592653589793 rad @@ -128876,7 +128206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19410 + - uid: 19515 components: - type: Transform rot: -1.5707963267948966 rad @@ -128884,7 +128214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19411 + - uid: 19516 components: - type: Transform rot: 1.5707963267948966 rad @@ -128892,7 +128222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19412 + - uid: 19517 components: - type: Transform rot: 1.5707963267948966 rad @@ -128900,7 +128230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19413 + - uid: 19518 components: - type: Transform rot: 1.5707963267948966 rad @@ -128908,7 +128238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19414 + - uid: 19519 components: - type: Transform rot: -1.5707963267948966 rad @@ -128916,7 +128246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19415 + - uid: 19520 components: - type: Transform rot: -1.5707963267948966 rad @@ -128924,14 +128254,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19416 + - uid: 19521 components: - type: Transform pos: -38.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19417 + - uid: 19522 components: - type: Transform rot: 3.141592653589793 rad @@ -128939,14 +128269,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19418 + - uid: 19523 components: - type: Transform pos: -33.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19419 + - uid: 19524 components: - type: Transform rot: 3.141592653589793 rad @@ -128954,7 +128284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19420 + - uid: 19525 components: - type: Transform rot: 1.5707963267948966 rad @@ -128962,7 +128292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19421 + - uid: 19526 components: - type: Transform rot: -1.5707963267948966 rad @@ -128970,7 +128300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19422 + - uid: 19527 components: - type: Transform rot: 3.141592653589793 rad @@ -128978,7 +128308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19423 + - uid: 19528 components: - type: Transform rot: 1.5707963267948966 rad @@ -128986,7 +128316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19424 + - uid: 19529 components: - type: Transform rot: -1.5707963267948966 rad @@ -128994,7 +128324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19425 + - uid: 19530 components: - type: Transform rot: 1.5707963267948966 rad @@ -129002,7 +128332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19426 + - uid: 19531 components: - type: Transform rot: 1.5707963267948966 rad @@ -129010,7 +128340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19427 + - uid: 19532 components: - type: Transform rot: 1.5707963267948966 rad @@ -129018,7 +128348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19428 + - uid: 19533 components: - type: Transform rot: -1.5707963267948966 rad @@ -129026,29 +128356,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 19430 + - uid: 19534 components: - type: Transform pos: -27.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19431 + - uid: 19535 components: - type: Transform pos: -40.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19432 + - uid: 19536 components: - type: Transform rot: 3.141592653589793 rad @@ -129056,14 +128378,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19433 + - uid: 19537 components: - type: Transform pos: -30.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19434 + - uid: 19538 components: - type: Transform rot: -1.5707963267948966 rad @@ -129071,15 +128393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19436 + - uid: 19539 components: - type: Transform rot: -1.5707963267948966 rad @@ -129087,7 +128401,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19437 + - uid: 19540 components: - type: Transform rot: 1.5707963267948966 rad @@ -129095,7 +128409,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19438 + - uid: 19541 components: - type: Transform rot: -1.5707963267948966 rad @@ -129103,7 +128417,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19439 + - uid: 19542 components: - type: Transform rot: -1.5707963267948966 rad @@ -129111,7 +128425,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19440 + - uid: 19543 components: - type: Transform rot: -1.5707963267948966 rad @@ -129119,28 +128433,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19441 + - uid: 19544 components: - type: Transform pos: -24.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19442 + - uid: 19545 components: - type: Transform pos: -23.5,20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19443 + - uid: 19546 components: - type: Transform pos: -28.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19444 + - uid: 19547 components: - type: Transform rot: 3.141592653589793 rad @@ -129148,7 +128462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19445 + - uid: 19548 components: - type: Transform rot: 3.141592653589793 rad @@ -129156,7 +128470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19446 + - uid: 19549 components: - type: Transform rot: 3.141592653589793 rad @@ -129164,7 +128478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19447 + - uid: 19550 components: - type: Transform rot: 1.5707963267948966 rad @@ -129172,7 +128486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19448 + - uid: 19551 components: - type: Transform rot: 1.5707963267948966 rad @@ -129180,7 +128494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19449 + - uid: 19552 components: - type: Transform rot: 3.141592653589793 rad @@ -129188,28 +128502,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19450 + - uid: 19553 components: - type: Transform pos: -49.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19451 + - uid: 19554 components: - type: Transform pos: -28.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19452 + - uid: 19555 components: - type: Transform pos: -29.5,0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19453 + - uid: 19556 components: - type: Transform rot: 3.141592653589793 rad @@ -129217,7 +128531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19454 + - uid: 19557 components: - type: Transform rot: 3.141592653589793 rad @@ -129225,7 +128539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19455 + - uid: 19558 components: - type: Transform rot: 1.5707963267948966 rad @@ -129233,7 +128547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19456 + - uid: 19559 components: - type: Transform rot: -1.5707963267948966 rad @@ -129241,7 +128555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19457 + - uid: 19560 components: - type: Transform rot: 1.5707963267948966 rad @@ -129249,7 +128563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19458 + - uid: 19561 components: - type: Transform rot: -1.5707963267948966 rad @@ -129257,21 +128571,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19459 + - uid: 19562 components: - type: Transform pos: -39.5,0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19460 + - uid: 19563 components: - type: Transform pos: -41.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19461 + - uid: 19564 components: - type: Transform rot: -1.5707963267948966 rad @@ -129279,7 +128593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19462 + - uid: 19565 components: - type: Transform rot: -1.5707963267948966 rad @@ -129287,7 +128601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19463 + - uid: 19566 components: - type: Transform rot: 1.5707963267948966 rad @@ -129295,7 +128609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19464 + - uid: 19567 components: - type: Transform rot: 1.5707963267948966 rad @@ -129303,7 +128617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19465 + - uid: 19568 components: - type: Transform rot: -1.5707963267948966 rad @@ -129311,14 +128625,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19466 + - uid: 19569 components: - type: Transform pos: -47.5,10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19467 + - uid: 19570 components: - type: Transform rot: 3.141592653589793 rad @@ -129326,7 +128640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19468 + - uid: 19571 components: - type: Transform rot: 3.141592653589793 rad @@ -129334,7 +128648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19469 + - uid: 19572 components: - type: Transform rot: 1.5707963267948966 rad @@ -129342,7 +128656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19470 + - uid: 19573 components: - type: Transform rot: 1.5707963267948966 rad @@ -129350,7 +128664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19471 + - uid: 19574 components: - type: Transform rot: -1.5707963267948966 rad @@ -129358,7 +128672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19472 + - uid: 19575 components: - type: Transform rot: 3.141592653589793 rad @@ -129366,7 +128680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19473 + - uid: 19576 components: - type: Transform rot: 1.5707963267948966 rad @@ -129374,7 +128688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19474 + - uid: 19577 components: - type: Transform rot: 1.5707963267948966 rad @@ -129382,7 +128696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19475 + - uid: 19578 components: - type: Transform rot: 3.141592653589793 rad @@ -129390,14 +128704,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19476 + - uid: 19579 components: - type: Transform pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19477 + - uid: 19580 components: - type: Transform rot: 1.5707963267948966 rad @@ -129405,7 +128719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19478 + - uid: 19581 components: - type: Transform rot: -1.5707963267948966 rad @@ -129413,7 +128727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19479 + - uid: 19582 components: - type: Transform rot: 3.141592653589793 rad @@ -129421,7 +128735,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19480 + - uid: 19583 components: - type: Transform rot: 1.5707963267948966 rad @@ -129429,7 +128743,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19481 + - uid: 19584 components: - type: Transform rot: -1.5707963267948966 rad @@ -129437,7 +128751,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19482 + - uid: 19585 components: - type: Transform rot: -1.5707963267948966 rad @@ -129445,7 +128759,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19483 + - uid: 19586 components: - type: Transform rot: -1.5707963267948966 rad @@ -129453,7 +128767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19484 + - uid: 19587 components: - type: Transform rot: 1.5707963267948966 rad @@ -129461,7 +128775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19485 + - uid: 19588 components: - type: Transform rot: 1.5707963267948966 rad @@ -129469,7 +128783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19486 + - uid: 19589 components: - type: Transform rot: 1.5707963267948966 rad @@ -129477,7 +128791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19487 + - uid: 19590 components: - type: Transform rot: 1.5707963267948966 rad @@ -129485,7 +128799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19488 + - uid: 19591 components: - type: Transform rot: 1.5707963267948966 rad @@ -129493,7 +128807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19489 + - uid: 19592 components: - type: Transform rot: 3.141592653589793 rad @@ -129501,7 +128815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19490 + - uid: 19593 components: - type: Transform rot: 3.141592653589793 rad @@ -129509,14 +128823,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19491 + - uid: 19594 components: - type: Transform pos: 40.5,45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19492 + - uid: 19595 components: - type: Transform rot: 1.5707963267948966 rad @@ -129524,7 +128838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19493 + - uid: 19596 components: - type: Transform rot: 1.5707963267948966 rad @@ -129532,7 +128846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19494 + - uid: 19597 components: - type: Transform rot: 3.141592653589793 rad @@ -129540,7 +128854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19495 + - uid: 19598 components: - type: Transform rot: -1.5707963267948966 rad @@ -129548,7 +128862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19496 + - uid: 19599 components: - type: Transform rot: 1.5707963267948966 rad @@ -129556,35 +128870,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19497 + - uid: 19600 components: - type: Transform pos: -17.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19498 + - uid: 19601 components: - type: Transform pos: -16.5,51.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19499 + - uid: 19602 components: - type: Transform pos: -21.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19500 + - uid: 19603 components: - type: Transform pos: -20.5,51.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19501 + - uid: 19604 components: - type: Transform rot: -1.5707963267948966 rad @@ -129592,7 +128906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19502 + - uid: 19605 components: - type: Transform rot: 1.5707963267948966 rad @@ -129600,7 +128914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19503 + - uid: 19606 components: - type: Transform rot: 1.5707963267948966 rad @@ -129608,7 +128922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19504 + - uid: 19607 components: - type: Transform rot: 1.5707963267948966 rad @@ -129616,7 +128930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19505 + - uid: 19608 components: - type: Transform rot: 3.141592653589793 rad @@ -129624,14 +128938,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19506 + - uid: 19609 components: - type: Transform pos: -17.5,61.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19507 + - uid: 19610 components: - type: Transform rot: 1.5707963267948966 rad @@ -129639,7 +128953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19508 + - uid: 19611 components: - type: Transform rot: -1.5707963267948966 rad @@ -129647,7 +128961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19509 + - uid: 19612 components: - type: Transform rot: -1.5707963267948966 rad @@ -129655,7 +128969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19510 + - uid: 19613 components: - type: Transform rot: -1.5707963267948966 rad @@ -129663,7 +128977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19511 + - uid: 19614 components: - type: Transform rot: 1.5707963267948966 rad @@ -129671,7 +128985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19512 + - uid: 19615 components: - type: Transform rot: -1.5707963267948966 rad @@ -129679,7 +128993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19513 + - uid: 19616 components: - type: Transform rot: 1.5707963267948966 rad @@ -129687,7 +129001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19514 + - uid: 19617 components: - type: Transform rot: 1.5707963267948966 rad @@ -129695,7 +129009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19515 + - uid: 19618 components: - type: Transform rot: 3.141592653589793 rad @@ -129703,7 +129017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19516 + - uid: 19619 components: - type: Transform rot: 1.5707963267948966 rad @@ -129711,7 +129025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19517 + - uid: 19620 components: - type: Transform rot: -1.5707963267948966 rad @@ -129719,7 +129033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19518 + - uid: 19621 components: - type: Transform rot: 3.141592653589793 rad @@ -129727,14 +129041,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19519 + - uid: 19622 components: - type: Transform pos: 29.5,45.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19520 + - uid: 19623 components: - type: Transform rot: -1.5707963267948966 rad @@ -129742,7 +129056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19521 + - uid: 19624 components: - type: Transform rot: -1.5707963267948966 rad @@ -129750,7 +129064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19522 + - uid: 19625 components: - type: Transform rot: 3.141592653589793 rad @@ -129758,7 +129072,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19523 + - uid: 19626 components: - type: Transform rot: 3.141592653589793 rad @@ -129766,7 +129080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19524 + - uid: 19627 components: - type: Transform rot: 3.141592653589793 rad @@ -129774,7 +129088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19525 + - uid: 19628 components: - type: Transform rot: 3.141592653589793 rad @@ -129782,7 +129096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19526 + - uid: 19629 components: - type: Transform rot: 1.5707963267948966 rad @@ -129790,7 +129104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19527 + - uid: 19630 components: - type: Transform rot: 1.5707963267948966 rad @@ -129798,7 +129112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19528 + - uid: 19631 components: - type: Transform rot: 3.141592653589793 rad @@ -129806,14 +129120,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19529 + - uid: 19632 components: - type: Transform pos: 65.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19530 + - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad @@ -129821,14 +129135,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19531 + - uid: 19634 components: - type: Transform pos: 73.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19532 + - uid: 19635 components: - type: Transform rot: 3.141592653589793 rad @@ -129836,7 +129150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19533 + - uid: 19636 components: - type: Transform rot: -1.5707963267948966 rad @@ -129844,7 +129158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19534 + - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad @@ -129852,14 +129166,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19535 + - uid: 19638 components: - type: Transform pos: 72.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19536 + - uid: 19639 components: - type: Transform rot: 1.5707963267948966 rad @@ -129867,14 +129181,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19537 + - uid: 19640 components: - type: Transform pos: 70.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19538 + - uid: 19641 components: - type: Transform rot: 1.5707963267948966 rad @@ -129882,7 +129196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19539 + - uid: 19642 components: - type: Transform rot: -1.5707963267948966 rad @@ -129890,7 +129204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19540 + - uid: 19643 components: - type: Transform rot: 3.141592653589793 rad @@ -129898,13 +129212,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19541 + - uid: 19644 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 - - uid: 19542 + - uid: 19645 components: - type: Transform rot: 1.5707963267948966 rad @@ -129912,14 +129226,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19543 + - uid: 19646 components: - type: Transform pos: 3.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19544 + - uid: 19647 components: - type: Transform rot: 3.141592653589793 rad @@ -129927,7 +129241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19545 + - uid: 19648 components: - type: Transform rot: 3.141592653589793 rad @@ -129935,21 +129249,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19546 + - uid: 19649 components: - type: Transform pos: -30.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19547 + - uid: 19650 components: - type: Transform pos: -28.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19548 + - uid: 19651 components: - type: Transform rot: -1.5707963267948966 rad @@ -129957,28 +129271,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19549 + - uid: 19652 components: - type: Transform pos: 30.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19550 + - uid: 19653 components: - type: Transform pos: 29.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19551 + - uid: 19654 components: - type: Transform pos: -44.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19552 + - uid: 19655 components: - type: Transform rot: 1.5707963267948966 rad @@ -129986,14 +129300,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19553 + - uid: 19656 components: - type: Transform pos: -71.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19554 + - uid: 19657 components: - type: Transform rot: -1.5707963267948966 rad @@ -130001,21 +129315,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19555 + - uid: 19658 components: - type: Transform pos: -68.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19556 + - uid: 19659 components: - type: Transform pos: -71.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19557 + - uid: 19660 components: - type: Transform rot: 1.5707963267948966 rad @@ -130023,626 +129337,635 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19661 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19662 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19665 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-58.5 + parent: 2 + - uid: 19668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-61.5 + parent: 2 + - uid: 19669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-58.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-58.5 + parent: 2 + - uid: 19671 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 19672 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19673 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19674 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19675 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19677 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - - uid: 19558 + - uid: 19678 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19559 + - uid: 19679 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19560 + - uid: 19680 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19561 + - uid: 19681 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19562 + - uid: 19682 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19563 + - uid: 19683 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19564 + - uid: 19684 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19565 + - uid: 19685 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19566 + - uid: 19686 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-62.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19569 + - uid: 19687 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19570 + - uid: 19688 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19571 + - uid: 19689 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19572 + - uid: 19690 components: - type: Transform pos: 70.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19573 + - uid: 19691 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 19574 + - uid: 19692 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 19575 + - uid: 19693 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 19576 + - uid: 19694 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 19577 + - uid: 19695 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19578 + - uid: 19696 components: - type: Transform pos: -54.5,-59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19579 + - uid: 19697 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19580 + - uid: 19698 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19581 + - uid: 19699 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19582 + - uid: 19700 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - uid: 19701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-58.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-61.5 + parent: 2 - proto: GasPressurePump entities: - - uid: 19583 + - uid: 19703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-46.5 + parent: 2 + - uid: 19704 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19584 + - uid: 19705 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19585 + - uid: 19706 components: - type: Transform pos: -70.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19586 + - uid: 19707 components: - type: Transform pos: -68.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19587 + - uid: 19708 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19588 + - uid: 19709 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19589 + - uid: 19710 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19590 + - uid: 19711 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19591 + - uid: 19712 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19592 + - uid: 19713 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19593 + - uid: 19714 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19594 + - uid: 19715 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19595 + - uid: 19716 components: - type: Transform pos: -40.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 19596 + - uid: 19717 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19597 + - uid: 19718 components: - type: Transform pos: -37.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19598 + - uid: 19719 components: - type: Transform pos: -38.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-61.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - uid: 19600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-59.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19601 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19602 + - uid: 19720 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 19603 + - uid: 19721 components: - type: Transform pos: 71.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 19604 + - uid: 19722 components: - type: Transform pos: -56.5,-59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19605 + - uid: 19723 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#999000FF' - - uid: 19606 + - uid: 19724 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19607 + - uid: 19725 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#9755CCFF' - - uid: 19608 + - uid: 19726 components: - type: Transform pos: -48.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19609 + - uid: 19727 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19610 + - uid: 19728 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 19729 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19731 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-61.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 2 - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19611 + - uid: 19735 components: - type: Transform pos: 53.993114,35.55658 parent: 2 - proto: GasThermoMachineFreezer entities: - - uid: 19612 + - uid: 19736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-61.5 + parent: 2 + - uid: 19737 components: - type: Transform pos: -66.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19613 + - uid: 19738 components: - type: Transform pos: 2.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19614 + - uid: 19739 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19615 + - uid: 19740 components: - type: Transform pos: 2.5,68.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19616 + - uid: 19741 components: - type: Transform pos: 2.5,70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19617 + - uid: 19742 components: - type: Transform pos: -5.5,68.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19618 + - uid: 19743 components: - type: Transform pos: -5.5,70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19619 + - uid: 19744 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19620 - components: - - type: Transform - pos: -22.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#97C3FCCC' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19621 + - uid: 19745 components: - type: Transform pos: -69.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19622 + - uid: 19746 components: - type: Transform pos: -67.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 19623 + - uid: 19747 components: - type: Transform pos: -68.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 2 + - uid: 19748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-58.5 + parent: 2 - proto: GasThermoMachineHeater entities: - - uid: 19624 + - uid: 19749 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19625 + - uid: 19750 components: - type: Transform pos: -57.5,-59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - - uid: 19626 + - uid: 19751 components: - type: Transform pos: -44.5,-40.5 parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - - uid: 19627 + - uid: 19752 components: - type: Transform rot: 1.5707963267948966 rad @@ -130650,11 +129973,9 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19628 + - uid: 19753 components: - type: Transform rot: -1.5707963267948966 rad @@ -130662,11 +129983,9 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19629 + - uid: 19754 components: - type: Transform rot: -1.5707963267948966 rad @@ -130674,32 +129993,26 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19630 + - uid: 19755 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19631 + - uid: 19756 components: - type: Transform pos: -40.5,-53.5 parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19632 + - uid: 19757 components: - type: Transform rot: 3.141592653589793 rad @@ -130707,33 +130020,27 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19633 + - uid: 19758 components: - type: Transform pos: -37.5,-53.5 parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19634 + - uid: 19759 components: - type: Transform pos: -38.5,-42.5 parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19635 + - uid: 19760 components: - type: Transform rot: -1.5707963267948966 rad @@ -130741,11 +130048,9 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19636 + - uid: 19761 components: - type: Transform rot: 1.5707963267948966 rad @@ -130753,20 +130058,16 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19637 + - uid: 19762 components: - type: Transform pos: -48.5,-36.5 parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - - uid: 19638 + - uid: 19763 components: - type: Transform rot: 1.5707963267948966 rad @@ -130774,11 +130075,9 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19639 + - uid: 19764 components: - type: Transform rot: 1.5707963267948966 rad @@ -130786,1767 +130085,1353 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 19640 + - uid: 19765 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19766 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19767 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19641 + - uid: 19768 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19642 + - uid: 19769 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19643 + - uid: 19770 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19644 + - uid: 19771 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19645 + - uid: 19772 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19646 + - uid: 19773 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19647 + - uid: 19774 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19648 - components: - - type: Transform - pos: -1.5,-59.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19649 + - uid: 19775 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: DeviceNetwork + deviceLists: + - 100 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19650 + - uid: 19776 components: - type: Transform pos: 25.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19651 + - uid: 19777 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19653 + - uid: 19778 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-86.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19654 + - uid: 19779 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19655 + - uid: 19780 components: - type: Transform pos: 20.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - type: AtmosDevice - joinedGrid: 2 + - 97 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19656 + - uid: 19781 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19657 + - uid: 19782 components: - type: Transform pos: 26.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19658 + - uid: 19783 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19659 + - uid: 19784 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19660 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19661 + - uid: 19785 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19662 + - uid: 19786 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19663 + - uid: 19787 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19664 + - uid: 19788 components: - type: Transform pos: 10.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19665 + - uid: 19789 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19666 + - uid: 19790 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19667 + - uid: 19791 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19668 + - uid: 19792 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19669 + - uid: 19793 components: - type: Transform pos: 22.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19670 + - uid: 19794 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19671 + - uid: 19795 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19672 + - uid: 19796 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19675 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19676 + - uid: 19797 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-60.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: DeviceNetwork + deviceLists: + - 102 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19678 + - uid: 19798 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19679 + - uid: 19799 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-80.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19680 + - uid: 19800 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19681 + - uid: 19801 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19682 + - uid: 19802 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19683 + - uid: 19803 components: - type: Transform pos: 20.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19684 + - uid: 19804 components: - type: Transform pos: 5.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19685 + - uid: 19805 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19686 + - uid: 19806 components: - type: Transform pos: -24.5,-79.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19687 + - uid: 19807 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-78.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19688 + - uid: 19808 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19689 + - uid: 19809 components: - type: Transform pos: 17.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19690 + - uid: 19810 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19691 + - uid: 19811 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19692 + - uid: 19812 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19693 + - uid: 19813 components: - type: Transform pos: -29.5,-70.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19694 + - uid: 19814 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19695 + - uid: 19815 components: - type: Transform pos: 47.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19696 + - uid: 19816 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19697 + - uid: 19817 components: - type: Transform pos: -7.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19698 + - uid: 19818 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19699 + - uid: 19819 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19700 + - uid: 19820 components: - type: Transform pos: 30.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19701 + - uid: 19821 components: - type: Transform pos: -18.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19702 + - uid: 19822 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19703 + - uid: 19823 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19704 + - uid: 19824 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-89.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-64.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19706 + - uid: 19825 components: - type: Transform pos: 31.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19707 + - uid: 19826 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19708 + - uid: 19827 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19709 + - uid: 19828 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-67.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19710 + - uid: 19829 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-88.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19711 + - uid: 19830 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19712 + - uid: 19831 components: - type: Transform pos: -16.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19713 + - uid: 19832 components: - type: Transform pos: -11.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19714 + - uid: 19833 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19715 + - uid: 19834 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19716 + - uid: 19835 components: - type: Transform pos: 30.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19717 + - uid: 19836 components: - type: Transform pos: 45.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19718 + - uid: 19837 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19719 + - uid: 19838 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19720 + - uid: 19839 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19721 + - uid: 19840 components: - type: Transform pos: 59.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19722 + - uid: 19841 components: - type: Transform pos: 56.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19723 + - uid: 19842 components: - type: Transform pos: 53.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19724 + - uid: 19843 components: - type: Transform pos: 50.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19725 + - uid: 19844 components: - type: Transform pos: 47.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19726 + - uid: 19845 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19727 + - uid: 19846 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19728 + - uid: 19847 components: - type: Transform pos: 39.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19729 + - uid: 19848 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19730 + - uid: 19849 components: - type: Transform pos: 45.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19731 + - uid: 19850 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19732 + - uid: 19851 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19733 + - uid: 19852 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19734 + - uid: 19853 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19735 + - uid: 19854 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19736 + - uid: 19855 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19737 + - uid: 19856 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19738 + - uid: 19857 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19739 + - uid: 19858 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19740 + - uid: 19859 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19741 + - uid: 19860 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19742 + - uid: 19861 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19743 + - uid: 19862 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19744 + - uid: 19863 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19745 + - uid: 19864 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19746 + - uid: 19865 components: - type: Transform pos: 61.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19747 + - uid: 19866 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19748 + - uid: 19867 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19749 + - uid: 19868 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19750 + - uid: 19869 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19751 + - uid: 19870 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19752 + - uid: 19871 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19753 + - uid: 19872 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19754 + - uid: 19873 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19755 + - uid: 19874 components: - type: Transform pos: 29.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19756 + - uid: 19875 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19757 + - uid: 19876 components: - type: Transform pos: -13.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19758 + - uid: 19877 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19759 + - uid: 19878 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19760 + - uid: 19879 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19761 + - uid: 19880 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19762 + - uid: 19881 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19763 + - uid: 19882 components: - type: Transform pos: 38.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19764 + - uid: 19883 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19765 + - uid: 19884 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19766 + - uid: 19885 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19767 + - uid: 19886 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19768 + - uid: 19887 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-71.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-56.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19770 + - uid: 19888 components: - type: Transform pos: -28.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19771 + - uid: 19889 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19772 + - uid: 19890 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19773 + - uid: 19891 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19774 + - uid: 19892 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19775 + - uid: 19893 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19776 + - uid: 19894 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19777 + - uid: 19895 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19778 + - uid: 19896 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19779 + - uid: 19897 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19780 + - uid: 19898 components: - type: Transform pos: -45.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19781 + - uid: 19899 components: - type: Transform pos: -59.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19782 + - uid: 19900 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19783 + - uid: 19901 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19784 + - uid: 19902 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19785 + - uid: 19903 components: - type: Transform pos: -30.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19786 + - uid: 19904 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19787 + - uid: 19905 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19788 - components: - - type: Transform - pos: -23.5,-57.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19789 + - uid: 19906 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-71.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19790 + - uid: 19907 components: - type: Transform pos: 21.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19791 + - uid: 19908 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19792 + - uid: 19909 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19793 + - uid: 19910 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19794 + - uid: 19911 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19795 + - uid: 19912 components: - type: Transform pos: -32.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19796 + - uid: 19913 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19797 + - uid: 19914 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19798 + - uid: 19915 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19799 + - uid: 19916 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19800 + - uid: 19917 components: - type: Transform pos: -44.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19801 + - uid: 19918 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19802 + - uid: 19919 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19803 + - uid: 19920 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19804 + - uid: 19921 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19805 + - uid: 19922 components: - type: Transform pos: -29.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19806 + - uid: 19923 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19807 + - uid: 19924 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19808 + - uid: 19925 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19809 + - uid: 19926 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19810 + - uid: 19927 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19811 + - uid: 19928 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19812 + - uid: 19929 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19813 + - uid: 19930 components: - type: Transform pos: -45.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19814 + - uid: 19931 components: - type: Transform pos: -51.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19815 + - uid: 19932 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19816 + - uid: 19933 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19817 + - uid: 19934 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 19.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19818 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 19935 components: - type: Transform pos: -54.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19819 + - uid: 19936 components: - type: Transform pos: -8.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19820 + - uid: 19937 components: - type: Transform rot: 3.141592653589793 rad @@ -132554,8654 +131439,8064 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - type: AtmosDevice - joinedGrid: 2 + - 97 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19821 + - uid: 19938 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19822 + - uid: 19939 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-78.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19823 + - uid: 19940 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19824 + - uid: 19941 components: - type: Transform pos: 54.5,56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19825 + - uid: 19942 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19826 + - uid: 19943 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19827 + - uid: 19944 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19828 + - uid: 19945 components: - type: Transform pos: -14.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19829 + - uid: 19946 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19830 + - uid: 19947 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19831 + - uid: 19948 components: - type: Transform pos: -1.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19832 + - uid: 19949 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19833 + - uid: 19950 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19834 + - uid: 19951 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19835 + - uid: 19952 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19836 + - uid: 19953 components: - type: Transform pos: -12.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19837 + - uid: 19954 components: - type: Transform pos: -22.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19838 + - uid: 19955 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19839 + - uid: 19956 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19840 + - uid: 19957 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19841 + - uid: 19958 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19842 + - uid: 19959 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-91.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19843 + - uid: 19960 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-96.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19844 + - uid: 19961 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-97.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19845 + - uid: 19962 components: - type: Transform pos: -8.5,-84.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19846 + - uid: 19963 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-97.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19847 + - uid: 19964 components: - type: Transform pos: 65.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19848 + - uid: 19965 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19849 + - uid: 19966 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19850 + - uid: 19967 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19851 + - uid: 19968 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19852 + - uid: 19969 components: - type: Transform pos: 74.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19853 + - uid: 19970 components: - type: Transform pos: 73.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19854 + - uid: 19971 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19855 + - uid: 19972 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19856 + - uid: 19973 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19857 + - uid: 19974 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19858 + - uid: 19975 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19859 + - uid: 19976 components: - type: Transform pos: -11.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19860 + - uid: 19977 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19861 + - uid: 19978 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19862 + - uid: 19979 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19863 + - uid: 19980 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19864 + - uid: 19981 components: - type: Transform pos: 25.5,-71.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19865 + - uid: 19982 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-83.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19866 + - uid: 19983 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-86.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19867 + - uid: 19984 components: - type: Transform pos: 12.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19868 + - uid: 19985 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19869 + - uid: 19986 components: - type: Transform pos: -45.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19870 + - uid: 19987 components: - type: Transform pos: 68.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19871 + - uid: 19988 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19872 + - uid: 19989 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19873 + - uid: 19990 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31676 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19874 + - uid: 19991 components: - type: Transform pos: 42.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19875 + - uid: 19992 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19876 + - uid: 19993 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: DeviceNetwork + deviceLists: + - 103 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19877 + - uid: 19994 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 31684 + - uid: 19995 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-36.5 + pos: -3.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasVentScrubber - entities: - - uid: 19878 + - type: DeviceNetwork + deviceLists: + - 98 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19996 components: - type: Transform - pos: -0.5,12.5 + rot: 1.5707963267948966 rad + pos: -12.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19879 + color: '#0055CCFF' + - uid: 19997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20003 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-47.5 + pos: 0.5,-57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 20005 + components: + - type: Transform + pos: -0.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19880 + - uid: 20006 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19881 + - uid: 20007 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19882 + - uid: 20008 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19883 + - uid: 20009 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19884 + - uid: 20010 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19885 + - uid: 20011 components: - type: Transform pos: 25.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19886 + - uid: 20012 components: - type: Transform pos: 22.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19887 + - uid: 20013 components: - type: Transform pos: 11.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19888 + - uid: 20014 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19889 + - uid: 20015 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19890 + - uid: 20016 components: - type: Transform pos: -8.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19891 + - uid: 20017 components: - type: Transform pos: 31.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - type: AtmosDevice - joinedGrid: 2 + - 97 - type: AtmosPipeColor color: '#990000FF' - - uid: 19892 + - uid: 20018 components: - type: Transform pos: 31.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19893 + - uid: 20019 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19894 + - uid: 20020 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19895 + - uid: 20021 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19896 + - uid: 20022 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19897 + - uid: 20023 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19898 + - uid: 20024 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19899 + - uid: 20025 components: - type: Transform pos: 38.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19900 + - uid: 20026 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19901 + - uid: 20027 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19902 + - uid: 20028 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19903 + - uid: 20029 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19904 + - uid: 20030 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19905 + - uid: 20031 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19906 + - uid: 20032 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19907 + - uid: 20033 components: - type: Transform pos: 23.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19908 + - uid: 20034 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-65.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-61.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-54.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19914 + - uid: 20035 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-61.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: DeviceNetwork + deviceLists: + - 102 - type: AtmosPipeColor color: '#990000FF' - - uid: 19916 + - uid: 20036 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: DeviceNetwork + deviceLists: + - 100 - type: AtmosPipeColor color: '#990000FF' - - uid: 19917 + - uid: 20037 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-85.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19918 + - uid: 20038 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19919 + - uid: 20039 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19920 + - uid: 20040 components: - type: Transform pos: 17.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19921 + - uid: 20041 components: - type: Transform pos: 33.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19922 + - uid: 20042 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19923 + - uid: 20043 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19924 + - uid: 20044 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-90.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19925 + - uid: 20045 components: - type: Transform pos: 33.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19926 + - uid: 20046 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19927 + - uid: 20047 components: - type: Transform pos: 25.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19928 + - uid: 20048 components: - type: Transform pos: 16.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19929 + - uid: 20049 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19930 + - uid: 20050 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19931 + - uid: 20051 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19932 + - uid: 20052 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19933 + - uid: 20053 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19934 + - uid: 20054 components: - type: Transform pos: -20.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19935 + - uid: 20055 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19936 + - uid: 20056 components: - type: Transform pos: 21.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19937 + - uid: 20057 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19938 + - uid: 20058 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19939 + - uid: 20059 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19940 + - uid: 20060 components: - type: Transform pos: 12.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19941 + - uid: 20061 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19942 + - uid: 20062 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19943 + - uid: 20063 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19944 + - uid: 20064 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19945 + - uid: 20065 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-70.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19946 + - uid: 20066 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-63.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19948 + - uid: 20067 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19949 + - uid: 20068 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19950 + - uid: 20069 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19951 + - uid: 20070 components: - type: Transform pos: -9.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19952 + - uid: 20071 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19953 + - uid: 20072 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19954 + - uid: 20073 components: - type: Transform pos: 28.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19955 + - uid: 20074 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19956 + - uid: 20075 components: - type: Transform pos: 47.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19957 + - uid: 20076 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19958 + - uid: 20077 components: - type: Transform pos: 46.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19959 + - uid: 20078 components: - type: Transform pos: 49.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19960 + - uid: 20079 components: - type: Transform pos: 52.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19961 + - uid: 20080 components: - type: Transform pos: 55.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19962 + - uid: 20081 components: - type: Transform pos: 58.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19963 + - uid: 20082 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19964 + - uid: 20083 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19965 + - uid: 20084 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19966 + - uid: 20085 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19967 + - uid: 20086 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19968 + - uid: 20087 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19969 + - uid: 20088 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19970 + - uid: 20089 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19971 + - uid: 20090 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19972 + - uid: 20091 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19973 + - uid: 20092 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19974 + - uid: 20093 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19975 + - uid: 20094 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19976 + - uid: 20095 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19977 + - uid: 20096 components: - type: Transform pos: 43.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19978 + - uid: 20097 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19979 + - uid: 20098 components: - type: Transform pos: 55.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19980 + - uid: 20099 components: - type: Transform pos: 45.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19981 + - uid: 20100 components: - type: Transform pos: 56.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19982 + - uid: 20101 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19983 + - uid: 20102 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19984 + - uid: 20103 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19985 + - uid: 20104 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19986 + - uid: 20105 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19987 + - uid: 20106 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19988 + - uid: 20107 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19989 + - uid: 20108 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19990 + - uid: 20109 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19991 + - uid: 20110 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19992 + - uid: 20111 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19993 + - uid: 20112 components: - type: Transform pos: 34.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19994 + - uid: 20113 components: - type: Transform pos: 28.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19995 + - uid: 20114 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19996 + - uid: 20115 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19997 + - uid: 20116 components: - type: Transform pos: -24.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19998 + - uid: 20117 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 19999 + - uid: 20118 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20000 + - uid: 20119 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20001 + - uid: 20120 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20002 + - uid: 20121 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20003 + - uid: 20122 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-65.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20004 + - uid: 20123 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20005 + - uid: 20124 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20006 + - uid: 20125 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20007 + - uid: 20126 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-85.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20008 + - uid: 20127 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20009 + - uid: 20128 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-71.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20010 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20011 + - uid: 20129 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20012 + - uid: 20130 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20013 + - uid: 20131 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20014 + - uid: 20132 components: - type: Transform pos: -35.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20015 + - uid: 20133 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20016 + - uid: 20134 components: - type: Transform pos: -44.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20017 + - uid: 20135 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20018 + - uid: 20136 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20019 + - uid: 20137 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20020 + - uid: 20138 components: - type: Transform pos: -47.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20021 + - uid: 20139 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20022 + - uid: 20140 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20023 + - uid: 20141 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20024 + - uid: 20142 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20025 + - uid: 20143 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20026 + - uid: 20144 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20027 + - uid: 20145 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20028 + - uid: 20146 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20029 + - uid: 20147 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20030 + - uid: 20148 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-70.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20031 + - uid: 20149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-57.5 + pos: -19.5,-57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20032 + - uid: 20150 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20033 + - uid: 20151 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20034 + - uid: 20152 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20035 + - uid: 20153 components: - type: Transform pos: -28.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20036 + - uid: 20154 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20037 + - uid: 20155 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20038 + - uid: 20156 components: - type: Transform pos: -33.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20039 + - uid: 20157 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20040 + - uid: 20158 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20041 + - uid: 20159 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20042 + - uid: 20160 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20043 + - uid: 20161 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20044 + - uid: 20162 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20045 + - uid: 20163 components: - type: Transform pos: -30.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20046 + - uid: 20164 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20047 + - uid: 20165 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20048 + - uid: 20166 components: - type: Transform pos: -51.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20049 + - uid: 20167 components: - type: Transform pos: -52.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20050 + - uid: 20168 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20051 + - uid: 20169 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20052 + - uid: 20170 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20053 + - uid: 20171 components: - type: Transform pos: -46.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20054 + - uid: 20172 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20055 + - uid: 20173 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-77.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20056 + - uid: 20174 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20057 + - uid: 20175 components: - type: Transform pos: 17.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 101 - - type: AtmosDevice - joinedGrid: 2 + - 97 - type: AtmosPipeColor color: '#990000FF' - - uid: 20058 + - uid: 20176 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20059 + - uid: 20177 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20060 + - uid: 20178 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20061 + - uid: 20179 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20062 + - uid: 20180 components: - type: Transform pos: 52.5,56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20063 + - uid: 20181 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20064 + - uid: 20182 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20065 + - uid: 20183 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20066 + - uid: 20184 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20067 + - uid: 20185 components: - type: Transform pos: 70.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 20068 + - uid: 20186 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20069 + - uid: 20187 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,69.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20070 + - uid: 20188 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,69.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20071 + - uid: 20189 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,62.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20072 + - uid: 20190 components: - type: Transform pos: -1.5,68.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20073 + - uid: 20191 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20074 + - uid: 20192 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20075 + - uid: 20193 components: - type: Transform pos: -17.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20076 + - uid: 20194 components: - type: Transform pos: -21.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20077 + - uid: 20195 components: - type: Transform pos: -13.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20078 + - uid: 20196 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20079 + - uid: 20197 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20080 + - uid: 20198 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20081 + - uid: 20199 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20082 + - uid: 20200 components: - type: Transform pos: -7.5,-92.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20083 + - uid: 20201 components: - type: Transform pos: -21.5,-97.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20084 + - uid: 20202 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-98.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20085 + - uid: 20203 components: - type: Transform pos: -6.5,-84.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20086 + - uid: 20204 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-96.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20087 + - uid: 20205 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20088 + - uid: 20206 components: - type: Transform pos: 67.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20089 + - uid: 20207 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20090 + - uid: 20208 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20091 + - uid: 20209 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20092 + - uid: 20210 components: - type: Transform pos: 66.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20093 + - uid: 20211 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20094 + - uid: 20212 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20095 + - uid: 20213 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 20096 + - uid: 20214 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20097 + - uid: 20215 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20098 + - uid: 20216 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20099 + - uid: 20217 components: - type: Transform pos: -10.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20100 + - uid: 20218 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-70.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20101 + - uid: 20219 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20102 + - uid: 20220 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20103 + - uid: 20221 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-83.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20104 + - uid: 20222 components: - type: Transform pos: 24.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20105 + - uid: 20223 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-85.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20106 + - uid: 20224 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20107 + - uid: 20225 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20108 + - uid: 20226 components: - type: Transform pos: 45.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20109 + - uid: 20227 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20110 + - uid: 20228 components: - type: Transform pos: -46.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20111 + - uid: 20229 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20112 + - uid: 20230 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20113 + - uid: 20231 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20114 + - uid: 20232 components: - type: Transform pos: -1.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20115 + - uid: 20233 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20116 + - uid: 20234 components: - type: Transform pos: 40.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 20117 + - uid: 20235 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 31678 + - uid: 20236 components: - type: Transform - pos: 23.5,-36.5 + rot: 3.141592653589793 rad + pos: -5.5,-53.5 parent: 2 - type: DeviceNetwork deviceLists: - - 31676 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasVolumePump - entities: - - uid: 20118 + - 98 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20237 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,12.5 + pos: -14.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 20119 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20244 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-46.5 + pos: 6.5,-57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 20120 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20245 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 20247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 20248 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - proto: Gauze1 entities: - - uid: 20121 + - uid: 20249 components: - type: Transform pos: -6.3074856,-49.39305 parent: 2 - proto: GeneratorBasic15kW entities: - - uid: 20122 + - uid: 20250 components: - type: Transform pos: -58.5,-87.5 parent: 2 - proto: Girder entities: - - uid: 20123 + - uid: 20251 components: - type: Transform pos: -36.5,-68.5 parent: 2 - - uid: 20124 + - uid: 20252 components: - type: Transform pos: 20.5,-54.5 parent: 2 - - uid: 20125 - components: - - type: Transform - pos: -22.5,-64.5 - parent: 2 - - uid: 20126 + - uid: 20253 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 20127 + - uid: 20254 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 20128 + - uid: 20255 components: - type: Transform pos: -16.5,13.5 parent: 2 - proto: GoldOre1 entities: - - uid: 20129 + - uid: 20257 components: - type: Transform rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 - - uid: 20130 + - uid: 20258 components: - type: Transform pos: 79.30878,-64.25522 parent: 2 - proto: GrassBattlemap entities: - - uid: 20131 + - uid: 20259 components: - type: Transform pos: 10.688803,-6.590752 parent: 2 - proto: GravityGenerator entities: - - uid: 20132 + - uid: 20260 components: - type: Transform pos: -19.5,2.5 parent: 2 - proto: GrenadeFlashBang entities: - - uid: 20133 + - uid: 20261 components: - type: Transform pos: 52.279568,11.553763 parent: 2 - proto: Grille entities: - - uid: 20134 + - uid: 20262 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-59.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-57.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-63.5 + parent: 2 + - uid: 20272 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-40.5 parent: 2 - - uid: 20135 + - uid: 20273 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 - - uid: 20136 + - uid: 20274 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 - - uid: 20137 + - uid: 20275 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-91.5 parent: 2 - - uid: 20138 + - uid: 20276 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-90.5 parent: 2 - - uid: 20139 + - uid: 20277 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-91.5 parent: 2 - - uid: 20140 + - uid: 20278 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-91.5 parent: 2 - - uid: 20141 + - uid: 20279 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-12.5 parent: 2 - - uid: 20142 + - uid: 20280 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 20143 + - uid: 20281 components: - type: Transform pos: 9.5,29.5 parent: 2 - - uid: 20144 + - uid: 20282 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 20145 + - uid: 20283 components: - type: Transform pos: -44.5,-37.5 parent: 2 - - uid: 20146 + - uid: 20284 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 - - uid: 20147 + - uid: 20285 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 - - uid: 20148 + - uid: 20286 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 - - uid: 20149 + - uid: 20287 components: - type: Transform pos: -76.5,-32.5 parent: 2 - - uid: 20150 + - uid: 20288 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 - - uid: 20151 + - uid: 20289 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 - - uid: 20152 + - uid: 20290 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 - - uid: 20153 + - uid: 20291 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 - - uid: 20154 + - uid: 20292 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 - - uid: 20155 + - uid: 20293 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 - - uid: 20156 + - uid: 20294 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 - - uid: 20157 + - uid: 20295 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 - - uid: 20158 + - uid: 20296 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 - - uid: 20159 + - uid: 20297 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 - - uid: 20160 + - uid: 20298 components: - type: Transform pos: -5.5,20.5 parent: 2 - - uid: 20161 + - uid: 20299 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 - - uid: 20162 + - uid: 20300 components: - type: Transform pos: -4.5,20.5 parent: 2 - - uid: 20163 + - uid: 20301 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 - - uid: 20164 + - uid: 20302 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 - - uid: 20165 + - uid: 20303 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 - - uid: 20166 + - uid: 20304 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 - - uid: 20167 + - uid: 20305 components: - type: Transform pos: 32.5,-9.5 parent: 2 - - uid: 20168 + - uid: 20306 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 - - uid: 20169 + - uid: 20307 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 20170 - components: - - type: Transform - pos: -18.5,-88.5 - parent: 2 - - uid: 20171 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - uid: 20172 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 2 - - uid: 20173 + - uid: 20308 components: - type: Transform - pos: -9.5,-55.5 + pos: -18.5,-88.5 parent: 2 - - uid: 20174 + - uid: 20309 components: - type: Transform - pos: -12.5,-55.5 + pos: -18.5,-58.5 parent: 2 - - uid: 20175 + - uid: 20310 components: - type: Transform - pos: -4.5,-56.5 + pos: 31.5,-15.5 parent: 2 - - uid: 20176 + - uid: 20311 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 20177 + - uid: 20312 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 20178 + - uid: 20313 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 20179 + - uid: 20314 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 20180 + - uid: 20315 components: - type: Transform pos: 3.5,-39.5 parent: 2 - - uid: 20181 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 2 - - uid: 20182 + - uid: 20316 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 20183 + - uid: 20317 components: - type: Transform pos: 29.5,26.5 parent: 2 - - uid: 20184 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 2 - - uid: 20185 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 2 - - uid: 20186 - components: - - type: Transform - pos: 7.5,-59.5 - parent: 2 - - uid: 20187 + - uid: 20318 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 20188 + - uid: 20319 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 20189 + - uid: 20320 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 20190 + - uid: 20321 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 20191 + - uid: 20322 components: - type: Transform pos: -1.5,49.5 parent: 2 - - uid: 20192 + - uid: 20323 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 - - uid: 20193 + - uid: 20324 components: - type: Transform pos: 7.5,18.5 parent: 2 - - uid: 20194 + - uid: 20325 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 - - uid: 20195 - components: - - type: Transform - pos: 2.5,-62.5 - parent: 2 - - uid: 20196 + - uid: 20326 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 20197 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 2 - - uid: 20198 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 2 - - uid: 20199 + - uid: 20327 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - uid: 20200 + - uid: 20328 components: - type: Transform pos: -1.5,-35.5 parent: 2 - - uid: 20201 + - uid: 20329 components: - type: Transform pos: -28.5,-47.5 parent: 2 - - uid: 20202 + - uid: 20330 components: - type: Transform pos: 24.5,-60.5 parent: 2 - - uid: 20203 + - uid: 20331 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 - - uid: 20204 + - uid: 20332 components: - type: Transform pos: 21.5,-3.5 parent: 2 - - uid: 20205 + - uid: 20333 components: - type: Transform pos: 23.5,-3.5 parent: 2 - - uid: 20206 - components: - - type: Transform - pos: -6.5,-58.5 - parent: 2 - - uid: 20207 + - uid: 20334 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 20208 - components: - - type: Transform - pos: -10.5,-57.5 - parent: 2 - - uid: 20209 + - uid: 20335 components: - type: Transform pos: 29.5,9.5 parent: 2 - - uid: 20210 + - uid: 20336 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 - - uid: 20211 + - uid: 20337 components: - type: Transform pos: 15.5,18.5 parent: 2 - - uid: 20212 + - uid: 20338 components: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 20213 + - uid: 20339 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 - - uid: 20214 + - uid: 20340 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 - - uid: 20215 - components: - - type: Transform - pos: -9.5,-62.5 - parent: 2 - - uid: 20216 + - uid: 20341 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 20217 + - uid: 20342 components: - type: Transform pos: 18.5,-38.5 parent: 2 - - uid: 20218 + - uid: 20343 components: - type: Transform pos: 17.5,-36.5 parent: 2 - - uid: 20219 + - uid: 20344 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 20220 + - uid: 20345 components: - type: Transform pos: -27.5,-89.5 parent: 2 - - uid: 20221 + - uid: 20346 components: - type: Transform pos: -1.5,-33.5 parent: 2 - - uid: 20222 + - uid: 20347 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 20223 + - uid: 20348 components: - type: Transform pos: -14.5,-77.5 parent: 2 - - uid: 20224 + - uid: 20349 components: - type: Transform pos: 4.5,-88.5 parent: 2 - - uid: 20225 + - uid: 20350 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 20226 + - uid: 20351 components: - type: Transform pos: -18.5,-89.5 parent: 2 - - uid: 20227 + - uid: 20352 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 20228 + - uid: 20353 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 20229 + - uid: 20354 components: - type: Transform pos: 19.5,-38.5 parent: 2 - - uid: 20230 + - uid: 20355 components: - type: Transform pos: 23.5,-12.5 parent: 2 - - uid: 20231 + - uid: 20356 components: - type: Transform pos: 21.5,-15.5 parent: 2 - - uid: 20232 + - uid: 20357 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 20233 + - uid: 20358 components: - type: Transform pos: 28.5,-20.5 parent: 2 - - uid: 20234 + - uid: 20359 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 - - uid: 20235 + - uid: 20360 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 - - uid: 20236 + - uid: 20361 components: - type: Transform pos: 18.5,-66.5 parent: 2 - - uid: 20237 + - uid: 20362 components: - type: Transform pos: 18.5,-65.5 parent: 2 - - uid: 20238 + - uid: 20363 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 - - uid: 20239 + - uid: 20364 components: - type: Transform pos: 42.5,-23.5 parent: 2 - - uid: 20240 + - uid: 20365 components: - type: Transform pos: 41.5,-23.5 parent: 2 - - uid: 20241 + - uid: 20366 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 - - uid: 20242 + - uid: 20367 components: - type: Transform pos: -21.5,11.5 parent: 2 - - uid: 20243 + - uid: 20368 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 20244 + - uid: 20369 components: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 20245 + - uid: 20370 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 - - uid: 20246 + - uid: 20371 components: - type: Transform pos: 12.5,-33.5 parent: 2 - - uid: 20247 + - uid: 20372 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 20248 + - uid: 20373 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 - - uid: 20249 + - uid: 20374 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 20250 + - uid: 20375 components: - type: Transform pos: 2.5,-39.5 parent: 2 - - uid: 20251 + - uid: 20376 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 - - uid: 20252 + - uid: 20377 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 - - uid: 20253 + - uid: 20378 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 - - uid: 20254 + - uid: 20379 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 - - uid: 20255 - components: - - type: Transform - pos: 5.5,-58.5 - parent: 2 - - uid: 20256 + - uid: 20380 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 - - uid: 20257 + - uid: 20381 components: - type: Transform pos: 4.5,-86.5 parent: 2 - - uid: 20258 + - uid: 20382 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 20259 + - uid: 20383 components: - type: Transform pos: 18.5,33.5 parent: 2 - - uid: 20260 + - uid: 20384 components: - type: Transform pos: -1.5,-31.5 parent: 2 - - uid: 20261 + - uid: 20385 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 20262 + - uid: 20386 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 20263 + - uid: 20387 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 20264 + - uid: 20388 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 - - uid: 20265 + - uid: 20389 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 20266 + - uid: 20390 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 - - uid: 20267 - components: - - type: Transform - pos: 0.5,-62.5 - parent: 2 - - uid: 20268 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 2 - - uid: 20269 + - uid: 20391 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 20270 + - uid: 20392 components: - type: Transform pos: -13.5,37.5 parent: 2 - - uid: 20271 + - uid: 20393 components: - type: Transform pos: -15.5,-77.5 parent: 2 - - uid: 20272 + - uid: 20394 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 20273 + - uid: 20395 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 20274 + - uid: 20396 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 - - uid: 20275 + - uid: 20397 components: - type: Transform pos: 34.5,9.5 parent: 2 - - uid: 20276 + - uid: 20398 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 20277 - components: - - type: Transform - pos: 1.5,-56.5 - parent: 2 - - uid: 20278 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 2 - - uid: 20279 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 2 - - uid: 20280 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 2 - - uid: 20281 + - uid: 20399 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 20282 + - uid: 20400 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 20283 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 20284 + - uid: 20401 components: - type: Transform pos: 4.5,-44.5 parent: 2 - - uid: 20285 + - uid: 20402 components: - type: Transform pos: 18.5,32.5 parent: 2 - - uid: 20286 - components: - - type: Transform - pos: -0.5,-62.5 - parent: 2 - - uid: 20287 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 20288 + - uid: 20403 components: - type: Transform pos: 3.5,-77.5 parent: 2 - - uid: 20289 + - uid: 20404 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 - - uid: 20290 + - uid: 20405 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 - - uid: 20291 + - uid: 20406 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 20292 + - uid: 20407 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 - - uid: 20293 + - uid: 20408 components: - type: Transform pos: 68.5,-56.5 parent: 2 - - uid: 20294 - components: - - type: Transform - pos: -1.5,-57.5 - parent: 2 - - uid: 20295 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 2 - - uid: 20296 - components: - - type: Transform - pos: 2.5,-58.5 - parent: 2 - - uid: 20297 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 2 - - uid: 20298 - components: - - type: Transform - pos: 4.5,-62.5 - parent: 2 - - uid: 20299 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 2 - - uid: 20300 + - uid: 20409 components: - type: Transform pos: 31.5,-38.5 parent: 2 - - uid: 20301 + - uid: 20410 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 20302 + - uid: 20411 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 20303 + - uid: 20412 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 20304 + - uid: 20413 components: - type: Transform pos: 9.5,13.5 parent: 2 - - uid: 20305 + - uid: 20414 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 20306 + - uid: 20415 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 - - uid: 20307 + - uid: 20416 components: - type: Transform pos: 24.5,-59.5 parent: 2 - - uid: 20308 + - uid: 20417 components: - type: Transform pos: -29.5,45.5 parent: 2 - - uid: 20309 + - uid: 20418 components: - type: Transform pos: 24.5,-58.5 parent: 2 - - uid: 20310 + - uid: 20419 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 20311 + - uid: 20420 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 20312 + - uid: 20421 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 20313 + - uid: 20422 components: - type: Transform pos: -27.5,-88.5 parent: 2 - - uid: 20314 + - uid: 20423 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 20315 + - uid: 20424 components: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 20316 + - uid: 20425 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 20317 + - uid: 20426 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 20318 + - uid: 20427 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 20319 + - uid: 20428 components: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 20320 + - uid: 20429 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 - - uid: 20321 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 2 - - uid: 20322 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 20323 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 2 - - uid: 20324 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 2 - - uid: 20325 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 2 - - uid: 20326 + - uid: 20430 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 - - uid: 20327 + - uid: 20431 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 - - uid: 20328 + - uid: 20432 components: - type: Transform pos: 33.5,-15.5 parent: 2 - - uid: 20329 + - uid: 20433 components: - type: Transform pos: -13.5,39.5 parent: 2 - - uid: 20330 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 2 - - uid: 20331 + - uid: 20434 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 20332 + - uid: 20435 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 20333 + - uid: 20436 components: - type: Transform pos: 32.5,-38.5 parent: 2 - - uid: 20334 + - uid: 20437 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 - - uid: 20335 + - uid: 20438 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 20336 + - uid: 20439 components: - type: Transform pos: 25.5,-20.5 parent: 2 - - uid: 20337 + - uid: 20440 components: - type: Transform pos: 27.5,-20.5 parent: 2 - - uid: 20338 + - uid: 20441 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 20339 + - uid: 20442 components: - type: Transform pos: 23.5,-11.5 parent: 2 - - uid: 20340 + - uid: 20443 components: - type: Transform pos: 25.5,-3.5 parent: 2 - - uid: 20341 + - uid: 20444 components: - type: Transform pos: 27.5,-3.5 parent: 2 - - uid: 20342 + - uid: 20445 components: - type: Transform pos: 22.5,-3.5 parent: 2 - - uid: 20343 + - uid: 20446 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 - - uid: 20344 + - uid: 20447 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 - - uid: 20345 + - uid: 20448 components: - type: Transform pos: 16.5,-68.5 parent: 2 - - uid: 20346 + - uid: 20449 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 - - uid: 20347 + - uid: 20450 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 - - uid: 20348 + - uid: 20451 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 20349 + - uid: 20452 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 20350 + - uid: 20453 components: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 20351 + - uid: 20454 components: - type: Transform pos: -10.5,-40.5 parent: 2 - - uid: 20352 + - uid: 20455 components: - type: Transform pos: -11.5,-40.5 parent: 2 - - uid: 20353 + - uid: 20456 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 - - uid: 20354 + - uid: 20457 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 20355 + - uid: 20458 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 20356 + - uid: 20459 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 20357 + - uid: 20460 components: - type: Transform pos: -10.5,-16.5 parent: 2 - - uid: 20358 + - uid: 20461 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 - - uid: 20359 + - uid: 20462 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 - - uid: 20360 + - uid: 20463 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 - - uid: 20361 + - uid: 20464 components: - type: Transform pos: -12.5,14.5 parent: 2 - - uid: 20362 + - uid: 20465 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 - - uid: 20363 + - uid: 20466 components: - type: Transform pos: 37.5,-36.5 parent: 2 - - uid: 20364 + - uid: 20467 components: - type: Transform pos: 33.5,37.5 parent: 2 - - uid: 20365 + - uid: 20468 components: - type: Transform pos: 32.5,37.5 parent: 2 - - uid: 20366 + - uid: 20469 components: - type: Transform pos: 31.5,37.5 parent: 2 - - uid: 20367 + - uid: 20470 components: - type: Transform pos: 30.5,37.5 parent: 2 - - uid: 20368 + - uid: 20471 components: - type: Transform pos: 29.5,37.5 parent: 2 - - uid: 20369 + - uid: 20472 components: - type: Transform pos: 28.5,37.5 parent: 2 - - uid: 20370 + - uid: 20473 components: - type: Transform pos: 27.5,37.5 parent: 2 - - uid: 20371 + - uid: 20474 components: - type: Transform pos: 26.5,37.5 parent: 2 - - uid: 20372 + - uid: 20475 components: - type: Transform pos: 25.5,37.5 parent: 2 - - uid: 20373 + - uid: 20476 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 - - uid: 20374 + - uid: 20477 components: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 20375 + - uid: 20478 components: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 20376 + - uid: 20479 components: - type: Transform pos: 53.5,14.5 parent: 2 - - uid: 20377 + - uid: 20480 components: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 20378 + - uid: 20481 components: - type: Transform pos: 54.5,14.5 parent: 2 - - uid: 20379 + - uid: 20482 components: - type: Transform pos: 51.5,13.5 parent: 2 - - uid: 20380 + - uid: 20483 components: - type: Transform pos: 51.5,11.5 parent: 2 - - uid: 20381 + - uid: 20484 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 20382 + - uid: 20485 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 20383 + - uid: 20486 components: - type: Transform pos: 55.5,11.5 parent: 2 - - uid: 20384 + - uid: 20487 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 20385 + - uid: 20488 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 20386 + - uid: 20489 components: - type: Transform pos: 27.5,22.5 parent: 2 - - uid: 20387 + - uid: 20490 components: - type: Transform pos: -15.5,2.5 parent: 2 - - uid: 20388 + - uid: 20491 components: - type: Transform pos: 48.5,-0.5 parent: 2 - - uid: 20389 + - uid: 20492 components: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 20390 + - uid: 20493 components: - type: Transform pos: 42.5,-0.5 parent: 2 - - uid: 20391 + - uid: 20494 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 20392 + - uid: 20495 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 20393 + - uid: 20496 components: - type: Transform pos: 37.5,-0.5 parent: 2 - - uid: 20394 + - uid: 20497 components: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 20395 + - uid: 20498 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 20396 + - uid: 20499 components: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 20397 + - uid: 20500 components: - type: Transform pos: 35.5,-5.5 parent: 2 - - uid: 20398 + - uid: 20501 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 - - uid: 20399 + - uid: 20502 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 - - uid: 20400 + - uid: 20503 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 - - uid: 20401 + - uid: 20504 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 - - uid: 20402 + - uid: 20505 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 - - uid: 20403 + - uid: 20506 components: - type: Transform pos: 43.5,7.5 parent: 2 - - uid: 20404 + - uid: 20507 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 20405 + - uid: 20508 components: - type: Transform pos: 66.5,23.5 parent: 2 - - uid: 20406 + - uid: 20509 components: - type: Transform pos: 64.5,27.5 parent: 2 - - uid: 20407 + - uid: 20510 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 20408 + - uid: 20511 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 - - uid: 20409 + - uid: 20512 components: - type: Transform pos: 46.5,9.5 parent: 2 - - uid: 20410 + - uid: 20513 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 - - uid: 20411 + - uid: 20514 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 - - uid: 20412 + - uid: 20515 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 - - uid: 20413 + - uid: 20516 components: - type: Transform pos: 60.5,-4.5 parent: 2 - - uid: 20414 + - uid: 20517 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 - - uid: 20415 + - uid: 20518 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 - - uid: 20416 + - uid: 20519 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 - - uid: 20417 + - uid: 20520 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 - - uid: 20418 + - uid: 20521 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 - - uid: 20419 + - uid: 20522 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 - - uid: 20420 + - uid: 20523 components: - type: Transform pos: 61.5,-18.5 parent: 2 - - uid: 20421 + - uid: 20524 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 20422 + - uid: 20525 components: - type: Transform pos: 61.5,-20.5 parent: 2 - - uid: 20423 + - uid: 20526 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 20424 + - uid: 20527 components: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 20425 + - uid: 20528 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 20426 + - uid: 20529 components: - type: Transform pos: 61.5,-24.5 parent: 2 - - uid: 20427 + - uid: 20530 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 20428 + - uid: 20531 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 20429 + - uid: 20532 components: - type: Transform pos: 49.5,-62.5 parent: 2 - - uid: 20430 + - uid: 20533 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 20431 + - uid: 20534 components: - type: Transform pos: 63.5,-50.5 parent: 2 - - uid: 20432 + - uid: 20535 components: - type: Transform pos: 61.5,-50.5 parent: 2 - - uid: 20433 + - uid: 20536 components: - type: Transform pos: 58.5,-51.5 parent: 2 - - uid: 20434 + - uid: 20537 components: - type: Transform pos: 58.5,-52.5 parent: 2 - - uid: 20435 + - uid: 20538 components: - type: Transform pos: 54.5,-51.5 parent: 2 - - uid: 20436 + - uid: 20539 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 20437 + - uid: 20540 components: - type: Transform pos: 54.5,-53.5 parent: 2 - - uid: 20438 + - uid: 20541 components: - type: Transform pos: 61.5,-56.5 parent: 2 - - uid: 20439 + - uid: 20542 components: - type: Transform pos: 62.5,-56.5 parent: 2 - - uid: 20440 + - uid: 20543 components: - type: Transform pos: 63.5,-56.5 parent: 2 - - uid: 20441 + - uid: 20544 components: - type: Transform pos: 66.5,-51.5 parent: 2 - - uid: 20442 + - uid: 20545 components: - type: Transform pos: 66.5,-52.5 parent: 2 - - uid: 20443 + - uid: 20546 components: - type: Transform pos: 36.5,33.5 parent: 2 - - uid: 20444 + - uid: 20547 components: - type: Transform pos: 36.5,32.5 parent: 2 - - uid: 20445 + - uid: 20548 components: - type: Transform pos: 36.5,31.5 parent: 2 - - uid: 20446 + - uid: 20549 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 20447 + - uid: 20550 components: - type: Transform pos: 36.5,29.5 parent: 2 - - uid: 20448 + - uid: 20551 components: - type: Transform pos: 36.5,28.5 parent: 2 - - uid: 20449 + - uid: 20552 components: - type: Transform pos: 36.5,27.5 parent: 2 - - uid: 20450 + - uid: 20553 components: - type: Transform pos: 51.5,-62.5 parent: 2 - - uid: 20451 + - uid: 20554 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 - - uid: 20452 + - uid: 20555 components: - type: Transform pos: 68.5,-42.5 parent: 2 - - uid: 20453 + - uid: 20556 components: - type: Transform pos: 77.5,-38.5 parent: 2 - - uid: 20454 + - uid: 20557 components: - type: Transform pos: 78.5,-46.5 parent: 2 - - uid: 20455 + - uid: 20558 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 - - uid: 20456 + - uid: 20559 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 - - uid: 20457 + - uid: 20560 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 - - uid: 20458 + - uid: 20561 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 - - uid: 20459 + - uid: 20562 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 - - uid: 20460 + - uid: 20563 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 - - uid: 20461 + - uid: 20564 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 - - uid: 20462 + - uid: 20565 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 - - uid: 20463 + - uid: 20566 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 - - uid: 20464 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 2 - - uid: 20465 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 20466 + - uid: 20567 components: - type: Transform pos: -14.5,-44.5 parent: 2 - - uid: 20467 + - uid: 20568 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 - - uid: 20468 + - uid: 20569 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 - - uid: 20469 + - uid: 20570 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 20470 + - uid: 20571 components: - type: Transform pos: -23.5,2.5 parent: 2 - - uid: 20471 + - uid: 20572 components: - type: Transform pos: -2.5,42.5 parent: 2 - - uid: 20472 + - uid: 20573 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 - - uid: 20473 + - uid: 20574 components: - type: Transform pos: -21.5,-13.5 parent: 2 - - uid: 20474 + - uid: 20575 components: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 20475 + - uid: 20576 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 20476 + - uid: 20577 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 20477 + - uid: 20578 components: - type: Transform pos: -26.5,-10.5 parent: 2 - - uid: 20478 + - uid: 20579 components: - type: Transform pos: -26.5,-11.5 parent: 2 - - uid: 20479 + - uid: 20580 components: - type: Transform pos: -30.5,-12.5 parent: 2 - - uid: 20480 + - uid: 20581 components: - type: Transform pos: -30.5,-13.5 parent: 2 - - uid: 20481 + - uid: 20582 components: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 20482 + - uid: 20583 components: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 20483 + - uid: 20584 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 20484 + - uid: 20585 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 20485 + - uid: 20586 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 20486 + - uid: 20587 components: - type: Transform pos: -16.5,-1.5 parent: 2 - - uid: 20487 + - uid: 20588 components: - type: Transform pos: -19.5,0.5 parent: 2 - - uid: 20488 + - uid: 20589 components: - type: Transform pos: -17.5,0.5 parent: 2 - - uid: 20489 + - uid: 20590 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 20490 + - uid: 20591 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 20491 + - uid: 20592 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 20492 + - uid: 20593 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 - - uid: 20493 + - uid: 20594 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 - - uid: 20494 + - uid: 20595 components: - type: Transform pos: 52.5,-57.5 parent: 2 - - uid: 20495 + - uid: 20596 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 - - uid: 20496 + - uid: 20597 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 - - uid: 20497 + - uid: 20598 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 - - uid: 20498 + - uid: 20599 components: - type: Transform pos: 41.5,-74.5 parent: 2 - - uid: 20499 + - uid: 20600 components: - type: Transform pos: 32.5,-77.5 parent: 2 - - uid: 20500 + - uid: 20601 components: - type: Transform pos: 32.5,-78.5 parent: 2 - - uid: 20501 + - uid: 20602 components: - type: Transform pos: 32.5,-79.5 parent: 2 - - uid: 20502 + - uid: 20603 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 - - uid: 20503 + - uid: 20604 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 - - uid: 20504 + - uid: 20605 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 - - uid: 20505 + - uid: 20606 components: - type: Transform pos: 17.5,-71.5 parent: 2 - - uid: 20506 + - uid: 20607 components: - type: Transform pos: 18.5,-71.5 parent: 2 - - uid: 20507 + - uid: 20608 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 - - uid: 20508 + - uid: 20609 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 - - uid: 20509 + - uid: 20610 components: - type: Transform pos: 15.5,-71.5 parent: 2 - - uid: 20510 + - uid: 20611 components: - type: Transform pos: 18.5,-74.5 parent: 2 - - uid: 20511 + - uid: 20612 components: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 20512 + - uid: 20613 components: - type: Transform pos: 14.5,-71.5 parent: 2 - - uid: 20513 + - uid: 20614 components: - type: Transform pos: 14.5,-74.5 parent: 2 - - uid: 20514 + - uid: 20615 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 20515 + - uid: 20616 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 - - uid: 20516 + - uid: 20617 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 - - uid: 20517 + - uid: 20618 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 - - uid: 20518 + - uid: 20619 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 - - uid: 20519 + - uid: 20620 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 - - uid: 20520 + - uid: 20621 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 - - uid: 20521 + - uid: 20622 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 - - uid: 20522 + - uid: 20623 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 - - uid: 20523 + - uid: 20624 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 - - uid: 20524 + - uid: 20625 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 - - uid: 20525 + - uid: 20626 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 - - uid: 20526 + - uid: 20627 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 - - uid: 20527 + - uid: 20628 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 - - uid: 20528 + - uid: 20629 components: - type: Transform pos: -33.5,-17.5 parent: 2 - - uid: 20529 + - uid: 20630 components: - type: Transform pos: -33.5,-15.5 parent: 2 - - uid: 20530 + - uid: 20631 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 - - uid: 20531 + - uid: 20632 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 - - uid: 20532 + - uid: 20633 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 - - uid: 20533 + - uid: 20634 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 - - uid: 20534 + - uid: 20635 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 20535 + - uid: 20636 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 20536 + - uid: 20637 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 - - uid: 20537 + - uid: 20638 components: - type: Transform pos: -38.5,-37.5 parent: 2 - - uid: 20538 + - uid: 20639 components: - type: Transform pos: -37.5,-37.5 parent: 2 - - uid: 20539 + - uid: 20640 components: - type: Transform pos: -45.5,-18.5 parent: 2 - - uid: 20540 + - uid: 20641 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 - - uid: 20541 + - uid: 20642 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 - - uid: 20542 + - uid: 20643 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 - - uid: 20543 + - uid: 20644 components: - type: Transform pos: -68.5,-22.5 parent: 2 - - uid: 20544 + - uid: 20645 components: - type: Transform pos: -67.5,-22.5 parent: 2 - - uid: 20545 + - uid: 20646 components: - type: Transform pos: -66.5,-22.5 parent: 2 - - uid: 20546 + - uid: 20647 components: - type: Transform pos: -65.5,-22.5 parent: 2 - - uid: 20547 + - uid: 20648 components: - type: Transform pos: -64.5,-22.5 parent: 2 - - uid: 20548 + - uid: 20649 components: - type: Transform pos: -66.5,-29.5 parent: 2 - - uid: 20549 + - uid: 20650 components: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 20550 + - uid: 20651 components: - type: Transform pos: -56.5,-12.5 parent: 2 - - uid: 20551 + - uid: 20652 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 20552 + - uid: 20653 components: - type: Transform pos: -56.5,-14.5 parent: 2 - - uid: 20553 + - uid: 20654 components: - type: Transform pos: -56.5,-15.5 parent: 2 - - uid: 20554 + - uid: 20655 components: - type: Transform pos: -61.5,-35.5 parent: 2 - - uid: 20555 + - uid: 20656 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 20556 + - uid: 20657 components: - type: Transform pos: -62.5,-38.5 parent: 2 - - uid: 20557 + - uid: 20658 components: - type: Transform pos: -61.5,-31.5 parent: 2 - - uid: 20558 + - uid: 20659 components: - type: Transform pos: -47.5,-54.5 parent: 2 - - uid: 20559 + - uid: 20660 components: - type: Transform pos: -47.5,-52.5 parent: 2 - - uid: 20560 + - uid: 20661 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 20561 + - uid: 20662 components: - type: Transform pos: -47.5,-48.5 parent: 2 - - uid: 20562 + - uid: 20663 components: - type: Transform pos: -47.5,-46.5 parent: 2 - - uid: 20563 + - uid: 20664 components: - type: Transform pos: -47.5,-44.5 parent: 2 - - uid: 20564 + - uid: 20665 components: - type: Transform pos: -47.5,-42.5 parent: 2 - - uid: 20565 + - uid: 20666 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 20566 + - uid: 20667 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 20567 + - uid: 20668 components: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 20568 + - uid: 20669 components: - type: Transform pos: -60.5,-3.5 parent: 2 - - uid: 20569 + - uid: 20670 components: - type: Transform pos: -61.5,-3.5 parent: 2 - - uid: 20570 + - uid: 20671 components: - type: Transform pos: -62.5,-3.5 parent: 2 - - uid: 20571 + - uid: 20672 components: - type: Transform pos: -66.5,-3.5 parent: 2 - - uid: 20572 + - uid: 20673 components: - type: Transform pos: -67.5,-3.5 parent: 2 - - uid: 20573 + - uid: 20674 components: - type: Transform pos: -68.5,-3.5 parent: 2 - - uid: 20574 + - uid: 20675 components: - type: Transform pos: -69.5,-3.5 parent: 2 - - uid: 20575 + - uid: 20676 components: - type: Transform pos: -76.5,-3.5 parent: 2 - - uid: 20576 + - uid: 20677 components: - type: Transform pos: -73.5,-3.5 parent: 2 - - uid: 20577 + - uid: 20678 components: - type: Transform pos: -74.5,-3.5 parent: 2 - - uid: 20578 + - uid: 20679 components: - type: Transform pos: -75.5,-3.5 parent: 2 - - uid: 20579 + - uid: 20680 components: - type: Transform pos: -76.5,-7.5 parent: 2 - - uid: 20580 + - uid: 20681 components: - type: Transform pos: -76.5,-8.5 parent: 2 - - uid: 20581 + - uid: 20682 components: - type: Transform pos: -76.5,-9.5 parent: 2 - - uid: 20582 + - uid: 20683 components: - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 20583 + - uid: 20684 components: - type: Transform pos: -76.5,-14.5 parent: 2 - - uid: 20584 + - uid: 20685 components: - type: Transform pos: -76.5,-15.5 parent: 2 - - uid: 20585 + - uid: 20686 components: - type: Transform pos: -76.5,-16.5 parent: 2 - - uid: 20586 + - uid: 20687 components: - type: Transform pos: -76.5,-17.5 parent: 2 - - uid: 20587 + - uid: 20688 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 20588 + - uid: 20689 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 20589 + - uid: 20690 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 - - uid: 20590 + - uid: 20691 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 20591 + - uid: 20692 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 20592 + - uid: 20693 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 - - uid: 20593 + - uid: 20694 components: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 20594 + - uid: 20695 components: - type: Transform pos: -42.5,-58.5 parent: 2 - - uid: 20595 + - uid: 20696 components: - type: Transform pos: -44.5,-58.5 parent: 2 - - uid: 20596 + - uid: 20697 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 20597 + - uid: 20698 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 - - uid: 20598 + - uid: 20699 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 20599 + - uid: 20700 components: - type: Transform pos: -35.5,-76.5 parent: 2 - - uid: 20600 + - uid: 20701 components: - type: Transform pos: -35.5,-77.5 parent: 2 - - uid: 20601 + - uid: 20702 components: - type: Transform pos: -35.5,-78.5 parent: 2 - - uid: 20602 + - uid: 20703 components: - type: Transform pos: -35.5,-81.5 parent: 2 - - uid: 20603 + - uid: 20704 components: - type: Transform pos: -35.5,-82.5 parent: 2 - - uid: 20604 + - uid: 20705 components: - type: Transform pos: -35.5,-83.5 parent: 2 - - uid: 20605 + - uid: 20706 components: - type: Transform pos: -40.5,-86.5 parent: 2 - - uid: 20606 + - uid: 20707 components: - type: Transform pos: -43.5,-86.5 parent: 2 - - uid: 20607 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 2 - - uid: 20608 + - uid: 20708 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 - - uid: 20609 + - uid: 20709 components: - type: Transform pos: -57.5,-75.5 parent: 2 - - uid: 20610 + - uid: 20710 components: - type: Transform pos: -57.5,-76.5 parent: 2 - - uid: 20611 + - uid: 20711 components: - type: Transform pos: -57.5,-77.5 parent: 2 - - uid: 20612 + - uid: 20712 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 20613 + - uid: 20713 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 20614 + - uid: 20714 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 20615 + - uid: 20715 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 20616 + - uid: 20716 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 - - uid: 20617 + - uid: 20717 components: - type: Transform pos: -48.5,-81.5 parent: 2 - - uid: 20618 + - uid: 20718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 - - uid: 20619 + - uid: 20719 components: - type: Transform pos: -2.5,35.5 parent: 2 - - uid: 20620 + - uid: 20720 components: - type: Transform pos: -1.5,35.5 parent: 2 - - uid: 20621 + - uid: 20721 components: - type: Transform pos: -0.5,35.5 parent: 2 - - uid: 20622 + - uid: 20722 components: - type: Transform pos: 6.5,25.5 parent: 2 - - uid: 20623 + - uid: 20723 components: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 20624 + - uid: 20724 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 20625 + - uid: 20725 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 - - uid: 20626 + - uid: 20726 components: - type: Transform pos: -21.5,24.5 parent: 2 - - uid: 20627 + - uid: 20727 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 20628 + - uid: 20728 components: - type: Transform pos: -26.5,21.5 parent: 2 - - uid: 20629 + - uid: 20729 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 - - uid: 20630 + - uid: 20730 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 20631 + - uid: 20731 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 20632 + - uid: 20732 components: - type: Transform pos: -29.5,21.5 parent: 2 - - uid: 20633 + - uid: 20733 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 20634 + - uid: 20734 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 - - uid: 20635 + - uid: 20735 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 - - uid: 20636 + - uid: 20736 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 - - uid: 20637 + - uid: 20737 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 20638 + - uid: 20738 components: - type: Transform pos: -33.5,32.5 parent: 2 - - uid: 20639 + - uid: 20739 components: - type: Transform pos: -32.5,32.5 parent: 2 - - uid: 20640 + - uid: 20740 components: - type: Transform pos: -31.5,32.5 parent: 2 - - uid: 20641 + - uid: 20741 components: - type: Transform pos: -31.5,27.5 parent: 2 - - uid: 20642 + - uid: 20742 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 20643 + - uid: 20743 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 - - uid: 20644 + - uid: 20744 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 - - uid: 20645 + - uid: 20745 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 - - uid: 20646 + - uid: 20746 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 - - uid: 20647 + - uid: 20747 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 - - uid: 20648 + - uid: 20748 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 - - uid: 20649 + - uid: 20749 components: - type: Transform pos: -52.5,24.5 parent: 2 - - uid: 20650 + - uid: 20750 components: - type: Transform pos: -52.5,18.5 parent: 2 - - uid: 20651 + - uid: 20751 components: - type: Transform pos: -39.5,31.5 parent: 2 - - uid: 20652 + - uid: 20752 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 - - uid: 20653 + - uid: 20753 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 - - uid: 20654 + - uid: 20754 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 - - uid: 20655 + - uid: 20755 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 - - uid: 20656 + - uid: 20756 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 - - uid: 20657 + - uid: 20757 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 - - uid: 20658 + - uid: 20758 components: - type: Transform pos: -36.5,7.5 parent: 2 - - uid: 20659 + - uid: 20759 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 20660 + - uid: 20760 components: - type: Transform pos: -35.5,2.5 parent: 2 - - uid: 20661 + - uid: 20761 components: - type: Transform pos: -34.5,2.5 parent: 2 - - uid: 20662 + - uid: 20762 components: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 20663 + - uid: 20763 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 20664 + - uid: 20764 components: - type: Transform pos: -36.5,2.5 parent: 2 - - uid: 20665 + - uid: 20765 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 20666 + - uid: 20766 components: - type: Transform pos: -1.5,50.5 parent: 2 - - uid: 20667 + - uid: 20767 components: - type: Transform pos: 29.5,24.5 parent: 2 - - uid: 20668 + - uid: 20768 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 - - uid: 20669 + - uid: 20769 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 20670 + - uid: 20770 components: - type: Transform pos: -53.5,11.5 parent: 2 - - uid: 20671 + - uid: 20771 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 20672 + - uid: 20772 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 - - uid: 20673 + - uid: 20773 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 - - uid: 20674 + - uid: 20774 components: - type: Transform pos: 2.5,-94.5 parent: 2 - - uid: 20675 + - uid: 20775 components: - type: Transform pos: 2.5,-95.5 parent: 2 - - uid: 20676 + - uid: 20776 components: - type: Transform pos: 2.5,-96.5 parent: 2 - - uid: 20677 + - uid: 20777 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 20678 + - uid: 20778 components: - type: Transform pos: 2.5,-98.5 parent: 2 - - uid: 20679 + - uid: 20779 components: - type: Transform pos: 2.5,-99.5 parent: 2 - - uid: 20680 + - uid: 20780 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 20681 + - uid: 20781 components: - type: Transform pos: 2.5,-101.5 parent: 2 - - uid: 20682 + - uid: 20782 components: - type: Transform pos: 2.5,-102.5 parent: 2 - - uid: 20683 + - uid: 20783 components: - type: Transform pos: 2.5,-103.5 parent: 2 - - uid: 20684 + - uid: 20784 components: - type: Transform pos: 2.5,-104.5 parent: 2 - - uid: 20685 + - uid: 20785 components: - type: Transform pos: 4.5,-107.5 parent: 2 - - uid: 20686 + - uid: 20786 components: - type: Transform pos: 5.5,-107.5 parent: 2 - - uid: 20687 + - uid: 20787 components: - type: Transform pos: 6.5,-107.5 parent: 2 - - uid: 20688 + - uid: 20788 components: - type: Transform pos: 7.5,-107.5 parent: 2 - - uid: 20689 + - uid: 20789 components: - type: Transform pos: 8.5,-107.5 parent: 2 - - uid: 20690 + - uid: 20790 components: - type: Transform pos: 9.5,-107.5 parent: 2 - - uid: 20691 + - uid: 20791 components: - type: Transform pos: 10.5,-107.5 parent: 2 - - uid: 20692 + - uid: 20792 components: - type: Transform pos: 11.5,-107.5 parent: 2 - - uid: 20693 + - uid: 20793 components: - type: Transform pos: 12.5,-107.5 parent: 2 - - uid: 20694 + - uid: 20794 components: - type: Transform pos: 13.5,-107.5 parent: 2 - - uid: 20695 + - uid: 20795 components: - type: Transform pos: 14.5,-107.5 parent: 2 - - uid: 20696 + - uid: 20796 components: - type: Transform pos: 15.5,-107.5 parent: 2 - - uid: 20697 + - uid: 20797 components: - type: Transform pos: 16.5,-107.5 parent: 2 - - uid: 20698 + - uid: 20798 components: - type: Transform pos: 17.5,-107.5 parent: 2 - - uid: 20699 + - uid: 20799 components: - type: Transform pos: 20.5,-105.5 parent: 2 - - uid: 20700 + - uid: 20800 components: - type: Transform pos: 20.5,-104.5 parent: 2 - - uid: 20701 + - uid: 20801 components: - type: Transform pos: 20.5,-103.5 parent: 2 - - uid: 20702 + - uid: 20802 components: - type: Transform pos: 20.5,-102.5 parent: 2 - - uid: 20703 + - uid: 20803 components: - type: Transform pos: 20.5,-101.5 parent: 2 - - uid: 20704 + - uid: 20804 components: - type: Transform pos: 20.5,-100.5 parent: 2 - - uid: 20705 + - uid: 20805 components: - type: Transform pos: 20.5,-99.5 parent: 2 - - uid: 20706 + - uid: 20806 components: - type: Transform pos: 20.5,-98.5 parent: 2 - - uid: 20707 + - uid: 20807 components: - type: Transform pos: 20.5,-97.5 parent: 2 - - uid: 20708 + - uid: 20808 components: - type: Transform pos: 20.5,-96.5 parent: 2 - - uid: 20709 + - uid: 20809 components: - type: Transform pos: 20.5,-95.5 parent: 2 - - uid: 20710 + - uid: 20810 components: - type: Transform pos: 20.5,-94.5 parent: 2 - - uid: 20711 + - uid: 20811 components: - type: Transform pos: 13.5,-92.5 parent: 2 - - uid: 20712 + - uid: 20812 components: - type: Transform pos: 14.5,-92.5 parent: 2 - - uid: 20713 + - uid: 20813 components: - type: Transform pos: 15.5,-92.5 parent: 2 - - uid: 20714 + - uid: 20814 components: - type: Transform pos: 16.5,-92.5 parent: 2 - - uid: 20715 + - uid: 20815 components: - type: Transform pos: 17.5,-92.5 parent: 2 - - uid: 20716 + - uid: 20816 components: - type: Transform pos: 18.5,-92.5 parent: 2 - - uid: 20717 + - uid: 20817 components: - type: Transform pos: 38.5,-57.5 parent: 2 - - uid: 20718 + - uid: 20818 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 20719 + - uid: 20819 components: - type: Transform pos: 37.5,-21.5 parent: 2 - - uid: 20720 + - uid: 20820 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 20721 + - uid: 20821 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 - - uid: 20722 + - uid: 20822 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 - - uid: 20723 + - uid: 20823 components: - type: Transform pos: 55.5,-15.5 parent: 2 - - uid: 20724 + - uid: 20824 components: - type: Transform pos: 56.5,-15.5 parent: 2 - - uid: 20725 + - uid: 20825 components: - type: Transform pos: 58.5,-15.5 parent: 2 - - uid: 20726 + - uid: 20826 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 20727 + - uid: 20827 components: - type: Transform pos: 58.5,-59.5 parent: 2 - - uid: 20728 + - uid: 20828 components: - type: Transform pos: 58.5,-60.5 parent: 2 - - uid: 20729 + - uid: 20829 components: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 20730 + - uid: 20830 components: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 20731 + - uid: 20831 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 - - uid: 20732 + - uid: 20832 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 - - uid: 20733 + - uid: 20833 components: - type: Transform pos: 32.5,35.5 parent: 2 - - uid: 20734 + - uid: 20834 components: - type: Transform pos: 26.5,35.5 parent: 2 - - uid: 20735 + - uid: 20835 components: - type: Transform pos: 34.5,37.5 parent: 2 - - uid: 20736 + - uid: 20836 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 20737 + - uid: 20837 components: - type: Transform pos: 36.5,37.5 parent: 2 - - uid: 20738 + - uid: 20838 components: - type: Transform pos: 36.5,36.5 parent: 2 - - uid: 20739 + - uid: 20839 components: - type: Transform pos: 36.5,35.5 parent: 2 - - uid: 20740 + - uid: 20840 components: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 20741 + - uid: 20841 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 20742 + - uid: 20842 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 20743 + - uid: 20843 components: - type: Transform pos: -45.5,-44.5 parent: 2 - - uid: 20744 + - uid: 20844 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 20745 + - uid: 20845 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 20746 + - uid: 20846 components: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 20747 + - uid: 20847 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 20748 + - uid: 20848 components: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 20749 + - uid: 20849 components: - type: Transform pos: -45.5,-50.5 parent: 2 - - uid: 20750 + - uid: 20850 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 20751 + - uid: 20851 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 20752 + - uid: 20852 components: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 20753 + - uid: 20853 components: - type: Transform pos: -45.5,-54.5 parent: 2 - - uid: 20754 + - uid: 20854 components: - type: Transform pos: -45.5,-55.5 parent: 2 - - uid: 20755 + - uid: 20855 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 - - uid: 20756 + - uid: 20856 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 - - uid: 20757 + - uid: 20857 components: - type: Transform pos: 41.5,-31.5 parent: 2 - - uid: 20758 + - uid: 20858 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 20759 + - uid: 20859 components: - type: Transform pos: -48.5,-83.5 parent: 2 - - uid: 20760 + - uid: 20860 components: - type: Transform pos: 20.5,-35.5 parent: 2 - - uid: 20761 + - uid: 20861 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 20762 + - uid: 20862 components: - type: Transform pos: -30.5,-72.5 parent: 2 - - uid: 20763 + - uid: 20863 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 20764 + - uid: 20864 components: - type: Transform pos: 12.5,18.5 parent: 2 - - uid: 20765 + - uid: 20865 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 - - uid: 20766 + - uid: 20866 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 - - uid: 20767 + - uid: 20867 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 - - uid: 20768 + - uid: 20868 components: - type: Transform pos: 2.5,51.5 parent: 2 - - uid: 20769 + - uid: 20869 components: - type: Transform pos: -14.5,65.5 parent: 2 - - uid: 20770 + - uid: 20870 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 - - uid: 20771 + - uid: 20871 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 - - uid: 20772 + - uid: 20872 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 - - uid: 20773 + - uid: 20873 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 - - uid: 20774 + - uid: 20874 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 - - uid: 20775 + - uid: 20875 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 - - uid: 20776 + - uid: 20876 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 20777 + - uid: 20877 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 20778 + - uid: 20878 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 - - uid: 20779 + - uid: 20879 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 - - uid: 20780 + - uid: 20880 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 - - uid: 20781 + - uid: 20881 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 - - uid: 20782 + - uid: 20882 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 - - uid: 20783 + - uid: 20883 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 - - uid: 20784 + - uid: 20884 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 - - uid: 20785 + - uid: 20885 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 - - uid: 20786 + - uid: 20886 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 - - uid: 20787 + - uid: 20887 components: - type: Transform pos: 2.5,50.5 parent: 2 - - uid: 20788 + - uid: 20888 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 20789 + - uid: 20889 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 - - uid: 20790 + - uid: 20890 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 - - uid: 20791 + - uid: 20891 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 - - uid: 20792 + - uid: 20892 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 - - uid: 20793 + - uid: 20893 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 - - uid: 20794 + - uid: 20894 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 - - uid: 20795 + - uid: 20895 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 - - uid: 20796 + - uid: 20896 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 - - uid: 20797 + - uid: 20897 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 - - uid: 20798 + - uid: 20898 components: - type: Transform pos: -2.5,60.5 parent: 2 - - uid: 20799 + - uid: 20899 components: - type: Transform pos: -0.5,60.5 parent: 2 - - uid: 20800 + - uid: 20900 components: - type: Transform pos: 71.5,39.5 parent: 2 - - uid: 20801 + - uid: 20901 components: - type: Transform pos: 73.5,39.5 parent: 2 - - uid: 20802 + - uid: 20902 components: - type: Transform pos: 73.5,33.5 parent: 2 - - uid: 20803 + - uid: 20903 components: - type: Transform pos: 71.5,33.5 parent: 2 - - uid: 20804 + - uid: 20904 components: - type: Transform pos: 5.5,69.5 parent: 2 - - uid: 20805 + - uid: 20905 components: - type: Transform pos: -8.5,69.5 parent: 2 - - uid: 20806 + - uid: 20906 components: - type: Transform pos: -3.5,42.5 parent: 2 - - uid: 20807 + - uid: 20907 components: - type: Transform pos: 78.5,46.5 parent: 2 - - uid: 20808 + - uid: 20908 components: - type: Transform pos: 79.5,46.5 parent: 2 - - uid: 20809 + - uid: 20909 components: - type: Transform pos: 80.5,46.5 parent: 2 - - uid: 20810 + - uid: 20910 components: - type: Transform pos: 81.5,46.5 parent: 2 - - uid: 20811 + - uid: 20911 components: - type: Transform pos: 82.5,46.5 parent: 2 - - uid: 20812 + - uid: 20912 components: - type: Transform pos: 86.5,46.5 parent: 2 - - uid: 20813 + - uid: 20913 components: - type: Transform pos: 87.5,46.5 parent: 2 - - uid: 20814 + - uid: 20914 components: - type: Transform pos: 88.5,46.5 parent: 2 - - uid: 20815 + - uid: 20915 components: - type: Transform pos: 89.5,46.5 parent: 2 - - uid: 20816 + - uid: 20916 components: - type: Transform pos: 90.5,46.5 parent: 2 - - uid: 20817 + - uid: 20917 components: - type: Transform pos: 93.5,41.5 parent: 2 - - uid: 20818 + - uid: 20918 components: - type: Transform pos: 93.5,40.5 parent: 2 - - uid: 20819 + - uid: 20919 components: - type: Transform pos: 93.5,39.5 parent: 2 - - uid: 20820 + - uid: 20920 components: - type: Transform pos: 93.5,38.5 parent: 2 - - uid: 20821 + - uid: 20921 components: - type: Transform pos: 93.5,37.5 parent: 2 - - uid: 20822 + - uid: 20922 components: - type: Transform pos: 93.5,36.5 parent: 2 - - uid: 20823 + - uid: 20923 components: - type: Transform pos: 93.5,35.5 parent: 2 - - uid: 20824 + - uid: 20924 components: - type: Transform pos: 93.5,34.5 parent: 2 - - uid: 20825 + - uid: 20925 components: - type: Transform pos: 93.5,33.5 parent: 2 - - uid: 20826 + - uid: 20926 components: - type: Transform pos: 93.5,32.5 parent: 2 - - uid: 20827 + - uid: 20927 components: - type: Transform pos: 93.5,31.5 parent: 2 - - uid: 20828 + - uid: 20928 components: - type: Transform pos: 93.5,30.5 parent: 2 - - uid: 20829 + - uid: 20929 components: - type: Transform pos: 90.5,26.5 parent: 2 - - uid: 20830 + - uid: 20930 components: - type: Transform pos: 89.5,26.5 parent: 2 - - uid: 20831 + - uid: 20931 components: - type: Transform pos: 88.5,26.5 parent: 2 - - uid: 20832 + - uid: 20932 components: - type: Transform pos: 87.5,26.5 parent: 2 - - uid: 20833 + - uid: 20933 components: - type: Transform pos: 86.5,26.5 parent: 2 - - uid: 20834 + - uid: 20934 components: - type: Transform pos: 85.5,26.5 parent: 2 - - uid: 20835 + - uid: 20935 components: - type: Transform pos: 81.5,26.5 parent: 2 - - uid: 20836 + - uid: 20936 components: - type: Transform pos: 80.5,26.5 parent: 2 - - uid: 20837 + - uid: 20937 components: - type: Transform pos: 79.5,26.5 parent: 2 - - uid: 20838 + - uid: 20938 components: - type: Transform pos: 78.5,26.5 parent: 2 - - uid: 20839 + - uid: 20939 components: - type: Transform pos: 77.5,26.5 parent: 2 - - uid: 20840 + - uid: 20940 components: - type: Transform pos: 70.5,29.5 parent: 2 - - uid: 20841 + - uid: 20941 components: - type: Transform pos: 71.5,29.5 parent: 2 - - uid: 20842 + - uid: 20942 components: - type: Transform pos: 72.5,29.5 parent: 2 - - uid: 20843 + - uid: 20943 components: - type: Transform pos: 73.5,29.5 parent: 2 - - uid: 20844 + - uid: 20944 components: - type: Transform pos: 74.5,29.5 parent: 2 - - uid: 20845 + - uid: 20945 components: - type: Transform pos: -33.5,40.5 parent: 2 - - uid: 20846 + - uid: 20946 components: - type: Transform pos: -32.5,40.5 parent: 2 - - uid: 20847 + - uid: 20947 components: - type: Transform pos: -32.5,37.5 parent: 2 - - uid: 20848 + - uid: 20948 components: - type: Transform pos: -16.5,55.5 parent: 2 - - uid: 20849 + - uid: 20949 components: - type: Transform pos: -16.5,56.5 parent: 2 - - uid: 20850 + - uid: 20950 components: - type: Transform pos: -14.5,56.5 parent: 2 - - uid: 20851 + - uid: 20951 components: - type: Transform pos: -14.5,55.5 parent: 2 - - uid: 20852 + - uid: 20952 components: - type: Transform pos: -20.5,62.5 parent: 2 - - uid: 20853 + - uid: 20953 components: - type: Transform pos: -14.5,62.5 parent: 2 - - uid: 20854 + - uid: 20954 components: - type: Transform pos: -11.5,69.5 parent: 2 - - uid: 20855 + - uid: 20955 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 20856 + - uid: 20956 components: - type: Transform pos: -11.5,67.5 parent: 2 - - uid: 20857 + - uid: 20957 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 20858 + - uid: 20958 components: - type: Transform pos: -14.5,73.5 parent: 2 - - uid: 20859 + - uid: 20959 components: - type: Transform pos: -20.5,73.5 parent: 2 - - uid: 20860 + - uid: 20960 components: - type: Transform pos: -23.5,73.5 parent: 2 - - uid: 20861 + - uid: 20961 components: - type: Transform pos: -23.5,63.5 parent: 2 - - uid: 20862 + - uid: 20962 components: - type: Transform pos: -23.5,62.5 parent: 2 - - uid: 20863 + - uid: 20963 components: - type: Transform pos: -23.5,61.5 parent: 2 - - uid: 20864 + - uid: 20964 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 - - uid: 20865 + - uid: 20965 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 - - uid: 20866 + - uid: 20966 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 - - uid: 20867 + - uid: 20967 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 - - uid: 20868 + - uid: 20968 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 - - uid: 20869 + - uid: 20969 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 - - uid: 20870 + - uid: 20970 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 - - uid: 20871 + - uid: 20971 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 - - uid: 20872 + - uid: 20972 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 - - uid: 20873 + - uid: 20973 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 - - uid: 20874 + - uid: 20974 components: - type: Transform pos: 46.5,43.5 parent: 2 - - uid: 20875 + - uid: 20975 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 - - uid: 20876 + - uid: 20976 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 - - uid: 20877 + - uid: 20977 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 - - uid: 20878 + - uid: 20978 components: - type: Transform pos: -26.5,-97.5 parent: 2 - - uid: 20879 + - uid: 20979 components: - type: Transform pos: -18.5,-97.5 parent: 2 - - uid: 20880 + - uid: 20980 components: - type: Transform pos: -21.5,-94.5 parent: 2 - - uid: 20881 + - uid: 20981 components: - type: Transform pos: -22.5,-94.5 parent: 2 - - uid: 20882 + - uid: 20982 components: - type: Transform pos: -23.5,-94.5 parent: 2 - - uid: 20883 + - uid: 20983 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 20884 + - uid: 20984 components: - type: Transform pos: -3.5,-98.5 parent: 2 - - uid: 20885 + - uid: 20985 components: - type: Transform pos: -5.5,-101.5 parent: 2 - - uid: 20886 + - uid: 20986 components: - type: Transform pos: -6.5,-101.5 parent: 2 - - uid: 20887 + - uid: 20987 components: - type: Transform pos: -8.5,-101.5 parent: 2 - - uid: 20888 + - uid: 20988 components: - type: Transform pos: -9.5,-101.5 parent: 2 - - uid: 20889 + - uid: 20989 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 - - uid: 20890 + - uid: 20990 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 - - uid: 20891 + - uid: 20991 components: - type: Transform pos: -36.5,-100.5 parent: 2 - - uid: 20892 + - uid: 20992 components: - type: Transform pos: -21.5,-101.5 parent: 2 - - uid: 20893 + - uid: 20993 components: - type: Transform pos: -34.5,-100.5 parent: 2 - - uid: 20894 + - uid: 20994 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 - - uid: 20895 + - uid: 20995 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 - - uid: 20896 + - uid: 20996 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 - - uid: 20897 + - uid: 20997 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 - - uid: 20898 + - uid: 20998 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 - - uid: 20899 + - uid: 20999 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 - - uid: 20900 + - uid: 21000 components: - type: Transform pos: -23.5,-101.5 parent: 2 - - uid: 20901 + - uid: 21001 components: - type: Transform pos: -22.5,-101.5 parent: 2 - - uid: 20902 + - uid: 21002 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 - - uid: 20903 + - uid: 21003 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 20904 + - uid: 21004 components: - type: Transform pos: 76.5,-35.5 parent: 2 - - uid: 20905 + - uid: 21005 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 20906 + - uid: 21006 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 20907 + - uid: 21007 components: - type: Transform pos: 79.5,-35.5 parent: 2 - - uid: 20908 + - uid: 21008 components: - type: Transform pos: 77.5,-32.5 parent: 2 - - uid: 20909 + - uid: 21009 components: - type: Transform pos: 78.5,-32.5 parent: 2 - - uid: 20910 + - uid: 21010 components: - type: Transform pos: 78.5,-44.5 parent: 2 - - uid: 20911 + - uid: 21011 components: - type: Transform pos: 78.5,-45.5 parent: 2 - - uid: 20912 + - uid: 21012 components: - type: Transform pos: 69.5,-42.5 parent: 2 - - uid: 20913 + - uid: 21013 components: - type: Transform pos: 70.5,-42.5 parent: 2 - - uid: 20914 + - uid: 21014 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 - - uid: 20915 + - uid: 21015 components: - type: Transform pos: 63.5,-61.5 parent: 2 - - uid: 20916 + - uid: 21016 components: - type: Transform pos: 62.5,-61.5 parent: 2 - - uid: 20917 + - uid: 21017 components: - type: Transform pos: 61.5,-61.5 parent: 2 - - uid: 20918 + - uid: 21018 components: - type: Transform pos: 52.5,-61.5 parent: 2 - - uid: 20919 + - uid: 21019 components: - type: Transform pos: 50.5,-64.5 parent: 2 - - uid: 20920 + - uid: 21020 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 20921 + - uid: 21021 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 20922 + - uid: 21022 components: - type: Transform pos: 61.5,-70.5 parent: 2 - - uid: 20923 + - uid: 21023 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 20924 + - uid: 21024 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 20925 + - uid: 21025 components: - type: Transform pos: 9.5,-31.5 parent: 2 - - uid: 20926 + - uid: 21026 components: - type: Transform pos: 9.5,-34.5 parent: 2 - - uid: 20927 + - uid: 21027 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 - - uid: 20928 + - uid: 21028 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 - - uid: 20929 + - uid: 21029 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 - - uid: 20930 + - uid: 21030 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 - - uid: 20931 + - uid: 21031 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 - - uid: 20932 + - uid: 21032 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 - - uid: 20933 + - uid: 21033 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 - - uid: 20934 + - uid: 21034 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 - - uid: 20935 + - uid: 21035 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 - - uid: 20936 + - uid: 21036 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 - - uid: 20937 + - uid: 21037 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 - - uid: 20938 + - uid: 21038 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 - - uid: 20939 + - uid: 21039 components: - type: Transform pos: 60.5,-70.5 parent: 2 - - uid: 20940 + - uid: 21040 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 20941 + - uid: 21041 components: - type: Transform pos: 51.5,-68.5 parent: 2 - - uid: 20942 + - uid: 21042 components: - type: Transform pos: 50.5,-68.5 parent: 2 - - uid: 20943 + - uid: 21043 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 - - uid: 20944 + - uid: 21044 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 - - uid: 20945 + - uid: 21045 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 - - uid: 20946 + - uid: 21046 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 - - uid: 20947 + - uid: 21047 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 - - uid: 20948 + - uid: 21048 components: - type: Transform pos: 62.5,-70.5 parent: 2 - - uid: 20949 + - uid: 21049 components: - type: Transform pos: 71.5,-64.5 parent: 2 - - uid: 20950 + - uid: 21050 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 - - uid: 20951 + - uid: 21051 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 - - uid: 20952 + - uid: 21052 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 - - uid: 20953 + - uid: 21053 components: - type: Transform pos: 54.5,-25.5 parent: 2 - - uid: 20954 + - uid: 21054 components: - type: Transform pos: 56.5,-25.5 parent: 2 - - uid: 20955 + - uid: 21055 components: - type: Transform pos: 58.5,-25.5 parent: 2 - - uid: 20956 + - uid: 21056 components: - type: Transform pos: 68.5,-57.5 parent: 2 - - uid: 20957 + - uid: 21057 components: - type: Transform pos: 71.5,-54.5 parent: 2 - - uid: 20958 + - uid: 21058 components: - type: Transform pos: 70.5,-54.5 parent: 2 - - uid: 20959 + - uid: 21059 components: - type: Transform pos: -12.5,43.5 parent: 2 - - uid: 20960 + - uid: 21060 components: - type: Transform pos: -8.5,43.5 parent: 2 - - uid: 20961 + - uid: 21061 components: - type: Transform pos: 73.5,46.5 parent: 2 - - uid: 20962 + - uid: 21062 components: - type: Transform pos: 72.5,46.5 parent: 2 - - uid: 20963 + - uid: 21063 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 - - uid: 20964 + - uid: 21064 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 - - uid: 20965 + - uid: 21065 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 20966 + - uid: 21066 components: - type: Transform pos: 35.5,18.5 parent: 2 - - uid: 20967 + - uid: 21067 components: - type: Transform pos: 34.5,18.5 parent: 2 - - uid: 20968 + - uid: 21068 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 - - uid: 20969 + - uid: 21069 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 - - uid: 20970 + - uid: 21070 components: - type: Transform pos: -31.5,72.5 parent: 2 - - uid: 20971 + - uid: 21071 components: - type: Transform pos: -30.5,72.5 parent: 2 - - uid: 20972 + - uid: 21072 components: - type: Transform pos: -29.5,72.5 parent: 2 - - uid: 20973 + - uid: 21073 components: - type: Transform pos: -28.5,72.5 parent: 2 - - uid: 20974 + - uid: 21074 components: - type: Transform pos: -27.5,72.5 parent: 2 - - uid: 20975 + - uid: 21075 components: - type: Transform pos: -26.5,72.5 parent: 2 - - uid: 20976 + - uid: 21076 components: - type: Transform pos: -40.5,-62.5 parent: 2 - - uid: 20977 + - uid: 21077 components: - type: Transform pos: -41.5,-62.5 parent: 2 - - uid: 20978 + - uid: 21078 components: - type: Transform pos: -47.5,-34.5 parent: 2 - - uid: 20979 + - uid: 21079 components: - type: Transform pos: -47.5,-35.5 parent: 2 - - uid: 20980 + - uid: 21080 components: - type: Transform pos: 46.5,-78.5 parent: 2 - - uid: 20981 + - uid: 21081 components: - type: Transform pos: 46.5,-77.5 parent: 2 - - uid: 20982 + - uid: 21082 components: - type: Transform pos: 46.5,-79.5 parent: 2 - - uid: 20983 + - uid: 21083 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 - - uid: 20984 + - uid: 21084 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 - - uid: 20985 + - uid: 21085 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 - - uid: 20986 + - uid: 21086 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 - - uid: 20987 + - uid: 21087 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 - - uid: 20988 + - uid: 21088 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 - - uid: 20989 + - uid: 21089 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 - - uid: 20990 + - uid: 21090 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 - - uid: 20991 + - uid: 21091 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 - - uid: 20992 + - uid: 21092 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 - - uid: 20993 + - uid: 21093 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 - - uid: 20994 + - uid: 21094 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 - - uid: 20995 + - uid: 21095 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 - - uid: 20996 + - uid: 21096 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 - - uid: 20997 + - uid: 21097 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 - - uid: 20998 + - uid: 21098 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 - - uid: 20999 + - uid: 21099 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 - - uid: 21000 + - uid: 21100 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 - - uid: 21001 + - uid: 21101 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 - - uid: 21002 + - uid: 21102 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 - - uid: 21003 + - uid: 21103 components: - type: Transform pos: 9.5,-18.5 parent: 2 - - uid: 21004 + - uid: 21104 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 - - uid: 21005 + - uid: 21105 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 - - uid: 21006 + - uid: 21106 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 21007 + - uid: 21107 components: - type: Transform pos: 48.5,7.5 parent: 2 - - uid: 21008 + - uid: 21108 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 - - uid: 21009 + - uid: 21109 components: - type: Transform pos: -76.5,-25.5 parent: 2 - - uid: 21010 + - uid: 21110 components: - type: Transform pos: -76.5,-12.5 parent: 2 - - uid: 21011 + - uid: 21111 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,35.5 parent: 2 - - uid: 21012 + - uid: 21112 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 - - uid: 21013 + - uid: 21113 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 - - uid: 21014 + - uid: 21114 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 - - uid: 21015 + - uid: 21115 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,35.5 parent: 2 - - uid: 21016 + - uid: 21116 components: - type: Transform pos: 67.5,-32.5 parent: 2 - - uid: 21017 + - uid: 21117 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 - - uid: 21018 + - uid: 21118 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 - - uid: 21019 + - uid: 21119 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 - - uid: 21020 + - uid: 21120 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 - - uid: 21021 + - uid: 21121 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 - - uid: 21022 + - uid: 21122 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 - - uid: 21023 + - uid: 21123 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-56.5 parent: 2 - - uid: 21024 + - uid: 21124 components: - type: Transform pos: -72.5,-50.5 parent: 2 - - uid: 21025 + - uid: 21125 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 - - uid: 21026 + - uid: 21126 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-53.5 parent: 2 - - uid: 21027 + - uid: 21127 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-51.5 parent: 2 - - uid: 21028 + - uid: 21128 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 - - uid: 21029 + - uid: 21129 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 - - uid: 21030 + - uid: 21130 components: - type: Transform pos: -70.5,-47.5 parent: 2 - - uid: 21031 + - uid: 21131 components: - type: Transform pos: -69.5,-47.5 parent: 2 - - uid: 21032 + - uid: 21132 components: - type: Transform pos: -68.5,-47.5 parent: 2 - - uid: 21033 + - uid: 21133 components: - type: Transform pos: -64.5,-43.5 parent: 2 - - uid: 21034 + - uid: 21134 components: - type: Transform pos: -82.5,-28.5 parent: 2 - - uid: 21035 + - uid: 21135 components: - type: Transform pos: -82.5,-29.5 parent: 2 - - uid: 21036 + - uid: 21136 components: - type: Transform pos: -82.5,-30.5 parent: 2 - - uid: 21037 + - uid: 21137 components: - type: Transform pos: -82.5,-31.5 parent: 2 - - uid: 21038 + - uid: 21138 components: - type: Transform pos: -82.5,-32.5 parent: 2 - - uid: 21039 + - uid: 21139 components: - type: Transform pos: -82.5,-33.5 parent: 2 - - uid: 21040 + - uid: 21140 components: - type: Transform pos: -82.5,-34.5 parent: 2 - - uid: 21041 + - uid: 21141 components: - type: Transform pos: -82.5,-35.5 parent: 2 - - uid: 21042 + - uid: 21142 components: - type: Transform pos: -82.5,-36.5 parent: 2 - - uid: 21043 + - uid: 21143 components: - type: Transform pos: -82.5,-37.5 parent: 2 - - uid: 21044 + - uid: 21144 components: - type: Transform pos: -82.5,-38.5 parent: 2 - - uid: 21045 + - uid: 21145 components: - type: Transform pos: -82.5,-39.5 parent: 2 - - uid: 21046 + - uid: 21146 components: - type: Transform pos: -82.5,-40.5 parent: 2 - - uid: 21047 + - uid: 21147 components: - type: Transform pos: -82.5,-41.5 parent: 2 - - uid: 21048 + - uid: 21148 components: - type: Transform pos: -82.5,-42.5 parent: 2 - - uid: 21049 + - uid: 21149 components: - type: Transform pos: -82.5,-43.5 parent: 2 - - uid: 21050 + - uid: 21150 components: - type: Transform pos: -82.5,-44.5 parent: 2 - - uid: 21051 + - uid: 21151 components: - type: Transform pos: -82.5,-45.5 parent: 2 - - uid: 21052 + - uid: 21152 components: - type: Transform pos: -82.5,-46.5 parent: 2 - - uid: 21053 + - uid: 21153 components: - type: Transform pos: -82.5,-47.5 parent: 2 - - uid: 21054 + - uid: 21154 components: - type: Transform pos: -82.5,-48.5 parent: 2 - - uid: 21055 + - uid: 21155 components: - type: Transform pos: -82.5,-27.5 parent: 2 - - uid: 21056 + - uid: 21156 components: - type: Transform pos: -82.5,-26.5 parent: 2 - - uid: 21057 + - uid: 21157 components: - type: Transform pos: -81.5,-26.5 parent: 2 - - uid: 21058 + - uid: 21158 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 - - uid: 21059 + - uid: 21159 components: - type: Transform pos: -51.5,-13.5 parent: 2 - - uid: 21060 + - uid: 21160 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 - - uid: 21061 + - uid: 21161 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 - - uid: 21062 + - uid: 21162 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 - - uid: 21063 + - uid: 21163 components: - type: Transform pos: -60.5,-38.5 parent: 2 - - uid: 21064 + - uid: 21164 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 - - uid: 21065 + - uid: 21165 components: - type: Transform pos: -52.5,-38.5 parent: 2 - - uid: 21066 + - uid: 21166 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 - - uid: 21067 + - uid: 21167 components: - type: Transform pos: -42.5,-37.5 parent: 2 - - uid: 21068 + - uid: 21168 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 - - uid: 21069 + - uid: 21169 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 - - uid: 21070 + - uid: 21170 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 - - uid: 21071 + - uid: 21171 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 - - uid: 21072 + - uid: 21172 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 - - uid: 21073 + - uid: 21173 components: - type: Transform pos: 3.5,-3.5 parent: 2 - - uid: 21076 + - uid: 21174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 21176 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-40.5 parent: 2 - - uid: 21077 + - uid: 21177 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-40.5 parent: 2 - - uid: 21078 + - uid: 21178 components: - type: Transform pos: 8.5,27.5 parent: 2 - - uid: 21079 + - uid: 21179 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 21080 + - uid: 21180 components: - type: Transform pos: 10.5,27.5 parent: 2 - - uid: 21081 + - uid: 21181 components: - type: Transform pos: 9.5,27.5 parent: 2 - - uid: 21082 + - uid: 21182 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-40.5 parent: 2 - - uid: 21083 + - uid: 21183 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-42.5 parent: 2 - - uid: 21084 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - uid: 21085 + - uid: 21184 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 - - uid: 21086 + - uid: 21185 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-91.5 parent: 2 - - uid: 21087 + - uid: 21186 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-91.5 parent: 2 - - uid: 21088 + - uid: 21187 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 - - uid: 21089 + - uid: 21188 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-90.5 parent: 2 - - uid: 21090 + - uid: 21189 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,62.5 parent: 2 - - uid: 21091 + - uid: 21190 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,62.5 parent: 2 - - uid: 21092 + - uid: 21191 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,62.5 parent: 2 - - uid: 21093 + - uid: 21192 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,58.5 parent: 2 - - uid: 21094 + - uid: 21193 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,57.5 parent: 2 - - uid: 21095 + - uid: 21194 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,56.5 parent: 2 - - uid: 21096 + - uid: 21195 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,58.5 parent: 2 - - uid: 21097 + - uid: 21196 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,57.5 parent: 2 - - uid: 21098 + - uid: 21197 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,56.5 parent: 2 - - uid: 21099 + - uid: 21198 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-91.5 parent: 2 - - uid: 21100 + - uid: 21199 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,67.5 parent: 2 - - uid: 21101 + - uid: 21200 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,63.5 parent: 2 - - uid: 21102 + - uid: 21201 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,63.5 parent: 2 - - uid: 21103 + - uid: 21202 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-43.5 parent: 2 - - uid: 21104 + - uid: 21203 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-47.5 parent: 2 - - uid: 21105 + - uid: 21204 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 - - uid: 21106 + - uid: 21205 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-87.5 parent: 2 - - uid: 21107 + - uid: 21206 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-53.5 parent: 2 - - uid: 21108 + - uid: 21207 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-54.5 parent: 2 - - uid: 21109 + - uid: 21208 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-52.5 parent: 2 - - uid: 21110 + - uid: 21209 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-55.5 parent: 2 - - uid: 21111 + - uid: 21210 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-85.5 parent: 2 - - uid: 21112 + - uid: 21211 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-89.5 parent: 2 - - uid: 21113 + - uid: 21212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - uid: 21216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - uid: 21217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 21221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-17.5 + pos: 6.5,-54.5 parent: 2 - - uid: 21114 + - uid: 21222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-19.5 + pos: -6.5,-65.5 parent: 2 - - uid: 21115 + - uid: 21223 components: - type: Transform - pos: -27.5,-20.5 + pos: 5.5,-44.5 parent: 2 - - uid: 21116 + - uid: 21224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,19.5 + pos: -20.5,-58.5 parent: 2 - - uid: 21117 + - uid: 21225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,18.5 + pos: -21.5,-59.5 parent: 2 - - uid: 21118 + - uid: 21226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-40.5 + pos: -16.5,-54.5 parent: 2 - proto: GrilleBroken entities: - - uid: 21119 + - uid: 21227 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-71.5 parent: 2 - - uid: 21120 + - uid: 21228 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 21121 + - uid: 21229 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 - - uid: 21122 + - uid: 21230 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 - - uid: 21123 + - uid: 21231 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 - - uid: 21124 + - uid: 21232 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,49.5 parent: 2 - - uid: 21125 + - uid: 21233 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,48.5 parent: 2 - - uid: 21126 + - uid: 21234 components: - type: Transform pos: 2.5,48.5 parent: 2 - proto: GrilleDiagonal entities: - - uid: 21127 + - uid: 21235 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-36.5 parent: 2 - - uid: 21128 + - uid: 21236 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-30.5 parent: 2 - - uid: 21129 + - uid: 21237 components: - type: Transform pos: -50.5,-88.5 parent: 2 - - uid: 21130 + - uid: 21238 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,59.5 parent: 2 - - uid: 21131 + - uid: 21239 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,55.5 parent: 2 - - uid: 21132 + - uid: 21240 components: - type: Transform pos: 49.5,59.5 parent: 2 - - uid: 21133 + - uid: 21241 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-30.5 parent: 2 - - uid: 21134 + - uid: 21242 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-91.5 parent: 2 - - uid: 21135 + - uid: 21243 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-91.5 parent: 2 - - uid: 21136 + - uid: 21244 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-88.5 parent: 2 - - uid: 21137 + - uid: 21245 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-78.5 parent: 2 - - uid: 21138 + - uid: 21246 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-88.5 parent: 2 - - uid: 21139 + - uid: 21247 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 21140 + - uid: 21248 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-42.5 parent: 2 - - uid: 21141 + - uid: 21249 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-36.5 parent: 2 - - uid: 21142 + - uid: 21250 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-89.5 parent: 2 - - uid: 21143 + - uid: 21251 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-88.5 parent: 2 - - uid: 21144 + - uid: 21252 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-86.5 parent: 2 - - uid: 21145 + - uid: 21253 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-86.5 parent: 2 - - uid: 21146 + - uid: 21254 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-85.5 parent: 2 - - uid: 21147 + - uid: 21255 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,55.5 parent: 2 - - uid: 21148 + - uid: 21256 components: - type: Transform pos: 52.5,62.5 parent: 2 - - uid: 21149 + - uid: 21257 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,62.5 parent: 2 - - uid: 21150 + - uid: 21258 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,59.5 parent: 2 - - uid: 21151 + - uid: 21259 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,60.5 parent: 2 - - uid: 21152 + - uid: 21260 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,60.5 parent: 2 - - uid: 21153 + - uid: 21261 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,61.5 parent: 2 - - uid: 21154 + - uid: 21262 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,61.5 parent: 2 - - uid: 21155 + - uid: 21263 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,62.5 parent: 2 - - uid: 21156 + - uid: 21264 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,62.5 parent: 2 - - uid: 21157 + - uid: 21265 components: - type: Transform pos: 35.5,64.5 parent: 2 - - uid: 21158 + - uid: 21266 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,64.5 parent: 2 - - uid: 21159 + - uid: 21267 components: - type: Transform pos: 36.5,65.5 parent: 2 - - uid: 21160 + - uid: 21268 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,65.5 parent: 2 - - uid: 21161 + - uid: 21269 components: - type: Transform pos: 37.5,66.5 parent: 2 - - uid: 21162 + - uid: 21270 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,66.5 parent: 2 - - uid: 21163 + - uid: 21271 components: - type: Transform pos: 38.5,67.5 parent: 2 - - uid: 21164 + - uid: 21272 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,67.5 parent: 2 - - uid: 21165 + - uid: 21273 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,66.5 parent: 2 - - uid: 21166 + - uid: 21274 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,66.5 parent: 2 - - uid: 21167 + - uid: 21275 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,65.5 parent: 2 - - uid: 21168 + - uid: 21276 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,65.5 parent: 2 - - uid: 21169 + - uid: 21277 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,64.5 parent: 2 - - uid: 21170 + - uid: 21278 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,64.5 parent: 2 - - uid: 21171 + - uid: 21279 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,62.5 parent: 2 - - uid: 21172 + - uid: 21280 components: - type: Transform pos: 42.5,62.5 parent: 2 - - uid: 21173 + - uid: 21281 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,61.5 parent: 2 - - uid: 21174 + - uid: 21282 components: - type: Transform pos: 41.5,61.5 parent: 2 - - uid: 21175 + - uid: 21283 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,60.5 parent: 2 - - uid: 21176 + - uid: 21284 components: - type: Transform pos: 40.5,60.5 parent: 2 - - uid: 21177 + - uid: 21285 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,59.5 parent: 2 - - uid: 21178 + - uid: 21286 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-48.5 parent: 2 - - uid: 21179 + - uid: 21287 components: - type: Transform pos: -79.5,-51.5 parent: 2 - - uid: 21180 + - uid: 21288 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-52.5 parent: 2 - - uid: 21181 + - uid: 21289 components: - type: Transform pos: -80.5,-52.5 parent: 2 - - uid: 21182 + - uid: 21290 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-55.5 parent: 2 - - uid: 21183 + - uid: 21291 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-55.5 parent: 2 - - uid: 21184 + - uid: 21292 components: - type: Transform rot: 1.5707963267948966 rad @@ -141209,7 +139504,7 @@ entities: parent: 2 - proto: GrilleSpawner entities: - - uid: 21185 + - uid: 21293 components: - type: Transform rot: 3.141592653589793 rad @@ -141217,205 +139512,201 @@ entities: parent: 2 - proto: GunpetInstrument entities: - - uid: 21186 + - uid: 21294 components: - type: Transform pos: 18.804333,-20.357145 parent: 2 - proto: GunSafeDisabler entities: - - uid: 21187 + - uid: 21295 components: - type: Transform pos: 23.5,20.5 parent: 2 - proto: Handcuffs entities: - - uid: 21188 + - uid: 21296 components: - type: Transform pos: -1.4479281,19.547018 parent: 2 - - uid: 21189 + - uid: 21297 components: - type: Transform pos: -15.367192,-23.36869 parent: 2 - proto: HandheldHealthAnalyzer entities: - - uid: 21190 + - uid: 21298 components: - type: Transform - pos: 10.274347,-58.341446 + pos: -26.34975,-61.28378 parent: 2 - - uid: 21191 + - uid: 21299 components: - type: Transform - pos: 10.539972,-58.60707 + pos: -26.615376,-61.62753 + parent: 2 + - uid: 21300 + components: + - type: Transform + pos: 45.505707,8.483616 + parent: 2 + - uid: 21301 + components: + - type: Transform + pos: -4.61971,-54.418156 parent: 2 - proto: HandLabeler entities: - - uid: 21193 + - uid: 21302 components: - type: Transform pos: 39.184,-39.455414 parent: 2 - - uid: 21194 + - uid: 21303 components: - type: Transform pos: -33.328754,17.574179 parent: 2 - - uid: 21195 + - uid: 21304 components: - type: Transform pos: -28.559744,21.679361 parent: 2 - - uid: 21196 + - uid: 21305 components: - type: Transform rot: 3.141592653589793 rad pos: -32.198154,29.656374 parent: 2 -- proto: HappyHonkCluwne - entities: - - uid: 21197 - components: - - type: Transform - pos: -54.32355,-63.58878 - parent: 2 - proto: HappyHonkNukie entities: - - uid: 21198 + - uid: 21306 components: - type: Transform pos: 22.60001,-29.307062 parent: 2 - proto: HarmonicaInstrument entities: - - uid: 21199 + - uid: 21307 components: - type: Transform pos: 53.479427,24.562923 parent: 2 - proto: HeatExchanger entities: - - uid: 21200 + - uid: 21308 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21201 + - uid: 21309 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21202 + - uid: 21310 components: - type: Transform pos: -62.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21203 + - uid: 21311 components: - type: Transform pos: -62.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: Hemostat entities: - - uid: 21204 + - uid: 21312 components: - type: Transform - pos: 0.5210637,-64.93571 + pos: 73.5331,-48.317677 parent: 2 - - uid: 21205 + - uid: 21313 components: - type: Transform - pos: 73.5331,-48.317677 + rot: 1.5707963267948966 rad + pos: -12.824233,-52.399734 parent: 2 - proto: HighSecArmoryLocked entities: - - uid: 21206 + - uid: 21314 components: - type: Transform pos: 28.5,26.5 parent: 2 - - uid: 21207 + - uid: 21315 components: - type: Transform pos: 30.5,26.5 parent: 2 - - uid: 21208 + - uid: 21316 components: - type: Transform pos: 30.5,24.5 parent: 2 - - uid: 21209 + - uid: 21317 components: - type: Transform pos: 28.5,24.5 parent: 2 - proto: HighSecCaptainLocked entities: - - uid: 21210 + - uid: 21318 components: - - type: MetaData - name: vault - type: Transform - pos: 43.5,-24.5 + pos: -1.5,64.5 parent: 2 - - uid: 21211 + - uid: 21319 components: - type: MetaData - name: vault + name: AI - type: Transform - pos: 43.5,-27.5 + pos: -1.5,60.5 parent: 2 - - uid: 21212 +- proto: HighSecCommandLocked + entities: + - uid: 21320 components: + - type: MetaData + name: Vault - type: Transform - pos: -1.5,64.5 + pos: 43.5,-24.5 parent: 2 - - uid: 21213 + - uid: 21321 components: - type: MetaData - name: AI + name: Vault - type: Transform - pos: -1.5,60.5 + pos: 43.5,-27.5 parent: 2 -- proto: HighSecCommandLocked - entities: - - uid: 21214 + - uid: 21322 components: - type: Transform pos: 13.5,-21.5 parent: 2 - proto: HolofanProjector entities: - - uid: 21215 + - uid: 21323 components: - type: Transform pos: -37.369167,-8.432599 parent: 2 - proto: HospitalCurtains entities: - - uid: 21216 + - uid: 21324 components: - type: Transform pos: 60.5,21.5 @@ -141426,145 +139717,95 @@ entities: state: Open - type: Physics canCollide: False - - uid: 21217 + - uid: 21325 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,13.5 parent: 2 - - uid: 21218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-19.5 - parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 21219 - components: - - type: Transform - pos: -2.5,-55.5 - parent: 2 - - uid: 21220 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 2 - - uid: 21221 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 2 - - uid: 21222 - components: - - type: Transform - pos: 3.5,-62.5 - parent: 2 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 21223 - components: - - type: Transform - pos: 0.5,-55.5 - parent: 2 - - uid: 21224 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 2 - - uid: 21225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 2 - proto: hydroponicsSoil entities: - - uid: 21226 + - uid: 21326 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 21227 + - uid: 21327 components: - type: Transform pos: 8.5,55.5 parent: 2 - - uid: 21228 + - uid: 21328 components: - type: Transform pos: 10.5,55.5 parent: 2 - - uid: 21229 + - uid: 21329 components: - type: Transform pos: 11.5,55.5 parent: 2 - - uid: 21230 + - uid: 21330 components: - type: Transform pos: 7.5,55.5 parent: 2 - - uid: 21231 + - uid: 21331 components: - type: Transform pos: 11.5,52.5 parent: 2 - - uid: 21232 + - uid: 21332 components: - type: Transform pos: 10.5,52.5 parent: 2 - - uid: 21233 + - uid: 21333 components: - type: Transform pos: 9.5,52.5 parent: 2 - - uid: 21234 + - uid: 21334 components: - type: Transform pos: -6.5,49.5 parent: 2 - - uid: 21235 + - uid: 21335 components: - type: Transform pos: -4.5,55.5 parent: 2 - - uid: 21236 + - uid: 21336 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 2 - - uid: 21237 + - uid: 21337 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,3.5 parent: 2 - - uid: 21238 + - uid: 21338 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 - - uid: 21239 + - uid: 21339 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,19.5 parent: 2 - - uid: 21240 + - uid: 21340 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-68.5 parent: 2 - - uid: 21241 + - uid: 21341 components: - type: Transform rot: 1.5707963267948966 rad @@ -141572,298 +139813,305 @@ entities: parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 21242 + - uid: 21342 components: - type: Transform pos: -47.467487,-3.558907 parent: 2 - proto: HydroponicsToolHatchet entities: - - uid: 21243 + - uid: 21343 components: - type: Transform pos: 9.725508,-56.44578 parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 21244 + - uid: 21344 components: - type: Transform pos: 57.497448,6.490094 parent: 2 - - uid: 21245 + - uid: 21345 components: - type: Transform pos: -28.501194,4.4131045 parent: 2 - - uid: 21246 + - uid: 21346 components: - type: Transform pos: 55.4544,56.501 parent: 2 - - uid: 21247 + - uid: 21347 components: - type: Transform pos: 7.1714664,53.671818 parent: 2 - proto: HydroponicsToolScythe entities: - - uid: 21248 + - uid: 21348 components: - type: Transform pos: -2.5396576,10.576576 parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 21249 + - uid: 21349 components: - type: Transform pos: 57.622448,6.583844 parent: 2 - - uid: 21250 + - uid: 21350 components: - type: Transform pos: -28.61099,3.5269613 parent: 2 - - uid: 21251 + - uid: 21351 components: - type: Transform pos: 55.54815,56.53225 parent: 2 - proto: hydroponicsTray entities: - - uid: 21252 + - uid: 21352 components: - type: Transform pos: -10.5,11.5 parent: 2 - - uid: 21253 + - uid: 21353 components: - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 21254 + - uid: 21354 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 21255 + - uid: 21355 components: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 21256 + - uid: 21356 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 21257 + - uid: 21357 components: - type: Transform pos: -6.5,7.5 parent: 2 - - uid: 21258 + - uid: 21358 components: - type: Transform pos: -6.5,9.5 parent: 2 - - uid: 21259 + - uid: 21359 components: - type: Transform pos: -8.5,8.5 parent: 2 - - uid: 21260 + - uid: 21360 components: - type: Transform pos: -4.5,8.5 parent: 2 - - uid: 21261 + - uid: 21361 components: - type: Transform pos: -8.5,10.5 parent: 2 - - uid: 21262 + - uid: 21362 components: - type: Transform pos: -6.5,11.5 parent: 2 - - uid: 21263 + - uid: 21363 components: - type: Transform pos: -6.5,8.5 parent: 2 - - uid: 21264 + - uid: 21364 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 21265 + - uid: 21365 components: - type: Transform pos: -8.5,7.5 parent: 2 - - uid: 21266 + - uid: 21366 components: - type: Transform pos: -10.5,7.5 parent: 2 - - uid: 21267 + - uid: 21367 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 21268 + - uid: 21368 components: - type: Transform pos: -8.5,11.5 parent: 2 - - uid: 21269 + - uid: 21369 components: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 21270 + - uid: 21370 components: - type: Transform pos: 58.5,7.5 parent: 2 - - uid: 21271 + - uid: 21371 components: - type: Transform pos: 58.5,6.5 parent: 2 - - uid: 21272 + - uid: 21372 components: - type: Transform pos: 56.5,8.5 parent: 2 - - uid: 21273 + - uid: 21373 components: - type: Transform pos: 56.5,7.5 parent: 2 - - uid: 21274 + - uid: 21374 components: - type: Transform pos: 56.5,6.5 parent: 2 - - uid: 21275 + - uid: 21375 components: - type: Transform pos: 52.5,55.5 parent: 2 - - uid: 21276 + - uid: 21376 components: - type: Transform pos: 56.5,55.5 parent: 2 - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 21277 + - uid: 21377 components: - type: Transform pos: 38.518326,-56.124916 parent: 2 +- proto: InflatableDoor + entities: + - uid: 21378 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 - proto: InflatableDoorStack1 entities: - - uid: 21278 + - uid: 21379 components: - type: Transform pos: 41.577766,-55.382984 parent: 2 - proto: InflatableWall entities: - - uid: 21279 + - uid: 21380 components: - type: Transform pos: -51.5,-66.5 parent: 2 - - uid: 21280 + - uid: 21381 components: - type: Transform pos: -51.5,-67.5 parent: 2 - - uid: 21281 + - uid: 21382 components: - type: Transform pos: -49.5,-72.5 parent: 2 - proto: InflatableWallStack entities: - - uid: 21282 + - uid: 21383 components: - type: Transform pos: 7.4753633,-16.474928 parent: 2 - proto: InflatableWallStack1 entities: - - uid: 21283 + - uid: 21384 components: - type: Transform pos: -38.56672,-98.45029 parent: 2 - proto: IngotGold entities: - - uid: 21284 + - uid: 21385 components: - type: Transform pos: 48.54513,-24.041304 parent: 2 - proto: IngotGold1 entities: - - uid: 21285 + - uid: 21386 components: - type: Transform pos: 14.545005,56.593597 parent: 2 - - uid: 21286 + - uid: 21387 components: - type: Transform pos: 59.385517,-51.41954 parent: 2 - - uid: 21287 + - uid: 21388 components: - type: Transform pos: 59.432392,-51.591415 parent: 2 - proto: IngotSilver entities: - - uid: 21288 + - uid: 21389 components: - type: Transform pos: 48.392242,-30.21978 parent: 2 - proto: IntercomAll entities: - - uid: 21289 + - uid: 21390 components: - type: Transform pos: 20.5,-20.5 parent: 2 - proto: IntercomCommand entities: - - uid: 21290 + - uid: 21391 components: - type: Transform pos: -34.5,-14.5 parent: 2 - - uid: 21291 + - uid: 21392 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 21292 + - uid: 21393 components: - type: Transform pos: 64.5,-50.5 parent: 2 - - uid: 21293 + - uid: 21394 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 - - uid: 21294 + - uid: 21395 components: - type: Transform rot: -1.5707963267948966 rad @@ -141871,192 +140119,193 @@ entities: parent: 2 - proto: IntercomCommon entities: - - uid: 21295 + - uid: 21396 components: - type: Transform pos: -38.5,-70.5 parent: 2 - - uid: 21296 + - uid: 21397 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 - - uid: 21297 + - uid: 21398 components: - type: Transform pos: 37.5,-69.5 parent: 2 - - uid: 21298 + - uid: 21399 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 - - uid: 21299 + - uid: 21400 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 - - uid: 21300 + - uid: 21401 components: - type: Transform pos: 14.5,4.5 parent: 2 - - uid: 21301 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 21302 + - uid: 21402 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 - - uid: 21303 + - uid: 21403 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 21304 + - uid: 21404 components: - type: Transform pos: -30.5,2.5 parent: 2 - - uid: 21305 + - uid: 21405 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 21306 + - uid: 21406 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 21307 + - uid: 21407 components: - type: Transform pos: 39.5,-40.5 parent: 2 - - uid: 21308 + - uid: 21408 components: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 21309 + - uid: 21409 components: - type: Transform pos: 39.5,3.5 parent: 2 - - uid: 21310 + - uid: 21410 components: - type: Transform pos: 54.5,-4.5 parent: 2 - - uid: 21311 + - uid: 21411 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 - - uid: 21312 + - uid: 21412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 - - uid: 21313 + - uid: 21413 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 - - uid: 21314 + - uid: 21414 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 - - uid: 21315 + - uid: 21415 components: - type: Transform pos: -14.5,-40.5 parent: 2 - - uid: 21316 + - uid: 21416 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 - - uid: 21317 + - uid: 21417 components: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 21318 + - uid: 21418 components: - type: Transform pos: -25.5,-94.5 parent: 2 - - uid: 21319 + - uid: 21419 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 - - uid: 21320 + - uid: 21420 components: - type: Transform pos: 23.5,-69.5 parent: 2 - - uid: 21321 + - uid: 21421 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-84.5 parent: 2 + - uid: 21422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 - proto: IntercomEngineering entities: - - uid: 21322 + - uid: 21423 components: - type: Transform pos: -24.5,-7.5 parent: 2 - - uid: 21323 + - uid: 21424 components: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 21324 + - uid: 21425 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 - - uid: 21325 + - uid: 21426 components: - type: Transform pos: -61.5,-26.5 parent: 2 - - uid: 21326 + - uid: 21427 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 21327 + - uid: 21428 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-49.5 parent: 2 - - uid: 21328 + - uid: 21429 components: - type: Transform pos: -67.5,-35.5 parent: 2 - - uid: 21329 + - uid: 21430 components: - type: Transform rot: -1.5707963267948966 rad @@ -142064,159 +140313,172 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 21330 + - uid: 21431 components: - type: Transform - pos: -13.5,-58.5 + pos: 2.5,-54.5 parent: 2 - - uid: 21331 + - uid: 21432 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 - - uid: 21332 + - uid: 21433 components: - type: Transform pos: -24.5,-56.5 parent: 2 - - uid: 21333 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 2 - - uid: 21334 + - uid: 21434 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 21335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-64.5 - parent: 2 - - uid: 21336 + - uid: 21435 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 - - uid: 21337 + - uid: 21436 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 - - uid: 21338 + - uid: 21437 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 - - uid: 21339 + - uid: 21438 components: - type: Transform pos: -19.5,-74.5 parent: 2 + - uid: 21439 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-67.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-66.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-67.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 2 - proto: IntercomScience entities: - - uid: 21340 + - uid: 21444 components: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 21341 + - uid: 21445 components: - type: Transform pos: 44.5,-40.5 parent: 2 - - uid: 21342 + - uid: 21446 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 - - uid: 21343 + - uid: 21447 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 - - uid: 21344 + - uid: 21448 components: - type: Transform pos: 67.5,-42.5 parent: 2 - - uid: 21345 + - uid: 21449 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 - - uid: 21346 + - uid: 21450 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 21347 + - uid: 21451 components: - type: Transform pos: 49.5,-36.5 parent: 2 - proto: IntercomSecurity entities: - - uid: 21348 + - uid: 21452 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 - - uid: 21349 + - uid: 21453 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 - - uid: 21350 + - uid: 21454 components: - type: Transform pos: -16.5,-19.5 parent: 2 - - uid: 21351 + - uid: 21455 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 - - uid: 21352 + - uid: 21456 components: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 21353 + - uid: 21457 components: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 21354 + - uid: 21458 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 - - uid: 21355 + - uid: 21459 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 - - uid: 21356 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 2 - - uid: 21357 + - uid: 21460 components: - type: Transform rot: -1.5707963267948966 rad @@ -142224,58 +140486,58 @@ entities: parent: 2 - proto: IntercomService entities: - - uid: 21358 + - uid: 21461 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 21359 + - uid: 21462 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 21360 + - uid: 21463 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,5.5 parent: 2 - - uid: 21361 + - uid: 21464 components: - type: Transform pos: 1.5,-18.5 parent: 2 - proto: IntercomSupply entities: - - uid: 21362 + - uid: 21465 components: - type: Transform pos: -48.5,17.5 parent: 2 - - uid: 21363 + - uid: 21466 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 - - uid: 21364 + - uid: 21467 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 - - uid: 21365 + - uid: 21468 components: - type: Transform pos: -43.5,26.5 parent: 2 - - uid: 21366 + - uid: 21469 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,28.5 parent: 2 - - uid: 21367 + - uid: 21470 components: - type: Transform rot: 3.141592653589793 rad @@ -142283,7 +140545,7 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 21368 + - uid: 21471 components: - type: Transform rot: -1.5707963267948966 rad @@ -142291,23 +140553,23 @@ entities: parent: 2 - proto: JanitorServiceLight entities: - - uid: 21369 + - uid: 21472 components: - type: Transform pos: -5.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 24353 - - uid: 21370 + - 24456 + - uid: 21473 components: - type: Transform pos: 38.5,-41.5 parent: 2 - type: DeviceLinkSink links: - - 24347 - - uid: 21371 + - 24451 + - uid: 21474 components: - type: Transform rot: 1.5707963267948966 rad @@ -142315,8 +140577,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24348 - - uid: 21372 + - 24452 + - uid: 21475 components: - type: Transform rot: 1.5707963267948966 rad @@ -142324,8 +140586,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24350 - - uid: 21373 + - 24454 + - uid: 21476 components: - type: Transform rot: -1.5707963267948966 rad @@ -142333,17 +140595,18 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24343 - - uid: 21374 + - 24446 + - uid: 21477 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-43.5 parent: 2 - type: DeviceLinkSink + invokeCounter: 2 links: - - 24352 - - uid: 21375 + - 24447 + - uid: 21478 components: - type: Transform rot: 1.5707963267948966 rad @@ -142351,8 +140614,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24351 - - uid: 21376 + - 24455 + - uid: 21479 components: - type: Transform rot: 1.5707963267948966 rad @@ -142360,8 +140623,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24343 - - uid: 21377 + - 24446 + - uid: 21480 components: - type: Transform rot: 1.5707963267948966 rad @@ -142369,30 +140632,30 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24349 - - uid: 21378 + - 24453 + - uid: 21481 components: - type: Transform pos: 0.5,-25.5 parent: 2 - type: DeviceLinkSink links: - - 24354 + - 24457 - proto: JetpackBlueFilled entities: - - uid: 21379 + - uid: 21482 components: - type: Transform rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 - - uid: 21380 + - uid: 21483 components: - type: Transform rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 - - uid: 21381 + - uid: 21484 components: - type: Transform rot: 3.141592653589793 rad @@ -142400,159 +140663,164 @@ entities: parent: 2 - proto: KitchenElectricGrill entities: - - uid: 21382 + - uid: 21485 components: - type: Transform pos: 3.5,6.5 parent: 2 - proto: KitchenMicrowave entities: - - uid: 21383 + - uid: 21486 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 21384 + - uid: 21487 components: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 21385 + - uid: 21488 components: - type: Transform pos: 4.5,6.5 parent: 2 - - uid: 21386 + - uid: 21489 components: - type: Transform pos: 31.5,-20.5 parent: 2 - - uid: 21387 + - uid: 21490 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 21388 + - uid: 21491 components: - type: Transform pos: 45.5,-49.5 parent: 2 - - uid: 21389 + - uid: 21492 components: - type: Transform pos: -38.5,-32.5 parent: 2 - - uid: 21390 + - uid: 21493 components: - type: Transform pos: -22.5,45.5 parent: 2 - - uid: 21391 + - uid: 21494 components: - type: Transform pos: -8.5,41.5 parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 21392 + - uid: 21495 components: - type: Transform pos: -3.5,5.5 parent: 2 - - uid: 21393 + - uid: 21496 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 21394 + - uid: 21497 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 21395 + - uid: 21498 components: - type: Transform pos: 53.5,18.5 parent: 2 - proto: KitchenSpike entities: - - uid: 21396 + - uid: 21499 components: - type: Transform pos: -0.5,11.5 parent: 2 - proto: Lamp entities: - - uid: 21397 + - uid: 21500 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 - - uid: 21398 + - uid: 21501 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 - - uid: 21399 + - uid: 21502 components: - type: Transform pos: 21.425192,-12.111239 parent: 2 - - uid: 21400 + - uid: 21503 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.6524577,20.90233 parent: 2 - - uid: 21401 + - uid: 21504 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.565374,-37.00866 parent: 2 - - uid: 21402 + - uid: 21505 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.608532,-40.935013 parent: 2 - - uid: 21403 + - uid: 21506 components: - type: Transform pos: 59.696476,-1.1797758 parent: 2 - - uid: 21404 + - uid: 21507 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.336697,29.910027 parent: 2 - - uid: 21405 + - uid: 21508 components: - type: Transform pos: -24.34436,11.920202 parent: 2 - - uid: 21406 + - uid: 21509 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.600471,45.10426 parent: 2 - - uid: 21407 + - uid: 21510 components: - type: Transform pos: -12.458234,-18.122696 parent: 2 + - uid: 21511 + components: + - type: Transform + pos: -1.3698555,-64.217514 + parent: 2 - proto: LampBanana entities: - - uid: 21408 + - uid: 21512 components: - type: Transform pos: -22.53235,37.89803 parent: 2 - - uid: 21409 + - uid: 21513 components: - type: Transform rot: -1.5707963267948966 rad @@ -142560,49 +140828,49 @@ entities: parent: 2 - proto: LampGold entities: - - uid: 21410 + - uid: 21514 components: - type: Transform pos: -22.537891,-69.31316 parent: 2 - - uid: 21411 + - uid: 21515 components: - type: Transform pos: -18.78946,-56.159798 parent: 2 - - uid: 21412 + - uid: 21516 components: - type: Transform pos: -10.485052,-3.11381 parent: 2 - - uid: 21413 + - uid: 21517 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 - - uid: 21414 + - uid: 21518 components: - type: Transform pos: 37.53909,-2.5487528 parent: 2 - - uid: 21415 + - uid: 21519 components: - type: Transform pos: 32.892563,-50.10114 parent: 2 - - uid: 21416 + - uid: 21520 components: - type: Transform pos: 28.845686,-50.06989 parent: 2 - - uid: 21417 + - uid: 21521 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 parent: 2 - - uid: 21418 + - uid: 21522 components: - type: Transform rot: 1.5707963267948966 rad @@ -142610,65 +140878,70 @@ entities: parent: 2 - proto: LargeBeaker entities: - - uid: 21419 + - uid: 21523 components: - type: Transform pos: 3.459992,-47.48736 parent: 2 - - uid: 21420 + - uid: 21524 components: - type: Transform pos: 4.621125,7.7027445 parent: 2 - - uid: 21421 + - uid: 21525 components: - type: Transform pos: -25.403534,-78.32023 parent: 2 - - uid: 21422 + - uid: 21526 components: - type: Transform pos: -25.716034,-78.71085 parent: 2 - - uid: 21423 + - uid: 21527 components: - type: Transform pos: -25.591316,-84.223625 parent: 2 - - uid: 21424 + - uid: 21528 components: - type: Transform pos: 3.678742,-47.471733 parent: 2 + - uid: 21529 + components: + - type: Transform + pos: 4.4686246,-53.43163 + parent: 2 - proto: LauncherCreamPie entities: - - uid: 21425 + - uid: 21530 components: - type: Transform pos: 0.32515657,-23.45843 parent: 2 - proto: Lighter entities: - - uid: 21426 + - uid: 21531 components: - type: Transform pos: 13.70992,-34.538578 parent: 2 - - uid: 21427 + - uid: 21532 components: - type: Transform pos: 15.667978,-79.47625 parent: 2 - proto: LightTube entities: - - uid: 21428 + - uid: 21533 components: - type: Transform pos: -39.78844,-85.422134 parent: 2 - proto: LockerAtmosphericsFilled entities: - - uid: 21429 + - uid: 21534 components: - type: Transform pos: -33.5,-32.5 @@ -142691,15 +140964,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21430 + - uid: 21535 components: - type: Transform pos: -39.5,-36.5 @@ -142722,15 +140987,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21431 + - uid: 21536 components: - type: Transform pos: -37.5,-36.5 @@ -142753,15 +141010,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21432 + - uid: 21537 components: - type: Transform pos: -35.5,-36.5 @@ -142784,24 +141033,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBlueShieldFilled - entities: - - uid: 24759 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 2 - proto: LockerBoozeFilled entities: - - uid: 21433 + - uid: 21538 components: - type: Transform pos: 22.5,12.5 @@ -142824,17 +141058,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerBotanistFilled entities: - - uid: 21434 + - uid: 21539 components: - type: Transform pos: -4.5,11.5 @@ -142857,45 +141083,23 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBrigmedicFilledHardsuit - entities: - - uid: 21736 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - proto: LockerCaptainFilled entities: - - uid: 15350 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 2 -- proto: LockerCentcomConsultantFilled - entities: - - uid: 31663 + - uid: 20256 components: - type: Transform - pos: 21.5,-37.5 + pos: 32.5,-30.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 21436 + - uid: 21540 components: - type: Transform pos: 7.5,-50.5 parent: 2 - proto: LockerChiefEngineerFilled entities: - - uid: 21437 + - uid: 21541 components: - type: Transform pos: -37.5,-15.5 @@ -142918,57 +141122,23 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 21438 + - uid: 21542 components: - type: Transform - pos: -18.5,-54.5 + pos: -19.5,-51.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerClown entities: - - uid: 21439 + - uid: 21543 components: - type: Transform pos: -20.5,37.5 parent: 2 - proto: LockerDetectiveFilled entities: - - uid: 21440 + - uid: 21544 components: - type: Transform pos: 17.5,-10.5 @@ -142991,17 +141161,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerElectricalSuppliesFilled entities: - - uid: 21441 + - uid: 21545 components: - type: Transform pos: 46.5,-3.5 @@ -143024,15 +141186,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21442 + - uid: 21546 components: - type: Transform pos: -53.5,0.5 @@ -143055,15 +141209,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21443 + - uid: 21547 components: - type: Transform pos: 32.5,25.5 @@ -143086,15 +141232,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21444 + - uid: 21548 components: - type: Transform pos: 39.5,-28.5 @@ -143117,17 +141255,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerEngineerFilled entities: - - uid: 21445 + - uid: 21549 components: - type: Transform pos: -39.5,-7.5 @@ -143150,15 +141280,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21446 + - uid: 21550 components: - type: Transform pos: -39.5,-12.5 @@ -143181,15 +141303,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21447 + - uid: 21551 components: - type: Transform pos: -39.5,-8.5 @@ -143212,15 +141326,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21448 + - uid: 21552 components: - type: Transform pos: -39.5,-9.5 @@ -143243,51 +141349,10 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21449 - components: - - type: Transform - pos: -50.5,-20.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerEvidence - entities: - - uid: 21450 + - uid: 21553 components: - type: Transform - pos: 4.5,-57.5 + pos: -50.5,-20.5 parent: 2 - type: EntityStorage air: @@ -143307,15 +141372,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21451 +- proto: LockerEvidence + entities: + - uid: 21554 components: - type: Transform pos: 34.5,-45.5 @@ -143338,15 +141397,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21452 + - uid: 21555 components: - type: Transform pos: 18.5,23.5 @@ -143369,25 +141420,17 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21453 + - uid: 21556 components: - type: Transform pos: 37.5,12.5 parent: 2 - - uid: 21454 + - uid: 21557 components: - type: Transform pos: 37.5,11.5 parent: 2 - - uid: 21455 + - uid: 21558 components: - type: Transform pos: 41.5,16.5 @@ -143410,15 +141453,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21456 + - uid: 21559 components: - type: Transform pos: 40.5,16.5 @@ -143441,15 +141476,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21457 + - uid: 21560 components: - type: Transform pos: 39.5,16.5 @@ -143472,15 +141499,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21458 + - uid: 21561 components: - type: Transform pos: 38.5,16.5 @@ -143503,15 +141522,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21459 + - uid: 21562 components: - type: Transform pos: 42.5,16.5 @@ -143534,15 +141545,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21460 + - uid: 21563 components: - type: Transform pos: 37.5,16.5 @@ -143565,22 +141568,14 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21461 + - uid: 21564 components: - type: Transform pos: 37.5,10.5 parent: 2 - proto: LockerFreezer entities: - - uid: 21462 + - uid: 21565 components: - type: Transform pos: -38.5,37.5 @@ -143603,15 +141598,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21463 + - uid: 21566 components: - type: Transform pos: -38.5,36.5 @@ -143634,15 +141621,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21464 + - uid: 21567 components: - type: Transform pos: 1.5,14.5 @@ -143665,15 +141644,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21465 + - uid: 21568 components: - type: Transform pos: -5.5,-95.5 @@ -143696,24 +141667,16 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 21466 + - uid: 21569 components: - type: Transform pos: -1.5,-3.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 12408 + - uid: 12519 components: - type: Transform pos: 4.5,22.5 @@ -143736,29 +141699,21 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 12410 - - 12409 + - 12521 + - 12520 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedicalFilled entities: - - uid: 21467 + - uid: 21570 components: - type: Transform pos: -15.5,-49.5 @@ -143781,15 +141736,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21468 + - uid: 21571 components: - type: Transform pos: -15.5,-47.5 @@ -143812,72 +141759,38 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21469 + - uid: 21572 components: - type: Transform pos: -15.5,-45.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21470 + - uid: 21573 components: - type: Transform - pos: -15.5,-61.5 + pos: -14.5,-47.5 parent: 2 - - uid: 21471 + - uid: 21574 components: - type: Transform - pos: -14.5,-61.5 + pos: -14.5,-49.5 parent: 2 - proto: LockerMime entities: - - uid: 21472 + - uid: 21575 components: - type: Transform pos: -27.5,46.5 parent: 2 - proto: LockerParamedicFilled entities: - - uid: 21473 + - uid: 21576 components: - type: Transform - pos: 2.5,-64.5 + pos: -5.5,-64.5 parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 21474 + - uid: 21577 components: - type: Transform pos: -34.5,31.5 @@ -143900,17 +141813,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerResearchDirectorFilled entities: - - uid: 21475 + - uid: 21578 components: - type: Transform pos: 63.5,-55.5 @@ -143933,17 +141838,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSalvageSpecialistFilled entities: - - uid: 21476 + - uid: 21579 components: - type: Transform pos: -36.5,32.5 @@ -143966,15 +141863,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21477 + - uid: 21580 components: - type: Transform pos: -36.5,30.5 @@ -143997,15 +141886,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21478 + - uid: 21581 components: - type: Transform pos: -36.5,28.5 @@ -144028,22 +141909,14 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21479 + - uid: 21582 components: - type: Transform pos: -45.5,44.5 parent: 2 - proto: LockerScienceFilled entities: - - uid: 21480 + - uid: 21583 components: - type: Transform pos: 44.5,-45.5 @@ -144066,15 +141939,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21481 + - uid: 21584 components: - type: Transform pos: 42.5,-45.5 @@ -144097,15 +141962,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21482 + - uid: 21585 components: - type: Transform pos: 41.5,-45.5 @@ -144128,17 +141985,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSecurity entities: - - uid: 21483 + - uid: 21586 components: - type: Transform pos: 19.5,-47.5 @@ -144161,15 +142010,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21484 + - uid: 21587 components: - type: Transform pos: 52.5,13.5 @@ -144192,27 +142033,19 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerSecurityFilled entities: - - uid: 21485 + - uid: 21588 components: - type: Transform pos: 31.5,19.5 parent: 2 - - uid: 21486 + - uid: 21589 components: - type: Transform pos: 32.5,19.5 parent: 2 - - uid: 21487 + - uid: 21590 components: - type: Transform pos: -0.5,17.5 @@ -144235,15 +142068,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21488 + - uid: 21591 components: - type: Transform pos: -0.5,19.5 @@ -144266,79 +142091,26 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21489 + - uid: 21592 components: - type: Transform pos: -14.5,23.5 parent: 2 - - uid: 21490 + - uid: 21593 components: - type: Transform pos: -0.5,21.5 parent: 2 - proto: LockerSyndicatePersonal entities: - - uid: 21491 + - uid: 21594 components: - type: Transform pos: -52.5,-86.5 parent: 2 -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 21492 - components: - - type: Transform - pos: 6.5,-58.5 - parent: 2 - - uid: 21493 - components: - - type: Transform - pos: -15.5,-51.5 - parent: 2 -- proto: LockerWallMedicalFilled - entities: - - uid: 21494 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWardenFilled entities: - - uid: 21495 + - uid: 21595 components: - type: Transform pos: 20.5,23.5 @@ -144361,17 +142133,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWeldingSuppliesFilled entities: - - uid: 21496 + - uid: 21596 components: - type: Transform pos: 38.5,-53.5 @@ -144394,15 +142158,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21497 + - uid: 21597 components: - type: Transform pos: -53.5,-61.5 @@ -144425,48 +142181,40 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MachineAnomalyGenerator entities: - - uid: 21498 + - uid: 21598 components: - type: Transform pos: 62.5,-30.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 21499 + - uid: 21599 components: - type: Transform pos: 58.5,-32.5 parent: 2 - - uid: 21500 + - uid: 21600 components: - type: Transform pos: 57.5,-32.5 parent: 2 - proto: MachineAPE entities: - - uid: 21501 + - uid: 21601 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 - - uid: 21502 + - uid: 21602 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 - - uid: 21503 + - uid: 21603 components: - type: Transform rot: 1.5707963267948966 rad @@ -144474,7 +142222,7 @@ entities: parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 21504 + - uid: 21604 components: - type: Transform rot: -1.5707963267948966 rad @@ -144482,525 +142230,532 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 12656 + - 12764 - proto: MachineCentrifuge entities: - - uid: 21505 + - uid: 21605 components: - type: Transform pos: 7.5,-45.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 21506 + - uid: 21606 components: - type: Transform pos: 3.5,-45.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 21507 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 2 - - uid: 21508 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 21509 + - uid: 21607 components: - type: Transform pos: 45.5,44.5 parent: 2 - - uid: 21510 + - uid: 21608 components: - type: Transform pos: -16.5,-8.5 parent: 2 - - uid: 21511 + - uid: 21609 components: - type: Transform pos: -36.5,-29.5 parent: 2 - proto: MagazinePistol entities: - - uid: 21512 + - uid: 21610 components: - type: Transform pos: 32.305683,32.48245 parent: 2 - - uid: 21513 + - uid: 21611 components: - type: Transform pos: 32.32131,32.48245 parent: 2 - - uid: 21514 + - uid: 21612 components: - type: Transform pos: 32.32131,32.48245 parent: 2 - - uid: 21515 + - uid: 21613 components: - type: Transform pos: 32.305683,32.48245 parent: 2 - - uid: 21516 + - uid: 21614 components: - type: Transform pos: 32.42361,32.439632 parent: 2 - - uid: 21517 + - uid: 21615 components: - type: Transform pos: 32.439236,32.392757 parent: 2 - proto: MagazinePistolSubMachineGun entities: - - uid: 21518 + - uid: 21616 components: - type: Transform - pos: 29.960567,32.527683 + pos: 29.030212,32.493073 parent: 2 - - uid: 21519 + - uid: 21617 components: - type: Transform - pos: 29.952528,32.56383 + pos: 29.030212,32.493073 parent: 2 - - uid: 21520 + - uid: 21618 components: - type: Transform - pos: 29.936903,32.548206 + pos: 29.030212,32.493073 parent: 2 - - uid: 21521 + - uid: 21619 components: - type: Transform - pos: 29.968153,32.610706 + pos: 29.030212,32.493073 parent: 2 - - uid: 21522 + - uid: 21620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.992437,32.514297 + pos: 29.030212,32.493073 parent: 2 - - uid: 21523 + - uid: 21621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.976812,32.483047 + pos: 29.030212,32.493073 + parent: 2 + - uid: 21622 + components: + - type: Transform + pos: 29.030212,32.493073 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: 29.030212,32.493073 parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 21524 + - uid: 21624 components: - type: Transform pos: 6.551134,22.646631 parent: 2 - - uid: 21525 + - uid: 21625 components: - type: Transform pos: 6.5377827,22.587479 parent: 2 - proto: MagicDiceBag entities: - - uid: 21526 + - uid: 21626 components: - type: Transform pos: -47.440662,5.801874 parent: 2 - proto: MaintenanceFluffSpawner entities: - - uid: 21527 + - uid: 21627 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,46.5 parent: 2 - - uid: 21528 + - uid: 21628 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,51.5 parent: 2 - - uid: 21529 + - uid: 21629 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 - - uid: 21530 + - uid: 21630 components: - type: Transform pos: 15.5,-66.5 parent: 2 - - uid: 21531 + - uid: 21631 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 21532 + - uid: 21632 components: - type: Transform pos: -15.5,-29.5 parent: 2 - - uid: 21533 + - uid: 21633 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 - - uid: 21534 + - uid: 21634 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 - - uid: 21535 + - uid: 21635 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 - - uid: 21536 + - uid: 21636 components: - type: Transform pos: -35.5,-22.5 parent: 2 - - uid: 21537 + - uid: 21637 components: - type: Transform pos: 43.5,-8.5 parent: 2 - - uid: 21538 + - uid: 21638 components: - type: Transform pos: -50.5,-62.5 parent: 2 - - uid: 21539 + - uid: 21639 components: - type: Transform pos: -36.5,-69.5 parent: 2 - - uid: 21540 + - uid: 21640 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 21541 + - uid: 21641 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 21542 + - uid: 21642 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 21543 + - uid: 21643 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 21544 + - uid: 21644 components: - type: Transform pos: 15.5,57.5 parent: 2 - - uid: 21545 + - uid: 21645 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 21546 + - uid: 21646 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 - - uid: 21547 + - uid: 21647 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 21548 + - uid: 21648 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 21549 + - uid: 21649 components: - type: Transform pos: 54.5,61.5 parent: 2 + - uid: 21650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-62.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 - proto: MaintenancePlantSpawner entities: - - uid: 21550 + - uid: 21652 components: - type: Transform pos: -55.5,-66.5 parent: 2 - - uid: 21551 + - uid: 21653 components: - type: Transform pos: -52.5,-68.5 parent: 2 - - uid: 21552 + - uid: 21654 components: - type: Transform pos: -53.5,-68.5 parent: 2 - - uid: 21553 + - uid: 21655 components: - type: Transform pos: -56.5,-68.5 parent: 2 - - uid: 21554 + - uid: 21656 components: - type: Transform pos: -53.5,-66.5 parent: 2 - - uid: 21555 + - uid: 21657 components: - type: Transform pos: -54.5,-67.5 parent: 2 - - uid: 21556 + - uid: 21658 components: - type: Transform pos: -26.5,31.5 parent: 2 - - uid: 21557 + - uid: 21659 components: - type: Transform pos: 52.5,39.5 parent: 2 - - uid: 21558 + - uid: 21660 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 21559 + - uid: 21661 components: - type: Transform pos: -28.5,-98.5 parent: 2 - - uid: 21560 + - uid: 21662 components: - type: Transform pos: -54.5,-66.5 parent: 2 - - uid: 21561 + - uid: 21663 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 21562 + - uid: 21664 components: - type: Transform pos: -4.5,53.5 parent: 2 - - uid: 21563 + - uid: 21665 components: - type: Transform pos: 10.5,53.5 parent: 2 - - uid: 21564 + - uid: 21666 components: - type: Transform pos: 8.5,53.5 parent: 2 - - uid: 21565 + - uid: 21667 components: - type: Transform pos: 7.5,54.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 21566 + - uid: 21668 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 21567 + - uid: 21669 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 21568 + - uid: 21670 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 - - uid: 21569 + - uid: 21671 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 21570 + - uid: 21672 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 21571 + - uid: 21673 components: - type: Transform pos: 0.5,23.5 parent: 2 - - uid: 21572 + - uid: 21674 components: - type: Transform pos: -3.5,34.5 parent: 2 - - uid: 21573 + - uid: 21675 components: - type: Transform pos: -49.5,14.5 parent: 2 - - uid: 21574 + - uid: 21676 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 21575 + - uid: 21677 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 21576 + - uid: 21678 components: - type: Transform pos: 53.5,47.5 parent: 2 - - uid: 21577 + - uid: 21679 components: - type: Transform pos: 67.5,8.5 parent: 2 - - uid: 21578 + - uid: 21680 components: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 21579 + - uid: 21681 components: - type: Transform pos: 16.5,56.5 parent: 2 - - uid: 21580 + - uid: 21682 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 21581 + - uid: 21683 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 21582 + - uid: 21684 components: - type: Transform pos: 58.5,-30.5 parent: 2 - - uid: 21583 + - uid: 21685 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 21584 + - uid: 21686 components: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 21585 + - uid: 21687 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 21586 + - uid: 21688 components: - type: Transform pos: 5.5,-13.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 21587 + - uid: 21689 components: - type: Transform pos: 55.5,61.5 parent: 2 - - uid: 21588 + - uid: 21690 components: - type: Transform pos: -49.5,-74.5 parent: 2 - - uid: 21589 + - uid: 21691 components: - type: Transform pos: 35.5,-12.5 parent: 2 - - uid: 21590 + - uid: 21692 components: - type: Transform pos: -29.5,-28.5 parent: 2 - - uid: 21591 + - uid: 21693 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 21592 + - uid: 21694 components: - type: Transform pos: 51.5,45.5 parent: 2 - - uid: 21593 + - uid: 21695 components: - type: Transform pos: 43.5,37.5 parent: 2 - - uid: 21594 + - uid: 21696 components: - type: Transform pos: -6.5,-88.5 parent: 2 - - uid: 21595 + - uid: 21697 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 - - uid: 21596 + - uid: 21698 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 - - uid: 21597 + - uid: 21699 components: - type: Transform pos: -48.5,16.5 parent: 2 - - uid: 21598 + - uid: 21700 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 21599 + - uid: 21701 components: - type: Transform pos: 42.5,-7.5 parent: 2 - - uid: 21600 + - uid: 21702 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-88.5 parent: 2 - - uid: 21601 + - uid: 21703 components: - type: Transform rot: 1.5707963267948966 rad @@ -145008,320 +142763,333 @@ entities: parent: 2 - proto: Matchbox entities: - - uid: 21602 + - uid: 21704 components: - type: Transform pos: 61.092392,-1.3427626 parent: 2 - - uid: 21603 + - uid: 21705 components: - type: Transform pos: -38.035473,16.606607 parent: 2 - proto: MaterialCloth entities: - - uid: 21604 + - uid: 21706 components: - type: Transform pos: 2.4694777,-7.332773 parent: 2 - - uid: 21605 + - uid: 21707 components: - type: Transform pos: 2.5319777,-7.395273 parent: 2 - - uid: 21606 + - uid: 21708 components: - type: Transform pos: 2.4851027,-7.379648 parent: 2 - proto: MaterialDiamond1 entities: - - uid: 21607 + - uid: 21709 components: - type: Transform pos: 59.45189,-51.928257 parent: 2 - proto: MaterialDurathread entities: - - uid: 21608 + - uid: 21710 components: - type: Transform pos: 2.6569777,-7.614023 parent: 2 - proto: MaterialReclaimer entities: - - uid: 21609 + - uid: 21711 components: - type: Transform pos: -39.5,18.5 parent: 2 - proto: MaterialWoodPlank entities: - - uid: 21610 + - uid: 21712 components: - type: Transform rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 - - uid: 21611 + - uid: 21713 components: - type: Transform pos: -32.447933,-98.42257 parent: 2 - proto: MaterialWoodPlank1 entities: - - uid: 21612 + - uid: 21714 components: - type: Transform pos: 50.46261,24.730665 parent: 2 - - uid: 21613 + - uid: 21715 components: - type: Transform pos: 17.500986,29.51836 parent: 2 - proto: MatterBinStockPart entities: - - uid: 25086 + - uid: 21716 components: - type: Transform pos: -50.47893,-29.292162 parent: 2 - proto: MedicalBed entities: - - uid: 21614 + - uid: 21717 components: - type: Transform - pos: 44.5,5.5 + pos: -17.5,-51.5 parent: 2 - - uid: 21615 + - uid: 21718 components: - type: Transform - pos: -9.5,-57.5 + pos: -7.5,-58.5 parent: 2 - - uid: 21616 + - uid: 21719 components: - type: Transform - pos: -12.5,-57.5 + pos: -1.5,-58.5 parent: 2 - - uid: 21617 + - uid: 21720 components: - type: Transform - pos: -3.5,-57.5 + pos: -7.5,-62.5 parent: 2 - - uid: 21618 + - uid: 21721 components: - type: Transform - pos: -0.5,-57.5 + pos: -1.5,-60.5 parent: 2 - - uid: 21619 + - uid: 21722 components: - type: Transform - pos: -21.5,-54.5 + pos: -1.5,-62.5 parent: 2 - - uid: 21620 + - uid: 21723 components: - type: Transform - pos: 44.5,4.5 + pos: 44.5,5.5 parent: 2 - - uid: 21621 + - uid: 21724 components: - type: Transform - pos: -6.5,-57.5 + pos: 44.5,4.5 parent: 2 - - uid: 21622 +- proto: MedicalTechFab + entities: + - uid: 21725 components: - type: Transform - pos: 6.5,-56.5 + pos: -26.5,-60.5 parent: 2 -- proto: MedicalTechFab +- proto: MedkitBruteFilled entities: - - uid: 21623 + - uid: 21726 components: - type: Transform - pos: -16.5,-48.5 + pos: -22.606812,-58.463657 parent: 2 -- proto: MedkitAdvancedFilled - entities: - - uid: 31695 + - uid: 21727 components: - type: Transform - pos: 46.73903,8.5 + pos: -22.294312,-58.166782 parent: 2 -- proto: MedkitBruteFilled - entities: - - uid: 21625 + - uid: 21728 components: - type: Transform - pos: 19.413246,-20.453436 + pos: 45.394405,8.60885 parent: 2 - - uid: 21626 + - uid: 21729 components: - type: Transform - pos: 9.446222,-62.560196 + pos: 19.413246,-20.453436 parent: 2 - - uid: 21627 + - uid: 21730 components: - type: Transform pos: 29.573622,4.6594224 parent: 2 - - uid: 21628 + - uid: 21731 components: - type: Transform - pos: 9.774347,-62.35707 + pos: 55.59084,42.504738 parent: 2 - - uid: 21629 + - uid: 21732 components: - type: Transform - pos: 55.59084,42.504738 + pos: -3.5951629,-54.456844 + parent: 2 + - uid: 21733 + components: + - type: Transform + pos: -3.9076629,-54.50372 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 21630 + - uid: 21734 components: - type: Transform - pos: 9.368097,-58.216446 + pos: -26.155916,-57.407654 parent: 2 - - uid: 21631 + - uid: 21735 components: - type: Transform - pos: 9.633722,-58.372696 + pos: 18.55885,-21.682238 parent: 2 - - uid: 21632 + - uid: 21736 components: - type: Transform - pos: 18.55885,-21.682238 + pos: -26.546541,-57.532654 parent: 2 - proto: MedkitCombatFilled entities: - - uid: 21633 + - uid: 21737 components: - type: Transform pos: -22.488134,-54.362434 parent: 2 - - uid: 31694 +- proto: MedkitFilled + entities: + - uid: 21738 components: - type: Transform - pos: 46.223404,8.5 + pos: -26.320868,-59.141476 parent: 2 -- proto: MedkitFilled - entities: - - uid: 21634 + - uid: 21739 components: - type: Transform pos: 18.506996,-21.230959 parent: 2 - - uid: 21635 + - uid: 21740 components: - type: Transform pos: 52.41982,-43.535877 parent: 2 + - uid: 21741 + components: + - type: Transform + pos: -26.570868,-59.422726 + parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 21636 + - uid: 21742 components: - type: Transform - pos: 10.352472,-61.403946 + pos: -22.780584,-57.75086 parent: 2 - - uid: 21637 + - uid: 21743 components: - type: Transform - pos: 10.649347,-61.57582 + pos: -22.405584,-57.453983 parent: 2 - - uid: 21638 + - uid: 21744 components: - type: Transform - pos: 18.533411,-22.207966 + pos: 18.399206,-20.724741 parent: 2 - - uid: 21639 + - uid: 21745 components: - type: Transform pos: -23.768847,-36.553474 parent: 2 - - uid: 21640 + - uid: 21746 components: - type: Transform pos: 59.446957,-3.3832169 parent: 2 - - uid: 21641 + - uid: 21747 components: - type: Transform pos: 65.55114,-6.3846307 parent: 2 - - uid: 21642 + - uid: 21748 components: - type: Transform pos: -34.54821,20.589455 parent: 2 - - uid: 21643 + - uid: 21749 components: - type: Transform pos: 64.63776,28.514448 parent: 2 - - uid: 21644 + - uid: 21750 components: - type: Transform pos: -70.47538,-28.482313 parent: 2 + - uid: 21751 + components: + - type: Transform + pos: -5.3356323,-54.403687 + parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 21645 + - uid: 21752 components: - type: Transform - pos: 10.352472,-60.278946 + pos: -24.051039,-57.552288 parent: 2 - - uid: 21646 + - uid: 21753 components: - type: Transform - pos: 10.649347,-60.466446 + pos: -23.660414,-57.349163 parent: 2 - - uid: 21647 + - uid: 21754 components: - type: Transform pos: -62.43085,-27.543978 parent: 2 - proto: MedkitToxinFilled entities: - - uid: 21648 + - uid: 21755 components: - type: Transform - pos: 10.350285,-59.237457 + pos: -25.011272,-57.339924 parent: 2 - - uid: 21649 + - uid: 21756 components: - type: Transform - pos: 10.649347,-59.372696 + pos: -25.433147,-57.54305 parent: 2 - proto: MicroManipulatorStockPart entities: - - uid: 21650 + - uid: 21757 components: - type: Transform pos: 57.42882,-47.52101 parent: 2 - proto: MicrowaveMachineCircuitboard entities: - - uid: 21651 + - uid: 21758 components: - type: Transform pos: 41.53089,-54.195484 parent: 2 - proto: Mirror entities: - - uid: 21652 + - uid: 21759 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-3.5 parent: 2 - - uid: 21653 + - uid: 21760 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-2.5 parent: 2 - - uid: 21654 + - uid: 21761 components: - type: Transform rot: 3.141592653589793 rad @@ -145329,14 +143097,14 @@ entities: parent: 2 - proto: ModularGrenade entities: - - uid: 21655 + - uid: 21762 components: - type: Transform pos: 65.475975,-29.06539 parent: 2 - proto: MonkeyCube entities: - - uid: 21656 + - uid: 21763 components: - type: Transform rot: -1.5707963267948966 rad @@ -145344,411 +143112,91 @@ entities: parent: 2 - proto: MonkeyCubeWrapped entities: - - uid: 21657 + - uid: 21764 components: - type: Transform pos: 73.2274,-38.215343 parent: 2 - - uid: 21658 + - uid: 21765 components: - type: Transform pos: 73.19615,-38.35597 parent: 2 - - uid: 21659 + - uid: 21766 components: - type: Transform pos: -6.631571,49.76703 parent: 2 - - uid: 21660 + - uid: 21767 components: - type: Transform pos: -6.787821,49.64203 parent: 2 - proto: MoonBattlemap entities: - - uid: 21661 + - uid: 21768 components: - type: Transform pos: 10.548178,-6.825127 parent: 2 - proto: MopBucket entities: - - uid: 21662 + - uid: 21769 components: - type: Transform pos: -9.522026,-69.41262 parent: 2 - - uid: 21663 - components: - - type: Transform - pos: -7.441774,-23.373123 - parent: 2 - - uid: 21664 - components: - - type: Transform - pos: 52.057404,15.557394 - parent: 2 - - uid: 21665 - components: - - type: Transform - pos: 15.4907,31.562498 - parent: 2 - - uid: 21666 - components: - - type: Transform - pos: -8.510638,-21.457159 - parent: 2 -- proto: MopItem - entities: - - uid: 21667 - components: - - type: Transform - pos: -7.5762715,-19.507223 - parent: 2 - - uid: 21668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.459526,-68.63137 - parent: 2 - - uid: 21669 - components: - - type: Transform - pos: -13.596031,-22.66943 - parent: 2 - - uid: 21670 - components: - - type: Transform - pos: -13.473024,-22.732498 - parent: 2 - - uid: 21671 - components: - - type: Transform - pos: 51.744904,15.651144 - parent: 2 -- proto: Morgue - entities: - - uid: 21672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-65.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-64.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-64.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-65.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21676 + - uid: 21770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-66.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21677 + pos: -7.441774,-23.373123 + parent: 2 + - uid: 21771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-64.5 + pos: 52.057404,15.557394 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21678 + - uid: 21772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-65.5 + pos: 15.4907,31.562498 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21679 + - uid: 21773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-66.5 + pos: -8.510638,-21.457159 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21680 +- proto: MopItem + entities: + - uid: 21774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-66.5 + pos: -7.5762715,-19.507223 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21681 + - uid: 21775 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-63.5 + pos: -9.459526,-68.63137 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21682 + - uid: 21776 + components: + - type: Transform + pos: -13.596031,-22.66943 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: -13.473024,-22.732498 + parent: 2 + - uid: 21778 + components: + - type: Transform + pos: 51.744904,15.651144 + parent: 2 +- proto: Morgue + entities: + - uid: 21779 components: - type: Transform rot: 1.5707963267948966 rad @@ -145772,15 +143220,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21683 + - uid: 21780 components: - type: Transform rot: 1.5707963267948966 rad @@ -145804,15 +143244,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21684 + - uid: 21781 components: - type: Transform rot: 1.5707963267948966 rad @@ -145836,47 +143268,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-66.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21686 + - uid: 21782 components: - type: Transform rot: -1.5707963267948966 rad @@ -145900,15 +143292,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21687 + - uid: 21783 components: - type: Transform rot: -1.5707963267948966 rad @@ -145932,316 +143316,334 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 31693 + - uid: 21784 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,4.5 + pos: -14.5,-63.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-64.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-65.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-66.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-63.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-64.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-65.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-63.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-66.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-65.5 + parent: 2 + - uid: 21795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-66.5 parent: 2 - proto: MouseTimedSpawner entities: - - uid: 21688 + - uid: 21796 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 21689 + - uid: 21797 components: - type: Transform pos: 43.5,-10.5 parent: 2 - - uid: 21690 + - uid: 21798 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 21691 + - uid: 21799 components: - type: Transform pos: 5.5,-70.5 parent: 2 - proto: Multitool entities: - - uid: 21692 + - uid: 21800 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.526134,20.708286 parent: 2 - - uid: 21693 + - uid: 21801 components: - type: Transform pos: 53.354275,-43.443607 parent: 2 - - uid: 21694 + - uid: 21802 components: - type: Transform pos: -25.14612,-19.37103 parent: 2 - - uid: 21695 + - uid: 21803 components: - type: Transform pos: -23.347115,-36.422188 parent: 2 - - uid: 21696 + - uid: 21804 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 - - uid: 21697 + - uid: 21805 components: - type: Transform pos: -56.47646,-35.42343 parent: 2 - - uid: 21698 + - uid: 21806 components: - type: Transform pos: -40.522213,25.653383 parent: 2 - - uid: 21699 + - uid: 21807 components: - type: Transform rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 - - uid: 21700 + - uid: 21808 components: - type: Transform pos: -27.507483,24.649845 parent: 2 - - uid: 21701 + - uid: 21809 components: - type: Transform pos: 73.29074,-44.41717 parent: 2 - - uid: 21702 + - uid: 21810 components: - type: Transform pos: 58.474205,51.52541 parent: 2 - - uid: 21703 + - uid: 21811 components: - type: Transform pos: -57.653404,-25.398897 parent: 2 - type: NetworkConfigurator devices: - 'UID: 31532': 12729 - - uid: 21704 - components: - - type: Transform - pos: -9.540877,-65.36475 - parent: 2 - - uid: 21705 + 'UID: 31532': 12837 + - uid: 21812 components: - type: Transform pos: 72.48785,36.5135 parent: 2 - - uid: 21706 + - uid: 21813 components: - type: Transform pos: -29.3818,-98.32888 parent: 2 - type: NetworkConfigurator devices: - 'UID: 39451': 19846 - 'UID: 39450': 20086 - 'UID: 39636': 917 - - uid: 21707 + 'UID: 39451': 19963 + 'UID: 39450': 20204 + 'UID: 39636': 903 + - uid: 21814 components: - type: Transform pos: -28.40416,-19.522995 parent: 2 - - uid: 21708 - components: - - type: Transform - pos: -26.512882,-61.421627 - parent: 2 - - uid: 21709 + - uid: 21815 components: - type: Transform pos: -71.37105,-28.43189 parent: 2 - type: NetworkConfigurator devices: - 'UID: 32940': 934 - 'UID: 32944': 15337 - 'UID: 32945': 15338 + 'UID: 32940': 920 + 'UID: 32944': 15437 + 'UID: 32945': 15438 linkModeActive: False + - uid: 21816 + components: + - type: Transform + pos: 0.35771263,-60.31445 + parent: 2 - proto: NitrogenCanister entities: - - uid: 21710 + - uid: 21817 components: - type: Transform pos: -8.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21711 + - uid: 21818 components: - type: Transform pos: 45.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21712 + - uid: 21819 components: - type: Transform pos: -50.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21713 + - uid: 21820 components: - type: Transform pos: -39.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21714 + - uid: 21821 components: - type: Transform pos: -51.5,-70.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21715 + - uid: 21822 components: - type: Transform pos: -26.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21716 + - uid: 21823 components: - type: Transform pos: -28.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21717 + - uid: 21824 components: - type: Transform pos: 72.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21718 + - uid: 21825 components: - type: Transform pos: 46.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21719 + - uid: 21826 components: - type: Transform - pos: -22.5,-62.5 + pos: 3.5,-73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21720 + - uid: 21827 components: - type: Transform - pos: 3.5,-73.5 + pos: 9.5,-59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NitrogenTankFilled entities: - - uid: 21721 - components: - - type: Transform - pos: -22.469156,-57.61924 - parent: 2 - - uid: 21722 + - uid: 21828 components: - type: Transform pos: -54.344475,0.46202505 parent: 2 - - uid: 21723 + - uid: 21829 components: - type: Transform pos: -49.491314,1.5773844 parent: 2 - - uid: 21724 + - uid: 21830 components: - type: Transform pos: -70.575325,-25.445038 parent: 2 - - uid: 21725 + - uid: 21831 components: - type: Transform pos: 64.52838,29.170698 parent: 2 - proto: NitrousOxideCanister entities: - - uid: 21726 + - uid: 21832 components: - type: Transform pos: -38.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21727 + - uid: 21833 components: - type: Transform pos: 54.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21728 + - uid: 21834 components: - type: Transform pos: -76.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: NitrousOxideTank +- proto: NitrousOxideTankFilled entities: - - uid: 21729 + - uid: 21835 components: - type: Transform - pos: -3.498691,-65.92361 + pos: -15.868101,-35.49305 parent: 2 -- proto: NitrousOxideTankFilled - entities: - - uid: 21730 + - uid: 21836 components: - type: Transform - pos: -15.868101,-35.49305 + pos: -15.496076,-55.940407 parent: 2 - proto: NodeScanner entities: - - uid: 21731 + - uid: 21837 components: - type: Transform pos: 73.66279,-38.523205 parent: 2 - proto: NoticeBoard entities: - - uid: 21732 + - uid: 21838 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 21733 + - uid: 21839 components: - type: Transform pos: 13.5,15.5 parent: 2 - proto: NuclearBomb entities: - - uid: 21734 + - uid: 21840 components: - type: Transform rot: -1.5707963267948966 rad @@ -146249,923 +143651,872 @@ entities: parent: 2 - proto: NuclearBombKeg entities: - - uid: 21735 + - uid: 21841 components: - type: Transform pos: 46.5,-29.5 parent: 2 - proto: Ointment entities: - - uid: 21737 - components: - - type: Transform - pos: -12.245195,-56.394966 - parent: 2 - - uid: 21738 - components: - - type: Transform - pos: -9.307695,-56.332466 - parent: 2 - - uid: 21739 - components: - - type: Transform - pos: -6.2759557,-56.37934 - parent: 2 - - uid: 21740 - components: - - type: Transform - pos: -3.256374,-56.363716 - parent: 2 - - uid: 21741 + - uid: 21842 components: - type: Transform - pos: -0.2810341,-56.37934 + rot: -1.5707963267948966 rad + pos: 47.628784,4.507307 parent: 2 - proto: OnionRedSeeds entities: - - uid: 21742 + - uid: 21843 components: - type: Transform pos: -32.362232,6.029836 parent: 2 - proto: OnionSeeds entities: - - uid: 21743 + - uid: 21844 components: - type: Transform pos: -32.52041,6.4317174 parent: 2 - proto: OperatingTable entities: - - uid: 21744 + - uid: 21845 components: - type: Transform - pos: -15.5,-33.5 + pos: -13.5,-54.5 parent: 2 - - uid: 21745 + - uid: 21846 components: - type: Transform - pos: -1.5,-65.5 + pos: -15.5,-33.5 parent: 2 - - uid: 21746 + - uid: 21847 components: - type: Transform pos: -7.5,-97.5 parent: 2 - - uid: 21747 + - uid: 21848 components: - type: Transform pos: 71.5,-48.5 parent: 2 - proto: OreBag entities: - - uid: 21748 + - uid: 21849 components: - type: Transform pos: -41.057323,35.546143 parent: 2 - proto: OreBox entities: - - uid: 21749 + - uid: 21850 components: - type: Transform pos: -43.5,35.5 parent: 2 - - uid: 21750 + - uid: 21851 components: - type: Transform pos: -42.5,35.5 parent: 2 - proto: OreProcessor entities: - - uid: 21751 + - uid: 21852 components: - type: Transform pos: -41.5,26.5 parent: 2 - proto: OxygenCanister entities: - - uid: 21752 + - uid: 21853 components: - type: Transform pos: -76.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21753 + - uid: 21854 components: - type: Transform pos: -9.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21754 + - uid: 21855 components: - type: Transform pos: 59.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21755 + - uid: 21856 components: - type: Transform pos: 45.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21756 + - uid: 21857 components: - type: Transform pos: -25.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21757 + - uid: 21858 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21758 + - uid: 21859 components: - type: Transform pos: -37.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21759 + - uid: 21860 components: - type: Transform pos: -25.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21760 + - uid: 21861 components: - type: Transform pos: -34.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21761 + - uid: 21862 components: - type: Transform pos: -48.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21762 + - uid: 21863 components: - type: Transform pos: -31.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21763 + - uid: 21864 components: - type: Transform pos: -29.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21764 + - uid: 21865 components: - type: Transform pos: 73.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21765 + - uid: 21866 components: - type: Transform pos: 46.5,-52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21766 + - uid: 21867 components: - type: Transform - pos: -25.5,-62.5 + pos: 4.5,-73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21767 + - uid: 21868 components: - type: Transform - pos: 4.5,-73.5 + pos: 9.5,-58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: OxygenTankFilled entities: - - uid: 21768 + - uid: 21869 components: - type: Transform pos: -54.60223,0.49364984 parent: 2 - - uid: 21769 + - uid: 21870 components: - type: Transform - pos: -22.609781,-57.353615 + pos: 64.41901,29.545698 parent: 2 - - uid: 31654 + - uid: 21871 components: - type: Transform - pos: 64.41901,29.545698 + pos: 67.49378,-65.34203 parent: 2 - - uid: 31655 + - uid: 21872 components: - type: Transform - pos: 67.49378,-65.34203 + pos: 9.439098,-60.43679 parent: 2 - proto: PaintingAmogusTriptych entities: - - uid: 21770 + - uid: 21873 components: - type: Transform pos: -16.5,-36.5 parent: 2 - - uid: 21771 + - uid: 21874 components: - type: Transform pos: 45.5,-12.5 parent: 2 - proto: PaintingHelloWorld entities: - - uid: 21772 + - uid: 21875 components: - type: Transform pos: 10.5,-35.5 parent: 2 - proto: PaintingMonkey entities: - - uid: 21773 + - uid: 21876 components: - type: Transform pos: 13.5,-9.5 parent: 2 - - uid: 21774 + - uid: 21877 components: - type: Transform pos: 9.5,-38.5 parent: 2 - proto: PaintingNightHawks entities: - - uid: 21775 + - uid: 21878 components: - type: Transform pos: -9.5,-34.5 parent: 2 - proto: PaintingSkeletonBoof entities: - - uid: 21776 + - uid: 21879 components: - type: Transform pos: 9.5,-3.5 parent: 2 - proto: PaintingSkeletonCigarette entities: - - uid: 21777 + - uid: 21880 components: - type: Transform pos: -14.5,-36.5 parent: 2 - proto: PaintingTheGreatWave entities: - - uid: 21778 + - uid: 21881 components: - type: Transform pos: 30.5,-26.5 parent: 2 - proto: PaintingTheKiss entities: - - uid: 21779 + - uid: 21882 components: - type: Transform pos: 11.5,-35.5 parent: 2 - proto: PaintingTheScream entities: - - uid: 21780 + - uid: 21883 components: - type: Transform pos: -7.5,-35.5 parent: 2 - proto: PaintingTheSonOfMan entities: - - uid: 21781 + - uid: 21884 components: - type: Transform pos: -25.5,16.5 parent: 2 - proto: Paper entities: - - uid: 21782 + - uid: 21885 components: - type: Transform pos: 20.483978,-12.296361 parent: 2 - - uid: 21783 + - uid: 21886 components: - type: Transform pos: 20.661783,-12.471693 parent: 2 - - uid: 21784 + - uid: 21887 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21785 + - uid: 21888 components: - type: Transform pos: 6.351438,20.675463 parent: 2 - - uid: 21786 + - uid: 21889 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 - - uid: 21787 + - uid: 21890 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21788 + - uid: 21891 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21789 + - uid: 21892 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21790 + - uid: 21893 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21791 + - uid: 21894 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21792 + - uid: 21895 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21793 + - uid: 21896 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21794 + - uid: 21897 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21795 + - uid: 21898 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21796 + - uid: 21899 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21797 + - uid: 21900 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 - - uid: 21798 + - uid: 21901 components: - type: Transform rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 - - uid: 21799 + - uid: 21902 components: - type: Transform rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 - - uid: 21800 + - uid: 21903 components: - type: Transform rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 - - uid: 21801 + - uid: 21904 components: - type: Transform rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 - - uid: 21802 + - uid: 21905 components: - type: Transform rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 - - uid: 21803 + - uid: 21906 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21804 + - uid: 21907 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21805 + - uid: 21908 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21806 + - uid: 21909 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21807 + - uid: 21910 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21808 + - uid: 21911 components: - type: Transform pos: 24.486351,19.53259 parent: 2 - - uid: 21809 + - uid: 21912 components: - type: Transform rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 - - uid: 21810 + - uid: 21913 components: - type: Transform rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 - - uid: 21811 + - uid: 21914 components: - type: Transform rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 - - uid: 21812 + - uid: 21915 components: - type: Transform rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 - - uid: 21813 + - uid: 21916 components: - type: Transform rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 - - uid: 21814 + - uid: 21917 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21815 + - uid: 21918 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21816 + - uid: 21919 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21817 + - uid: 21920 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21818 + - uid: 21921 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21819 + - uid: 21922 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21820 + - uid: 21923 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21821 + - uid: 21924 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21822 + - uid: 21925 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21823 + - uid: 21926 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21824 + - uid: 21927 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21825 + - uid: 21928 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21826 + - uid: 21929 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21827 + - uid: 21930 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21828 + - uid: 21931 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21829 + - uid: 21932 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21830 + - uid: 21933 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21831 + - uid: 21934 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 - - uid: 21832 + - uid: 21935 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 - - uid: 21833 + - uid: 21936 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 - - uid: 21834 + - uid: 21937 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 - - uid: 21835 + - uid: 21938 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 - - uid: 21836 + - uid: 21939 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 - - uid: 21837 + - uid: 21940 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 - - uid: 21838 + - uid: 21941 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 - - uid: 21839 + - uid: 21942 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 - - uid: 21840 + - uid: 21943 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 - - uid: 21841 + - uid: 21944 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 - - uid: 21842 + - uid: 21945 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 - - uid: 21843 + - uid: 21946 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 - - uid: 21844 + - uid: 21947 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21845 + - uid: 21948 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21846 + - uid: 21949 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21847 + - uid: 21950 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21848 + - uid: 21951 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21849 + - uid: 21952 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21850 + - uid: 21953 components: - type: Transform pos: 38.47659,-2.4393778 parent: 2 - - uid: 21851 + - uid: 21954 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 - - uid: 21852 + - uid: 21955 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21853 + - uid: 21956 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21854 + - uid: 21957 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21855 + - uid: 21958 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21856 + - uid: 21959 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21857 + - uid: 21960 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21858 + - uid: 21961 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 - - uid: 21859 + - uid: 21962 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21860 + - uid: 21963 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21861 + - uid: 21964 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21862 + - uid: 21965 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21863 + - uid: 21966 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21864 + - uid: 21967 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21865 + - uid: 21968 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21866 + - uid: 21969 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21867 + - uid: 21970 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 - - uid: 21868 + - uid: 21971 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 - - uid: 21869 + - uid: 21972 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 - - uid: 21870 + - uid: 21973 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 - - uid: 21871 + - uid: 21974 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 - - uid: 21872 + - uid: 21975 components: - type: Transform pos: 1.3868889,23.62748 parent: 2 - - uid: 21873 + - uid: 21976 components: - type: Transform pos: 1.3868889,23.643105 parent: 2 - - uid: 21874 + - uid: 21977 components: - type: Transform rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 - - uid: 21875 + - uid: 21978 components: - type: Transform rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 - - uid: 21876 + - uid: 21979 components: - type: Transform rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 - - uid: 21877 + - uid: 21980 components: - type: Transform rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 - - uid: 21878 + - uid: 21981 components: - type: Transform rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 - - uid: 21879 + - uid: 21982 components: - type: Transform rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 - - uid: 21880 + - uid: 21983 components: - type: Transform pos: -31.206972,15.691786 parent: 2 - - uid: 21881 + - uid: 21984 components: - type: Transform pos: -31.206972,15.691786 parent: 2 - - uid: 21882 + - uid: 21985 components: - type: Transform pos: -31.363222,15.551161 parent: 2 - - uid: 21883 + - uid: 21986 components: - type: Transform pos: -31.363222,15.551161 parent: 2 - - uid: 21884 + - uid: 21987 components: - type: Transform pos: 10.165828,-6.3936543 parent: 2 - - uid: 21885 + - uid: 21988 components: - type: Transform pos: 10.165828,-6.3936543 parent: 2 - - uid: 21886 + - uid: 21989 components: - type: Transform pos: 9.367039,-7.0613875 parent: 2 - - uid: 21887 + - uid: 21990 components: - type: Transform pos: -11.489469,-13.479897 @@ -147175,7 +144526,7 @@ entities: To the head of waste management. please place any useful waste in the cargo disposal (brown boarder), this will send it straight to cargo. Anything that is considered trash send it into the waste disposal (yellow boarder). Anything suspicious, please inform security. - - uid: 21888 + - uid: 21991 components: - type: Transform pos: -42.540462,17.447073 @@ -147185,58 +144536,54 @@ entities: Janitorial will sort out the waste and send anything useful to this conveyor. - proto: PaperBin10 entities: - - uid: 21889 + - uid: 21992 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 21890 + - uid: 21993 components: - type: Transform pos: -22.48288,-97.58025 parent: 2 - - uid: 31671 +- proto: PaperBin5 + entities: + - uid: 21994 components: - type: Transform - pos: 23.653786,-39.43094 + rot: 1.5707963267948966 rad + pos: -16.5,-61.5 parent: 2 -- proto: PaperBin5 - entities: - - uid: 21891 + - uid: 21995 components: - type: Transform pos: -19.490406,-56.387535 parent: 2 - - uid: 21892 + - uid: 21996 components: - type: Transform pos: -34.544167,24.426237 parent: 2 - - uid: 21893 + - uid: 21997 components: - type: Transform rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 - - uid: 21894 + - uid: 21998 components: - type: Transform pos: -27.800707,-9.411719 parent: 2 - - uid: 21895 + - uid: 21999 components: - type: Transform pos: 39.827625,-39.412262 parent: 2 - - uid: 21896 - components: - - type: Transform - pos: -17.5,-61.5 - parent: 2 - proto: PaperCaptainsThoughts entities: - - uid: 21897 + - uid: 22000 components: - type: Transform rot: 1.5707963267948966 rad @@ -147244,21 +144591,21 @@ entities: parent: 2 - proto: PaperRolling entities: - - uid: 21898 + - uid: 22001 components: - type: Transform pos: 50.67044,57.737556 parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21899 + - uid: 22002 components: - type: Transform pos: -66.5,-30.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 21900 + - uid: 22003 components: - type: Transform rot: 3.141592653589793 rad @@ -147266,7 +144613,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21901 + - uid: 22004 components: - type: Transform rot: 3.141592653589793 rad @@ -147274,7 +144621,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboard entities: - - uid: 21902 + - uid: 22005 components: - type: Transform rot: 3.141592653589793 rad @@ -147282,7 +144629,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21903 + - uid: 22006 components: - type: Transform rot: 3.141592653589793 rad @@ -147290,7 +144637,7 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21904 + - uid: 22007 components: - type: Transform rot: 3.141592653589793 rad @@ -147298,7 +144645,7 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21905 + - uid: 22008 components: - type: Transform rot: 3.141592653589793 rad @@ -147306,40 +144653,40 @@ entities: parent: 2 - proto: PartRodMetal entities: - - uid: 21906 + - uid: 22009 components: - type: Transform pos: -40.15428,-18.425268 parent: 2 - - uid: 21907 + - uid: 22010 components: - type: Transform pos: -39.68701,25.670773 parent: 2 - - uid: 21908 + - uid: 22011 components: - type: Transform pos: -40.541622,33.38082 parent: 2 - - uid: 21909 + - uid: 22012 components: - type: Transform pos: -47.52058,40.270145 parent: 2 - proto: PartRodMetal1 entities: - - uid: 21910 + - uid: 22013 components: - type: Transform pos: -34.56476,-25.498856 parent: 2 - - uid: 21911 + - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 - - uid: 21912 + - uid: 22015 components: - type: Transform rot: 3.141592653589793 rad @@ -147347,46 +144694,46 @@ entities: parent: 2 - proto: Pen entities: - - uid: 21913 + - uid: 22016 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 - - uid: 21914 + - uid: 22017 components: - type: Transform rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 - - uid: 21915 + - uid: 22018 components: - type: Transform rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 - - uid: 21916 + - uid: 22019 components: - type: Transform pos: 16.327852,21.55557 parent: 2 - - uid: 21917 + - uid: 22020 components: - type: Transform pos: 43.66009,-3.5506787 parent: 2 - - uid: 21918 + - uid: 22021 components: - type: Transform pos: 37.66009,-3.7069297 parent: 2 - - uid: 21919 + - uid: 22022 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 parent: 2 - - uid: 21920 + - uid: 22023 components: - type: Transform rot: 1.5707963267948966 rad @@ -147394,46 +144741,41 @@ entities: parent: 2 - proto: PersonalAI entities: - - uid: 21921 + - uid: 22024 components: - type: Transform pos: 26.517971,-21.50738 parent: 2 - - uid: 21922 + - uid: 22025 components: - type: Transform pos: 11.402888,8.363556 parent: 2 - - uid: 21923 + - uid: 22026 components: - type: Transform pos: 12.500859,-4.4425125 parent: 2 - - uid: 21924 + - uid: 22027 components: - type: Transform pos: -48.458683,6.4665513 parent: 2 - - uid: 21925 + - uid: 22028 components: - type: Transform pos: 56.523212,-40.57079 parent: 2 - proto: PhoneInstrument entities: - - uid: 21926 + - uid: 22029 components: - type: Transform pos: 60.321476,-1.3655583 parent: 2 - - uid: 31672 - components: - - type: Transform - pos: 23.26316,-39.02469 - parent: 2 - proto: PianoInstrument entities: - - uid: 21927 + - uid: 22030 components: - type: Transform rot: -1.5707963267948966 rad @@ -147441,242 +144783,234 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 21928 + - uid: 22031 components: - type: Transform pos: -38.26402,27.606245 parent: 2 - - uid: 21929 + - uid: 22032 components: - type: Transform pos: -38.54527,27.71562 parent: 2 - - uid: 21930 + - uid: 22033 components: - type: Transform pos: -47.972298,26.558094 parent: 2 - - uid: 21931 + - uid: 22034 components: - type: Transform pos: 68.4767,50.00708 parent: 2 - - uid: 21932 + - uid: 22035 components: - type: Transform pos: 20.350138,46.202785 parent: 2 - - uid: 21933 + - uid: 22036 components: - type: Transform pos: -47.48462,39.252865 parent: 2 - - uid: 21934 + - uid: 22037 components: - type: Transform pos: 63.54565,-33.402943 parent: 2 - proto: PillCanister entities: - - uid: 21935 + - uid: 22038 components: - type: Transform pos: -10.04752,-37.290504 parent: 2 - proto: PillDexalin entities: - - uid: 21936 + - uid: 22039 components: - type: Transform pos: -10.034681,-32.27196 parent: 2 - - uid: 21937 + - uid: 22040 components: - type: Transform pos: -10.034681,-32.27196 parent: 2 - - uid: 21938 + - uid: 22041 components: - type: Transform pos: -10.019056,-32.27196 parent: 2 - - uid: 21939 + - uid: 22042 components: - type: Transform pos: -10.019056,-32.27196 parent: 2 - proto: PillDylovene entities: - - uid: 21940 + - uid: 22043 components: - type: Transform pos: -9.519056,-32.52196 parent: 2 - - uid: 21941 + - uid: 22044 components: - type: Transform pos: -9.519056,-32.52196 parent: 2 - - uid: 21942 + - uid: 22045 components: - type: Transform pos: -9.503431,-32.52196 parent: 2 - - uid: 21943 + - uid: 22046 components: - type: Transform pos: -9.487806,-32.537586 parent: 2 - proto: PillHyronalin entities: - - uid: 21944 + - uid: 22047 components: - type: Transform pos: -9.534681,-32.256336 parent: 2 - - uid: 21945 + - uid: 22048 components: - type: Transform pos: -9.534681,-32.256336 parent: 2 - - uid: 21946 + - uid: 22049 components: - type: Transform pos: -9.534681,-32.256336 parent: 2 - - uid: 21947 + - uid: 22050 components: - type: Transform pos: -9.534681,-32.256336 parent: 2 - proto: PillIron entities: - - uid: 21948 + - uid: 22051 components: - type: Transform pos: -9.034681,-32.506336 parent: 2 - - uid: 21949 + - uid: 22052 components: - type: Transform pos: -9.034681,-32.506336 parent: 2 - - uid: 21950 + - uid: 22053 components: - type: Transform pos: -9.034681,-32.506336 parent: 2 - - uid: 21951 + - uid: 22054 components: - type: Transform pos: -9.034681,-32.506336 parent: 2 - proto: PillKelotane entities: - - uid: 21952 + - uid: 22055 components: - type: Transform pos: -9.034681,-32.24071 parent: 2 - - uid: 21953 + - uid: 22056 components: - type: Transform pos: -9.034681,-32.24071 parent: 2 - - uid: 21954 + - uid: 22057 components: - type: Transform pos: -9.034681,-32.24071 parent: 2 - - uid: 21955 + - uid: 22058 components: - type: Transform pos: -9.034681,-32.24071 parent: 2 - proto: PillSpaceDrugs entities: - - uid: 21956 + - uid: 22059 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 21957 + - uid: 22060 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 21958 + - uid: 22061 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 21959 + - uid: 22062 components: - type: Transform pos: -8.5,-32.5 parent: 2 - proto: PillTricordrazine entities: - - uid: 21960 + - uid: 22063 components: - type: Transform pos: -8.519056,-32.256336 parent: 2 - - uid: 21961 + - uid: 22064 components: - type: Transform pos: -8.503431,-32.256336 parent: 2 - - uid: 21962 + - uid: 22065 components: - type: Transform pos: -8.519056,-32.256336 parent: 2 - - uid: 21963 + - uid: 22066 components: - type: Transform pos: -8.519056,-32.256336 parent: 2 - proto: PinpointerNuclear entities: - - uid: 21964 + - uid: 22067 components: - type: Transform pos: 47.542713,-21.502851 parent: 2 - proto: PlasmaCanister entities: - - uid: 21965 + - uid: 22068 components: - type: Transform pos: 55.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21966 + - uid: 22069 components: - type: Transform pos: -40.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21967 + - uid: 22070 components: - type: Transform pos: -50.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21968 + - uid: 22071 components: - type: Transform pos: -75.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasmaOre1 entities: - - uid: 21969 + - uid: 22072 components: - type: Transform rot: 3.141592653589793 rad @@ -147684,47 +145018,47 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 21970 + - uid: 22073 components: - type: Transform pos: -49.5,19.5 parent: 2 - - uid: 21971 + - uid: 22074 components: - type: Transform pos: -49.5,23.5 parent: 2 - - uid: 21972 + - uid: 22075 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 21973 + - uid: 22076 components: - type: Transform pos: -49.5,34.5 parent: 2 - - uid: 21974 + - uid: 22077 components: - type: Transform pos: -52.5,34.5 parent: 2 - - uid: 21975 + - uid: 22078 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 21976 + - uid: 22079 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 21977 + - uid: 22080 components: - type: Transform pos: -53.5,19.5 parent: 2 - - uid: 21978 + - uid: 22081 components: - type: Transform rot: -1.5707963267948966 rad @@ -147732,12 +145066,12 @@ entities: parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21979 + - uid: 22082 components: - type: Transform pos: -35.5,25.5 parent: 2 - - uid: 21980 + - uid: 22083 components: - type: Transform rot: -1.5707963267948966 rad @@ -147745,35 +145079,35 @@ entities: parent: 2 - proto: PlasticFlapsClear entities: - - uid: 21981 + - uid: 22084 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 21982 + - uid: 22085 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 21983 + - uid: 22086 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 - - uid: 21984 + - uid: 22087 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 - - uid: 21985 + - uid: 22088 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 - - uid: 21986 + - uid: 22089 components: - type: Transform rot: 1.5707963267948966 rad @@ -147781,29 +145115,29 @@ entities: parent: 2 - proto: PlasticFlapsOpaque entities: - - uid: 21987 + - uid: 22090 components: - type: Transform pos: -11.5,27.5 parent: 2 - - uid: 21988 + - uid: 22091 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 - - uid: 21989 + - uid: 22092 components: - type: Transform pos: -7.5,22.5 parent: 2 - - uid: 21990 + - uid: 22093 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 - - uid: 21991 + - uid: 22094 components: - type: Transform rot: 1.5707963267948966 rad @@ -147811,121 +145145,121 @@ entities: parent: 2 - proto: PlushieAtmosian entities: - - uid: 21992 + - uid: 22095 components: - type: Transform pos: -22.54358,-34.49993 parent: 2 - proto: PlushieBee entities: - - uid: 21993 + - uid: 22096 components: - type: Transform pos: 10.893783,54.42024 parent: 2 - - uid: 21994 + - uid: 22097 components: - type: Transform pos: 8.284408,54.20149 parent: 2 - - uid: 21995 + - uid: 22098 components: - type: Transform pos: -7.8529105,54.918877 parent: 2 - - uid: 21996 + - uid: 22099 components: - type: Transform pos: -6.6029105,50.731377 parent: 2 - proto: PlushieCarp entities: - - uid: 21997 + - uid: 22100 components: - type: Transform pos: -38.3623,28.544445 parent: 2 - proto: PlushieDiona entities: - - uid: 21998 + - uid: 22101 components: - type: Transform pos: 17.550053,-79.57761 parent: 2 - proto: PlushieHampter entities: - - uid: 21999 + - uid: 22102 components: - type: Transform pos: -46.5,-30.5 parent: 2 - - uid: 22000 + - uid: 22103 components: - type: Transform pos: 2.519814,7.511129 parent: 2 - proto: PlushieLizard entities: - - uid: 22001 + - uid: 22104 components: - type: Transform pos: 61.496056,-69.34596 parent: 2 - proto: PlushieMoth entities: - - uid: 22002 + - uid: 22105 components: - type: Transform pos: -55.418537,-64.31985 parent: 2 - proto: PlushieNar entities: - - uid: 22003 + - uid: 22106 components: - type: Transform pos: 44.413727,31.423994 parent: 2 - proto: PlushieNuke entities: - - uid: 22004 + - uid: 22107 components: - type: Transform pos: -14.485033,-78.68338 parent: 2 - - uid: 22005 + - uid: 22108 components: - type: Transform pos: 54.48294,57.40943 parent: 2 - proto: PlushieRatvar entities: - - uid: 22006 + - uid: 22109 components: - type: Transform pos: 22.555937,-28.535349 parent: 2 - proto: PlushieRGBee entities: - - uid: 22007 + - uid: 22110 components: - type: Transform pos: 56.511868,-8.541915 parent: 2 - proto: PlushieSharkGrey entities: - - uid: 22008 + - uid: 22111 components: - type: Transform pos: -52.480396,-88.49494 parent: 2 - proto: PlushieSharkPink entities: - - uid: 22009 + - uid: 22112 components: - type: Transform pos: -44.508965,16.421295 parent: 2 - - uid: 22010 + - uid: 22113 components: - type: MetaData desc: It eerily feels... cute? @@ -147939,189 +145273,184 @@ entities: radius: 2 - proto: PlushieSlime entities: - - uid: 22011 + - uid: 22114 components: - type: Transform pos: 44.49185,33.486496 parent: 2 - proto: PlushieSnake entities: - - uid: 22012 + - uid: 22115 components: - type: Transform pos: 43.507477,33.486496 parent: 2 - - uid: 22013 + - uid: 22116 components: - type: Transform pos: -55.49481,-49.261024 parent: 2 - proto: PlushieSpaceLizard entities: - - uid: 22014 + - uid: 22117 components: - type: Transform pos: -44.46209,15.43692 parent: 2 - - uid: 22015 + - uid: 22118 components: - type: Transform pos: 42.55435,33.392746 parent: 2 - proto: PlushieVox entities: - - uid: 22016 + - uid: 22119 components: - type: Transform pos: 32.421734,-47.539772 parent: 2 - proto: PortableFlasher entities: - - uid: 22017 + - uid: 22120 components: - type: Transform pos: 32.5,31.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 22018 + - uid: 22121 components: - type: Transform pos: -30.5,-61.5 parent: 2 - - uid: 22019 + - uid: 22122 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 22020 + - uid: 22123 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 22021 + - uid: 22124 components: - type: Transform pos: 30.5,44.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 22022 + - uid: 22125 components: - type: Transform pos: -65.5,-51.5 parent: 2 - - uid: 22023 + - uid: 22126 components: - type: Transform pos: 4.5,-22.5 parent: 2 - - uid: 22024 + - uid: 22127 components: - type: Transform pos: 4.5,-23.5 parent: 2 - proto: PortableScrubber entities: - - uid: 22025 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 2 - - uid: 22026 + - uid: 22128 components: - type: Transform pos: -33.5,-43.5 parent: 2 - - uid: 22027 + - uid: 22129 components: - type: Transform pos: -33.5,-44.5 parent: 2 - - uid: 22028 + - uid: 22130 components: - type: Transform pos: -33.5,-45.5 parent: 2 - proto: PosterBroken entities: - - uid: 22029 + - uid: 22131 components: - type: Transform pos: 0.5,-70.5 parent: 2 - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 22030 + - uid: 22132 components: - type: Transform pos: -10.5,-34.5 parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 22031 + - uid: 22133 components: - type: Transform pos: -36.5,-52.5 parent: 2 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 22032 + - uid: 22134 components: - type: Transform pos: -16.5,-81.5 parent: 2 - - uid: 22033 + - uid: 22135 components: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 22034 + - uid: 22136 components: - type: Transform pos: 9.5,-37.5 parent: 2 - proto: PosterContrabandBorgFancy entities: - - uid: 22035 + - uid: 22137 components: - type: Transform pos: 16.5,-4.5 parent: 2 - proto: PosterContrabandBountyHunters entities: - - uid: 22036 + - uid: 22138 components: - type: Transform pos: 14.5,-56.5 parent: 2 - - uid: 22037 + - uid: 22139 components: - type: Transform pos: -42.5,26.5 parent: 2 - proto: PosterContrabandCC64KAd entities: - - uid: 22038 + - uid: 22140 components: - type: Transform pos: 20.5,-3.5 parent: 2 - proto: PosterContrabandClown entities: - - uid: 22039 + - uid: 22141 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 - - uid: 22040 + - uid: 22142 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 - - uid: 22041 + - uid: 22143 components: - type: Transform rot: -1.5707963267948966 rad @@ -148129,19 +145458,19 @@ entities: parent: 2 - proto: PosterContrabandCommunistState entities: - - uid: 22042 + - uid: 22144 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 22043 + - uid: 22145 components: - type: Transform pos: 53.5,-64.5 parent: 2 - proto: PosterContrabandCybersun600 entities: - - uid: 22044 + - uid: 22146 components: - type: Transform rot: 1.5707963267948966 rad @@ -148149,28 +145478,28 @@ entities: parent: 2 - proto: PosterContrabandDDayPromo entities: - - uid: 22045 + - uid: 22147 components: - type: Transform pos: 14.5,33.5 parent: 2 - proto: PosterContrabandDonutCorp entities: - - uid: 22046 + - uid: 22148 components: - type: Transform pos: 49.5,34.5 parent: 2 - proto: PosterContrabandEAT entities: - - uid: 22047 + - uid: 22149 components: - type: Transform pos: 4.5,4.5 parent: 2 - proto: PosterContrabandEnlistGorlex entities: - - uid: 22048 + - uid: 22150 components: - type: Transform rot: 1.5707963267948966 rad @@ -148178,59 +145507,59 @@ entities: parent: 2 - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 22049 + - uid: 22151 components: - type: Transform pos: -53.5,-85.5 parent: 2 - proto: PosterContrabandFreeTonto entities: - - uid: 22050 + - uid: 22152 components: - type: Transform pos: -6.5,-14.5 parent: 2 - proto: PosterContrabandFunPolice entities: - - uid: 22051 + - uid: 22153 components: - type: Transform pos: 4.5,18.5 parent: 2 - proto: PosterContrabandGreyTide entities: - - uid: 22052 + - uid: 22154 components: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 22053 + - uid: 22155 components: - type: Transform pos: 41.5,-57.5 parent: 2 - - uid: 22054 + - uid: 22156 components: - type: Transform pos: -19.5,64.5 parent: 2 - proto: PosterContrabandHackingGuide entities: - - uid: 22055 + - uid: 22157 components: - type: Transform pos: 15.5,40.5 parent: 2 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 22056 + - uid: 22158 components: - type: Transform pos: -48.5,-7.5 parent: 2 - proto: PosterContrabandInterdyne entities: - - uid: 22057 + - uid: 22159 components: - type: Transform rot: -1.5707963267948966 rad @@ -148238,195 +145567,195 @@ entities: parent: 2 - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 22058 + - uid: 22160 components: - type: Transform pos: -25.5,-63.5 parent: 2 - proto: PosterContrabandLamarr entities: - - uid: 22059 + - uid: 22161 components: - type: Transform pos: 10.5,35.5 parent: 2 - proto: PosterContrabandLustyExomorph entities: - - uid: 22060 + - uid: 22162 components: - type: Transform pos: -9.5,-73.5 parent: 2 - - uid: 22061 + - uid: 22163 components: - type: Transform pos: 45.5,50.5 parent: 2 - proto: PosterContrabandMaskedMen entities: - - uid: 22062 + - uid: 22164 components: - type: Transform pos: 47.5,51.5 parent: 2 - proto: PosterContrabandMissingGloves entities: - - uid: 22063 + - uid: 22165 components: - type: Transform pos: 20.5,19.5 parent: 2 - - uid: 22064 + - uid: 22166 components: - type: Transform pos: 41.5,-52.5 parent: 2 - - uid: 22065 + - uid: 22167 components: - type: Transform pos: -26.5,-18.5 parent: 2 - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 22066 + - uid: 22168 components: - type: Transform pos: 39.5,-24.5 parent: 2 - proto: PosterContrabandPower entities: - - uid: 22067 + - uid: 22169 components: - type: Transform pos: -61.5,-22.5 parent: 2 - - uid: 22068 + - uid: 22170 components: - type: Transform pos: -23.5,-7.5 parent: 2 - proto: PosterContrabandRebelsUnite entities: - - uid: 22069 + - uid: 22171 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 22070 + - uid: 22172 components: - type: Transform pos: -42.5,-73.5 parent: 2 - proto: PosterContrabandRedRum entities: - - uid: 22071 + - uid: 22173 components: - type: Transform pos: 13.5,4.5 parent: 2 - - uid: 22072 + - uid: 22174 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 22073 + - uid: 22175 components: - type: Transform pos: 35.5,49.5 parent: 2 - proto: PosterContrabandRevolt entities: - - uid: 22074 + - uid: 22176 components: - type: Transform pos: -40.5,-73.5 parent: 2 - - uid: 22075 + - uid: 22177 components: - type: Transform pos: -7.5,-73.5 parent: 2 - - uid: 22076 + - uid: 22178 components: - type: Transform pos: 57.5,55.5 parent: 2 - - uid: 22077 + - uid: 22179 components: - type: Transform pos: 51.5,55.5 parent: 2 - - uid: 22078 + - uid: 22180 components: - type: Transform pos: 56.5,60.5 parent: 2 - - uid: 22079 + - uid: 22181 components: - type: Transform pos: 52.5,60.5 parent: 2 - - uid: 22080 + - uid: 22182 components: - type: Transform pos: 51.5,59.5 parent: 2 - - uid: 22081 + - uid: 22183 components: - type: Transform pos: 57.5,59.5 parent: 2 - proto: PosterContrabandRevolver entities: - - uid: 22082 + - uid: 22184 components: - type: Transform pos: -30.5,-42.5 parent: 2 - - uid: 22083 + - uid: 22185 components: - type: Transform pos: 42.5,49.5 parent: 2 - proto: PosterContrabandRIPBadger entities: - - uid: 22084 + - uid: 22186 components: - type: Transform pos: -41.5,-27.5 parent: 2 - proto: PosterContrabandRise entities: - - uid: 22085 + - uid: 22187 components: - type: Transform pos: 63.5,10.5 parent: 2 - - uid: 22086 + - uid: 22188 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 22087 + - uid: 22189 components: - type: Transform pos: -40.5,-69.5 parent: 2 - - uid: 22088 + - uid: 22190 components: - type: Transform pos: 57.5,53.5 parent: 2 - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 22089 + - uid: 22191 components: - type: Transform pos: -6.5,-31.5 parent: 2 - proto: PosterContrabandShamblersJuice entities: - - uid: 22090 + - uid: 22192 components: - type: MetaData name: changs @@ -148434,271 +145763,243 @@ entities: rot: 3.141592653589793 rad pos: -19.5,46.5 parent: 2 -- proto: PosterContrabandSmoke - entities: - - uid: 22091 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - proto: PosterContrabandSyndicatePistol entities: - - uid: 22092 + - uid: 22193 components: - type: Transform pos: -46.5,-71.5 parent: 2 - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 22093 + - uid: 22194 components: - type: Transform pos: -44.5,-74.5 parent: 2 - - uid: 22094 + - uid: 22195 components: - type: Transform pos: 30.5,48.5 parent: 2 - proto: PosterContrabandTheGriffin entities: - - uid: 22095 + - uid: 22196 components: - type: Transform pos: -43.5,-73.5 parent: 2 - proto: PosterContrabandTools entities: - - uid: 22096 + - uid: 22197 components: - type: Transform pos: -54.5,-69.5 parent: 2 - - uid: 22097 + - uid: 22198 components: - type: Transform pos: -22.5,-19.5 parent: 2 - proto: PosterContrabandVoteWeh entities: - - uid: 22098 + - uid: 22199 components: - type: Transform pos: -46.5,-65.5 parent: 2 - - uid: 22099 + - uid: 22200 components: - type: Transform pos: 59.5,41.5 parent: 2 - proto: PosterContrabandWehWatches entities: - - uid: 22100 + - uid: 22201 components: - type: Transform pos: 55.5,-4.5 parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 22101 + - uid: 22202 components: - type: Transform pos: 31.5,23.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 22102 + - uid: 22203 components: - type: Transform pos: 44.5,-34.5 parent: 2 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 22103 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 2 - proto: PosterLegitBlessThisSpess entities: - - uid: 22104 + - uid: 22204 components: - type: Transform pos: 61.5,-4.5 parent: 2 - proto: PosterLegitBuild entities: - - uid: 22105 + - uid: 22205 components: - type: Transform pos: -34.5,-4.5 parent: 2 - proto: PosterLegitCarbonDioxide entities: - - uid: 22106 + - uid: 22206 components: - type: Transform pos: 46.5,-55.5 parent: 2 - proto: PosterLegitCarpMount entities: - - uid: 22107 + - uid: 22207 components: - type: Transform pos: 24.5,-26.5 parent: 2 -- proto: PosterLegitCleanliness - entities: - - uid: 22108 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 2 - - uid: 22109 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 2 - proto: PosterLegitCohibaRobustoAd entities: - - uid: 22110 + - uid: 22208 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 22111 + - uid: 22209 components: - type: Transform pos: 57.5,-9.5 parent: 2 - proto: PosterLegitDickGumshue entities: - - uid: 22112 + - uid: 22210 components: - type: Transform pos: 17.5,-15.5 parent: 2 - proto: PosterLegitDoNotQuestion entities: - - uid: 22113 + - uid: 22211 components: - type: Transform pos: 23.5,19.5 parent: 2 - - uid: 22114 + - uid: 22212 components: - type: Transform pos: -17.5,-21.5 parent: 2 - proto: PosterLegitEnlist entities: - - uid: 22115 + - uid: 22213 components: - type: Transform pos: -17.5,-31.5 parent: 2 - - uid: 22116 + - uid: 22214 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 22117 + - uid: 22215 components: - type: Transform pos: -13.5,27.5 parent: 2 - proto: PosterLegitFoamForceAd entities: - - uid: 22118 + - uid: 22216 components: - type: Transform pos: 1.5,-39.5 parent: 2 - proto: PosterLegitFruitBowl entities: - - uid: 22119 + - uid: 22217 components: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 22120 + - uid: 22218 components: - type: Transform pos: -22.5,49.5 parent: 2 - proto: PosterLegitGetYourLEGS entities: - - uid: 22121 + - uid: 22219 components: - type: Transform pos: -16.5,64.5 parent: 2 -- proto: PosterLegitHelpOthers - entities: - - uid: 22122 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 2 - proto: PosterLegitHereForYourSafety entities: - - uid: 22123 + - uid: 22220 components: - type: Transform pos: 28.5,9.5 parent: 2 - proto: PosterLegitHighClassMartini entities: - - uid: 22124 + - uid: 22221 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 22125 + - uid: 22222 components: - type: Transform pos: -39.5,-74.5 parent: 2 - proto: PosterLegitIan entities: - - uid: 22126 + - uid: 22223 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 - - uid: 22127 + - uid: 22224 components: - type: Transform pos: 21.5,-40.5 parent: 2 - proto: PosterLegitIonRifle entities: - - uid: 22128 + - uid: 22225 components: - type: Transform pos: 27.5,33.5 parent: 2 - proto: PosterLegitJustAWeekAway entities: - - uid: 22129 + - uid: 22226 components: - type: Transform pos: 27.5,-33.5 parent: 2 - - uid: 22130 + - uid: 22227 components: - type: Transform pos: -37.5,-31.5 parent: 2 - - uid: 22131 + - uid: 22228 components: - type: Transform pos: 30.5,-35.5 parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 22133 + - uid: 22229 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 22230 components: - type: Transform rot: 3.141592653589793 rad @@ -148706,7 +146007,7 @@ entities: parent: 2 - proto: PosterLegitMime entities: - - uid: 22134 + - uid: 22231 components: - type: Transform rot: 1.5707963267948966 rad @@ -148714,37 +146015,37 @@ entities: parent: 2 - proto: PosterLegitNanomichiAd entities: - - uid: 22135 + - uid: 22232 components: - type: Transform pos: -21.5,-27.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 10373 + - uid: 22233 components: - type: Transform - pos: 24.5,-36.5 + pos: 28.5,-31.5 parent: 2 - - uid: 22136 + - uid: 22234 components: - type: Transform - pos: 28.5,-31.5 + pos: 25.5,-33.5 parent: 2 - proto: PosterLegitNoERP entities: - - uid: 22138 + - uid: 22235 components: - type: Transform pos: 40.5,49.5 parent: 2 - - uid: 22139 + - uid: 22236 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 - - uid: 22140 + - uid: 22237 components: - type: Transform rot: 3.141592653589793 rad @@ -148752,52 +146053,52 @@ entities: parent: 2 - proto: PosterLegitObey entities: - - uid: 22141 + - uid: 22238 components: - type: Transform pos: 31.5,-3.5 parent: 2 - proto: PosterLegitPDAAd entities: - - uid: 22142 + - uid: 22239 components: - type: Transform pos: 29.5,-40.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 22143 + - uid: 22240 components: - type: Transform pos: 18.5,-15.5 parent: 2 - - uid: 22144 + - uid: 22241 components: - type: Transform pos: 30.5,-46.5 parent: 2 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 22145 + - uid: 22242 components: - type: Transform pos: -33.5,-31.5 parent: 2 - proto: PosterLegitSafetyInternals entities: - - uid: 22146 + - uid: 22243 components: - type: Transform pos: -39.5,-31.5 parent: 2 - - uid: 22147 + - uid: 22244 components: - type: Transform pos: 24.5,-54.5 parent: 2 - proto: PosterLegitSafetyMothHardhat entities: - - uid: 22148 + - uid: 22245 components: - type: Transform rot: 1.5707963267948966 rad @@ -148805,17 +146106,17 @@ entities: parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 22149 + - uid: 22246 components: - type: Transform pos: 10.5,15.5 parent: 2 - - uid: 22150 + - uid: 22247 components: - type: Transform pos: 18.5,-9.5 parent: 2 - - uid: 22151 + - uid: 22248 components: - type: Transform rot: 3.141592653589793 rad @@ -148823,19 +146124,19 @@ entities: parent: 2 - proto: PosterLegitStateLaws entities: - - uid: 22152 + - uid: 22249 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 22153 + - uid: 22250 components: - type: Transform pos: -17.5,27.5 parent: 2 - proto: PosterLegitThereIsNoGasGiant entities: - - uid: 22154 + - uid: 22251 components: - type: Transform rot: -1.5707963267948966 rad @@ -148843,7 +146144,7 @@ entities: parent: 2 - proto: PosterLegitVacation entities: - - uid: 22155 + - uid: 22252 components: - type: Transform rot: 1.5707963267948966 rad @@ -148851,327 +146152,328 @@ entities: parent: 2 - proto: PosterLegitWalk entities: - - uid: 22156 + - uid: 22253 components: - type: Transform pos: -7.5,-28.5 parent: 2 - proto: PottedPlant1 entities: - - uid: 22157 + - uid: 22254 components: - type: Transform pos: -2.5,-40.5 parent: 2 - proto: PottedPlant14 entities: - - uid: 22158 + - uid: 22255 components: - type: Transform pos: 36.5,-16.5 parent: 2 - proto: PottedPlant24 entities: - - uid: 22159 + - uid: 22256 components: - type: Transform pos: -6.5,-40.5 parent: 2 -- proto: PottedPlant26 - entities: - - uid: 22160 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 2 - proto: PottedPlant27 entities: - - uid: 22161 + - uid: 22257 components: - type: Transform pos: 46.5,31.5 parent: 2 - - uid: 22162 + - uid: 22258 components: - type: Transform pos: -43.5,-87.5 parent: 2 - proto: PottedPlant28 entities: - - uid: 22163 + - uid: 22259 components: - type: Transform pos: 46.5,30.5 parent: 2 - - uid: 22164 + - uid: 22260 components: - type: Transform pos: -54.5,-47.5 parent: 2 - proto: PottedPlant29 entities: - - uid: 22165 + - uid: 22261 components: - type: Transform pos: 46.5,29.5 parent: 2 - - uid: 22166 + - uid: 22262 components: - type: Transform pos: -54.5,-50.5 parent: 2 - - uid: 22167 + - uid: 22263 components: - type: Transform pos: -40.5,-87.5 parent: 2 - proto: PottedPlant3 entities: - - uid: 22168 + - uid: 22264 components: - type: Transform pos: 14.5,-16.5 parent: 2 - - uid: 22169 + - uid: 22265 components: - type: Transform pos: 54.5,-1.5 parent: 2 - proto: PottedPlant5 entities: - - uid: 22170 + - uid: 22266 components: - type: Transform pos: -26.5,8.5 parent: 2 - - uid: 22171 + - uid: 22267 components: - type: Transform pos: 50.5,-1.5 parent: 2 - proto: PottedPlant8 entities: - - uid: 22172 + - uid: 22268 components: - type: Transform pos: -22.5,8.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 22173 + - uid: 22269 components: - type: Transform pos: -27.5,17.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 22174 + - uid: 22270 components: - type: Transform pos: 20.5,18.5 parent: 2 - - uid: 22175 + - uid: 22271 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 22176 + - uid: 22272 components: - type: Transform pos: 24.5,-81.5 parent: 2 - - uid: 22177 + - uid: 22273 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 22178 + - uid: 22274 components: - type: Transform pos: -49.5,8.5 parent: 2 - - uid: 22179 + - uid: 22275 components: - type: Transform pos: 23.5,-43.5 parent: 2 - - uid: 22180 + - uid: 22276 components: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 22181 + - uid: 22277 components: - type: Transform pos: -23.5,-73.5 parent: 2 - - uid: 22182 + - uid: 22278 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 22183 + - uid: 22279 components: - type: Transform pos: -19.5,-73.5 parent: 2 - - uid: 22184 + - uid: 22280 components: - type: Transform pos: -2.5,46.5 parent: 2 - - uid: 22185 + - uid: 22281 components: - type: Transform pos: -14.5,42.5 parent: 2 - - uid: 22186 + - uid: 22282 components: - type: Transform pos: -6.5,46.5 parent: 2 - - uid: 22187 + - uid: 22283 components: - type: Transform pos: 24.5,-85.5 parent: 2 - - uid: 22188 + - uid: 22284 components: - type: Transform pos: 25.5,-74.5 parent: 2 - - uid: 22189 + - uid: 22285 components: - type: Transform pos: -20.5,-66.5 parent: 2 - - uid: 22190 + - uid: 22286 components: - type: Transform pos: -18.5,-66.5 parent: 2 - proto: PottedPlantRandomPlastic entities: - - uid: 22191 + - uid: 22287 components: - type: Transform pos: -6.5,-45.5 parent: 2 - - uid: 22192 + - uid: 22288 components: - type: Transform pos: -55.5,-58.5 parent: 2 - - uid: 22193 + - uid: 22289 components: - type: Transform pos: 54.5,31.5 parent: 2 - - uid: 22194 + - uid: 22290 components: - type: Transform pos: -12.5,-96.5 parent: 2 - - uid: 22195 + - uid: 22291 components: - type: Transform pos: -57.5,-60.5 parent: 2 - proto: PowerCellRecharger entities: - - uid: 22196 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 2 - - uid: 22197 + - uid: 22292 components: - type: Transform - pos: -10.5,-61.5 + rot: 1.5707963267948966 rad + pos: -15.5,-61.5 parent: 2 - - uid: 22198 + - uid: 22293 components: - type: Transform - pos: -11.5,-61.5 + pos: -24.5,-24.5 parent: 2 - - uid: 22199 + - uid: 22294 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 22200 + - uid: 22295 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 22201 + - uid: 22296 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 22202 + - uid: 22297 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 22203 + - uid: 22298 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 22204 + - uid: 22299 components: - type: Transform pos: 38.5,-55.5 parent: 2 - - uid: 22205 + - uid: 22300 components: - type: Transform pos: -22.5,17.5 parent: 2 - - uid: 22206 + - uid: 22301 components: - type: Transform pos: 43.5,-40.5 parent: 2 - proto: PowerDrill entities: - - uid: 22207 + - uid: 22302 components: - type: Transform pos: 62.617344,-53.460384 parent: 2 - - uid: 22208 + - uid: 22303 components: - type: Transform pos: -52.61403,65.565544 parent: 2 - proto: Poweredlight entities: - - uid: 10285 + - uid: 22304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-63.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-55.5 + parent: 2 + - uid: 22306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-38.5 + pos: 6.5,-52.5 parent: 2 - - uid: 22209 + - uid: 22307 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-16.5 parent: 2 - - uid: 22210 + - uid: 22308 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 22211 + - uid: 22309 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 - - uid: 22212 + - uid: 22310 components: - type: Transform rot: -1.5707963267948966 rad @@ -149179,30 +146481,30 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24346 - - uid: 22213 + - 24450 + - uid: 22311 components: - type: Transform pos: 62.5,-28.5 parent: 2 - - uid: 22214 + - uid: 22312 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-37.5 parent: 2 - - uid: 22215 + - uid: 22313 components: - type: Transform pos: -44.5,-8.5 parent: 2 - - uid: 22216 + - uid: 22314 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 - - uid: 22217 + - uid: 22315 components: - type: Transform rot: -1.5707963267948966 rad @@ -149210,7 +146512,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22218 + - uid: 22316 components: - type: Transform rot: 1.5707963267948966 rad @@ -149218,7 +146520,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22219 + - uid: 22317 components: - type: Transform rot: -1.5707963267948966 rad @@ -149226,7 +146528,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22220 + - uid: 22318 components: - type: Transform rot: -1.5707963267948966 rad @@ -149234,7 +146536,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22221 + - uid: 22319 components: - type: Transform rot: 3.141592653589793 rad @@ -149242,7 +146544,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22222 + - uid: 22320 components: - type: Transform rot: 3.141592653589793 rad @@ -149250,14 +146552,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22223 - components: - - type: Transform - pos: 4.5,-59.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22224 + - uid: 22321 components: - type: Transform rot: 1.5707963267948966 rad @@ -149265,7 +146560,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22225 + - uid: 22322 components: - type: Transform rot: -1.5707963267948966 rad @@ -149273,21 +146568,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22226 + - uid: 22323 components: - type: Transform pos: 30.5,-47.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22227 + - uid: 22324 components: - type: Transform pos: 40.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22228 + - uid: 22325 components: - type: Transform rot: 1.5707963267948966 rad @@ -149295,23 +146590,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-61.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-61.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22231 + - uid: 22326 components: - type: Transform rot: 1.5707963267948966 rad @@ -149319,7 +146598,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22232 + - uid: 22327 components: - type: Transform rot: 3.141592653589793 rad @@ -149327,7 +146606,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22233 + - uid: 22328 components: - type: Transform rot: 3.141592653589793 rad @@ -149335,21 +146614,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22234 + - uid: 22329 components: - type: Transform pos: 21.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22235 + - uid: 22330 components: - type: Transform pos: 29.5,-45.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22236 + - uid: 22331 components: - type: Transform rot: -1.5707963267948966 rad @@ -149357,7 +146636,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22237 + - uid: 22332 components: - type: Transform rot: 3.141592653589793 rad @@ -149365,14 +146644,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22238 + - uid: 22333 components: - type: Transform pos: 33.5,-45.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22239 + - uid: 22334 components: - type: Transform rot: 3.141592653589793 rad @@ -149380,7 +146659,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22240 + - uid: 22335 components: - type: Transform rot: -1.5707963267948966 rad @@ -149388,7 +146667,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22241 + - uid: 22336 components: - type: Transform rot: -1.5707963267948966 rad @@ -149396,22 +146675,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22242 + - uid: 22337 components: - type: Transform pos: -23.5,-8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-60.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22244 + - uid: 22338 components: - type: Transform rot: 1.5707963267948966 rad @@ -149419,7 +146690,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22245 + - uid: 22339 components: - type: Transform rot: 3.141592653589793 rad @@ -149427,7 +146698,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22246 + - uid: 22340 components: - type: Transform rot: -1.5707963267948966 rad @@ -149435,14 +146706,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22247 + - uid: 22341 components: - type: Transform pos: 4.5,3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22248 + - uid: 22342 components: - type: Transform rot: 1.5707963267948966 rad @@ -149450,7 +146721,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22249 + - uid: 22343 components: - type: Transform rot: -1.5707963267948966 rad @@ -149458,7 +146729,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22250 + - uid: 22344 components: - type: Transform rot: -1.5707963267948966 rad @@ -149466,7 +146737,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22251 + - uid: 22345 components: - type: Transform rot: 1.5707963267948966 rad @@ -149474,28 +146745,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22252 + - uid: 22346 components: - type: Transform pos: -21.5,-84.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22253 + - uid: 22347 components: - type: Transform pos: 12.5,3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22254 + - uid: 22348 components: - type: Transform pos: 29.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22255 + - uid: 22349 components: - type: Transform rot: -1.5707963267948966 rad @@ -149503,14 +146774,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22256 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22257 + - uid: 22350 components: - type: Transform rot: -1.5707963267948966 rad @@ -149518,7 +146782,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22258 + - uid: 22351 components: - type: Transform rot: 1.5707963267948966 rad @@ -149526,7 +146790,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22259 + - uid: 22352 components: - type: Transform rot: -1.5707963267948966 rad @@ -149534,30 +146798,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22260 + - uid: 22353 components: - type: Transform pos: 27.5,-16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-65.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-64.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22263 + - uid: 22354 components: - type: Transform rot: -1.5707963267948966 rad @@ -149565,7 +146813,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22264 + - uid: 22355 components: - type: Transform rot: 1.5707963267948966 rad @@ -149573,14 +146821,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22265 + - uid: 22356 components: - type: Transform pos: -23.5,-69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22266 + - uid: 22357 components: - type: Transform rot: 3.141592653589793 rad @@ -149588,14 +146836,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22267 + - uid: 22358 components: - type: Transform pos: 16.5,-16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22268 + - uid: 22359 components: - type: Transform rot: 1.5707963267948966 rad @@ -149603,7 +146851,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22269 + - uid: 22360 components: - type: Transform rot: -1.5707963267948966 rad @@ -149611,14 +146859,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22270 + - uid: 22361 components: - type: Transform pos: 24.5,4.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22271 + - uid: 22362 components: - type: Transform rot: 1.5707963267948966 rad @@ -149626,14 +146874,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22272 + - uid: 22363 components: - type: Transform pos: 16.5,14.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22273 + - uid: 22364 components: - type: Transform rot: 1.5707963267948966 rad @@ -149641,14 +146889,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22274 + - uid: 22365 components: - type: Transform pos: -8.5,-35.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22275 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad @@ -149656,14 +146904,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22276 + - uid: 22367 components: - type: Transform pos: 6.5,22.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22277 + - uid: 22368 components: - type: Transform rot: 1.5707963267948966 rad @@ -149671,14 +146919,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22278 + - uid: 22369 components: - type: Transform pos: 13.5,17.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22279 + - uid: 22370 components: - type: Transform rot: 1.5707963267948966 rad @@ -149686,14 +146934,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22280 + - uid: 22371 components: - type: Transform pos: 44.5,8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22281 + - uid: 22372 components: - type: Transform rot: 3.141592653589793 rad @@ -149701,21 +146949,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22282 + - uid: 22373 components: - type: Transform pos: 44.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22283 + - uid: 22374 components: - type: Transform pos: -4.5,3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22284 + - uid: 22375 components: - type: Transform rot: -1.5707963267948966 rad @@ -149723,7 +146971,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22285 + - uid: 22376 components: - type: Transform rot: 3.141592653589793 rad @@ -149731,14 +146979,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22286 + - uid: 22377 components: - type: Transform pos: -9.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22287 + - uid: 22378 components: - type: Transform rot: 1.5707963267948966 rad @@ -149746,7 +146994,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22288 + - uid: 22379 components: - type: Transform rot: -1.5707963267948966 rad @@ -149754,7 +147002,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22289 + - uid: 22380 components: - type: Transform rot: 3.141592653589793 rad @@ -149762,7 +147010,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22290 + - uid: 22381 components: - type: Transform rot: 1.5707963267948966 rad @@ -149770,7 +147018,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22291 + - uid: 22382 components: - type: Transform rot: 3.141592653589793 rad @@ -149778,7 +147026,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22292 + - uid: 22383 components: - type: Transform rot: -1.5707963267948966 rad @@ -149786,7 +147034,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22293 + - uid: 22384 components: - type: Transform rot: 1.5707963267948966 rad @@ -149794,35 +147042,35 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22294 + - uid: 22385 components: - type: Transform pos: 33.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22295 + - uid: 22386 components: - type: Transform pos: 39.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22296 + - uid: 22387 components: - type: Transform pos: 55.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22297 + - uid: 22388 components: - type: Transform pos: 51.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22298 + - uid: 22389 components: - type: Transform rot: 3.141592653589793 rad @@ -149830,7 +147078,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22299 + - uid: 22390 components: - type: Transform rot: 3.141592653589793 rad @@ -149838,7 +147086,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22300 + - uid: 22391 components: - type: Transform rot: 3.141592653589793 rad @@ -149846,7 +147094,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22301 + - uid: 22392 components: - type: Transform rot: 3.141592653589793 rad @@ -149854,7 +147102,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22302 + - uid: 22393 components: - type: Transform rot: -1.5707963267948966 rad @@ -149862,7 +147110,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22303 + - uid: 22394 components: - type: Transform rot: 3.141592653589793 rad @@ -149870,7 +147118,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22304 + - uid: 22395 components: - type: Transform rot: 3.141592653589793 rad @@ -149878,7 +147126,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22305 + - uid: 22396 components: - type: Transform rot: 1.5707963267948966 rad @@ -149886,7 +147134,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22306 + - uid: 22397 components: - type: Transform rot: 3.141592653589793 rad @@ -149894,7 +147142,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22307 + - uid: 22398 components: - type: Transform rot: 3.141592653589793 rad @@ -149902,7 +147150,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22308 + - uid: 22399 components: - type: Transform rot: 1.5707963267948966 rad @@ -149910,7 +147158,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22309 + - uid: 22400 components: - type: Transform rot: 3.141592653589793 rad @@ -149918,7 +147166,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22310 + - uid: 22401 components: - type: Transform rot: -1.5707963267948966 rad @@ -149926,7 +147174,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22311 + - uid: 22402 components: - type: Transform rot: 3.141592653589793 rad @@ -149934,14 +147182,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22312 + - uid: 22403 components: - type: Transform pos: 57.5,-10.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22313 + - uid: 22404 components: - type: Transform rot: -1.5707963267948966 rad @@ -149949,7 +147197,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22314 + - uid: 22405 components: - type: Transform rot: 1.5707963267948966 rad @@ -149957,7 +147205,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22315 + - uid: 22406 components: - type: Transform rot: 3.141592653589793 rad @@ -149965,7 +147213,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22316 + - uid: 22407 components: - type: Transform rot: 3.141592653589793 rad @@ -149973,7 +147221,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22317 + - uid: 22408 components: - type: Transform rot: 3.141592653589793 rad @@ -149981,14 +147229,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22318 + - uid: 22409 components: - type: Transform pos: 72.5,-43.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22319 + - uid: 22410 components: - type: Transform rot: 3.141592653589793 rad @@ -149996,7 +147244,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22320 + - uid: 22411 components: - type: Transform rot: 3.141592653589793 rad @@ -150004,13 +147252,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22321 + - uid: 22412 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 - - uid: 22322 + - uid: 22413 components: - type: Transform rot: 1.5707963267948966 rad @@ -150018,7 +147266,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22323 + - uid: 22414 components: - type: Transform rot: 1.5707963267948966 rad @@ -150026,21 +147274,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22324 + - uid: 22415 components: - type: Transform pos: 39.5,-35.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22325 + - uid: 22416 components: - type: Transform pos: 44.5,-35.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22326 + - uid: 22417 components: - type: Transform rot: 3.141592653589793 rad @@ -150048,7 +147296,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22327 + - uid: 22418 components: - type: Transform rot: 3.141592653589793 rad @@ -150056,7 +147304,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22328 + - uid: 22419 components: - type: Transform rot: 3.141592653589793 rad @@ -150064,7 +147312,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22329 + - uid: 22420 components: - type: Transform rot: 3.141592653589793 rad @@ -150072,21 +147320,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22330 + - uid: 22421 components: - type: Transform pos: 33.5,-39.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22331 + - uid: 22422 components: - type: Transform pos: 45.5,-45.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22332 + - uid: 22423 components: - type: Transform rot: 3.141592653589793 rad @@ -150094,7 +147342,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22333 + - uid: 22424 components: - type: Transform rot: 3.141592653589793 rad @@ -150102,7 +147350,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22334 + - uid: 22425 components: - type: Transform rot: -1.5707963267948966 rad @@ -150110,14 +147358,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22335 + - uid: 22426 components: - type: Transform pos: 32.5,-47.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22336 + - uid: 22427 components: - type: Transform rot: -1.5707963267948966 rad @@ -150125,7 +147373,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22337 + - uid: 22428 components: - type: Transform rot: 1.5707963267948966 rad @@ -150133,7 +147381,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22338 + - uid: 22429 components: - type: Transform rot: -1.5707963267948966 rad @@ -150141,7 +147389,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22339 + - uid: 22430 components: - type: Transform rot: 1.5707963267948966 rad @@ -150149,7 +147397,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22340 + - uid: 22431 components: - type: Transform rot: 1.5707963267948966 rad @@ -150157,7 +147405,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22341 + - uid: 22432 components: - type: Transform rot: -1.5707963267948966 rad @@ -150165,21 +147413,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22342 + - uid: 22433 components: - type: Transform pos: 28.5,-58.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22343 + - uid: 22434 components: - type: Transform pos: -15.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22344 + - uid: 22435 components: - type: Transform rot: 3.141592653589793 rad @@ -150187,13 +147435,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22345 + - uid: 22436 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-17.5 parent: 2 - - uid: 22346 + - uid: 22437 components: - type: Transform rot: -1.5707963267948966 rad @@ -150201,7 +147449,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22347 + - uid: 22438 components: - type: Transform rot: 1.5707963267948966 rad @@ -150209,7 +147457,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22348 + - uid: 22439 components: - type: Transform rot: 1.5707963267948966 rad @@ -150217,14 +147465,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22349 + - uid: 22440 components: - type: Transform pos: -30.5,-16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22350 + - uid: 22441 components: - type: Transform rot: 3.141592653589793 rad @@ -150232,7 +147480,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22351 + - uid: 22442 components: - type: Transform rot: 1.5707963267948966 rad @@ -150240,7 +147488,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22352 + - uid: 22443 components: - type: Transform rot: 1.5707963267948966 rad @@ -150248,14 +147496,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22353 + - uid: 22444 components: - type: Transform pos: 56.5,-58.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22354 + - uid: 22445 components: - type: Transform rot: -1.5707963267948966 rad @@ -150263,14 +147511,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22355 + - uid: 22446 components: - type: Transform pos: 45.5,-56.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22356 + - uid: 22447 components: - type: Transform rot: -1.5707963267948966 rad @@ -150278,7 +147526,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22357 + - uid: 22448 components: - type: Transform rot: 1.5707963267948966 rad @@ -150286,7 +147534,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22358 + - uid: 22449 components: - type: Transform rot: -1.5707963267948966 rad @@ -150294,7 +147542,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22359 + - uid: 22450 components: - type: Transform rot: -1.5707963267948966 rad @@ -150302,7 +147550,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22360 + - uid: 22451 components: - type: Transform rot: 1.5707963267948966 rad @@ -150310,7 +147558,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22361 + - uid: 22452 components: - type: Transform rot: -1.5707963267948966 rad @@ -150318,21 +147566,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22362 + - uid: 22453 components: - type: Transform pos: 41.5,-70.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22363 + - uid: 22454 components: - type: Transform pos: 37.5,-70.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22364 + - uid: 22455 components: - type: Transform rot: 1.5707963267948966 rad @@ -150340,7 +147588,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22365 + - uid: 22456 components: - type: Transform rot: 3.141592653589793 rad @@ -150348,21 +147596,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22366 + - uid: 22457 components: - type: Transform pos: -35.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22367 + - uid: 22458 components: - type: Transform pos: -16.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22368 + - uid: 22459 components: - type: Transform rot: 1.5707963267948966 rad @@ -150370,7 +147618,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22369 + - uid: 22460 components: - type: Transform rot: 1.5707963267948966 rad @@ -150378,7 +147626,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22370 + - uid: 22461 components: - type: Transform rot: 1.5707963267948966 rad @@ -150386,7 +147634,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22371 + - uid: 22462 components: - type: Transform rot: -1.5707963267948966 rad @@ -150394,7 +147642,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22372 + - uid: 22463 components: - type: Transform rot: -1.5707963267948966 rad @@ -150402,34 +147650,34 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22373 + - uid: 22464 components: - type: Transform pos: -41.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22374 + - uid: 22465 components: - type: Transform pos: -36.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22375 + - uid: 22466 components: - type: Transform pos: -36.5,-53.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22376 + - uid: 22467 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-57.5 parent: 2 - - uid: 22377 + - uid: 22468 components: - type: Transform rot: 1.5707963267948966 rad @@ -150437,7 +147685,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22378 + - uid: 22469 components: - type: Transform rot: 1.5707963267948966 rad @@ -150445,7 +147693,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22379 + - uid: 22470 components: - type: Transform rot: 1.5707963267948966 rad @@ -150453,7 +147701,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22380 + - uid: 22471 components: - type: Transform rot: 1.5707963267948966 rad @@ -150461,7 +147709,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22381 + - uid: 22472 components: - type: Transform rot: 1.5707963267948966 rad @@ -150469,7 +147717,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22382 + - uid: 22473 components: - type: Transform rot: 1.5707963267948966 rad @@ -150477,7 +147725,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22383 + - uid: 22474 components: - type: Transform rot: 1.5707963267948966 rad @@ -150485,22 +147733,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-39.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22385 + - uid: 22475 components: - type: Transform pos: -27.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22386 + - uid: 22476 components: - type: Transform rot: -1.5707963267948966 rad @@ -150508,7 +147748,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22387 + - uid: 22477 components: - type: Transform rot: 3.141592653589793 rad @@ -150516,7 +147756,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22388 + - uid: 22478 components: - type: Transform rot: 3.141592653589793 rad @@ -150524,7 +147764,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22389 + - uid: 22479 components: - type: Transform rot: -1.5707963267948966 rad @@ -150532,7 +147772,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22390 + - uid: 22480 components: - type: Transform rot: -1.5707963267948966 rad @@ -150540,7 +147780,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22391 + - uid: 22481 components: - type: Transform rot: -1.5707963267948966 rad @@ -150548,7 +147788,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22392 + - uid: 22482 components: - type: Transform rot: 1.5707963267948966 rad @@ -150556,7 +147796,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22393 + - uid: 22483 components: - type: Transform rot: -1.5707963267948966 rad @@ -150564,14 +147804,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22394 + - uid: 22484 components: - type: Transform pos: -18.5,-4.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22395 + - uid: 22485 components: - type: Transform rot: 3.141592653589793 rad @@ -150579,7 +147819,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22396 + - uid: 22486 components: - type: Transform rot: 3.141592653589793 rad @@ -150587,7 +147827,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22397 + - uid: 22487 components: - type: Transform rot: 1.5707963267948966 rad @@ -150595,7 +147835,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22398 + - uid: 22488 components: - type: Transform rot: 1.5707963267948966 rad @@ -150603,21 +147843,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22399 + - uid: 22489 components: - type: Transform pos: -72.5,-23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22400 + - uid: 22490 components: - type: Transform pos: -66.5,-30.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22401 + - uid: 22491 components: - type: Transform rot: 1.5707963267948966 rad @@ -150625,7 +147865,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22402 + - uid: 22492 components: - type: Transform rot: -1.5707963267948966 rad @@ -150633,7 +147873,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22403 + - uid: 22493 components: - type: Transform rot: 1.5707963267948966 rad @@ -150641,27 +147881,27 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22404 + - uid: 22494 components: - type: Transform pos: -51.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22405 + - uid: 22495 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 - - uid: 22406 + - uid: 22496 components: - type: Transform pos: -46.5,-19.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22407 + - uid: 22497 components: - type: Transform rot: 1.5707963267948966 rad @@ -150669,7 +147909,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22408 + - uid: 22498 components: - type: Transform rot: 1.5707963267948966 rad @@ -150677,7 +147917,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22409 + - uid: 22499 components: - type: Transform rot: 1.5707963267948966 rad @@ -150685,14 +147925,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22410 + - uid: 22500 components: - type: Transform pos: -45.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22411 + - uid: 22501 components: - type: Transform rot: -1.5707963267948966 rad @@ -150700,7 +147940,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22412 + - uid: 22502 components: - type: Transform rot: 1.5707963267948966 rad @@ -150708,7 +147948,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22413 + - uid: 22503 components: - type: Transform rot: -1.5707963267948966 rad @@ -150716,7 +147956,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22414 + - uid: 22504 components: - type: Transform rot: -1.5707963267948966 rad @@ -150724,14 +147964,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22415 + - uid: 22505 components: - type: Transform pos: -4.5,8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22416 + - uid: 22506 components: - type: Transform rot: 3.141592653589793 rad @@ -150739,7 +147979,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22417 + - uid: 22507 components: - type: Transform rot: -1.5707963267948966 rad @@ -150747,27 +147987,27 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22418 + - uid: 22508 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,18.5 parent: 2 - - uid: 22419 + - uid: 22509 components: - type: Transform pos: 1.5,21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22420 + - uid: 22510 components: - type: Transform pos: -42.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22421 + - uid: 22511 components: - type: Transform rot: -1.5707963267948966 rad @@ -150775,7 +148015,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22422 + - uid: 22512 components: - type: Transform rot: 3.141592653589793 rad @@ -150783,21 +148023,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22423 + - uid: 22513 components: - type: Transform pos: 25.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22424 + - uid: 22514 components: - type: Transform pos: 38.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22425 + - uid: 22515 components: - type: Transform rot: 3.141592653589793 rad @@ -150805,7 +148045,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22426 + - uid: 22516 components: - type: Transform rot: -1.5707963267948966 rad @@ -150813,7 +148053,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22427 + - uid: 22517 components: - type: Transform rot: 3.141592653589793 rad @@ -150821,7 +148061,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22428 + - uid: 22518 components: - type: Transform rot: 3.141592653589793 rad @@ -150829,14 +148069,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22429 + - uid: 22519 components: - type: Transform pos: -22.5,25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22430 + - uid: 22520 components: - type: Transform rot: -1.5707963267948966 rad @@ -150844,7 +148084,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22431 + - uid: 22521 components: - type: Transform rot: -1.5707963267948966 rad @@ -150852,14 +148092,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22432 + - uid: 22522 components: - type: Transform pos: -27.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22433 + - uid: 22523 components: - type: Transform rot: 1.5707963267948966 rad @@ -150867,7 +148107,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22434 + - uid: 22524 components: - type: Transform rot: 3.141592653589793 rad @@ -150875,7 +148115,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22435 + - uid: 22525 components: - type: Transform rot: -1.5707963267948966 rad @@ -150883,7 +148123,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22436 + - uid: 22526 components: - type: Transform rot: 3.141592653589793 rad @@ -150891,7 +148131,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22437 + - uid: 22527 components: - type: Transform rot: -1.5707963267948966 rad @@ -150899,14 +148139,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22438 + - uid: 22528 components: - type: Transform pos: -43.5,25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22439 + - uid: 22529 components: - type: Transform rot: 1.5707963267948966 rad @@ -150914,7 +148154,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22440 + - uid: 22530 components: - type: Transform rot: 1.5707963267948966 rad @@ -150922,7 +148162,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22441 + - uid: 22531 components: - type: Transform rot: -1.5707963267948966 rad @@ -150930,7 +148170,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22442 + - uid: 22532 components: - type: Transform rot: 3.141592653589793 rad @@ -150938,14 +148178,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22443 + - uid: 22533 components: - type: Transform pos: -47.5,36.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22444 + - uid: 22534 components: - type: Transform rot: 1.5707963267948966 rad @@ -150953,7 +148193,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22445 + - uid: 22535 components: - type: Transform rot: 3.141592653589793 rad @@ -150961,21 +148201,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22446 + - uid: 22536 components: - type: Transform pos: -7.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22447 + - uid: 22537 components: - type: Transform pos: -1.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22448 + - uid: 22538 components: - type: Transform rot: -1.5707963267948966 rad @@ -150983,59 +148223,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22450 - components: - - type: Transform - pos: -3.5,-52.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-54.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22452 - components: - - type: Transform - pos: -11.5,-52.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-53.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22454 + - uid: 22539 components: - type: Transform pos: -17.5,-54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22455 + - uid: 22540 components: - type: Transform pos: -17.5,-59.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22456 + - uid: 22541 components: - type: Transform rot: -1.5707963267948966 rad @@ -151043,14 +148245,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22457 + - uid: 22542 components: - type: Transform pos: -26.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22458 + - uid: 22543 components: - type: Transform rot: -1.5707963267948966 rad @@ -151058,7 +148260,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22459 + - uid: 22544 components: - type: Transform rot: 1.5707963267948966 rad @@ -151066,14 +148268,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22460 + - uid: 22545 components: - type: Transform pos: -47.5,8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22461 + - uid: 22546 components: - type: Transform rot: 3.141592653589793 rad @@ -151081,21 +148283,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22462 + - uid: 22547 components: - type: Transform pos: 8.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22463 + - uid: 22548 components: - type: Transform pos: 1.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22464 + - uid: 22549 components: - type: Transform rot: -1.5707963267948966 rad @@ -151103,7 +148305,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22465 + - uid: 22550 components: - type: Transform rot: 1.5707963267948966 rad @@ -151111,7 +148313,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22466 + - uid: 22551 components: - type: Transform rot: -1.5707963267948966 rad @@ -151119,28 +148321,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22467 + - uid: 22552 components: - type: Transform pos: 21.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22468 + - uid: 22553 components: - type: Transform pos: 29.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22469 + - uid: 22554 components: - type: Transform pos: -29.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22470 + - uid: 22555 components: - type: Transform rot: 3.141592653589793 rad @@ -151148,7 +148350,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22471 + - uid: 22556 components: - type: Transform rot: 3.141592653589793 rad @@ -151156,7 +148358,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22472 + - uid: 22557 components: - type: Transform rot: 1.5707963267948966 rad @@ -151164,14 +148366,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22473 + - uid: 22558 components: - type: Transform pos: 32.5,19.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22474 + - uid: 22559 components: - type: Transform rot: -1.5707963267948966 rad @@ -151179,15 +148381,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-65.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22476 + - uid: 22560 components: - type: Transform rot: 1.5707963267948966 rad @@ -151195,14 +148389,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22477 + - uid: 22561 components: - type: Transform pos: 64.5,-43.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22478 + - uid: 22562 components: - type: Transform rot: 3.141592653589793 rad @@ -151210,7 +148404,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22479 + - uid: 22563 components: - type: Transform rot: 1.5707963267948966 rad @@ -151218,14 +148412,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22480 + - uid: 22564 components: - type: Transform pos: -23.5,-57.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22481 + - uid: 22565 components: - type: Transform rot: 1.5707963267948966 rad @@ -151233,7 +148427,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22482 + - uid: 22566 components: - type: Transform rot: -1.5707963267948966 rad @@ -151241,7 +148435,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22483 + - uid: 22567 components: - type: Transform rot: 3.141592653589793 rad @@ -151249,14 +148443,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22484 + - uid: 22568 components: - type: Transform pos: -21.5,45.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22485 + - uid: 22569 components: - type: Transform rot: 1.5707963267948966 rad @@ -151264,7 +148458,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22486 + - uid: 22570 components: - type: Transform rot: -1.5707963267948966 rad @@ -151272,7 +148466,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22487 + - uid: 22571 components: - type: Transform rot: 1.5707963267948966 rad @@ -151280,7 +148474,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22488 + - uid: 22572 components: - type: Transform rot: 1.5707963267948966 rad @@ -151288,7 +148482,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22489 + - uid: 22573 components: - type: Transform rot: -1.5707963267948966 rad @@ -151296,7 +148490,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22490 + - uid: 22574 components: - type: Transform rot: 1.5707963267948966 rad @@ -151304,7 +148498,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22491 + - uid: 22575 components: - type: Transform rot: 1.5707963267948966 rad @@ -151312,7 +148506,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22492 + - uid: 22576 components: - type: Transform rot: -1.5707963267948966 rad @@ -151320,14 +148514,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22493 + - uid: 22577 components: - type: Transform pos: -1.5,46.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22494 + - uid: 22578 components: - type: Transform rot: 1.5707963267948966 rad @@ -151335,7 +148529,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22495 + - uid: 22579 components: - type: Transform rot: 1.5707963267948966 rad @@ -151343,21 +148537,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22496 + - uid: 22580 components: - type: Transform pos: -6.5,59.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22497 + - uid: 22581 components: - type: Transform pos: -19.5,51.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22498 + - uid: 22582 components: - type: Transform rot: 1.5707963267948966 rad @@ -151365,7 +148559,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22499 + - uid: 22583 components: - type: Transform rot: 1.5707963267948966 rad @@ -151373,7 +148567,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22500 + - uid: 22584 components: - type: Transform rot: -1.5707963267948966 rad @@ -151381,7 +148575,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22501 + - uid: 22585 components: - type: Transform rot: 1.5707963267948966 rad @@ -151389,7 +148583,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22502 + - uid: 22586 components: - type: Transform rot: -1.5707963267948966 rad @@ -151397,7 +148591,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22503 + - uid: 22587 components: - type: Transform rot: 3.141592653589793 rad @@ -151405,7 +148599,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22504 + - uid: 22588 components: - type: Transform rot: 3.141592653589793 rad @@ -151413,7 +148607,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22505 + - uid: 22589 components: - type: Transform rot: -1.5707963267948966 rad @@ -151421,7 +148615,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22506 + - uid: 22590 components: - type: Transform rot: 3.141592653589793 rad @@ -151429,7 +148623,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22507 + - uid: 22591 components: - type: Transform rot: -1.5707963267948966 rad @@ -151437,7 +148631,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22508 + - uid: 22592 components: - type: Transform rot: 1.5707963267948966 rad @@ -151445,7 +148639,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22509 + - uid: 22593 components: - type: Transform rot: 1.5707963267948966 rad @@ -151453,7 +148647,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22510 + - uid: 22594 components: - type: Transform rot: -1.5707963267948966 rad @@ -151461,15 +148655,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22512 + - uid: 22595 components: - type: Transform rot: -1.5707963267948966 rad @@ -151477,14 +148663,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22513 + - uid: 22596 components: - type: Transform pos: 67.5,-36.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22514 + - uid: 22597 components: - type: Transform rot: 1.5707963267948966 rad @@ -151492,14 +148678,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22515 + - uid: 22598 components: - type: Transform pos: -62.5,-23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22516 + - uid: 22599 components: - type: Transform rot: -1.5707963267948966 rad @@ -151507,7 +148693,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22517 + - uid: 22600 components: - type: Transform rot: -1.5707963267948966 rad @@ -151515,7 +148701,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22518 + - uid: 22601 components: - type: Transform rot: 1.5707963267948966 rad @@ -151523,7 +148709,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22519 + - uid: 22602 components: - type: Transform rot: 3.141592653589793 rad @@ -151531,7 +148717,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22520 + - uid: 22603 components: - type: Transform rot: -1.5707963267948966 rad @@ -151539,21 +148725,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22521 + - uid: 22604 components: - type: Transform pos: 58.5,-28.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22522 + - uid: 22605 components: - type: Transform pos: 34.5,-16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22523 + - uid: 22606 components: - type: Transform rot: -1.5707963267948966 rad @@ -151561,14 +148747,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22524 + - uid: 22607 components: - type: Transform pos: 55.5,-47.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22525 + - uid: 22608 components: - type: Transform rot: -1.5707963267948966 rad @@ -151576,7 +148762,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22526 + - uid: 22609 components: - type: Transform rot: -1.5707963267948966 rad @@ -151584,7 +148770,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22527 + - uid: 22610 components: - type: Transform rot: -1.5707963267948966 rad @@ -151592,14 +148778,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22528 + - uid: 22611 components: - type: Transform pos: -50.5,35.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22529 + - uid: 22612 components: - type: Transform rot: -1.5707963267948966 rad @@ -151607,7 +148793,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22530 + - uid: 22613 components: - type: Transform rot: 1.5707963267948966 rad @@ -151615,7 +148801,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22531 + - uid: 22614 components: - type: Transform rot: 3.141592653589793 rad @@ -151623,14 +148809,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22532 + - uid: 22615 components: - type: Transform pos: -21.5,8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22533 + - uid: 22616 components: - type: Transform rot: 3.141592653589793 rad @@ -151638,14 +148824,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22534 + - uid: 22617 components: - type: Transform pos: -51.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22535 + - uid: 22618 components: - type: Transform rot: -1.5707963267948966 rad @@ -151653,7 +148839,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22536 + - uid: 22619 components: - type: Transform rot: 1.5707963267948966 rad @@ -151661,7 +148847,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22537 + - uid: 22620 components: - type: Transform rot: 1.5707963267948966 rad @@ -151669,7 +148855,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22538 + - uid: 22621 components: - type: Transform rot: -1.5707963267948966 rad @@ -151677,7 +148863,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22539 + - uid: 22622 components: - type: Transform rot: 1.5707963267948966 rad @@ -151685,7 +148871,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22540 + - uid: 22623 components: - type: Transform rot: -1.5707963267948966 rad @@ -151693,7 +148879,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22541 + - uid: 22624 components: - type: Transform rot: 1.5707963267948966 rad @@ -151701,7 +148887,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22542 + - uid: 22625 components: - type: Transform rot: 1.5707963267948966 rad @@ -151709,7 +148895,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22543 + - uid: 22626 components: - type: Transform rot: -1.5707963267948966 rad @@ -151717,7 +148903,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22544 + - uid: 22627 components: - type: Transform rot: 3.141592653589793 rad @@ -151725,7 +148911,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22545 + - uid: 22628 components: - type: Transform rot: 1.5707963267948966 rad @@ -151733,21 +148919,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22546 + - uid: 22629 components: - type: Transform pos: -49.5,-34.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22547 + - uid: 22630 components: - type: Transform pos: 28.5,-80.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22548 + - uid: 22631 components: - type: Transform rot: -1.5707963267948966 rad @@ -151755,7 +148941,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22549 + - uid: 22632 components: - type: Transform rot: -1.5707963267948966 rad @@ -151763,14 +148949,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22550 + - uid: 22633 components: - type: Transform pos: 48.5,-71.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22551 + - uid: 22634 components: - type: Transform rot: -1.5707963267948966 rad @@ -151778,7 +148964,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22552 + - uid: 22635 components: - type: Transform rot: 3.141592653589793 rad @@ -151786,7 +148972,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22553 + - uid: 22636 components: - type: Transform rot: 1.5707963267948966 rad @@ -151794,14 +148980,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22554 + - uid: 22637 components: - type: Transform pos: 29.5,-71.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22555 + - uid: 22638 components: - type: Transform rot: -1.5707963267948966 rad @@ -151809,21 +148995,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22556 + - uid: 22639 components: - type: Transform pos: 24.5,-69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22557 + - uid: 22640 components: - type: Transform pos: 15.5,-79.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22558 + - uid: 22641 components: - type: Transform rot: 1.5707963267948966 rad @@ -151831,7 +149017,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22559 + - uid: 22642 components: - type: Transform rot: 3.141592653589793 rad @@ -151839,117 +149025,117 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22560 + - uid: 22643 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-47.5 parent: 2 - - uid: 22561 + - uid: 22644 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-41.5 parent: 2 - - uid: 22562 + - uid: 22645 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 - - uid: 22563 + - uid: 22646 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,41.5 parent: 2 - - uid: 22564 + - uid: 22647 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,44.5 parent: 2 - - uid: 22565 + - uid: 22648 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-31.5 parent: 2 - - uid: 22566 + - uid: 22649 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-29.5 parent: 2 - - uid: 22567 + - uid: 22650 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 - - uid: 22568 + - uid: 22651 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,17.5 parent: 2 - - uid: 22569 + - uid: 22652 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-17.5 parent: 2 - - uid: 22570 + - uid: 22653 components: - type: Transform pos: 77.5,-43.5 parent: 2 - - uid: 22571 + - uid: 22654 components: - type: Transform pos: -71.5,-37.5 parent: 2 - - uid: 22572 + - uid: 22655 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-46.5 parent: 2 - - uid: 22573 + - uid: 22656 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-46.5 parent: 2 - - uid: 22574 + - uid: 22657 components: - type: Transform pos: -65.5,-36.5 parent: 2 - - uid: 22575 + - uid: 22658 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 - - uid: 22576 + - uid: 22659 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-32.5 parent: 2 - - uid: 22577 + - uid: 22660 components: - type: Transform pos: -35.5,-15.5 parent: 2 - - uid: 22578 + - uid: 22661 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-4.5 parent: 2 - - uid: 22579 + - uid: 22662 components: - type: Transform rot: 1.5707963267948966 rad @@ -151957,108 +149143,180 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24346 - - uid: 22580 + - 24450 + - uid: 22663 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-38.5 parent: 2 - - uid: 22581 + - uid: 22664 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 2 - - uid: 22583 + - uid: 22665 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 22666 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 2 - - uid: 22584 + - uid: 22667 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 22585 + - uid: 22668 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 - - uid: 22586 + - uid: 22669 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-41.5 parent: 2 - - uid: 22587 + - uid: 22670 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-25.5 parent: 2 - - uid: 22588 + - uid: 22671 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-43.5 parent: 2 - - uid: 22589 + - uid: 22672 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-39.5 parent: 2 - - uid: 22590 + - uid: 22673 components: - type: Transform pos: 11.5,23.5 parent: 2 - - uid: 22591 + - uid: 22674 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-46.5 parent: 2 - - uid: 22592 + - uid: 22675 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 - - uid: 22593 + - uid: 22676 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 2 - - uid: 22594 + - uid: 22677 components: - type: Transform pos: -9.5,-17.5 parent: 2 - - uid: 22595 + - uid: 22678 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-15.5 parent: 2 - - uid: 22596 + - uid: 22679 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-38.5 parent: 2 - - uid: 23995 + - uid: 22680 components: - type: Transform - pos: 27.5,-34.5 + rot: 1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-54.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-65.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 2 + - uid: 22684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-57.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-63.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-58.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-52.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-53.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-38.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-38.5 parent: 2 - proto: PoweredlightEmpty entities: - - uid: 22597 + - uid: 22692 components: - type: Transform rot: 3.141592653589793 rad @@ -152066,7 +149324,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22598 + - uid: 22693 components: - type: Transform rot: 3.141592653589793 rad @@ -152074,7 +149332,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22599 + - uid: 22694 components: - type: Transform rot: 3.141592653589793 rad @@ -152082,7 +149340,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22600 + - uid: 22695 components: - type: Transform rot: 3.141592653589793 rad @@ -152090,7 +149348,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22601 + - uid: 22696 components: - type: Transform rot: 3.141592653589793 rad @@ -152098,21 +149356,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22602 + - uid: 22697 components: - type: Transform pos: -13.5,13.5 parent: 2 - proto: PoweredlightExterior entities: - - uid: 22603 + - uid: 22698 components: - type: Transform pos: -1.5,72.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22604 + - uid: 22699 components: - type: Transform rot: 1.5707963267948966 rad @@ -152120,7 +149378,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22605 + - uid: 22700 components: - type: Transform rot: -1.5707963267948966 rad @@ -152128,7 +149386,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22606 + - uid: 22701 components: - type: Transform rot: -1.5707963267948966 rad @@ -152136,7 +149394,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22607 + - uid: 22702 components: - type: Transform rot: -1.5707963267948966 rad @@ -152144,43 +149402,43 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22608 + - uid: 22703 components: - type: Transform pos: 39.5,66.5 parent: 2 - - uid: 22609 + - uid: 22704 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,63.5 parent: 2 - - uid: 22610 + - uid: 22705 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,63.5 parent: 2 - - uid: 22611 + - uid: 22706 components: - type: Transform pos: -52.5,-86.5 parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 22612 + - uid: 22707 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 22613 + - uid: 22708 components: - type: Transform pos: -2.5,-85.5 parent: 2 - proto: PoweredlightSodium entities: - - uid: 22614 + - uid: 22709 components: - type: Transform rot: 3.141592653589793 rad @@ -152188,7 +149446,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22615 + - uid: 22710 components: - type: Transform rot: 1.5707963267948966 rad @@ -152196,28 +149454,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22616 + - uid: 22711 components: - type: Transform pos: -18.5,4.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22617 + - uid: 22712 components: - type: Transform pos: -40.5,-15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22618 + - uid: 22713 components: - type: Transform pos: -20.5,-95.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22619 + - uid: 22714 components: - type: Transform rot: 3.141592653589793 rad @@ -152225,7 +149483,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22620 + - uid: 22715 components: - type: Transform rot: -1.5707963267948966 rad @@ -152235,52 +149493,68 @@ entities: powerLoad: 0 - proto: PoweredSmallLight entities: - - uid: 22621 + - uid: 22716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 22719 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-26.5 parent: 2 - - uid: 22622 + - uid: 22720 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-46.5 parent: 2 - - uid: 22623 + - uid: 22721 components: - type: Transform pos: 12.5,25.5 parent: 2 - - uid: 22624 + - uid: 22722 components: - type: Transform pos: -43.5,-34.5 parent: 2 - - uid: 22625 + - uid: 22723 components: - type: Transform pos: -76.5,-31.5 parent: 2 - - uid: 22626 + - uid: 22724 components: - type: Transform pos: 51.5,-82.5 parent: 2 - - uid: 22627 + - uid: 22725 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 - - uid: 22628 + - uid: 22726 components: - type: Transform pos: 20.5,-52.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22629 + - uid: 22727 components: - type: Transform rot: 3.141592653589793 rad @@ -152288,21 +149562,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22630 + - uid: 22728 components: - type: Transform pos: 16.5,-52.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22631 + - uid: 22729 components: - type: Transform pos: 1.5,-40.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22632 + - uid: 22730 components: - type: Transform rot: 1.5707963267948966 rad @@ -152310,7 +149584,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22633 + - uid: 22731 components: - type: Transform rot: 3.141592653589793 rad @@ -152318,7 +149592,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22634 + - uid: 22732 components: - type: Transform rot: -1.5707963267948966 rad @@ -152326,21 +149600,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22635 + - uid: 22733 components: - type: Transform pos: 0.5,-73.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22636 + - uid: 22734 components: - type: Transform pos: 33.5,-10.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22637 + - uid: 22735 components: - type: Transform rot: 3.141592653589793 rad @@ -152348,7 +149622,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22638 + - uid: 22736 components: - type: Transform rot: 1.5707963267948966 rad @@ -152356,7 +149630,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22639 + - uid: 22737 components: - type: Transform rot: -1.5707963267948966 rad @@ -152364,7 +149638,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22640 + - uid: 22738 components: - type: Transform rot: 1.5707963267948966 rad @@ -152372,7 +149646,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22641 + - uid: 22739 components: - type: Transform rot: 1.5707963267948966 rad @@ -152380,14 +149654,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22642 + - uid: 22740 components: - type: Transform pos: 33.5,-89.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22643 + - uid: 22741 components: - type: Transform rot: -1.5707963267948966 rad @@ -152395,7 +149669,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22644 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad @@ -152403,29 +149677,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22645 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-67.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22647 + - uid: 22743 components: - type: Transform pos: -20.5,-66.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22648 + - uid: 22744 components: - type: Transform rot: 3.141592653589793 rad @@ -152433,28 +149692,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22649 - components: - - type: Transform - pos: -20.5,-63.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22650 + - uid: 22745 components: - type: Transform pos: -15.5,-75.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22651 + - uid: 22746 components: - type: Transform pos: -15.5,-69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22652 + - uid: 22747 components: - type: Transform rot: 3.141592653589793 rad @@ -152462,7 +149714,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22653 + - uid: 22748 components: - type: Transform rot: 1.5707963267948966 rad @@ -152470,7 +149722,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22654 + - uid: 22749 components: - type: Transform rot: 1.5707963267948966 rad @@ -152478,7 +149730,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22655 + - uid: 22750 components: - type: Transform rot: 3.141592653589793 rad @@ -152486,7 +149738,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22656 + - uid: 22751 components: - type: Transform rot: -1.5707963267948966 rad @@ -152494,7 +149746,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22657 + - uid: 22752 components: - type: Transform rot: -1.5707963267948966 rad @@ -152502,7 +149754,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22658 + - uid: 22753 components: - type: Transform rot: -1.5707963267948966 rad @@ -152510,28 +149762,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22659 + - uid: 22754 components: - type: Transform pos: 49.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22660 + - uid: 22755 components: - type: Transform pos: -8.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22661 + - uid: 22756 components: - type: Transform pos: -16.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22662 + - uid: 22757 components: - type: Transform rot: -1.5707963267948966 rad @@ -152539,21 +149791,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22663 + - uid: 22758 components: - type: Transform pos: 37.5,8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22664 + - uid: 22759 components: - type: Transform pos: 37.5,5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22665 + - uid: 22760 components: - type: Transform rot: 1.5707963267948966 rad @@ -152561,7 +149813,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22666 + - uid: 22761 components: - type: Transform rot: 1.5707963267948966 rad @@ -152569,7 +149821,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22667 + - uid: 22762 components: - type: Transform rot: 1.5707963267948966 rad @@ -152577,7 +149829,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22668 + - uid: 22763 components: - type: Transform rot: 3.141592653589793 rad @@ -152585,7 +149837,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22669 + - uid: 22764 components: - type: Transform rot: 1.5707963267948966 rad @@ -152593,7 +149845,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22670 + - uid: 22765 components: - type: Transform rot: 1.5707963267948966 rad @@ -152601,7 +149853,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22671 + - uid: 22766 components: - type: Transform rot: 1.5707963267948966 rad @@ -152609,7 +149861,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22672 + - uid: 22767 components: - type: Transform rot: 1.5707963267948966 rad @@ -152617,7 +149869,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22673 + - uid: 22768 components: - type: Transform rot: 1.5707963267948966 rad @@ -152625,21 +149877,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22674 + - uid: 22769 components: - type: Transform pos: 61.5,19.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22675 + - uid: 22770 components: - type: Transform pos: 61.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22676 + - uid: 22771 components: - type: Transform rot: 1.5707963267948966 rad @@ -152647,14 +149899,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22677 + - uid: 22772 components: - type: Transform pos: 62.5,22.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22678 + - uid: 22773 components: - type: Transform rot: -1.5707963267948966 rad @@ -152662,7 +149914,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22679 + - uid: 22774 components: - type: Transform rot: 1.5707963267948966 rad @@ -152670,14 +149922,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22680 + - uid: 22775 components: - type: Transform pos: 60.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22681 + - uid: 22776 components: - type: Transform rot: 1.5707963267948966 rad @@ -152685,14 +149937,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22682 + - uid: 22777 components: - type: Transform pos: 35.5,20.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22683 + - uid: 22778 components: - type: Transform rot: 1.5707963267948966 rad @@ -152700,7 +149952,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22684 + - uid: 22779 components: - type: Transform rot: -1.5707963267948966 rad @@ -152708,14 +149960,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22685 + - uid: 22780 components: - type: Transform pos: 49.5,-7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22686 + - uid: 22781 components: - type: Transform rot: -1.5707963267948966 rad @@ -152723,7 +149975,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22687 + - uid: 22782 components: - type: Transform rot: -1.5707963267948966 rad @@ -152731,7 +149983,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22688 + - uid: 22783 components: - type: Transform rot: 1.5707963267948966 rad @@ -152739,7 +149991,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22689 + - uid: 22784 components: - type: Transform rot: -1.5707963267948966 rad @@ -152747,14 +149999,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22690 + - uid: 22785 components: - type: Transform pos: -18.5,-0.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22691 + - uid: 22786 components: - type: Transform rot: -1.5707963267948966 rad @@ -152762,28 +150014,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22692 + - uid: 22787 components: - type: Transform pos: 46.5,-51.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22693 + - uid: 22788 components: - type: Transform pos: 12.5,-72.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22694 + - uid: 22789 components: - type: Transform pos: 45.5,-89.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22695 + - uid: 22790 components: - type: Transform rot: 1.5707963267948966 rad @@ -152791,14 +150043,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22696 + - uid: 22791 components: - type: Transform pos: 20.5,-73.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22697 + - uid: 22792 components: - type: Transform rot: 1.5707963267948966 rad @@ -152806,28 +150058,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22698 + - uid: 22793 components: - type: Transform pos: -20.5,-45.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22699 + - uid: 22794 components: - type: Transform pos: -26.5,-26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22700 + - uid: 22795 components: - type: Transform pos: 43.5,-51.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22701 + - uid: 22796 components: - type: Transform rot: 1.5707963267948966 rad @@ -152835,42 +150087,35 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22702 + - uid: 22797 components: - type: Transform pos: 10.5,-55.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22703 + - uid: 22798 components: - type: Transform pos: 15.5,-57.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22704 - components: - - type: Transform - pos: 9.5,-64.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22705 + - uid: 22799 components: - type: Transform pos: -5.5,-68.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22706 + - uid: 22800 components: - type: Transform pos: -33.5,-69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22707 + - uid: 22801 components: - type: Transform rot: 1.5707963267948966 rad @@ -152878,7 +150123,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22708 + - uid: 22802 components: - type: Transform rot: 3.141592653589793 rad @@ -152886,14 +150131,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22709 - components: - - type: Transform - pos: -26.5,-66.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22710 + - uid: 22803 components: - type: Transform rot: 1.5707963267948966 rad @@ -152901,7 +150139,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22711 + - uid: 22804 components: - type: Transform rot: 1.5707963267948966 rad @@ -152909,21 +150147,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22712 + - uid: 22805 components: - type: Transform pos: -37.5,-63.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22713 + - uid: 22806 components: - type: Transform pos: -44.5,-63.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22714 + - uid: 22807 components: - type: Transform rot: 1.5707963267948966 rad @@ -152931,14 +150169,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22715 + - uid: 22808 components: - type: Transform pos: -29.5,-43.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22716 + - uid: 22809 components: - type: Transform rot: 1.5707963267948966 rad @@ -152946,14 +150184,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22717 + - uid: 22810 components: - type: Transform pos: -22.5,-41.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22718 + - uid: 22811 components: - type: Transform rot: 1.5707963267948966 rad @@ -152961,14 +150199,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22719 + - uid: 22812 components: - type: Transform pos: 44.5,-13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22720 + - uid: 22813 components: - type: Transform rot: 1.5707963267948966 rad @@ -152976,21 +150214,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22721 + - uid: 22814 components: - type: Transform pos: 39.5,-7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22722 + - uid: 22815 components: - type: Transform pos: 31.5,-8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22723 + - uid: 22816 components: - type: Transform rot: 1.5707963267948966 rad @@ -152998,7 +150236,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22724 + - uid: 22817 components: - type: Transform rot: 1.5707963267948966 rad @@ -153006,14 +150244,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22725 + - uid: 22818 components: - type: Transform pos: 57.5,26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22726 + - uid: 22819 components: - type: Transform rot: 3.141592653589793 rad @@ -153021,28 +150259,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22727 + - uid: 22820 components: - type: Transform pos: -41.5,-24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22728 + - uid: 22821 components: - type: Transform pos: -39.5,-28.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22729 + - uid: 22822 components: - type: Transform pos: -45.5,-27.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22730 + - uid: 22823 components: - type: Transform rot: 1.5707963267948966 rad @@ -153050,7 +150288,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22731 + - uid: 22824 components: - type: Transform rot: -1.5707963267948966 rad @@ -153058,7 +150296,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22732 + - uid: 22825 components: - type: Transform rot: -1.5707963267948966 rad @@ -153066,7 +150304,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22733 + - uid: 22826 components: - type: Transform rot: 1.5707963267948966 rad @@ -153074,7 +150312,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22734 + - uid: 22827 components: - type: Transform rot: 1.5707963267948966 rad @@ -153082,21 +150320,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22735 + - uid: 22828 components: - type: Transform pos: -29.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22736 + - uid: 22829 components: - type: Transform pos: 15.5,-8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22737 + - uid: 22830 components: - type: Transform rot: 1.5707963267948966 rad @@ -153104,7 +150342,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22738 + - uid: 22831 components: - type: Transform rot: 3.141592653589793 rad @@ -153112,20 +150350,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22739 + - uid: 22832 components: - type: Transform pos: 1.5,-16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22740 + - uid: 22833 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-34.5 parent: 2 - - uid: 22741 + - uid: 22834 components: - type: Transform rot: 1.5707963267948966 rad @@ -153133,7 +150371,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22742 + - uid: 22835 components: - type: Transform rot: 1.5707963267948966 rad @@ -153141,56 +150379,56 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22743 + - uid: 22836 components: - type: Transform pos: -49.5,-42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22744 + - uid: 22837 components: - type: Transform pos: -49.5,-44.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22745 + - uid: 22838 components: - type: Transform pos: -49.5,-46.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22746 + - uid: 22839 components: - type: Transform pos: -49.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22747 + - uid: 22840 components: - type: Transform pos: -49.5,-50.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22748 + - uid: 22841 components: - type: Transform pos: -49.5,-52.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22749 + - uid: 22842 components: - type: Transform pos: -49.5,-54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22750 + - uid: 22843 components: - type: Transform rot: 1.5707963267948966 rad @@ -153198,21 +150436,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22751 + - uid: 22844 components: - type: Transform pos: 21.5,25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22752 + - uid: 22845 components: - type: Transform pos: -6.5,32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22753 + - uid: 22846 components: - type: Transform rot: -1.5707963267948966 rad @@ -153220,7 +150458,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22754 + - uid: 22847 components: - type: Transform rot: 1.5707963267948966 rad @@ -153228,7 +150466,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22755 + - uid: 22848 components: - type: Transform rot: 1.5707963267948966 rad @@ -153236,7 +150474,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22756 + - uid: 22849 components: - type: Transform rot: -1.5707963267948966 rad @@ -153244,7 +150482,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22757 + - uid: 22850 components: - type: Transform rot: 1.5707963267948966 rad @@ -153252,7 +150490,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22758 + - uid: 22851 components: - type: Transform rot: 3.141592653589793 rad @@ -153260,7 +150498,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22759 + - uid: 22852 components: - type: Transform rot: 1.5707963267948966 rad @@ -153268,7 +150506,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22760 + - uid: 22853 components: - type: Transform rot: -1.5707963267948966 rad @@ -153276,7 +150514,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22761 + - uid: 22854 components: - type: Transform rot: -1.5707963267948966 rad @@ -153284,7 +150522,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22762 + - uid: 22855 components: - type: Transform rot: -1.5707963267948966 rad @@ -153292,7 +150530,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22763 + - uid: 22856 components: - type: Transform rot: 1.5707963267948966 rad @@ -153300,7 +150538,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22764 + - uid: 22857 components: - type: Transform rot: -1.5707963267948966 rad @@ -153308,7 +150546,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22765 + - uid: 22858 components: - type: Transform rot: 1.5707963267948966 rad @@ -153316,7 +150554,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22766 + - uid: 22859 components: - type: Transform rot: 3.141592653589793 rad @@ -153324,14 +150562,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22767 + - uid: 22860 components: - type: Transform pos: -0.5,24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22768 + - uid: 22861 components: - type: Transform rot: -1.5707963267948966 rad @@ -153339,7 +150577,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22769 + - uid: 22862 components: - type: Transform rot: 1.5707963267948966 rad @@ -153347,7 +150585,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22770 + - uid: 22863 components: - type: Transform rot: -1.5707963267948966 rad @@ -153355,28 +150593,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22771 + - uid: 22864 components: - type: Transform pos: -44.5,-2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22772 + - uid: 22865 components: - type: Transform pos: -40.5,-2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22773 + - uid: 22866 components: - type: Transform pos: -49.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22774 + - uid: 22867 components: - type: Transform rot: -1.5707963267948966 rad @@ -153384,14 +150622,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22775 + - uid: 22868 components: - type: Transform pos: -35.5,-38.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22776 + - uid: 22869 components: - type: Transform rot: -1.5707963267948966 rad @@ -153399,7 +150637,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22777 + - uid: 22870 components: - type: Transform rot: 3.141592653589793 rad @@ -153407,7 +150645,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22778 + - uid: 22871 components: - type: Transform rot: 3.141592653589793 rad @@ -153415,21 +150653,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22779 + - uid: 22872 components: - type: Transform pos: -68.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22780 + - uid: 22873 components: - type: Transform pos: -64.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22781 + - uid: 22874 components: - type: Transform rot: -1.5707963267948966 rad @@ -153437,7 +150675,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22782 + - uid: 22875 components: - type: Transform rot: -1.5707963267948966 rad @@ -153445,7 +150683,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22783 + - uid: 22876 components: - type: Transform rot: -1.5707963267948966 rad @@ -153453,7 +150691,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22784 + - uid: 22877 components: - type: Transform rot: -1.5707963267948966 rad @@ -153461,7 +150699,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22785 + - uid: 22878 components: - type: Transform rot: 3.141592653589793 rad @@ -153469,7 +150707,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22786 + - uid: 22879 components: - type: Transform rot: 3.141592653589793 rad @@ -153477,7 +150715,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22787 + - uid: 22880 components: - type: Transform rot: 3.141592653589793 rad @@ -153485,7 +150723,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22788 + - uid: 22881 components: - type: Transform rot: 3.141592653589793 rad @@ -153493,7 +150731,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22789 + - uid: 22882 components: - type: Transform rot: 3.141592653589793 rad @@ -153501,7 +150739,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22790 + - uid: 22883 components: - type: Transform rot: 1.5707963267948966 rad @@ -153509,7 +150747,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22791 + - uid: 22884 components: - type: Transform rot: 1.5707963267948966 rad @@ -153517,7 +150755,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22792 + - uid: 22885 components: - type: Transform rot: -1.5707963267948966 rad @@ -153525,21 +150763,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22793 + - uid: 22886 components: - type: Transform pos: -51.5,-73.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22794 + - uid: 22887 components: - type: Transform pos: -8.5,-71.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22795 + - uid: 22888 components: - type: Transform rot: 1.5707963267948966 rad @@ -153547,7 +150785,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22796 + - uid: 22889 components: - type: Transform rot: 3.141592653589793 rad @@ -153555,21 +150793,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22797 + - uid: 22890 components: - type: Transform pos: -30.5,-54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22798 + - uid: 22891 components: - type: Transform pos: 56.5,59.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22799 + - uid: 22892 components: - type: Transform rot: 3.141592653589793 rad @@ -153577,7 +150815,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22800 + - uid: 22893 components: - type: Transform rot: 3.141592653589793 rad @@ -153585,7 +150823,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22801 + - uid: 22894 components: - type: Transform rot: 3.141592653589793 rad @@ -153593,14 +150831,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22802 + - uid: 22895 components: - type: Transform pos: 15.5,39.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22803 + - uid: 22896 components: - type: Transform rot: 1.5707963267948966 rad @@ -153608,7 +150846,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22804 + - uid: 22897 components: - type: Transform rot: 1.5707963267948966 rad @@ -153616,21 +150854,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22805 + - uid: 22898 components: - type: Transform pos: 9.5,34.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22806 + - uid: 22899 components: - type: Transform pos: -23.5,31.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22807 + - uid: 22900 components: - type: Transform rot: 3.141592653589793 rad @@ -153638,7 +150876,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22808 + - uid: 22901 components: - type: Transform rot: 1.5707963267948966 rad @@ -153646,28 +150884,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22809 + - uid: 22902 components: - type: Transform pos: 46.5,39.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22810 + - uid: 22903 components: - type: Transform pos: 54.5,50.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22811 + - uid: 22904 components: - type: Transform pos: 45.5,32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22812 + - uid: 22905 components: - type: Transform rot: -1.5707963267948966 rad @@ -153675,7 +150913,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22813 + - uid: 22906 components: - type: Transform rot: -1.5707963267948966 rad @@ -153683,14 +150921,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22814 + - uid: 22907 components: - type: Transform pos: -11.5,39.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22815 + - uid: 22908 components: - type: Transform rot: 3.141592653589793 rad @@ -153698,7 +150936,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22816 + - uid: 22909 components: - type: Transform rot: -1.5707963267948966 rad @@ -153706,14 +150944,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22817 + - uid: 22910 components: - type: Transform pos: -10.5,29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22818 + - uid: 22911 components: - type: Transform rot: -1.5707963267948966 rad @@ -153721,7 +150959,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22819 + - uid: 22912 components: - type: Transform rot: -1.5707963267948966 rad @@ -153729,7 +150967,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22820 + - uid: 22913 components: - type: Transform rot: 1.5707963267948966 rad @@ -153737,7 +150975,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22821 + - uid: 22914 components: - type: Transform rot: 3.141592653589793 rad @@ -153745,14 +150983,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22822 + - uid: 22915 components: - type: Transform pos: -18.5,55.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22823 + - uid: 22916 components: - type: Transform rot: -1.5707963267948966 rad @@ -153760,7 +150998,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22824 + - uid: 22917 components: - type: Transform rot: 3.141592653589793 rad @@ -153768,21 +151006,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22825 + - uid: 22918 components: - type: Transform pos: -30.5,39.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22826 + - uid: 22919 components: - type: Transform pos: -42.5,39.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22827 + - uid: 22920 components: - type: Transform rot: 3.141592653589793 rad @@ -153790,7 +151028,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22828 + - uid: 22921 components: - type: Transform rot: 3.141592653589793 rad @@ -153798,7 +151036,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22829 + - uid: 22922 components: - type: Transform rot: -1.5707963267948966 rad @@ -153806,7 +151044,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22830 + - uid: 22923 components: - type: Transform rot: 1.5707963267948966 rad @@ -153814,7 +151052,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22831 + - uid: 22924 components: - type: Transform rot: 1.5707963267948966 rad @@ -153822,96 +151060,56 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22832 + - uid: 22925 components: - type: Transform pos: 67.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22833 + - uid: 22926 components: - type: Transform pos: 67.5,-11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22834 + - uid: 22927 components: - type: Transform pos: 67.5,-3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22836 + - uid: 22928 components: - type: Transform pos: 67.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22837 + - uid: 22929 components: - type: Transform pos: 67.5,-13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22842 + - uid: 22930 components: - type: Transform pos: 78.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22843 + - uid: 22931 components: - type: Transform pos: 78.5,-36.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22844 + - uid: 22932 components: - type: Transform rot: 1.5707963267948966 rad @@ -153919,7 +151117,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22845 + - uid: 22933 components: - type: Transform rot: 3.141592653589793 rad @@ -153927,7 +151125,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22846 + - uid: 22934 components: - type: Transform rot: 1.5707963267948966 rad @@ -153935,7 +151133,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22847 + - uid: 22935 components: - type: Transform rot: -1.5707963267948966 rad @@ -153943,7 +151141,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22848 + - uid: 22936 components: - type: Transform rot: -1.5707963267948966 rad @@ -153951,7 +151149,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22849 + - uid: 22937 components: - type: Transform rot: 3.141592653589793 rad @@ -153959,7 +151157,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22850 + - uid: 22938 components: - type: Transform rot: 1.5707963267948966 rad @@ -153967,14 +151165,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22851 + - uid: 22939 components: - type: Transform pos: 59.5,-26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22852 + - uid: 22940 components: - type: Transform rot: -1.5707963267948966 rad @@ -153982,7 +151180,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22853 + - uid: 22941 components: - type: Transform rot: 1.5707963267948966 rad @@ -153990,7 +151188,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22854 + - uid: 22942 components: - type: Transform rot: 3.141592653589793 rad @@ -153998,7 +151196,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22855 + - uid: 22943 components: - type: Transform rot: 1.5707963267948966 rad @@ -154006,7 +151204,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22856 + - uid: 22944 components: - type: Transform rot: 1.5707963267948966 rad @@ -154014,7 +151212,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22857 + - uid: 22945 components: - type: Transform rot: 1.5707963267948966 rad @@ -154022,7 +151220,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22858 + - uid: 22946 components: - type: Transform rot: -1.5707963267948966 rad @@ -154030,7 +151228,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22859 + - uid: 22947 components: - type: Transform rot: 3.141592653589793 rad @@ -154038,7 +151236,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22860 + - uid: 22948 components: - type: Transform rot: 1.5707963267948966 rad @@ -154046,7 +151244,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22861 + - uid: 22949 components: - type: Transform rot: -1.5707963267948966 rad @@ -154054,7 +151252,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22862 + - uid: 22950 components: - type: Transform rot: 1.5707963267948966 rad @@ -154062,21 +151260,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22863 + - uid: 22951 components: - type: Transform pos: -8.5,-8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22864 + - uid: 22952 components: - type: Transform pos: -12.5,-8.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22865 + - uid: 22953 components: - type: Transform rot: 1.5707963267948966 rad @@ -154084,14 +151282,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22866 + - uid: 22954 components: - type: Transform pos: -15.5,-12.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22867 + - uid: 22955 components: - type: Transform rot: -1.5707963267948966 rad @@ -154099,7 +151297,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22868 + - uid: 22956 components: - type: Transform rot: -1.5707963267948966 rad @@ -154107,7 +151305,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22869 + - uid: 22957 components: - type: Transform rot: -1.5707963267948966 rad @@ -154115,21 +151313,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22870 + - uid: 22958 components: - type: Transform pos: 13.5,-31.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22871 - components: - - type: Transform - pos: -19.5,-51.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22872 + - uid: 22959 components: - type: Transform rot: 3.141592653589793 rad @@ -154137,7 +151328,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22873 + - uid: 22960 components: - type: Transform rot: 1.5707963267948966 rad @@ -154145,7 +151336,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22874 + - uid: 22961 components: - type: Transform rot: 1.5707963267948966 rad @@ -154153,14 +151344,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22875 + - uid: 22962 components: - type: Transform pos: 22.5,-83.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22876 + - uid: 22963 components: - type: Transform rot: 3.141592653589793 rad @@ -154168,14 +151359,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22877 + - uid: 22964 components: - type: Transform pos: -57.5,-18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22878 + - uid: 22965 components: - type: Transform rot: 1.5707963267948966 rad @@ -154183,14 +151374,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22879 + - uid: 22966 components: - type: Transform pos: 3.5,-73.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22880 + - uid: 22967 components: - type: Transform rot: -1.5707963267948966 rad @@ -154198,169 +151389,226 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22881 + - uid: 22968 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 - - uid: 22882 + - uid: 22969 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 - - uid: 22883 + - uid: 22970 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 22884 + - uid: 22971 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 - - uid: 22885 + - uid: 22972 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-33.5 parent: 2 - - uid: 22886 + - uid: 22973 components: - type: Transform pos: -15.5,-33.5 parent: 2 - - uid: 22887 + - uid: 22974 components: - type: Transform pos: 51.5,-89.5 parent: 2 - - uid: 22888 + - uid: 22975 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-82.5 parent: 2 - - uid: 22889 + - uid: 22976 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-82.5 parent: 2 - - uid: 22890 + - uid: 22977 components: - type: Transform pos: -59.5,-54.5 parent: 2 - - uid: 22891 + - uid: 22978 components: - type: Transform pos: -76.5,-40.5 parent: 2 - - uid: 22892 + - uid: 22979 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-46.5 parent: 2 - - uid: 22893 + - uid: 22980 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-45.5 parent: 2 - - uid: 22894 + - uid: 22981 components: - type: Transform pos: -53.5,-27.5 parent: 2 - - uid: 22895 + - uid: 22982 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-28.5 parent: 2 - - uid: 22896 + - uid: 22983 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 22897 + - uid: 22984 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 2 - - uid: 22898 + - uid: 22985 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-6.5 parent: 2 - - uid: 22899 + - uid: 22986 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-90.5 parent: 2 - - uid: 22900 + - uid: 22987 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-90.5 parent: 2 - - uid: 22901 + - uid: 22988 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,15.5 parent: 2 - - uid: 22902 + - uid: 22989 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-68.5 parent: 2 - - uid: 22903 + - uid: 22990 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-1.5 parent: 2 - - uid: 22904 + - uid: 22991 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,44.5 parent: 2 - - uid: 22905 + - uid: 22992 components: - type: Transform pos: -19.5,38.5 parent: 2 - - uid: 22906 + - uid: 22993 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,12.5 parent: 2 - - uid: 22907 + - uid: 22994 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,12.5 parent: 2 - - uid: 31677 + - uid: 22995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-57.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-59.5 + parent: 2 + - uid: 22997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-61.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-61.5 + parent: 2 + - uid: 22999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-36.5 + pos: -7.5,-57.5 + parent: 2 + - uid: 23000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-65.5 + parent: 2 + - uid: 23001 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 23002 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 23003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-66.5 + parent: 2 + - uid: 23004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-67.5 + parent: 2 + - uid: 23005 + components: + - type: Transform + pos: -24.5,-66.5 parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 22908 + - uid: 23006 components: - type: Transform rot: -1.5707963267948966 rad @@ -154368,7 +151616,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22909 + - uid: 23007 components: - type: Transform rot: 3.141592653589793 rad @@ -154376,7 +151624,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22910 + - uid: 23008 components: - type: Transform rot: 3.141592653589793 rad @@ -154384,7 +151632,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22911 + - uid: 23009 components: - type: Transform rot: 1.5707963267948966 rad @@ -154392,14 +151640,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22912 + - uid: 23010 components: - type: Transform pos: -42.5,-74.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22913 + - uid: 23011 components: - type: Transform rot: -1.5707963267948966 rad @@ -154407,7 +151655,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22914 + - uid: 23012 components: - type: Transform rot: 1.5707963267948966 rad @@ -154415,7 +151663,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22915 + - uid: 23013 components: - type: Transform rot: 1.5707963267948966 rad @@ -154423,7 +151671,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22916 + - uid: 23014 components: - type: Transform rot: 1.5707963267948966 rad @@ -154431,7 +151679,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22917 + - uid: 23015 components: - type: Transform rot: 1.5707963267948966 rad @@ -154439,7 +151687,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22918 + - uid: 23016 components: - type: Transform rot: -1.5707963267948966 rad @@ -154447,14 +151695,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22919 + - uid: 23017 components: - type: Transform pos: 57.5,34.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22920 + - uid: 23018 components: - type: Transform rot: -1.5707963267948966 rad @@ -154462,7 +151710,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22921 + - uid: 23019 components: - type: Transform rot: 1.5707963267948966 rad @@ -154470,7 +151718,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22922 + - uid: 23020 components: - type: Transform rot: 3.141592653589793 rad @@ -154478,7 +151726,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22923 + - uid: 23021 components: - type: Transform pos: 34.5,47.5 @@ -154487,7 +151735,7 @@ entities: powerLoad: 0 - proto: Protolathe entities: - - uid: 22924 + - uid: 23022 components: - type: Transform pos: 43.5,-35.5 @@ -154501,1095 +151749,1081 @@ entities: - Gold - proto: ProtolatheMachineCircuitboard entities: - - uid: 22925 + - uid: 23023 components: - type: Transform pos: -37.545918,-18.274307 parent: 2 - proto: ProximitySensor entities: - - uid: 22926 + - uid: 23024 components: - type: Transform pos: 59.550594,-52.45363 parent: 2 - proto: PsychBed entities: - - uid: 22927 + - uid: 23025 components: - type: Transform pos: -15.5,-39.5 parent: 2 - proto: Rack entities: - - uid: 22928 + - uid: 23026 components: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 22929 + - uid: 23027 components: - type: Transform pos: 29.5,-13.5 parent: 2 - - uid: 22930 + - uid: 23028 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 22931 + - uid: 23029 components: - type: Transform pos: 10.5,-16.5 parent: 2 - - uid: 22932 + - uid: 23030 components: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 22933 + - uid: 23031 components: - type: Transform pos: 22.5,-54.5 parent: 2 - - uid: 22934 + - uid: 23032 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 22935 + - uid: 23033 components: - type: Transform pos: 33.5,-13.5 parent: 2 - - uid: 22936 + - uid: 23034 components: - type: Transform pos: 31.5,-13.5 parent: 2 - - uid: 22937 + - uid: 23035 components: - type: Transform pos: 29.5,-11.5 parent: 2 - - uid: 22938 - components: - - type: Transform - pos: -6.5,-68.5 - parent: 2 - - uid: 22939 - components: - - type: Transform - pos: 4.5,-69.5 - parent: 2 - - uid: 22940 - components: - - type: Transform - pos: 6.5,-69.5 - parent: 2 - - uid: 22941 + - uid: 23036 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 - - uid: 22942 + - uid: 23037 components: - type: Transform pos: -16.5,-15.5 parent: 2 - - uid: 22943 + - uid: 23038 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 22944 + - uid: 23039 components: - type: Transform pos: 37.5,-50.5 parent: 2 - - uid: 22945 + - uid: 23040 components: - type: Transform pos: 42.5,-7.5 parent: 2 - - uid: 22946 + - uid: 23041 components: - type: Transform pos: -8.5,-10.5 parent: 2 - - uid: 22947 + - uid: 23042 components: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 22948 + - uid: 23043 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 22949 + - uid: 23044 components: - type: Transform pos: -11.5,-8.5 parent: 2 - - uid: 22950 + - uid: 23045 components: - type: Transform pos: -50.5,-29.5 parent: 2 - - uid: 22951 + - uid: 23046 components: - type: Transform pos: -50.5,-28.5 parent: 2 - - uid: 22952 + - uid: 23047 components: - type: Transform pos: -50.5,-27.5 parent: 2 - - uid: 22953 + - uid: 23048 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 22954 + - uid: 23049 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 22955 + - uid: 23050 components: - type: Transform pos: -55.5,-6.5 parent: 2 - - uid: 22956 + - uid: 23051 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 22957 + - uid: 23052 components: - type: Transform pos: -56.5,-70.5 parent: 2 - - uid: 22958 + - uid: 23053 components: - type: Transform pos: -38.5,-67.5 parent: 2 - - uid: 22959 + - uid: 23054 components: - type: Transform pos: -32.5,-62.5 parent: 2 - - uid: 22960 + - uid: 23055 components: - type: Transform pos: -31.5,-62.5 parent: 2 - - uid: 22961 + - uid: 23056 components: - type: Transform pos: -46.5,-30.5 parent: 2 - - uid: 22962 + - uid: 23057 components: - type: Transform pos: -44.5,-25.5 parent: 2 - - uid: 22963 + - uid: 23058 components: - type: Transform pos: -42.5,-24.5 parent: 2 - - uid: 22964 + - uid: 23059 components: - type: Transform pos: 35.5,-12.5 parent: 2 - - uid: 22965 + - uid: 23060 components: - type: Transform pos: -31.5,-43.5 parent: 2 - - uid: 22966 + - uid: 23061 components: - type: Transform pos: -29.5,-46.5 parent: 2 - - uid: 22967 + - uid: 23062 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 22968 + - uid: 23063 components: - type: Transform pos: -23.5,-28.5 parent: 2 - - uid: 22969 + - uid: 23064 components: - type: Transform pos: -34.5,-25.5 parent: 2 - - uid: 22970 + - uid: 23065 components: - type: Transform pos: -42.5,-20.5 parent: 2 - - uid: 22971 + - uid: 23066 components: - type: Transform pos: -42.5,-21.5 parent: 2 - - uid: 22972 + - uid: 23067 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 22973 + - uid: 23068 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 22974 + - uid: 23069 components: - type: Transform pos: -44.5,16.5 parent: 2 - - uid: 22975 + - uid: 23070 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 22976 + - uid: 23071 components: - type: Transform pos: 0.5,23.5 parent: 2 - - uid: 22977 + - uid: 23072 components: - type: Transform pos: -3.5,34.5 parent: 2 - - uid: 22978 + - uid: 23073 components: - type: Transform pos: 15.5,34.5 parent: 2 - - uid: 22979 + - uid: 23074 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 22980 + - uid: 23075 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 22981 + - uid: 23076 components: - type: Transform pos: -49.5,14.5 parent: 2 - - uid: 22982 + - uid: 23077 components: - type: Transform pos: -44.5,15.5 parent: 2 - - uid: 22983 + - uid: 23078 components: - type: Transform pos: -47.5,-3.5 parent: 2 - - uid: 22984 + - uid: 23079 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 22985 + - uid: 23080 components: - type: Transform pos: -56.5,-4.5 parent: 2 - - uid: 22986 + - uid: 23081 components: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 22987 + - uid: 23082 components: - type: Transform pos: -24.5,-67.5 parent: 2 - - uid: 22988 + - uid: 23083 components: - type: Transform pos: -23.5,-67.5 parent: 2 - - uid: 22989 + - uid: 23084 components: - type: Transform pos: 9.5,-16.5 parent: 2 - - uid: 22990 + - uid: 23085 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 22991 + - uid: 23086 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 22992 + - uid: 23087 components: - type: Transform pos: -34.5,-72.5 parent: 2 - - uid: 22993 + - uid: 23088 components: - type: Transform pos: -33.5,-72.5 parent: 2 - - uid: 22994 + - uid: 23089 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 22995 + - uid: 23090 components: - type: Transform pos: -36.5,35.5 parent: 2 - - uid: 22996 + - uid: 23091 components: - type: Transform pos: -26.5,39.5 parent: 2 - - uid: 22997 + - uid: 23092 components: - type: Transform pos: -26.5,30.5 parent: 2 - - uid: 22998 + - uid: 23093 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 22999 + - uid: 23094 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 23000 + - uid: 23095 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 23001 + - uid: 23096 components: - type: Transform pos: -6.5,-88.5 parent: 2 - - uid: 23002 + - uid: 23097 components: - type: Transform pos: -19.5,53.5 parent: 2 - - uid: 23003 + - uid: 23098 components: - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 23004 + - uid: 23099 components: - type: Transform pos: 54.5,-63.5 parent: 2 - - uid: 23005 + - uid: 23100 components: - type: Transform pos: 54.5,-64.5 parent: 2 - - uid: 23006 + - uid: 23101 components: - type: Transform pos: 54.5,-30.5 parent: 2 - - uid: 23007 + - uid: 23102 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 23008 + - uid: 23103 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 - - uid: 23009 + - uid: 23104 components: - type: Transform pos: -48.5,16.5 parent: 2 - - uid: 23010 + - uid: 23105 components: - type: Transform pos: -13.5,-13.5 parent: 2 - - uid: 23011 + - uid: 23106 components: - type: Transform pos: -13.5,-12.5 parent: 2 - - uid: 23012 - components: - - type: Transform - pos: -20.5,-51.5 - parent: 2 - - uid: 23013 + - uid: 23107 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 23014 + - uid: 23108 components: - type: Transform pos: 7.5,-80.5 parent: 2 - - uid: 23015 + - uid: 23109 components: - type: Transform pos: 31.5,27.5 parent: 2 - - uid: 23016 + - uid: 23110 components: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 23017 + - uid: 23111 components: - type: Transform pos: 6.5,-13.5 parent: 2 + - uid: 23112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-62.5 + parent: 2 - proto: RadiationCollector entities: - - uid: 23018 + - uid: 23113 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 23019 + - uid: 23114 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 23020 + - uid: 23115 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 23021 + - uid: 23116 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 23022 + - uid: 23117 components: - type: Transform pos: -68.5,-20.5 parent: 2 - - uid: 23023 + - uid: 23118 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 23024 + - uid: 23119 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 23025 + - uid: 23120 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 23026 + - uid: 23121 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 23027 + - uid: 23122 components: - type: Transform pos: -69.5,-6.5 parent: 2 - - uid: 23028 + - uid: 23123 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 23029 + - uid: 23124 components: - type: Transform pos: -67.5,-6.5 parent: 2 - proto: RadioHandheld entities: - - uid: 23030 + - uid: 23125 components: - type: Transform pos: -21.414516,35.539524 parent: 2 - proto: RagItem entities: - - uid: 23031 + - uid: 23126 components: - type: Transform pos: -7.5762715,-17.335348 parent: 2 - proto: Railing entities: - - uid: 23032 + - uid: 23127 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 23033 + - uid: 23128 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-83.5 parent: 2 - - uid: 23034 + - uid: 23129 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-83.5 parent: 2 - - uid: 23035 + - uid: 23130 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-82.5 parent: 2 - - uid: 23036 + - uid: 23131 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,18.5 parent: 2 - - uid: 23037 + - uid: 23132 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 23038 + - uid: 23133 components: - type: Transform pos: 25.5,-1.5 parent: 2 - - uid: 23039 + - uid: 23134 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 - - uid: 23040 + - uid: 23135 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 - - uid: 23041 + - uid: 23136 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 - - uid: 23042 + - uid: 23137 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 - - uid: 23043 + - uid: 23138 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 - - uid: 23044 + - uid: 23139 components: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 23045 + - uid: 23140 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 23046 + - uid: 23141 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 - - uid: 23047 + - uid: 23142 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 - - uid: 23048 + - uid: 23143 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 23049 + - uid: 23144 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 - - uid: 23050 + - uid: 23145 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 - - uid: 23051 + - uid: 23146 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 - - uid: 23052 + - uid: 23147 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 - - uid: 23053 + - uid: 23148 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 - - uid: 23054 + - uid: 23149 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 - - uid: 23055 + - uid: 23150 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 23056 + - uid: 23151 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 - - uid: 23057 + - uid: 23152 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 - - uid: 23058 + - uid: 23153 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 - - uid: 23059 + - uid: 23154 components: - type: Transform pos: 11.5,0.5 parent: 2 - - uid: 23060 + - uid: 23155 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 - - uid: 23061 + - uid: 23156 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 - - uid: 23062 + - uid: 23157 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 23063 + - uid: 23158 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 - - uid: 23064 + - uid: 23159 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 - - uid: 23065 + - uid: 23160 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 - - uid: 23066 + - uid: 23161 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 - - uid: 23067 + - uid: 23162 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 - - uid: 23068 + - uid: 23163 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 - - uid: 23069 + - uid: 23164 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 - - uid: 23070 + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 - - uid: 23071 + - uid: 23166 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 - - uid: 23072 + - uid: 23167 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 - - uid: 23073 + - uid: 23168 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 - - uid: 23074 + - uid: 23169 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 - - uid: 23075 + - uid: 23170 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 - - uid: 23076 + - uid: 23171 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 - - uid: 23077 + - uid: 23172 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 - - uid: 23078 + - uid: 23173 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 - - uid: 23079 + - uid: 23174 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 - - uid: 23080 + - uid: 23175 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 - - uid: 23081 + - uid: 23176 components: - type: Transform pos: 58.5,5.5 parent: 2 - - uid: 23082 + - uid: 23177 components: - type: Transform pos: 56.5,5.5 parent: 2 - - uid: 23083 + - uid: 23178 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 - - uid: 23084 + - uid: 23179 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 - - uid: 23085 + - uid: 23180 components: - type: Transform pos: 54.5,-9.5 parent: 2 - - uid: 23086 + - uid: 23181 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 - - uid: 23087 + - uid: 23182 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 - - uid: 23088 + - uid: 23183 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 - - uid: 23089 + - uid: 23184 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 - - uid: 23090 + - uid: 23185 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 - - uid: 23091 + - uid: 23186 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 - - uid: 23092 + - uid: 23187 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 - - uid: 23093 + - uid: 23188 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 - - uid: 23094 + - uid: 23189 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 - - uid: 23095 + - uid: 23190 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 - - uid: 23096 + - uid: 23191 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 - - uid: 23097 + - uid: 23192 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 - - uid: 23098 + - uid: 23193 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 - - uid: 23099 + - uid: 23194 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 - - uid: 23100 + - uid: 23195 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 - - uid: 23101 + - uid: 23196 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 - - uid: 23102 + - uid: 23197 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 - - uid: 23103 + - uid: 23198 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 - - uid: 23104 + - uid: 23199 components: - type: Transform pos: 60.5,-9.5 parent: 2 - - uid: 23105 + - uid: 23200 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 - - uid: 23106 + - uid: 23201 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 - - uid: 23107 + - uid: 23202 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 - - uid: 23108 + - uid: 23203 components: - type: Transform pos: 31.5,-40.5 parent: 2 - - uid: 23109 + - uid: 23204 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 - - uid: 23110 + - uid: 23205 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 - - uid: 23111 + - uid: 23206 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 - - uid: 23112 + - uid: 23207 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 - - uid: 23113 + - uid: 23208 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 - - uid: 23114 + - uid: 23209 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 - - uid: 23115 + - uid: 23210 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 - - uid: 23116 + - uid: 23211 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 - - uid: 23117 + - uid: 23212 components: - type: Transform pos: 69.5,-29.5 parent: 2 - - uid: 23118 + - uid: 23213 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-28.5 parent: 2 - - uid: 23119 + - uid: 23214 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,18.5 parent: 2 - - uid: 23120 + - uid: 23215 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 - - uid: 23121 + - uid: 23216 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 - - uid: 23122 + - uid: 23217 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 2 - - uid: 23123 + - uid: 23218 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 2 - - uid: 23124 + - uid: 23219 components: - type: Transform rot: -1.5707963267948966 rad @@ -155597,896 +152831,923 @@ entities: parent: 2 - proto: RailingCorner entities: - - uid: 23125 + - uid: 23220 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 23126 + - uid: 23221 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-82.5 parent: 2 - - uid: 23127 + - uid: 23222 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-84.5 parent: 2 - - uid: 23128 + - uid: 23223 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-82.5 parent: 2 - - uid: 23129 + - uid: 23224 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-29.5 parent: 2 - - uid: 23130 + - uid: 23225 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 - - uid: 23131 + - uid: 23226 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 - - uid: 23132 + - uid: 23227 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 2 - - uid: 23133 + - uid: 23228 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 23134 + - uid: 23229 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 - - uid: 23135 + - uid: 23230 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - - uid: 23136 + - uid: 23231 components: - type: Transform pos: 26.5,-1.5 parent: 2 - - uid: 23137 + - uid: 23232 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 - - uid: 23138 + - uid: 23233 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 - - uid: 23139 + - uid: 23234 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 23140 + - uid: 23235 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 - - uid: 23141 + - uid: 23236 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 - - uid: 23142 + - uid: 23237 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 - - uid: 23143 + - uid: 23238 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 - - uid: 23144 + - uid: 23239 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 - - uid: 23145 + - uid: 23240 components: - type: Transform pos: 32.5,-40.5 parent: 2 - - uid: 23146 + - uid: 23241 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 - - uid: 23147 + - uid: 23242 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 - - uid: 23148 + - uid: 23243 components: - type: Transform pos: 59.5,5.5 parent: 2 - - uid: 23149 + - uid: 23244 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 - - uid: 23150 + - uid: 23245 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 - - uid: 23151 + - uid: 23246 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 - - uid: 23152 + - uid: 23247 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 - - uid: 23153 + - uid: 23248 components: - type: Transform pos: 50.5,-6.5 parent: 2 - - uid: 23154 + - uid: 23249 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 - - uid: 23155 + - uid: 23250 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 - - uid: 23156 + - uid: 23251 components: - type: Transform pos: 61.5,-9.5 parent: 2 - - uid: 23157 + - uid: 23252 components: - type: Transform pos: -3.5,17.5 parent: 2 - - uid: 23158 + - uid: 23253 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 2 - - uid: 23159 + - uid: 23254 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,19.5 parent: 2 - - uid: 23160 + - uid: 23255 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 2 +- proto: RailingRound + entities: + - uid: 23256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-58.5 + parent: 2 + - uid: 23257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-60.5 + parent: 2 - proto: RandomArcade entities: - - uid: 23161 + - uid: 23258 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 23162 + - uid: 23259 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 23163 + - uid: 23260 components: - type: Transform pos: 9.5,34.5 parent: 2 - - uid: 23164 + - uid: 23261 components: - type: Transform pos: 7.5,34.5 parent: 2 - - uid: 23165 + - uid: 23262 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 - - uid: 23166 + - uid: 23263 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 - - uid: 23167 + - uid: 23264 components: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 23168 + - uid: 23265 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 23169 + - uid: 23266 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 23170 + - uid: 23267 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 23171 + - uid: 23268 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 23172 + - uid: 23269 components: - type: Transform pos: 6.5,-32.5 parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 23173 + - uid: 23270 components: - type: Transform pos: 67.5,-37.5 parent: 2 - - uid: 23174 + - uid: 23271 components: - type: Transform pos: -46.5,65.5 parent: 2 - - uid: 23175 + - uid: 23272 components: - type: Transform pos: 71.5,-28.5 parent: 2 - proto: RandomArtifactSpawner20 entities: - - uid: 23176 + - uid: 23273 components: - type: Transform pos: 50.5,51.5 parent: 2 - - uid: 23177 + - uid: 23274 components: - type: Transform pos: -20.5,-99.5 parent: 2 - - uid: 23178 + - uid: 23275 components: - type: Transform pos: 11.5,53.5 parent: 2 - - uid: 23179 + - uid: 23276 components: - type: Transform pos: -51.5,22.5 parent: 2 - - uid: 23180 + - uid: 23277 components: - type: Transform pos: 78.5,-34.5 parent: 2 - proto: RandomBoard entities: - - uid: 23181 + - uid: 23278 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-30.5 parent: 2 - - uid: 23182 + - uid: 23279 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,39.5 parent: 2 - - uid: 23183 + - uid: 23280 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,39.5 parent: 2 - - uid: 23184 + - uid: 23281 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 - - uid: 23185 + - uid: 23282 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,37.5 parent: 2 - - uid: 23186 + - uid: 23283 components: - type: Transform pos: -8.5,37.5 parent: 2 - - uid: 23187 + - uid: 23284 components: - type: Transform pos: -8.5,38.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 23188 + - uid: 23285 components: - type: Transform pos: 15.5,13.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 23189 + - uid: 23286 components: - type: Transform pos: 15.5,11.5 parent: 2 - - uid: 23190 + - uid: 23287 components: - type: Transform pos: 15.5,11.5 parent: 2 - - uid: 23191 + - uid: 23288 components: - type: Transform pos: 18.5,15.5 parent: 2 - - uid: 23192 + - uid: 23289 components: - type: Transform pos: -8.5,1.5 parent: 2 - - uid: 23193 + - uid: 23290 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 23194 + - uid: 23291 components: - type: Transform pos: 27.5,-37.5 parent: 2 + - uid: 23292 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 23196 + - uid: 23293 components: - type: Transform pos: 2.5,0.5 parent: 2 - - uid: 23197 + - uid: 23294 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 23198 + - uid: 23295 components: - type: Transform pos: -8.5,0.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 23199 + - uid: 23296 components: - type: Transform pos: 25.5,-68.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 23200 + - uid: 23297 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 23201 + - uid: 23298 components: - type: Transform pos: 67.5,10.5 parent: 2 - proto: RandomInstruments entities: - - uid: 23202 + - uid: 23299 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 23203 + - uid: 23300 components: - type: Transform pos: 54.5,-28.5 parent: 2 - proto: RandomPainting entities: - - uid: 23204 + - uid: 23301 components: - type: Transform pos: 49.5,48.5 parent: 2 - proto: RandomPosterAny entities: - - uid: 23205 + - uid: 23302 components: - type: Transform pos: -17.5,-16.5 parent: 2 - - uid: 23206 + - uid: 23303 components: - type: Transform pos: -52.5,-61.5 parent: 2 - - uid: 23207 + - uid: 23304 components: - type: Transform pos: -55.5,-57.5 parent: 2 - - uid: 23208 + - uid: 23305 components: - type: Transform pos: -57.5,-57.5 parent: 2 - proto: RandomPosterContraband entities: - - uid: 23209 + - uid: 23306 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 23210 + - uid: 23307 components: - type: Transform pos: -30.5,-45.5 parent: 2 - - uid: 23211 + - uid: 23308 components: - type: Transform pos: -24.5,-50.5 parent: 2 - - uid: 23212 + - uid: 23309 components: - type: Transform pos: -26.5,-50.5 parent: 2 - - uid: 23213 + - uid: 23310 components: - type: Transform pos: -5.5,-94.5 parent: 2 - - uid: 23214 + - uid: 23311 components: - type: Transform pos: -36.5,-92.5 parent: 2 - - uid: 23215 + - uid: 23312 components: - type: Transform pos: -48.5,-73.5 parent: 2 - - uid: 23216 + - uid: 23313 components: - type: Transform pos: -41.5,-65.5 parent: 2 - - uid: 23217 + - uid: 23314 components: - type: Transform pos: -39.5,-88.5 parent: 2 - - uid: 23218 + - uid: 23315 components: - type: Transform pos: -20.5,-94.5 parent: 2 - - uid: 23219 + - uid: 23316 components: - type: Transform pos: -29.5,-53.5 parent: 2 - - uid: 23220 + - uid: 23317 components: - type: Transform pos: -11.5,-99.5 parent: 2 - - uid: 23221 + - uid: 23318 components: - type: Transform pos: -27.5,-95.5 parent: 2 - - uid: 23222 + - uid: 23319 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 23223 + - uid: 23320 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 23224 + - uid: 23321 components: - type: Transform pos: 11.5,-54.5 parent: 2 - - uid: 23225 + - uid: 23322 components: - type: Transform pos: 11.5,-48.5 parent: 2 - - uid: 23226 + - uid: 23323 components: - type: Transform pos: -24.5,-43.5 parent: 2 - - uid: 23227 + - uid: 23324 components: - type: Transform pos: -25.5,-37.5 parent: 2 - - uid: 23228 + - uid: 23325 components: - type: Transform pos: -13.5,-32.5 parent: 2 - - uid: 23229 + - uid: 23326 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 23230 + - uid: 23327 components: - type: Transform pos: 11.5,-48.5 parent: 2 - - uid: 23231 + - uid: 23328 components: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 23232 + - uid: 23329 components: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 23233 + - uid: 23330 components: - type: Transform pos: 41.5,-50.5 parent: 2 - - uid: 23234 + - uid: 23331 components: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 23235 + - uid: 23332 components: - type: Transform pos: 61.5,-16.5 parent: 2 - - uid: 23236 + - uid: 23333 components: - type: Transform pos: 55.5,1.5 parent: 2 - - uid: 23237 + - uid: 23334 components: - type: Transform pos: 54.5,30.5 parent: 2 - - uid: 23238 + - uid: 23335 components: - type: Transform pos: 52.5,30.5 parent: 2 - - uid: 23239 + - uid: 23336 components: - type: Transform pos: 59.5,30.5 parent: 2 - - uid: 23240 + - uid: 23337 components: - type: Transform pos: 60.5,27.5 parent: 2 - - uid: 23241 + - uid: 23338 components: - type: Transform pos: 12.5,-13.5 parent: 2 - - uid: 23242 + - uid: 23339 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 23243 + - uid: 23340 components: - type: Transform pos: -9.5,-94.5 parent: 2 - - uid: 23244 + - uid: 23341 components: - type: Transform pos: -17.5,-95.5 parent: 2 - - uid: 23245 + - uid: 23342 components: - type: Transform pos: -24.5,-94.5 parent: 2 - - uid: 23246 + - uid: 23343 components: - type: Transform pos: -11.5,63.5 parent: 2 - - uid: 23247 + - uid: 23344 components: - type: Transform pos: 53.5,-66.5 parent: 2 - - uid: 23248 + - uid: 23345 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 23249 + - uid: 23346 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 23250 + - uid: 23347 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 23251 + - uid: 23348 components: - type: Transform pos: 59.5,-27.5 parent: 2 - - uid: 23252 + - uid: 23349 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 23253 + - uid: 23350 components: - type: Transform pos: 69.5,-62.5 parent: 2 - - uid: 23254 + - uid: 23351 components: - type: Transform pos: 58.5,-61.5 parent: 2 - - uid: 23255 + - uid: 23352 components: - type: Transform pos: 57.5,-67.5 parent: 2 - - uid: 23256 + - uid: 23353 components: - type: Transform pos: 48.5,-64.5 parent: 2 - - uid: 23257 + - uid: 23354 components: - type: Transform pos: -29.5,-62.5 parent: 2 - - uid: 23258 + - uid: 23355 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 - - uid: 23259 + - uid: 23356 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 - - uid: 23260 + - uid: 23357 components: - type: Transform pos: 4.5,-72.5 parent: 2 - proto: RandomPosterLegit entities: - - uid: 23261 + - uid: 23358 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 + - uid: 23359 components: - type: Transform pos: -40.5,-7.5 parent: 2 - - uid: 23262 + - uid: 23360 components: - type: Transform pos: -24.5,14.5 parent: 2 - - uid: 23263 + - uid: 23361 components: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 23264 + - uid: 23362 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 - - uid: 23265 + - uid: 23363 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 - - uid: 23266 + - uid: 23364 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 - - uid: 23267 + - uid: 23365 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 - - uid: 23268 + - uid: 23366 components: - type: Transform pos: 50.5,-80.5 parent: 2 - - uid: 23269 + - uid: 23367 components: - type: Transform pos: 49.5,-70.5 parent: 2 - - uid: 23270 + - uid: 23368 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 - - uid: 23271 + - uid: 23369 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 - - uid: 23272 + - uid: 23370 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 - - uid: 23273 + - uid: 23371 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 - - uid: 23274 + - uid: 23372 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 - - uid: 23275 + - uid: 23373 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 - - uid: 23276 + - uid: 23374 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 - - uid: 23277 + - uid: 23375 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 - - uid: 23278 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 2 - - uid: 23279 + - uid: 23376 components: - type: Transform pos: 32.5,-91.5 parent: 2 - - uid: 23280 + - uid: 23377 components: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 23281 + - uid: 23378 components: - type: Transform pos: 34.5,-57.5 parent: 2 - - uid: 23282 + - uid: 23379 components: - type: Transform pos: 41.5,-65.5 parent: 2 - - uid: 23283 + - uid: 23380 components: - type: Transform pos: -44.5,12.5 parent: 2 - - uid: 23284 + - uid: 23381 components: - type: Transform pos: 28.5,-79.5 parent: 2 - - uid: 23285 + - uid: 23382 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 - - uid: 23286 + - uid: 23383 components: - type: Transform pos: 5.5,-75.5 parent: 2 - - uid: 23287 + - uid: 23384 components: - type: Transform pos: -17.5,-36.5 parent: 2 +- proto: RandomProduce + entities: + - uid: 23385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-60.5 + parent: 2 - proto: RandomSnacks entities: - - uid: 23288 + - uid: 23386 components: - type: Transform rot: -1.5707963267948966 rad @@ -156494,22 +153755,22 @@ entities: parent: 2 - proto: RandomSoap entities: - - uid: 23289 + - uid: 23387 components: - type: Transform pos: -6.5,-68.5 parent: 2 - - uid: 23290 + - uid: 23388 components: - type: Transform pos: -50.5,62.5 parent: 2 - - uid: 23291 + - uid: 23389 components: - type: Transform pos: -56.5,-62.5 parent: 2 - - uid: 23292 + - uid: 23390 components: - type: Transform rot: 1.5707963267948966 rad @@ -156517,399 +153778,388 @@ entities: parent: 2 - proto: RandomSpawner entities: - - uid: 23293 + - uid: 23391 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 23294 + - uid: 23392 components: - type: Transform pos: 16.5,-65.5 parent: 2 - - uid: 23295 + - uid: 23393 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 23296 + - uid: 23394 components: - type: Transform pos: 25.5,7.5 parent: 2 - - uid: 23297 + - uid: 23395 components: - type: Transform pos: -6.5,-74.5 parent: 2 - - uid: 23298 + - uid: 23396 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 23299 + - uid: 23397 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 23300 + - uid: 23398 components: - type: Transform pos: 5.5,13.5 parent: 2 - - uid: 23301 + - uid: 23399 components: - type: Transform pos: 6.5,15.5 parent: 2 - - uid: 23302 + - uid: 23400 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 23303 + - uid: 23401 components: - type: Transform pos: 33.5,0.5 parent: 2 - - uid: 23304 + - uid: 23402 components: - type: Transform pos: 32.5,-2.5 parent: 2 - - uid: 23305 + - uid: 23403 components: - type: Transform pos: 26.5,-11.5 parent: 2 - - uid: 23306 + - uid: 23404 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 23307 + - uid: 23405 components: - type: Transform pos: -2.5,-46.5 parent: 2 - - uid: 23308 + - uid: 23406 components: - type: Transform pos: 35.5,-17.5 parent: 2 - - uid: 23309 + - uid: 23407 components: - type: Transform pos: 49.5,32.5 parent: 2 - - uid: 23310 + - uid: 23408 components: - type: Transform pos: 49.5,33.5 parent: 2 - - uid: 23311 + - uid: 23409 components: - type: Transform pos: 50.5,32.5 parent: 2 - - uid: 23312 + - uid: 23410 components: - type: Transform pos: 48.5,32.5 parent: 2 - - uid: 23313 + - uid: 23411 components: - type: Transform pos: 50.5,33.5 parent: 2 - - uid: 23314 + - uid: 23412 components: - type: Transform pos: 54.5,-12.5 parent: 2 - - uid: 23315 + - uid: 23413 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 23316 + - uid: 23414 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 23317 + - uid: 23415 components: - type: Transform pos: 50.5,-45.5 parent: 2 - - uid: 23318 + - uid: 23416 components: - type: Transform pos: 42.5,-49.5 parent: 2 - - uid: 23319 + - uid: 23417 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 23320 + - uid: 23418 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 23321 + - uid: 23419 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 23322 - components: - - type: Transform - pos: -7.5,-53.5 - parent: 2 - - uid: 23323 + - uid: 23420 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 - - uid: 23324 + - uid: 23421 components: - type: Transform pos: -37.5,-6.5 parent: 2 - - uid: 23325 + - uid: 23422 components: - type: Transform pos: -25.5,-67.5 parent: 2 - - uid: 23326 + - uid: 23423 components: - type: Transform pos: -24.5,-53.5 parent: 2 - - uid: 23327 + - uid: 23424 components: - type: Transform pos: -26.5,-46.5 parent: 2 - - uid: 23328 + - uid: 23425 components: - type: Transform pos: -20.5,-29.5 parent: 2 - - uid: 23329 + - uid: 23426 components: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 23330 + - uid: 23427 components: - type: Transform pos: -23.5,-13.5 parent: 2 - - uid: 23331 + - uid: 23428 components: - type: Transform pos: -53.5,-18.5 parent: 2 - - uid: 23332 + - uid: 23429 components: - type: Transform pos: -32.5,-34.5 parent: 2 - - uid: 23333 + - uid: 23430 components: - type: Transform pos: -33.5,-46.5 parent: 2 - - uid: 23334 + - uid: 23431 components: - type: Transform pos: -37.5,-76.5 parent: 2 - - uid: 23335 + - uid: 23432 components: - type: Transform pos: -46.5,-78.5 parent: 2 - - uid: 23336 + - uid: 23433 components: - type: Transform pos: -45.5,-73.5 parent: 2 - - uid: 23337 + - uid: 23434 components: - type: Transform pos: -52.5,-74.5 parent: 2 - - uid: 23338 + - uid: 23435 components: - type: Transform pos: -45.5,-28.5 parent: 2 - - uid: 23339 + - uid: 23436 components: - type: Transform pos: -57.5,-33.5 parent: 2 - - uid: 23340 + - uid: 23437 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 23341 + - uid: 23438 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 - - uid: 23342 + - uid: 23439 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 - - uid: 23343 + - uid: 23440 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 - - uid: 23344 + - uid: 23441 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 - - uid: 23345 + - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 - - uid: 23346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-84.5 - parent: 2 - - uid: 23347 + - uid: 23443 components: - type: Transform pos: 48.5,33.5 parent: 2 - - uid: 23348 + - uid: 23444 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 23349 + - uid: 23445 components: - type: Transform pos: 26.5,-18.5 parent: 2 - - uid: 23350 + - uid: 23446 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 - - uid: 23351 + - uid: 23447 components: - type: Transform pos: -15.5,36.5 parent: 2 - - uid: 23352 + - uid: 23448 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 23353 + - uid: 23449 components: - type: Transform pos: -17.5,44.5 parent: 2 - - uid: 23354 + - uid: 23450 components: - type: Transform pos: -14.5,45.5 parent: 2 - - uid: 23355 + - uid: 23451 components: - type: Transform pos: 0.5,32.5 parent: 2 - - uid: 23356 + - uid: 23452 components: - type: Transform pos: 53.5,36.5 parent: 2 - - uid: 23357 + - uid: 23453 components: - type: Transform pos: 65.5,22.5 parent: 2 - - uid: 23358 + - uid: 23454 components: - type: Transform pos: -23.5,-98.5 parent: 2 - - uid: 23359 + - uid: 23455 components: - type: Transform pos: -33.5,-97.5 parent: 2 - - uid: 23360 + - uid: 23456 components: - type: Transform pos: -41.5,-89.5 parent: 2 - - uid: 23361 + - uid: 23457 components: - type: Transform pos: -43.5,-91.5 parent: 2 - - uid: 23362 + - uid: 23458 components: - type: Transform pos: -10.5,-97.5 parent: 2 - - uid: 23363 + - uid: 23459 components: - type: Transform pos: -8.5,-85.5 parent: 2 - - uid: 23364 + - uid: 23460 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 - - uid: 23365 + - uid: 23461 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 - - uid: 23366 + - uid: 23462 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 - - uid: 23367 + - uid: 23463 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 - - uid: 23368 + - uid: 23464 components: - type: Transform pos: 13.5,7.5 parent: 2 - - uid: 23369 + - uid: 23465 components: - type: Transform rot: 3.141592653589793 rad @@ -156917,72 +154167,72 @@ entities: parent: 2 - proto: RCD entities: - - uid: 23370 + - uid: 23466 components: - type: Transform pos: -35.581818,-15.369191 parent: 2 - proto: RCDAmmo entities: - - uid: 23371 + - uid: 23467 components: - type: Transform pos: -35.753693,-15.681691 parent: 2 - proto: ReagentContainerFlour entities: - - uid: 23372 + - uid: 23468 components: - type: Transform pos: 2.337051,6.9047713 parent: 2 - - uid: 23373 + - uid: 23469 components: - type: Transform pos: 2.696426,6.7797713 parent: 2 - - uid: 23374 + - uid: 23470 components: - type: Transform pos: 2.399551,6.5610213 parent: 2 - - uid: 23375 + - uid: 23471 components: - type: Transform pos: 54.086075,18.83411 parent: 2 - - uid: 23376 + - uid: 23472 components: - type: Transform pos: 53.9767,18.568485 parent: 2 - - uid: 23377 + - uid: 23473 components: - type: Transform pos: 54.2892,18.568485 parent: 2 - proto: ReagentContainerRice entities: - - uid: 23378 + - uid: 23474 components: - type: Transform pos: -22.276304,44.96307 parent: 2 - - uid: 23379 + - uid: 23475 components: - type: Transform pos: -22.620054,44.759945 parent: 2 - proto: ReagentContainerSugar entities: - - uid: 23380 + - uid: 23476 components: - type: Transform pos: 4.6055,7.306335 parent: 2 - proto: Recycler entities: - - uid: 23381 + - uid: 23477 components: - type: Transform rot: 1.5707963267948966 rad @@ -156990,335 +154240,335 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 26027 + - 26146 - proto: ReinforcedPlasmaWindow entities: - - uid: 23382 + - uid: 23478 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-87.5 parent: 2 - - uid: 23383 + - uid: 23479 components: - type: Transform pos: -42.5,-37.5 parent: 2 - - uid: 23384 + - uid: 23480 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 - - uid: 23385 + - uid: 23481 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 - - uid: 23386 + - uid: 23482 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 - - uid: 23387 + - uid: 23483 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 - - uid: 23388 + - uid: 23484 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 - - uid: 23389 + - uid: 23485 components: - type: Transform pos: -23.5,2.5 parent: 2 - - uid: 23390 + - uid: 23486 components: - type: Transform pos: 71.5,-27.5 parent: 2 - - uid: 23391 + - uid: 23487 components: - type: Transform pos: 29.5,26.5 parent: 2 - - uid: 23392 + - uid: 23488 components: - type: Transform pos: -15.5,2.5 parent: 2 - - uid: 23393 + - uid: 23489 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 - - uid: 23394 + - uid: 23490 components: - type: Transform pos: 29.5,24.5 parent: 2 - - uid: 23395 + - uid: 23491 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 - - uid: 23396 + - uid: 23492 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 23397 + - uid: 23493 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 - - uid: 23398 + - uid: 23494 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 - - uid: 23399 + - uid: 23495 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 - - uid: 23400 + - uid: 23496 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 - - uid: 23401 + - uid: 23497 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 - - uid: 23402 + - uid: 23498 components: - type: Transform pos: 66.5,-39.5 parent: 2 - - uid: 23403 + - uid: 23499 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 23404 + - uid: 23500 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 23405 + - uid: 23501 components: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 23406 + - uid: 23502 components: - type: Transform pos: -56.5,-12.5 parent: 2 - - uid: 23407 + - uid: 23503 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 23408 + - uid: 23504 components: - type: Transform pos: -56.5,-14.5 parent: 2 - - uid: 23409 + - uid: 23505 components: - type: Transform pos: -68.5,-22.5 parent: 2 - - uid: 23410 + - uid: 23506 components: - type: Transform pos: -67.5,-22.5 parent: 2 - - uid: 23411 + - uid: 23507 components: - type: Transform pos: -66.5,-22.5 parent: 2 - - uid: 23412 + - uid: 23508 components: - type: Transform pos: -65.5,-22.5 parent: 2 - - uid: 23413 + - uid: 23509 components: - type: Transform pos: -64.5,-22.5 parent: 2 - - uid: 23414 + - uid: 23510 components: - type: Transform pos: -47.5,-54.5 parent: 2 - - uid: 23415 + - uid: 23511 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 23416 + - uid: 23512 components: - type: Transform pos: -47.5,-52.5 parent: 2 - - uid: 23417 + - uid: 23513 components: - type: Transform pos: -47.5,-48.5 parent: 2 - - uid: 23418 + - uid: 23514 components: - type: Transform pos: -47.5,-46.5 parent: 2 - - uid: 23419 + - uid: 23515 components: - type: Transform pos: -47.5,-44.5 parent: 2 - - uid: 23420 + - uid: 23516 components: - type: Transform pos: -47.5,-42.5 parent: 2 - - uid: 23421 + - uid: 23517 components: - type: Transform pos: -49.5,-87.5 parent: 2 - - uid: 23422 + - uid: 23518 components: - type: Transform pos: -0.5,60.5 parent: 2 - - uid: 23423 + - uid: 23519 components: - type: Transform pos: -2.5,60.5 parent: 2 - - uid: 23424 + - uid: 23520 components: - type: Transform pos: 5.5,69.5 parent: 2 - - uid: 23425 + - uid: 23521 components: - type: Transform pos: -8.5,69.5 parent: 2 - - uid: 23426 + - uid: 23522 components: - type: Transform pos: -56.5,-15.5 parent: 2 - - uid: 23427 + - uid: 23523 components: - type: Transform pos: 68.5,-39.5 parent: 2 - - uid: 23428 + - uid: 23524 components: - type: Transform pos: 73.5,-30.5 parent: 2 - - uid: 23429 + - uid: 23525 components: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 23430 + - uid: 23526 components: - type: Transform pos: 69.5,-36.5 parent: 2 - - uid: 23431 + - uid: 23527 components: - type: Transform pos: 69.5,-38.5 parent: 2 - - uid: 23432 + - uid: 23528 components: - type: Transform pos: -44.5,-37.5 parent: 2 - - uid: 23433 + - uid: 23529 components: - type: Transform pos: 71.5,-30.5 parent: 2 - - uid: 23434 + - uid: 23530 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 - - uid: 23435 + - uid: 23531 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 - - uid: 23436 + - uid: 23532 components: - type: Transform pos: 9.5,-18.5 parent: 2 - - uid: 23437 + - uid: 23533 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 - - uid: 23438 + - uid: 23534 components: - type: Transform pos: 67.5,-32.5 parent: 2 - - uid: 23439 + - uid: 23535 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 - - uid: 23440 + - uid: 23536 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 - - uid: 23441 + - uid: 23537 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 - - uid: 23442 + - uid: 23538 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-89.5 parent: 2 - - uid: 23443 + - uid: 23539 components: - type: Transform rot: 1.5707963267948966 rad @@ -157326,36 +154576,36 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindowDiagonal entities: - - uid: 23444 + - uid: 23540 components: - type: Transform pos: -50.5,-88.5 parent: 2 - - uid: 23445 + - uid: 23541 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-86.5 parent: 2 - - uid: 23446 + - uid: 23542 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-88.5 parent: 2 - - uid: 23447 + - uid: 23543 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-85.5 parent: 2 - - uid: 23448 + - uid: 23544 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-89.5 parent: 2 - - uid: 23449 + - uid: 23545 components: - type: Transform rot: -1.5707963267948966 rad @@ -157363,3298 +154613,3303 @@ entities: parent: 2 - proto: ReinforcedWindow entities: - - uid: 23450 + - uid: 23546 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 23550 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-91.5 parent: 2 - - uid: 23451 + - uid: 23551 components: - type: Transform pos: -19.5,-91.5 parent: 2 - - uid: 23452 + - uid: 23552 components: - type: Transform pos: -27.5,-90.5 parent: 2 - - uid: 23453 + - uid: 23553 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,57.5 parent: 2 - - uid: 23454 + - uid: 23554 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,57.5 parent: 2 - - uid: 23455 + - uid: 23555 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,56.5 parent: 2 - - uid: 23456 + - uid: 23556 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,58.5 parent: 2 - - uid: 23457 + - uid: 23557 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,58.5 parent: 2 - - uid: 23458 + - uid: 23558 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-91.5 parent: 2 - - uid: 23459 + - uid: 23559 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 - - uid: 23460 + - uid: 23560 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-12.5 parent: 2 - - uid: 23461 + - uid: 23561 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 23462 + - uid: 23562 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-40.5 parent: 2 - - uid: 23463 + - uid: 23563 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 - - uid: 23464 + - uid: 23564 components: - type: Transform pos: -61.5,-35.5 parent: 2 - - uid: 23465 + - uid: 23565 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 - - uid: 23466 + - uid: 23566 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 - - uid: 23467 + - uid: 23567 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 - - uid: 23468 + - uid: 23568 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 - - uid: 23469 + - uid: 23569 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 - - uid: 23470 + - uid: 23570 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 - - uid: 23471 + - uid: 23571 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 - - uid: 23472 + - uid: 23572 components: - type: Transform pos: -64.5,-43.5 parent: 2 - - uid: 23473 + - uid: 23573 components: - type: Transform pos: -76.5,-32.5 parent: 2 - - uid: 23474 + - uid: 23574 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 - - uid: 23475 + - uid: 23575 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 - - uid: 23476 + - uid: 23576 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 - - uid: 23477 + - uid: 23577 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 - - uid: 23478 + - uid: 23578 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 - - uid: 23479 + - uid: 23579 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 - - uid: 23480 + - uid: 23580 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 - - uid: 23481 + - uid: 23581 components: - type: Transform pos: 69.5,-42.5 parent: 2 - - uid: 23482 + - uid: 23582 components: - type: Transform pos: 68.5,-42.5 parent: 2 - - uid: 23483 + - uid: 23583 components: - type: Transform pos: 78.5,-45.5 parent: 2 - - uid: 23484 + - uid: 23584 components: - type: Transform pos: 3.5,-39.5 parent: 2 - - uid: 23485 + - uid: 23585 components: - type: Transform pos: 70.5,-42.5 parent: 2 - - uid: 23486 + - uid: 23586 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 - - uid: 23487 + - uid: 23587 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 - - uid: 23488 + - uid: 23588 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 - - uid: 23489 + - uid: 23589 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 - - uid: 23490 + - uid: 23590 components: - type: Transform pos: 32.5,-9.5 parent: 2 - - uid: 23491 + - uid: 23591 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 23492 + - uid: 23592 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 - - uid: 23493 + - uid: 23593 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 23494 + - uid: 23594 components: - type: Transform pos: -18.5,-89.5 parent: 2 - - uid: 23495 + - uid: 23595 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 - - uid: 23496 - components: - - type: Transform - pos: 7.5,-59.5 - parent: 2 - - uid: 23497 + - uid: 23596 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 - - uid: 23498 + - uid: 23597 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 - - uid: 23499 + - uid: 23598 components: - type: Transform pos: -26.5,-91.5 parent: 2 - - uid: 23500 + - uid: 23599 components: - type: Transform pos: -1.5,-35.5 parent: 2 - - uid: 23501 + - uid: 23600 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 - - uid: 23502 + - uid: 23601 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 - - uid: 23503 + - uid: 23602 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 23504 + - uid: 23603 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 - - uid: 23505 + - uid: 23604 components: - type: Transform pos: -45.5,-50.5 parent: 2 - - uid: 23506 + - uid: 23605 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 - - uid: 23507 + - uid: 23606 components: - type: Transform pos: 20.5,-35.5 parent: 2 - - uid: 23508 + - uid: 23607 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 23509 + - uid: 23608 components: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 23510 + - uid: 23609 components: - type: Transform pos: -16.5,-1.5 parent: 2 - - uid: 23511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 2 - - uid: 23512 + - uid: 23610 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 - - uid: 23513 + - uid: 23611 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 23514 + - uid: 23612 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 23515 + - uid: 23613 components: - type: Transform pos: 23.5,-12.5 parent: 2 - - uid: 23516 + - uid: 23614 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 23517 + - uid: 23615 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 - - uid: 23518 + - uid: 23616 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 - - uid: 23519 + - uid: 23617 components: - type: Transform pos: 31.5,-38.5 parent: 2 - - uid: 23520 + - uid: 23618 components: - type: Transform pos: 18.5,-38.5 parent: 2 - - uid: 23521 + - uid: 23619 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 - - uid: 23522 + - uid: 23620 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 - - uid: 23523 + - uid: 23621 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 - - uid: 23524 + - uid: 23622 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 - - uid: 23525 + - uid: 23623 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 - - uid: 23526 + - uid: 23624 components: - type: Transform pos: 43.5,7.5 parent: 2 - - uid: 23527 + - uid: 23625 components: - type: Transform pos: 23.5,-11.5 parent: 2 - - uid: 23528 + - uid: 23626 components: - type: Transform pos: 35.5,18.5 parent: 2 - - uid: 23529 + - uid: 23627 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 - - uid: 23530 + - uid: 23628 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 - - uid: 23531 + - uid: 23629 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 - - uid: 23532 + - uid: 23630 components: - type: Transform pos: 37.5,-21.5 parent: 2 - - uid: 23533 + - uid: 23631 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 23534 + - uid: 23632 components: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 23535 + - uid: 23633 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 23536 + - uid: 23634 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 23537 + - uid: 23635 components: - type: Transform pos: 17.5,-36.5 parent: 2 - - uid: 23538 + - uid: 23636 components: - type: Transform pos: 19.5,-38.5 parent: 2 - - uid: 23539 + - uid: 23637 components: - type: Transform pos: 32.5,-38.5 parent: 2 - - uid: 23540 + - uid: 23638 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 23541 + - uid: 23639 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 23542 + - uid: 23640 components: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 23543 + - uid: 23641 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 - - uid: 23544 + - uid: 23642 components: - type: Transform pos: 48.5,-0.5 parent: 2 - - uid: 23545 + - uid: 23643 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 - - uid: 23546 + - uid: 23644 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 - - uid: 23547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 2 - - uid: 23548 + - uid: 23645 components: - type: Transform pos: 12.5,-33.5 parent: 2 - - uid: 23549 + - uid: 23646 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 23550 + - uid: 23647 components: - type: Transform pos: 2.5,-39.5 parent: 2 - - uid: 23551 + - uid: 23648 components: - type: Transform pos: -18.5,-58.5 parent: 2 - - uid: 23552 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 2 - - uid: 23553 + - uid: 23649 components: - type: Transform pos: 27.5,22.5 parent: 2 - - uid: 23554 + - uid: 23650 components: - type: Transform pos: -27.5,-89.5 parent: 2 - - uid: 23555 + - uid: 23651 components: - type: Transform pos: -48.5,-81.5 parent: 2 - - uid: 23556 + - uid: 23652 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 23557 + - uid: 23653 components: - type: Transform pos: 21.5,-15.5 parent: 2 - - uid: 23558 + - uid: 23654 components: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 23559 + - uid: 23655 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 23560 + - uid: 23656 components: - type: Transform pos: 9.5,13.5 parent: 2 - - uid: 23561 + - uid: 23657 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 - - uid: 23562 + - uid: 23658 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 - - uid: 23563 + - uid: 23659 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 - - uid: 23564 + - uid: 23660 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 - - uid: 23565 + - uid: 23661 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 - - uid: 23566 + - uid: 23662 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 23567 + - uid: 23663 components: - type: Transform pos: 16.5,-68.5 parent: 2 - - uid: 23568 + - uid: 23664 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 - - uid: 23569 + - uid: 23665 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 - - uid: 23570 + - uid: 23666 components: - type: Transform pos: -27.5,-88.5 parent: 2 - - uid: 23571 + - uid: 23667 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 - - uid: 23572 + - uid: 23668 components: - type: Transform pos: -1.5,-31.5 parent: 2 - - uid: 23573 + - uid: 23669 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 23574 + - uid: 23670 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 - - uid: 23575 + - uid: 23671 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 - - uid: 23576 + - uid: 23672 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 - - uid: 23577 + - uid: 23673 components: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 23578 + - uid: 23674 components: - type: Transform pos: 37.5,-36.5 parent: 2 - - uid: 23579 + - uid: 23675 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 - - uid: 23580 + - uid: 23676 components: - type: Transform pos: -29.5,45.5 parent: 2 - - uid: 23581 + - uid: 23677 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 23582 + - uid: 23678 components: - type: Transform pos: -18.5,-90.5 parent: 2 - - uid: 23583 + - uid: 23679 components: - type: Transform pos: -24.5,-91.5 parent: 2 - - uid: 23584 + - uid: 23680 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 - - uid: 23585 + - uid: 23681 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 - - uid: 23586 + - uid: 23682 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 - - uid: 23587 + - uid: 23683 components: - type: Transform pos: 15.5,18.5 parent: 2 - - uid: 23588 + - uid: 23684 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 23589 + - uid: 23685 components: - type: Transform pos: 18.5,-65.5 parent: 2 - - uid: 23590 + - uid: 23686 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 - - uid: 23591 + - uid: 23687 components: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 23592 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 2 - - uid: 23593 + - uid: 23688 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 - - uid: 23594 + - uid: 23689 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 23595 + - uid: 23690 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 - - uid: 23596 + - uid: 23691 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 23597 + - uid: 23692 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 - - uid: 23598 + - uid: 23693 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 - - uid: 23599 + - uid: 23694 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 - - uid: 23600 + - uid: 23695 components: - type: Transform pos: -18.5,-88.5 parent: 2 - - uid: 23601 + - uid: 23696 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 - - uid: 23602 + - uid: 23697 components: - type: Transform pos: -1.5,-33.5 parent: 2 - - uid: 23603 + - uid: 23698 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 23604 + - uid: 23699 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 23605 + - uid: 23700 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 23606 + - uid: 23701 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 23607 + - uid: 23702 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 - - uid: 23608 + - uid: 23703 components: - type: Transform pos: 18.5,-66.5 parent: 2 - - uid: 23609 + - uid: 23704 components: - type: Transform pos: 42.5,-23.5 parent: 2 - - uid: 23610 + - uid: 23705 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 23611 + - uid: 23706 components: - type: Transform pos: 41.5,-23.5 parent: 2 - - uid: 23612 + - uid: 23707 components: - type: Transform pos: -2.5,42.5 parent: 2 - - uid: 23613 + - uid: 23708 components: - type: Transform pos: 6.5,25.5 parent: 2 - - uid: 23614 + - uid: 23709 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 23615 + - uid: 23710 components: - type: Transform pos: 18.5,32.5 parent: 2 - - uid: 23616 + - uid: 23711 components: - type: Transform pos: 18.5,33.5 parent: 2 - - uid: 23617 + - uid: 23712 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 - - uid: 23618 + - uid: 23713 components: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 23619 + - uid: 23714 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 - - uid: 23620 + - uid: 23715 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 - - uid: 23621 + - uid: 23716 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 - - uid: 23622 + - uid: 23717 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 - - uid: 23623 + - uid: 23718 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 - - uid: 23624 + - uid: 23719 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 - - uid: 23625 + - uid: 23720 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 - - uid: 23626 + - uid: 23721 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 - - uid: 23627 + - uid: 23722 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 - - uid: 23628 + - uid: 23723 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 - - uid: 23629 + - uid: 23724 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 - - uid: 23630 + - uid: 23725 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 - - uid: 23631 + - uid: 23726 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 - - uid: 23632 + - uid: 23727 components: - type: Transform pos: 46.5,9.5 parent: 2 - - uid: 23633 + - uid: 23728 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 - - uid: 23634 + - uid: 23729 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 - - uid: 23635 + - uid: 23730 components: - type: Transform pos: 24.5,-58.5 parent: 2 - - uid: 23636 + - uid: 23731 components: - type: Transform pos: 24.5,-59.5 parent: 2 - - uid: 23637 + - uid: 23732 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 23638 + - uid: 23733 components: - type: Transform pos: 66.5,23.5 parent: 2 - - uid: 23639 + - uid: 23734 components: - type: Transform pos: 64.5,27.5 parent: 2 - - uid: 23640 + - uid: 23735 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 23641 + - uid: 23736 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 - - uid: 23642 + - uid: 23737 components: - type: Transform pos: 60.5,-4.5 parent: 2 - - uid: 23643 + - uid: 23738 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 - - uid: 23644 + - uid: 23739 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 - - uid: 23645 + - uid: 23740 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 - - uid: 23646 + - uid: 23741 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 23647 + - uid: 23742 components: - type: Transform pos: 58.5,-15.5 parent: 2 - - uid: 23648 + - uid: 23743 components: - type: Transform pos: 56.5,-15.5 parent: 2 - - uid: 23649 + - uid: 23744 components: - type: Transform pos: 55.5,-15.5 parent: 2 - - uid: 23650 + - uid: 23745 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 23651 + - uid: 23746 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 23652 + - uid: 23747 components: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 23653 + - uid: 23748 components: - type: Transform pos: 61.5,-20.5 parent: 2 - - uid: 23654 + - uid: 23749 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 23655 + - uid: 23750 components: - type: Transform pos: 61.5,-24.5 parent: 2 - - uid: 23656 + - uid: 23751 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 23657 + - uid: 23752 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 23658 + - uid: 23753 components: - type: Transform pos: 61.5,-18.5 parent: 2 - - uid: 23659 + - uid: 23754 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 - - uid: 23660 + - uid: 23755 components: - type: Transform pos: 64.5,-37.5 parent: 2 - - uid: 23661 + - uid: 23756 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 23662 + - uid: 23757 components: - type: Transform pos: 77.5,-32.5 parent: 2 - - uid: 23663 + - uid: 23758 components: - type: Transform pos: 78.5,-32.5 parent: 2 - - uid: 23664 + - uid: 23759 components: - type: Transform pos: 77.5,-38.5 parent: 2 - - uid: 23665 + - uid: 23760 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 - - uid: 23666 + - uid: 23761 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 23667 + - uid: 23762 components: - type: Transform pos: 61.5,-56.5 parent: 2 - - uid: 23668 + - uid: 23763 components: - type: Transform pos: 61.5,-50.5 parent: 2 - - uid: 23669 + - uid: 23764 components: - type: Transform pos: 63.5,-50.5 parent: 2 - - uid: 23670 + - uid: 23765 components: - type: Transform pos: 62.5,-56.5 parent: 2 - - uid: 23671 + - uid: 23766 components: - type: Transform pos: 58.5,-52.5 parent: 2 - - uid: 23672 + - uid: 23767 components: - type: Transform pos: 58.5,-51.5 parent: 2 - - uid: 23673 + - uid: 23768 components: - type: Transform pos: 66.5,-52.5 parent: 2 - - uid: 23674 + - uid: 23769 components: - type: Transform pos: 66.5,-51.5 parent: 2 - - uid: 23675 + - uid: 23770 components: - type: Transform pos: 63.5,-56.5 parent: 2 - - uid: 23676 + - uid: 23771 components: - type: Transform pos: 54.5,-51.5 parent: 2 - - uid: 23677 + - uid: 23772 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 23678 + - uid: 23773 components: - type: Transform pos: 54.5,-53.5 parent: 2 - - uid: 23679 + - uid: 23774 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 23680 + - uid: 23775 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 23681 + - uid: 23776 components: - type: Transform pos: 79.5,-35.5 parent: 2 - - uid: 23682 + - uid: 23777 components: - type: Transform pos: 58.5,-25.5 parent: 2 - - uid: 23683 + - uid: 23778 components: - type: Transform pos: 76.5,-35.5 parent: 2 - - uid: 23684 + - uid: 23779 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 23685 + - uid: 23780 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 23686 + - uid: 23781 components: - type: Transform pos: 78.5,-46.5 parent: 2 - - uid: 23687 + - uid: 23782 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 23688 + - uid: 23783 components: - type: Transform pos: 49.5,-59.5 parent: 2 - - uid: 23689 + - uid: 23784 components: - type: Transform pos: 50.5,-59.5 parent: 2 - - uid: 23690 + - uid: 23785 components: - type: Transform pos: 52.5,-61.5 parent: 2 - - uid: 23691 + - uid: 23786 components: - type: Transform pos: 49.5,-62.5 parent: 2 - - uid: 23692 + - uid: 23787 components: - type: Transform pos: 51.5,-62.5 parent: 2 - - uid: 23693 + - uid: 23788 components: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 23694 + - uid: 23789 components: - type: Transform pos: 42.5,-69.5 parent: 2 - - uid: 23695 + - uid: 23790 components: - type: Transform pos: 35.5,-69.5 parent: 2 - - uid: 23696 + - uid: 23791 components: - type: Transform pos: 44.5,-69.5 parent: 2 - - uid: 23697 + - uid: 23792 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 - - uid: 23698 + - uid: 23793 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - uid: 23699 + - uid: 23794 components: - type: Transform pos: -40.5,-9.5 parent: 2 - - uid: 23700 + - uid: 23795 components: - type: Transform pos: -33.5,-17.5 parent: 2 - - uid: 23701 + - uid: 23796 components: - type: Transform pos: -33.5,-15.5 parent: 2 - - uid: 23702 + - uid: 23797 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 - - uid: 23703 + - uid: 23798 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 - - uid: 23704 + - uid: 23799 components: - type: Transform pos: -26.5,-9.5 parent: 2 - - uid: 23705 + - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 - - uid: 23706 + - uid: 23801 components: - type: Transform pos: 58.5,-59.5 parent: 2 - - uid: 23707 + - uid: 23802 components: - type: Transform pos: 58.5,-60.5 parent: 2 - - uid: 23708 + - uid: 23803 components: - type: Transform pos: 54.5,-25.5 parent: 2 - - uid: 23709 + - uid: 23804 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 - - uid: 23710 + - uid: 23805 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 - - uid: 23711 + - uid: 23806 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 - - uid: 23712 + - uid: 23807 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 - - uid: 23713 + - uid: 23808 components: - type: Transform pos: 41.5,-74.5 parent: 2 - - uid: 23714 + - uid: 23809 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 - - uid: 23715 + - uid: 23810 components: - type: Transform pos: 37.5,-66.5 parent: 2 - - uid: 23716 + - uid: 23811 components: - type: Transform pos: 36.5,-69.5 parent: 2 - - uid: 23717 + - uid: 23812 components: - type: Transform pos: 34.5,-69.5 parent: 2 - - uid: 23718 + - uid: 23813 components: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 23719 + - uid: 23814 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 - - uid: 23720 + - uid: 23815 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 - - uid: 23721 + - uid: 23816 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 - - uid: 23722 + - uid: 23817 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 - - uid: 23723 + - uid: 23818 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 - - uid: 23724 + - uid: 23819 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 - - uid: 23725 + - uid: 23820 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 - - uid: 23726 + - uid: 23821 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 - - uid: 23727 + - uid: 23822 components: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 23728 + - uid: 23823 components: - type: Transform pos: 18.5,-74.5 parent: 2 - - uid: 23729 + - uid: 23824 components: - type: Transform pos: 14.5,-74.5 parent: 2 - - uid: 23730 + - uid: 23825 components: - type: Transform pos: 17.5,-71.5 parent: 2 - - uid: 23731 + - uid: 23826 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 - - uid: 23732 + - uid: 23827 components: - type: Transform pos: 15.5,-71.5 parent: 2 - - uid: 23733 + - uid: 23828 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 23734 + - uid: 23829 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 - - uid: 23735 + - uid: 23830 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 - - uid: 23736 + - uid: 23831 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 - - uid: 23737 + - uid: 23832 components: - type: Transform pos: 14.5,-71.5 parent: 2 - - uid: 23738 + - uid: 23833 components: - type: Transform pos: 18.5,-71.5 parent: 2 - - uid: 23739 + - uid: 23834 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 - - uid: 23740 + - uid: 23835 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 - - uid: 23741 + - uid: 23836 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 - - uid: 23742 + - uid: 23837 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 - - uid: 23743 + - uid: 23838 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 - - uid: 23744 + - uid: 23839 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 - - uid: 23745 + - uid: 23840 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 - - uid: 23746 + - uid: 23841 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 - - uid: 23747 + - uid: 23842 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 - - uid: 23748 + - uid: 23843 components: - type: Transform pos: -33.5,-9.5 parent: 2 - - uid: 23749 + - uid: 23844 components: - type: Transform pos: -33.5,-12.5 parent: 2 - - uid: 23750 + - uid: 23845 components: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 23751 + - uid: 23846 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 - - uid: 23752 + - uid: 23847 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 23753 + - uid: 23848 components: - type: Transform pos: 78.5,-44.5 parent: 2 - - uid: 23754 + - uid: 23849 components: - type: Transform pos: 68.5,-56.5 parent: 2 - - uid: 23755 + - uid: 23850 components: - type: Transform pos: -43.5,-13.5 parent: 2 - - uid: 23756 + - uid: 23851 components: - type: Transform pos: 48.5,7.5 parent: 2 - - uid: 23757 + - uid: 23852 components: - type: Transform pos: 70.5,-54.5 parent: 2 - - uid: 23758 + - uid: 23853 components: - type: Transform pos: 61.5,-61.5 parent: 2 - - uid: 23759 + - uid: 23854 components: - type: Transform pos: 62.5,-61.5 parent: 2 - - uid: 23760 + - uid: 23855 components: - type: Transform pos: 63.5,-61.5 parent: 2 - - uid: 23761 + - uid: 23856 components: - type: Transform pos: 71.5,-64.5 parent: 2 - - uid: 23762 + - uid: 23857 components: - type: Transform pos: -38.5,-37.5 parent: 2 - - uid: 23763 + - uid: 23858 components: - type: Transform pos: -37.5,-37.5 parent: 2 - - uid: 23764 + - uid: 23859 components: - type: Transform pos: -46.5,-7.5 parent: 2 - - uid: 23765 + - uid: 23860 components: - type: Transform pos: -45.5,-18.5 parent: 2 - - uid: 23766 + - uid: 23861 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 - - uid: 23767 + - uid: 23862 components: - type: Transform pos: -61.5,-31.5 parent: 2 - - uid: 23768 + - uid: 23863 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 - - uid: 23769 + - uid: 23864 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 23770 + - uid: 23865 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 23771 + - uid: 23866 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 23772 + - uid: 23867 components: - type: Transform pos: -45.5,-44.5 parent: 2 - - uid: 23773 + - uid: 23868 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 23774 + - uid: 23869 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 23775 + - uid: 23870 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 - - uid: 23776 + - uid: 23871 components: - type: Transform pos: -44.5,-58.5 parent: 2 - - uid: 23777 + - uid: 23872 components: - type: Transform pos: -42.5,-58.5 parent: 2 - - uid: 23778 + - uid: 23873 components: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 23779 + - uid: 23874 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 - - uid: 23780 + - uid: 23875 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 23781 + - uid: 23876 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 - - uid: 23782 + - uid: 23877 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 - - uid: 23783 + - uid: 23878 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 - - uid: 23784 + - uid: 23879 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 23785 + - uid: 23880 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 23786 + - uid: 23881 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 23787 + - uid: 23882 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 23788 + - uid: 23883 components: - type: Transform pos: -41.5,-62.5 parent: 2 - - uid: 23789 + - uid: 23884 components: - type: Transform pos: -40.5,-62.5 parent: 2 - - uid: 23790 + - uid: 23885 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 - - uid: 23791 + - uid: 23886 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 - - uid: 23792 + - uid: 23887 components: - type: Transform pos: -57.5,-75.5 parent: 2 - - uid: 23793 + - uid: 23888 components: - type: Transform pos: -57.5,-76.5 parent: 2 - - uid: 23794 + - uid: 23889 components: - type: Transform pos: -57.5,-77.5 parent: 2 - - uid: 23795 + - uid: 23890 components: - type: Transform pos: -48.5,-83.5 parent: 2 - - uid: 23796 + - uid: 23891 components: - type: Transform pos: -35.5,-82.5 parent: 2 - - uid: 23797 + - uid: 23892 components: - type: Transform pos: -35.5,-81.5 parent: 2 - - uid: 23798 + - uid: 23893 components: - type: Transform pos: -35.5,-77.5 parent: 2 - - uid: 23799 + - uid: 23894 components: - type: Transform pos: -35.5,-83.5 parent: 2 - - uid: 23800 + - uid: 23895 components: - type: Transform pos: -35.5,-76.5 parent: 2 - - uid: 23801 + - uid: 23896 components: - type: Transform pos: -35.5,-78.5 parent: 2 - - uid: 23802 + - uid: 23897 components: - type: Transform pos: -40.5,-86.5 parent: 2 - - uid: 23803 + - uid: 23898 components: - type: Transform pos: -43.5,-86.5 parent: 2 - - uid: 23804 + - uid: 23899 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 - - uid: 23805 + - uid: 23900 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 - - uid: 23806 + - uid: 23901 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 - - uid: 23807 + - uid: 23902 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,56.5 parent: 2 - - uid: 23808 + - uid: 23903 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 - - uid: 23809 + - uid: 23904 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 - - uid: 23810 + - uid: 23905 components: - type: Transform pos: -0.5,35.5 parent: 2 - - uid: 23811 + - uid: 23906 components: - type: Transform pos: -1.5,35.5 parent: 2 - - uid: 23812 + - uid: 23907 components: - type: Transform pos: -2.5,35.5 parent: 2 - - uid: 23813 + - uid: 23908 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,62.5 parent: 2 - - uid: 23814 + - uid: 23909 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 - - uid: 23815 + - uid: 23910 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 - - uid: 23816 + - uid: 23911 components: - type: Transform pos: -3.5,42.5 parent: 2 - - uid: 23817 + - uid: 23912 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 23818 + - uid: 23913 components: - type: Transform pos: -29.5,21.5 parent: 2 - - uid: 23819 + - uid: 23914 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 23820 + - uid: 23915 components: - type: Transform pos: -26.5,21.5 parent: 2 - - uid: 23821 + - uid: 23916 components: - type: Transform pos: -31.5,27.5 parent: 2 - - uid: 23822 + - uid: 23917 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 23823 + - uid: 23918 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 23824 + - uid: 23919 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 - - uid: 23825 + - uid: 23920 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 23826 + - uid: 23921 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 - - uid: 23827 + - uid: 23922 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 - - uid: 23828 + - uid: 23923 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 - - uid: 23829 + - uid: 23924 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,62.5 parent: 2 - - uid: 23830 + - uid: 23925 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,62.5 parent: 2 - - uid: 23831 + - uid: 23926 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 - - uid: 23832 + - uid: 23927 components: - type: Transform pos: -33.5,32.5 parent: 2 - - uid: 23833 + - uid: 23928 components: - type: Transform pos: -32.5,32.5 parent: 2 - - uid: 23834 + - uid: 23929 components: - type: Transform pos: -31.5,32.5 parent: 2 - - uid: 23835 + - uid: 23930 components: - type: Transform pos: -49.5,29.5 parent: 2 - - uid: 23836 + - uid: 23931 components: - type: Transform pos: -49.5,35.5 parent: 2 - - uid: 23837 + - uid: 23932 components: - type: Transform pos: -52.5,35.5 parent: 2 - - uid: 23838 + - uid: 23933 components: - type: Transform pos: -52.5,29.5 parent: 2 - - uid: 23839 + - uid: 23934 components: - type: Transform pos: -52.5,18.5 parent: 2 - - uid: 23840 + - uid: 23935 components: - type: Transform pos: -52.5,24.5 parent: 2 - - uid: 23841 + - uid: 23936 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 - - uid: 23842 + - uid: 23937 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 - - uid: 23843 + - uid: 23938 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 - - uid: 23844 + - uid: 23939 components: - type: Transform pos: -39.5,31.5 parent: 2 - - uid: 23845 + - uid: 23940 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 - - uid: 23846 + - uid: 23941 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - uid: 23847 + - uid: 23942 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 - - uid: 23848 + - uid: 23943 components: - type: Transform pos: -53.5,11.5 parent: 2 - - uid: 23849 + - uid: 23944 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 23850 + - uid: 23945 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 - - uid: 23851 + - uid: 23946 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 - - uid: 23852 + - uid: 23947 components: - type: Transform pos: 56.5,-25.5 parent: 2 - - uid: 23853 + - uid: 23948 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 - - uid: 23854 + - uid: 23949 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 - - uid: 23855 + - uid: 23950 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 - - uid: 23856 + - uid: 23951 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 - - uid: 23857 + - uid: 23952 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 23858 + - uid: 23953 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 23859 + - uid: 23954 components: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 23860 + - uid: 23955 components: - type: Transform pos: -45.5,-54.5 parent: 2 - - uid: 23861 + - uid: 23956 components: - type: Transform pos: -45.5,-55.5 parent: 2 - - uid: 23862 + - uid: 23957 components: - type: Transform pos: 24.5,-60.5 parent: 2 - - uid: 23863 + - uid: 23958 components: - type: Transform pos: 46.5,43.5 parent: 2 - - uid: 23864 + - uid: 23959 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 - - uid: 23865 + - uid: 23960 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 - - uid: 23866 + - uid: 23961 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 - - uid: 23867 + - uid: 23962 components: - type: Transform pos: -14.5,56.5 parent: 2 - - uid: 23868 + - uid: 23963 components: - type: Transform pos: -11.5,69.5 parent: 2 - - uid: 23869 + - uid: 23964 components: - type: Transform pos: -14.5,55.5 parent: 2 - - uid: 23870 + - uid: 23965 components: - type: Transform pos: -16.5,55.5 parent: 2 - - uid: 23871 + - uid: 23966 components: - type: Transform pos: -16.5,56.5 parent: 2 - - uid: 23872 + - uid: 23967 components: - type: Transform pos: -23.5,61.5 parent: 2 - - uid: 23873 + - uid: 23968 components: - type: Transform pos: -23.5,62.5 parent: 2 - - uid: 23874 + - uid: 23969 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 23875 + - uid: 23970 components: - type: Transform pos: -11.5,67.5 parent: 2 - - uid: 23876 + - uid: 23971 components: - type: Transform pos: -14.5,73.5 parent: 2 - - uid: 23877 + - uid: 23972 components: - type: Transform pos: -20.5,73.5 parent: 2 - - uid: 23878 + - uid: 23973 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 23879 + - uid: 23974 components: - type: Transform pos: -23.5,63.5 parent: 2 - - uid: 23880 + - uid: 23975 components: - type: Transform pos: -23.5,73.5 parent: 2 - - uid: 23881 + - uid: 23976 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 - - uid: 23882 + - uid: 23977 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 - - uid: 23883 + - uid: 23978 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 23884 + - uid: 23979 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 23885 + - uid: 23980 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 - - uid: 23886 + - uid: 23981 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 - - uid: 23887 + - uid: 23982 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 - - uid: 23888 + - uid: 23983 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 - - uid: 23889 + - uid: 23984 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 - - uid: 23890 + - uid: 23985 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 - - uid: 23891 + - uid: 23986 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 - - uid: 23892 + - uid: 23987 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 - - uid: 23893 + - uid: 23988 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 - - uid: 23894 + - uid: 23989 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 23895 + - uid: 23990 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 23896 + - uid: 23991 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 - - uid: 23897 + - uid: 23992 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 - - uid: 23898 + - uid: 23993 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 - - uid: 23899 + - uid: 23994 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 - - uid: 23900 + - uid: 23995 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 - - uid: 23901 + - uid: 23996 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 - - uid: 23902 + - uid: 23997 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 - - uid: 23903 + - uid: 23998 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 - - uid: 23904 + - uid: 23999 components: - type: Transform pos: 71.5,39.5 parent: 2 - - uid: 23905 + - uid: 24000 components: - type: Transform pos: 73.5,39.5 parent: 2 - - uid: 23906 + - uid: 24001 components: - type: Transform pos: 73.5,33.5 parent: 2 - - uid: 23907 + - uid: 24002 components: - type: Transform pos: 71.5,33.5 parent: 2 - - uid: 23908 + - uid: 24003 components: - type: Transform pos: -33.5,40.5 parent: 2 - - uid: 23909 + - uid: 24004 components: - type: Transform pos: -32.5,40.5 parent: 2 - - uid: 23910 + - uid: 24005 components: - type: Transform pos: -26.5,54.5 parent: 2 - - uid: 23911 + - uid: 24006 components: - type: Transform pos: -26.5,53.5 parent: 2 - - uid: 23912 + - uid: 24007 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 - - uid: 23913 + - uid: 24008 components: - type: Transform pos: -18.5,-97.5 parent: 2 - - uid: 23914 + - uid: 24009 components: - type: Transform pos: -26.5,-97.5 parent: 2 - - uid: 23915 + - uid: 24010 components: - type: Transform pos: -23.5,-94.5 parent: 2 - - uid: 23916 + - uid: 24011 components: - type: Transform pos: -22.5,-94.5 parent: 2 - - uid: 23917 + - uid: 24012 components: - type: Transform pos: -21.5,-94.5 parent: 2 - - uid: 23918 + - uid: 24013 components: - type: Transform pos: -9.5,-101.5 parent: 2 - - uid: 23919 + - uid: 24014 components: - type: Transform pos: -8.5,-101.5 parent: 2 - - uid: 23920 + - uid: 24015 components: - type: Transform pos: -6.5,-101.5 parent: 2 - - uid: 23921 + - uid: 24016 components: - type: Transform pos: -5.5,-101.5 parent: 2 - - uid: 23922 + - uid: 24017 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 23923 + - uid: 24018 components: - type: Transform pos: -3.5,-98.5 parent: 2 - - uid: 23924 + - uid: 24019 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 - - uid: 23925 + - uid: 24020 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 - - uid: 23926 + - uid: 24021 components: - type: Transform pos: -39.5,-90.5 parent: 2 - - uid: 23927 + - uid: 24022 components: - type: Transform pos: -39.5,-89.5 parent: 2 - - uid: 23928 + - uid: 24023 components: - type: Transform pos: -34.5,-100.5 parent: 2 - - uid: 23929 + - uid: 24024 components: - type: Transform pos: -36.5,-100.5 parent: 2 - - uid: 23930 + - uid: 24025 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 - - uid: 23931 + - uid: 24026 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 - - uid: 23932 + - uid: 24027 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 - - uid: 23933 + - uid: 24028 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 - - uid: 23934 + - uid: 24029 components: - type: Transform pos: -23.5,-101.5 parent: 2 - - uid: 23935 + - uid: 24030 components: - type: Transform pos: -22.5,-101.5 parent: 2 - - uid: 23936 + - uid: 24031 components: - type: Transform pos: -21.5,-101.5 parent: 2 - - uid: 23937 + - uid: 24032 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 - - uid: 23938 + - uid: 24033 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 - - uid: 23939 + - uid: 24034 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 - - uid: 23940 + - uid: 24035 components: - type: Transform pos: 51.5,-68.5 parent: 2 - - uid: 23941 + - uid: 24036 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 - - uid: 23942 + - uid: 24037 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 - - uid: 23943 + - uid: 24038 components: - type: Transform pos: 61.5,-70.5 parent: 2 - - uid: 23944 + - uid: 24039 components: - type: Transform pos: 62.5,-70.5 parent: 2 - - uid: 23945 + - uid: 24040 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 - - uid: 23946 + - uid: 24041 components: - type: Transform pos: 50.5,-68.5 parent: 2 - - uid: 23947 + - uid: 24042 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 23948 + - uid: 24043 components: - type: Transform pos: 68.5,-57.5 parent: 2 - - uid: 23949 + - uid: 24044 components: - type: Transform pos: 71.5,-54.5 parent: 2 - - uid: 23950 + - uid: 24045 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 - - uid: 23951 + - uid: 24046 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 - - uid: 23952 + - uid: 24047 components: - type: Transform pos: 60.5,-70.5 parent: 2 - - uid: 23953 + - uid: 24048 components: - type: Transform pos: 9.5,-31.5 parent: 2 - - uid: 23954 + - uid: 24049 components: - type: Transform pos: 9.5,-34.5 parent: 2 - - uid: 23955 + - uid: 24050 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 23956 + - uid: 24051 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 23957 + - uid: 24052 components: - type: Transform pos: 34.5,18.5 parent: 2 - - uid: 23958 + - uid: 24053 components: - type: Transform pos: 52.5,-57.5 parent: 2 - - uid: 23959 + - uid: 24054 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 23960 + - uid: 24055 components: - type: Transform pos: -52.5,-38.5 parent: 2 - - uid: 23961 + - uid: 24056 components: - type: Transform pos: -47.5,-34.5 parent: 2 - - uid: 23962 + - uid: 24057 components: - type: Transform pos: -47.5,-35.5 parent: 2 - - uid: 23963 + - uid: 24058 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 - - uid: 23964 + - uid: 24059 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 - - uid: 23965 + - uid: 24060 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 - - uid: 23966 + - uid: 24061 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 - - uid: 23967 + - uid: 24062 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 - - uid: 23968 + - uid: 24063 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 - - uid: 23969 + - uid: 24064 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 - - uid: 23970 + - uid: 24065 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 - - uid: 23971 + - uid: 24066 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 - - uid: 23972 + - uid: 24067 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 - - uid: 23973 + - uid: 24068 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 - - uid: 23974 + - uid: 24069 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 - - uid: 23975 + - uid: 24070 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 - - uid: 23976 + - uid: 24071 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 - - uid: 23977 + - uid: 24072 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 - - uid: 23978 + - uid: 24073 components: - type: Transform pos: -4.5,20.5 parent: 2 - - uid: 23979 + - uid: 24074 components: - type: Transform pos: -5.5,20.5 parent: 2 - - uid: 23980 + - uid: 24075 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 - - uid: 23981 + - uid: 24076 components: - type: Transform pos: -70.5,-47.5 parent: 2 - - uid: 23982 + - uid: 24077 components: - type: Transform pos: -69.5,-47.5 parent: 2 - - uid: 23983 + - uid: 24078 components: - type: Transform pos: -68.5,-47.5 parent: 2 - - uid: 23984 + - uid: 24079 components: - type: Transform pos: -60.5,-38.5 parent: 2 - - uid: 23985 + - uid: 24080 components: - type: Transform pos: -62.5,-38.5 parent: 2 - - uid: 23986 + - uid: 24081 components: - type: Transform pos: -51.5,-13.5 parent: 2 - - uid: 23987 + - uid: 24082 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 - - uid: 23988 + - uid: 24083 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 - - uid: 23989 + - uid: 24084 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 - - uid: 23990 + - uid: 24085 components: - type: Transform pos: 3.5,-3.5 parent: 2 - - uid: 23991 + - uid: 24086 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - - uid: 23992 + - uid: 24087 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 - - uid: 23994 + - uid: 24088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 24089 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-40.5 parent: 2 - - uid: 23996 + - uid: 24090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 24091 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-40.5 parent: 2 - - uid: 23997 + - uid: 24092 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-42.5 parent: 2 - - uid: 23998 + - uid: 24093 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 23999 + - uid: 24094 components: - type: Transform pos: 8.5,27.5 parent: 2 - - uid: 24000 + - uid: 24095 components: - type: Transform pos: 10.5,27.5 parent: 2 - - uid: 24001 + - uid: 24096 components: - type: Transform pos: 9.5,27.5 parent: 2 - - uid: 24002 + - uid: 24097 components: - type: Transform pos: 9.5,29.5 parent: 2 - - uid: 24003 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 2 - - uid: 24004 + - uid: 24098 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-91.5 parent: 2 - - uid: 24005 + - uid: 24099 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 24006 + - uid: 24100 components: - type: Transform pos: 78.5,-43.5 parent: 2 - - uid: 24007 + - uid: 24101 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,63.5 parent: 2 - - uid: 24008 + - uid: 24102 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,63.5 parent: 2 - - uid: 24009 + - uid: 24103 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,67.5 parent: 2 - - uid: 24010 + - uid: 24104 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 - - uid: 24011 + - uid: 24105 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-19.5 parent: 2 - - uid: 24012 + - uid: 24106 components: - type: Transform pos: -27.5,-20.5 parent: 2 + - uid: 24107 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 2 - proto: ReinforcedWindowDiagonal entities: - - uid: 24013 + - uid: 24108 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 24014 + - uid: 24109 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-30.5 parent: 2 - - uid: 24015 + - uid: 24110 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,55.5 parent: 2 - - uid: 24016 + - uid: 24111 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,59.5 parent: 2 - - uid: 24017 + - uid: 24112 components: - type: Transform pos: 49.5,59.5 parent: 2 - - uid: 24018 + - uid: 24113 components: - type: Transform pos: 52.5,62.5 parent: 2 - - uid: 24019 + - uid: 24114 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,62.5 parent: 2 - - uid: 24020 + - uid: 24115 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,55.5 parent: 2 - - uid: 24021 + - uid: 24116 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-36.5 parent: 2 - - uid: 24022 + - uid: 24117 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-91.5 parent: 2 - - uid: 24023 + - uid: 24118 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-91.5 parent: 2 - - uid: 24024 + - uid: 24119 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-42.5 parent: 2 - - uid: 24025 + - uid: 24120 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,62.5 parent: 2 - - uid: 24026 + - uid: 24121 components: - type: Transform pos: 42.5,62.5 parent: 2 - - uid: 24027 + - uid: 24122 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,61.5 parent: 2 - - uid: 24028 + - uid: 24123 components: - type: Transform pos: 41.5,61.5 parent: 2 - - uid: 24029 + - uid: 24124 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,60.5 parent: 2 - - uid: 24030 + - uid: 24125 components: - type: Transform pos: 40.5,60.5 parent: 2 - - uid: 24031 + - uid: 24126 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,59.5 parent: 2 - - uid: 24032 + - uid: 24127 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,59.5 parent: 2 - - uid: 24033 + - uid: 24128 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,60.5 parent: 2 - - uid: 24034 + - uid: 24129 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,60.5 parent: 2 - - uid: 24035 + - uid: 24130 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,61.5 parent: 2 - - uid: 24036 + - uid: 24131 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,61.5 parent: 2 - - uid: 24037 + - uid: 24132 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,62.5 parent: 2 - - uid: 24038 + - uid: 24133 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,62.5 parent: 2 - - uid: 24039 + - uid: 24134 components: - type: Transform pos: 35.5,64.5 parent: 2 - - uid: 24040 + - uid: 24135 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,64.5 parent: 2 - - uid: 24041 + - uid: 24136 components: - type: Transform pos: 36.5,65.5 parent: 2 - - uid: 24042 + - uid: 24137 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,65.5 parent: 2 - - uid: 24043 + - uid: 24138 components: - type: Transform pos: 37.5,66.5 parent: 2 - - uid: 24044 + - uid: 24139 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,66.5 parent: 2 - - uid: 24045 + - uid: 24140 components: - type: Transform pos: 38.5,67.5 parent: 2 - - uid: 24046 + - uid: 24141 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,67.5 parent: 2 - - uid: 24047 + - uid: 24142 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,66.5 parent: 2 - - uid: 24048 + - uid: 24143 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,66.5 parent: 2 - - uid: 24049 + - uid: 24144 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,65.5 parent: 2 - - uid: 24050 + - uid: 24145 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,65.5 parent: 2 - - uid: 24051 + - uid: 24146 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,64.5 parent: 2 - - uid: 24052 + - uid: 24147 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,64.5 parent: 2 - - uid: 24053 + - uid: 24148 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-48.5 parent: 2 - - uid: 24054 + - uid: 24149 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-78.5 parent: 2 - - uid: 24055 + - uid: 24150 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-88.5 parent: 2 - - uid: 24056 + - uid: 24151 components: - type: Transform rot: 3.141592653589793 rad @@ -160662,98 +157917,92 @@ entities: parent: 2 - proto: RemoteSignaller entities: - - uid: 24057 + - uid: 24152 components: - type: Transform pos: 4.3008337,-7.3968306 parent: 2 - type: DeviceLinkSource linkedPorts: - 558: + 556: - Pressed: DoorBolt - 559: + 557: - Pressed: DoorBolt - 629: + 628: - Pressed: DoorBolt - proto: ResearchAndDevelopmentServer entities: - - uid: 24058 + - uid: 24153 components: - type: Transform pos: 55.5,-49.5 parent: 2 - proto: Retractor entities: - - uid: 24059 + - uid: 24154 components: - type: Transform - pos: 0.5210637,-65.43571 + pos: 73.5331,-48.86455 parent: 2 - - uid: 24060 + - uid: 24155 components: - type: Transform - pos: 73.5331,-48.86455 + rot: 1.5707963267948966 rad + pos: -12.402358,-52.399734 parent: 2 - proto: RevolverCapGun entities: - - uid: 24061 + - uid: 24156 components: - type: Transform pos: 48.521713,-29.492037 parent: 2 - - uid: 24062 + - uid: 24157 components: - type: Transform pos: 3.523116,-35.41609 parent: 2 - proto: RiceSeeds entities: - - uid: 24063 + - uid: 24158 components: - type: Transform pos: -32.424732,6.232961 parent: 2 -- proto: RockGuitarInstrument - entities: - - uid: 24064 - components: - - type: Transform - pos: -10.563177,-6.285685 - parent: 2 -- proto: RollerBed +- proto: RiotBulletShield entities: - - uid: 21192 + - uid: 24159 components: - type: Transform - pos: 44.5,7.5 + pos: 29.760902,32.66437 parent: 2 - - uid: 24065 + - uid: 24160 components: - type: Transform - pos: -29.534147,-77.30682 + pos: 29.635902,32.492496 parent: 2 - - uid: 24066 +- proto: RockGuitarInstrument + entities: + - uid: 24161 components: - type: Transform - pos: -29.534147,-79.2912 + pos: -10.563177,-6.285685 parent: 2 -- proto: RubberStampDenied +- proto: RollerBed entities: - - uid: 31670 + - uid: 24162 components: - type: Transform - pos: 23.29441,-39.43094 + pos: -29.534147,-77.30682 parent: 2 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 24067 + - uid: 24163 components: - type: Transform - pos: -7.5,-97.5 + pos: -29.534147,-79.2912 parent: 2 - proto: SalvageMagnet entities: - - uid: 24068 + - uid: 24164 components: - type: Transform rot: -1.5707963267948966 rad @@ -160761,82 +158010,123 @@ entities: parent: 2 - proto: Saw entities: - - uid: 24069 + - uid: 24165 components: - type: Transform - pos: 0.4741887,-64.29508 + pos: 73.565475,-49.416637 parent: 2 - - uid: 24070 + - uid: 24166 components: - type: Transform - pos: 73.565475,-49.416637 + rot: 1.5707963267948966 rad + pos: -14.074233,-52.462234 parent: 2 - proto: SawElectric entities: - - uid: 24071 + - uid: 24167 components: - type: Transform - pos: 0.5054387,-66.18094 + rot: 1.5707963267948966 rad + pos: -14.527358,-52.430984 parent: 2 - proto: Scalpel entities: - - uid: 24072 + - uid: 24168 components: - type: Transform pos: 69.49932,-48.836205 parent: 2 - - uid: 24073 + - uid: 24169 components: - type: Transform - pos: 0.4585637,-63.810703 + rot: 1.5707963267948966 rad + pos: -13.105483,-52.47786 parent: 2 - proto: ScalpelShiv entities: - - uid: 24074 + - uid: 24170 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 - - uid: 24075 + - uid: 24171 components: - type: Transform pos: 54.135303,18.76531 parent: 2 +- proto: Screen + entities: + - uid: 24172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-40.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-40.5 + parent: 2 - proto: Screwdriver entities: - - uid: 24076 + - uid: 24178 components: - type: Transform pos: 43.519844,-49.259262 parent: 2 - - uid: 24077 + - uid: 24179 components: - type: Transform pos: -25.458826,-24.443584 parent: 2 - - uid: 24078 + - uid: 24180 components: - type: Transform pos: -9.599733,-10.450774 parent: 2 - - uid: 24079 + - uid: 24181 components: - type: Transform pos: -62.449627,-28.095568 parent: 2 - - uid: 24080 + - uid: 24182 components: - type: Transform pos: -38.450848,-27.350416 parent: 2 - - uid: 24081 + - uid: 24183 components: - type: Transform rot: 12.566370614359172 rad pos: 72.048706,-43.392498 parent: 2 - - uid: 24082 + - uid: 24184 components: - type: Transform rot: 3.141592653589793 rad @@ -160844,7 +158134,7 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 24083 + - uid: 24185 components: - type: Transform pos: 20.5,22.5 @@ -160856,49 +158146,49 @@ entities: - Steel - proto: SeedExtractor entities: - - uid: 24084 + - uid: 24186 components: - type: Transform pos: -9.5,12.5 parent: 2 - - uid: 24085 + - uid: 24187 components: - type: Transform pos: 57.5,8.5 parent: 2 - proto: ShardGlass entities: - - uid: 24086 + - uid: 24188 components: - type: Transform pos: -54.711452,-83.287796 parent: 2 - proto: ShardGlassReinforced entities: - - uid: 24087 + - uid: 24189 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 - - uid: 24088 + - uid: 24190 components: - type: Transform rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 - - uid: 24089 + - uid: 24191 components: - type: Transform rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 - - uid: 24090 + - uid: 24192 components: - type: Transform pos: 3.3860931,48.767803 parent: 2 - - uid: 24091 + - uid: 24193 components: - type: Transform rot: -1.5707963267948966 rad @@ -160906,31 +158196,31 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 24092 + - uid: 24194 components: - type: Transform pos: 38.525932,-39.04589 parent: 2 - type: Stack count: 28 - - uid: 24093 + - uid: 24195 components: - type: Transform pos: -42.541218,-17.668886 parent: 2 - - uid: 24094 + - uid: 24196 components: - type: Transform pos: -55.463116,-25.47082 parent: 2 - - uid: 24095 + - uid: 24197 components: - type: Transform pos: -24.799974,-52.361668 parent: 2 - proto: SheetGlass1 entities: - - uid: 24096 + - uid: 24198 components: - type: Transform rot: 12.566370614359172 rad @@ -160940,204 +158230,219 @@ entities: count: 10 - proto: SheetPaper1 entities: - - uid: 24097 + - uid: 24199 components: - type: Transform pos: -4.555317,-48.4215 parent: 2 - proto: SheetPlasma entities: - - uid: 24098 + - uid: 24200 components: - type: Transform pos: 62.516293,-33.369144 parent: 2 - proto: SheetPlasma1 entities: - - uid: 24099 + - uid: 24201 + components: + - type: Transform + pos: 4.414551,-50.403652 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: 4.414551,-50.403652 + parent: 2 + - uid: 24203 components: - type: Transform pos: 39.28695,-35.266556 parent: 2 - - uid: 24100 + - uid: 24204 components: - type: Transform pos: 39.583824,-35.40718 parent: 2 - proto: SheetPlasteel entities: - - uid: 24101 + - uid: 24205 components: - type: Transform pos: -42.49803,-16.612768 parent: 2 - - uid: 24102 + - uid: 24206 components: - type: Transform pos: -43.304523,25.592714 parent: 2 - proto: SheetPlastic entities: - - uid: 24103 + - uid: 24207 components: - type: Transform pos: 38.479057,-36.60921 parent: 2 - - uid: 24104 + - uid: 24208 components: - type: Transform pos: -42.44606,-18.09971 parent: 2 - proto: SheetRGlass entities: - - uid: 24105 + - uid: 24209 components: - type: Transform pos: -42.558216,-17.530426 parent: 2 - proto: SheetSteel entities: - - uid: 24106 + - uid: 24210 components: - type: Transform rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 parent: 2 - - uid: 24107 + - uid: 24211 components: - type: Transform pos: 38.51507,-38.238213 parent: 2 - - uid: 24108 + - uid: 24212 components: - type: Transform pos: 38.494682,-37.42171 parent: 2 - - uid: 24109 + - uid: 24213 components: - type: Transform pos: -27.53877,-10.535285 parent: 2 - - uid: 24110 + - uid: 24214 components: - type: Transform pos: -39.513657,-16.565893 parent: 2 - - uid: 24111 + - uid: 24215 components: - type: Transform pos: -39.544514,-17.164497 parent: 2 - - uid: 24112 + - uid: 24216 components: - type: Transform pos: 58.50727,52.410095 parent: 2 - - uid: 24113 + - uid: 24217 components: - type: Transform pos: 77.369896,-46.771843 parent: 2 - - uid: 24114 + - uid: 24218 components: - type: Transform pos: -42.505978,14.552313 parent: 2 - - uid: 24115 + - uid: 24219 components: - type: Transform pos: -72.541214,-39.47832 parent: 2 - - uid: 24116 + - uid: 24220 components: - type: Transform pos: -35.44409,-49.59786 parent: 2 - proto: ShipBattlemap entities: - - uid: 24117 + - uid: 24221 components: - type: Transform pos: 12.360678,-6.028252 parent: 2 - proto: Shovel entities: - - uid: 24118 + - uid: 24222 components: - type: Transform pos: -52.711685,-67.34979 parent: 2 - - uid: 24119 + - uid: 24223 components: - type: Transform pos: -40.5417,35.280518 parent: 2 - - uid: 24120 + - uid: 24224 components: - type: Transform pos: -40.51045,34.905518 parent: 2 - - uid: 24121 + - uid: 24225 components: - type: Transform pos: -48.500484,26.545332 parent: 2 - - uid: 24122 + - uid: 24226 components: - type: Transform pos: -9.892679,54.810154 parent: 2 + - uid: 24227 + components: + - type: Transform + pos: -29.67779,6.233946 + parent: 2 - proto: ShowcaseRobot entities: - - uid: 24123 + - uid: 24228 components: - type: Transform pos: 62.5,-45.5 parent: 2 - - uid: 24124 + - uid: 24229 components: - type: Transform pos: -0.5,63.5 parent: 2 - - uid: 24125 + - uid: 24230 components: - type: Transform pos: -2.5,63.5 parent: 2 - proto: ShowcaseRobotAntique entities: - - uid: 24126 + - uid: 24231 components: - type: Transform pos: 61.5,-46.5 parent: 2 - proto: ShowcaseRobotMarauder entities: - - uid: 24127 + - uid: 24232 components: - type: Transform pos: 63.5,-46.5 parent: 2 - proto: ShowcaseRobotWhite entities: - - uid: 24128 + - uid: 24233 components: - type: Transform pos: 62.5,-47.5 parent: 2 - proto: ShuttersNormal entities: - - uid: 24129 + - uid: 24234 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 24130 + - uid: 24235 components: - type: Transform pos: -8.5,-24.5 parent: 2 - - uid: 24131 + - uid: 24236 components: - type: Transform rot: -1.5707963267948966 rad @@ -161145,8 +158450,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24291 - - uid: 24132 + - 24395 + - uid: 24237 components: - type: Transform rot: -1.5707963267948966 rad @@ -161154,10 +158459,28 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24291 + - 24395 - proto: ShuttersNormalOpen entities: - - uid: 24133 + - uid: 24238 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24463 + - uid: 24239 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24391 + - uid: 24240 components: - type: Transform pos: -4.5,20.5 @@ -161165,8 +158488,8 @@ entities: - type: DeviceLinkSink invokeCounter: 4 links: - - 24339 - - uid: 24134 + - 24442 + - uid: 24241 components: - type: Transform pos: -5.5,20.5 @@ -161174,8 +158497,8 @@ entities: - type: DeviceLinkSink invokeCounter: 4 links: - - 24339 - - uid: 24135 + - 24442 + - uid: 24242 components: - type: Transform rot: -1.5707963267948966 rad @@ -161183,38 +158506,38 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24136 + - 24393 + - uid: 24243 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 - - uid: 24137 + - uid: 24244 components: - type: Transform pos: -32.5,32.5 parent: 2 - type: DeviceLinkSink links: - - 24319 - - uid: 24138 + - 24423 + - uid: 24245 components: - type: Transform pos: 37.5,-0.5 parent: 2 - type: DeviceLinkSink links: - - 24290 - - uid: 24139 + - 24394 + - uid: 24246 components: - type: Transform pos: -8.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 24335 - - uid: 24140 + - 24438 + - uid: 24247 components: - type: Transform rot: -1.5707963267948966 rad @@ -161222,8 +158545,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24141 + - 24393 + - uid: 24248 components: - type: Transform rot: -1.5707963267948966 rad @@ -161231,32 +158554,32 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24142 + - 24393 + - uid: 24249 components: - type: Transform pos: 18.5,15.5 parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24143 + - 24393 + - uid: 24250 components: - type: Transform pos: 17.5,15.5 parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24144 + - 24393 + - uid: 24251 components: - type: Transform pos: -6.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 24335 - - uid: 24145 + - 24438 + - uid: 24252 components: - type: Transform rot: 1.5707963267948966 rad @@ -161264,8 +158587,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24146 + - 24392 + - uid: 24253 components: - type: Transform rot: -1.5707963267948966 rad @@ -161273,8 +158596,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24329 - - uid: 24147 + - 24433 + - uid: 24254 components: - type: Transform rot: -1.5707963267948966 rad @@ -161282,16 +158605,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24148 + - 24393 + - uid: 24255 components: - type: Transform pos: 61.5,-56.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24149 + - 24434 + - uid: 24256 components: - type: Transform rot: -1.5707963267948966 rad @@ -161299,72 +158622,72 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24288 - - uid: 24150 + - 24393 + - uid: 24257 components: - type: Transform pos: 45.5,9.5 parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24151 + - 24392 + - uid: 24258 components: - type: Transform pos: 43.5,7.5 parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24152 + - 24392 + - uid: 24259 components: - type: Transform pos: 62.5,-56.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24153 + - 24434 + - uid: 24260 components: - type: Transform pos: 63.5,-56.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24154 + - 24434 + - uid: 24261 components: - type: Transform pos: -30.5,27.5 parent: 2 - type: DeviceLinkSink links: - - 24319 - - uid: 24155 + - 24423 + - uid: 24262 components: - type: Transform pos: 29.5,9.5 parent: 2 - type: DeviceLinkSink links: - - 24329 - - uid: 24156 + - 24433 + - uid: 24263 components: - type: Transform pos: 34.5,9.5 parent: 2 - type: DeviceLinkSink links: - - 24329 - - uid: 24157 + - 24433 + - uid: 24264 components: - type: Transform pos: -31.5,27.5 parent: 2 - type: DeviceLinkSink links: - - 24319 - - uid: 24158 + - 24423 + - uid: 24265 components: - type: Transform rot: -1.5707963267948966 rad @@ -161372,104 +158695,104 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24329 - - uid: 24159 + - 24433 + - uid: 24266 components: - type: Transform pos: -33.5,27.5 parent: 2 - type: DeviceLinkSink links: - - 24319 - - uid: 24160 + - 24423 + - uid: 24267 components: - type: Transform pos: -49.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 24305 - - uid: 24161 + - 24409 + - uid: 24268 components: - type: Transform pos: -48.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 24305 - - uid: 24162 + - 24409 + - uid: 24269 components: - type: Transform pos: -31.5,32.5 parent: 2 - type: DeviceLinkSink links: - - 24319 - - uid: 24163 + - 24423 + - uid: 24270 components: - type: Transform pos: 32.5,9.5 parent: 2 - type: DeviceLinkSink links: - - 24329 - - uid: 24164 + - 24433 + - uid: 24271 components: - type: Transform pos: 39.5,-0.5 parent: 2 - type: DeviceLinkSink links: - - 24290 - - uid: 24165 + - 24394 + - uid: 24272 components: - type: Transform pos: -33.5,32.5 parent: 2 - type: DeviceLinkSink links: - - 24319 - - uid: 24166 + - 24423 + - uid: 24273 components: - type: Transform pos: -46.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 24305 - - uid: 24167 + - 24409 + - uid: 24274 components: - type: Transform pos: -47.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 24305 - - uid: 24168 + - 24409 + - uid: 24275 components: - type: Transform pos: 43.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24169 + - 24392 + - uid: 24276 components: - type: Transform pos: 59.5,-54.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24170 + - 24434 + - uid: 24277 components: - type: Transform pos: 65.5,-54.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24171 + - 24434 + - uid: 24278 components: - type: Transform rot: 1.5707963267948966 rad @@ -161477,8 +158800,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24172 + - 24434 + - uid: 24279 components: - type: Transform rot: 1.5707963267948966 rad @@ -161486,8 +158809,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24173 + - 24434 + - uid: 24280 components: - type: Transform rot: -1.5707963267948966 rad @@ -161495,8 +158818,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24174 + - 24434 + - uid: 24281 components: - type: Transform rot: -1.5707963267948966 rad @@ -161504,45 +158827,38 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24175 + - 24434 + - uid: 24282 components: - type: Transform pos: 61.5,-50.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24176 + - 24434 + - uid: 24283 components: - type: Transform pos: 63.5,-50.5 parent: 2 - type: DeviceLinkSink links: - - 24330 - - uid: 24177 + - 24434 + - uid: 24284 components: - type: Transform pos: -20.5,-58.5 parent: 2 - type: DeviceLinkSink + invokeCounter: 1 links: - - 24331 - - uid: 24178 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24331 - - uid: 24179 + - 24463 + - uid: 24285 components: - type: Transform pos: -37.5,-14.5 parent: 2 - - uid: 24180 + - uid: 24286 components: - type: Transform rot: -1.5707963267948966 rad @@ -161550,8 +158866,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24285 - - uid: 24181 + - 24390 + - uid: 24287 components: - type: Transform rot: -1.5707963267948966 rad @@ -161559,8 +158875,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24285 - - uid: 24182 + - 24390 + - uid: 24288 components: - type: Transform rot: -1.5707963267948966 rad @@ -161568,8 +158884,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24183 + - 24436 + - uid: 24289 components: - type: Transform rot: -1.5707963267948966 rad @@ -161577,8 +158893,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24184 + - 24436 + - uid: 24290 components: - type: Transform rot: -1.5707963267948966 rad @@ -161586,48 +158902,48 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24185 + - 24436 + - uid: 24291 components: - type: Transform pos: 2.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24186 + - 24436 + - uid: 24292 components: - type: Transform pos: 1.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24187 + - 24436 + - uid: 24293 components: - type: Transform pos: 0.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24188 + - 24436 + - uid: 24294 components: - type: Transform pos: 5.5,11.5 parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24189 + - 24436 + - uid: 24295 components: - type: Transform pos: 4.5,11.5 parent: 2 - type: DeviceLinkSink links: - - 24333 - - uid: 24190 + - 24436 + - uid: 24296 components: - type: Transform rot: -1.5707963267948966 rad @@ -161635,40 +158951,40 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24286 - - uid: 24191 + - 24391 + - uid: 24297 components: - type: Transform pos: 34.5,18.5 parent: 2 - type: DeviceLinkSink links: - - 24334 - - uid: 24192 + - 24437 + - uid: 24298 components: - type: Transform pos: 35.5,18.5 parent: 2 - type: DeviceLinkSink links: - - 24334 - - uid: 24193 + - 24437 + - uid: 24299 components: - type: Transform pos: 36.5,18.5 parent: 2 - type: DeviceLinkSink links: - - 24334 - - uid: 24194 + - 24437 + - uid: 24300 components: - type: Transform pos: -7.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 24335 - - uid: 24195 + - 24438 + - uid: 24301 components: - type: Transform rot: 1.5707963267948966 rad @@ -161676,16 +158992,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24196 + - 24392 + - uid: 24302 components: - type: Transform pos: 46.5,9.5 parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24197 + - 24392 + - uid: 24303 components: - type: Transform rot: 1.5707963267948966 rad @@ -161693,8 +159009,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24290 - - uid: 24198 + - 24394 + - uid: 24304 components: - type: Transform rot: 1.5707963267948966 rad @@ -161702,8 +159018,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24290 - - uid: 24199 + - 24394 + - uid: 24305 components: - type: Transform rot: 1.5707963267948966 rad @@ -161711,8 +159027,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24290 - - uid: 24200 + - 24394 + - uid: 24306 components: - type: Transform rot: 1.5707963267948966 rad @@ -161720,40 +159036,40 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24290 - - uid: 24201 + - 24394 + - uid: 24307 components: - type: Transform pos: 41.5,-0.5 parent: 2 - type: DeviceLinkSink links: - - 24336 - - uid: 24202 + - 24439 + - uid: 24308 components: - type: Transform pos: 42.5,-0.5 parent: 2 - type: DeviceLinkSink links: - - 24336 - - uid: 24203 + - 24439 + - uid: 24309 components: - type: Transform pos: 43.5,-0.5 parent: 2 - type: DeviceLinkSink links: - - 24336 - - uid: 24204 + - 24439 + - uid: 24310 components: - type: Transform pos: 46.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 24287 - - uid: 24205 + - 24392 + - uid: 24311 components: - type: Transform rot: -1.5707963267948966 rad @@ -161761,8 +159077,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24286 - - uid: 24206 + - 24391 + - uid: 24312 components: - type: Transform rot: -1.5707963267948966 rad @@ -161770,136 +159086,128 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24286 - - uid: 24207 + - 24391 + - uid: 24313 components: - type: Transform pos: 3.5,-44.5 parent: 2 - type: DeviceLinkSink links: - - 24286 - - uid: 24208 + - 24391 + - uid: 24314 components: - type: Transform pos: 4.5,-44.5 parent: 2 - type: DeviceLinkSink links: - - 24286 - - uid: 24209 + - 24391 + - uid: 24315 components: - type: Transform pos: 5.5,-44.5 parent: 2 - type: DeviceLinkSink links: - - 24286 - - uid: 24210 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - type: DeviceLinkSink - links: - - 24286 - - uid: 24211 + - 24391 + - uid: 24316 components: - type: Transform pos: 23.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24212 + - 24440 + - uid: 24317 components: - type: Transform pos: 22.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24213 + - 24440 + - uid: 24318 components: - type: Transform pos: 21.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24214 + - 24440 + - uid: 24319 components: - type: Transform pos: 25.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24215 + - 24440 + - uid: 24320 components: - type: Transform pos: 26.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24216 + - 24440 + - uid: 24321 components: - type: Transform pos: 27.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24217 + - 24440 + - uid: 24322 components: - type: Transform pos: 27.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24218 + - 24440 + - uid: 24323 components: - type: Transform pos: 26.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24219 + - 24440 + - uid: 24324 components: - type: Transform pos: 25.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24220 + - 24440 + - uid: 24325 components: - type: Transform pos: 23.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24221 + - 24440 + - uid: 24326 components: - type: Transform pos: 22.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24222 + - 24440 + - uid: 24327 components: - type: Transform pos: 21.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24223 + - 24440 + - uid: 24328 components: - type: Transform rot: 1.5707963267948966 rad @@ -161907,8 +159215,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24224 + - 24440 + - uid: 24329 components: - type: Transform rot: 1.5707963267948966 rad @@ -161916,8 +159224,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24225 + - 24440 + - uid: 24330 components: - type: Transform rot: 1.5707963267948966 rad @@ -161925,8 +159233,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24226 + - 24440 + - uid: 24331 components: - type: Transform rot: 1.5707963267948966 rad @@ -161934,8 +159242,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24227 + - 24440 + - uid: 24332 components: - type: Transform rot: 1.5707963267948966 rad @@ -161943,8 +159251,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24228 + - 24440 + - uid: 24333 components: - type: Transform rot: 1.5707963267948966 rad @@ -161952,112 +159260,128 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24337 - - uid: 24229 + - 24440 + - uid: 24334 components: - type: Transform pos: 22.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24230 + - 24441 + - uid: 24335 components: - type: Transform pos: 23.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24231 + - 24441 + - uid: 24336 components: - type: Transform pos: 24.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24232 + - 24441 + - uid: 24337 components: - type: Transform pos: 25.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24233 + - 24441 + - uid: 24338 components: - type: Transform pos: 26.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24234 + - 24441 + - uid: 24339 components: - type: Transform pos: 27.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24235 + - 24441 + - uid: 24340 components: - type: Transform pos: 28.5,-20.5 parent: 2 - type: DeviceLinkSink links: - - 24338 - - uid: 24236 + - 24441 + - uid: 24341 components: - type: Transform pos: 4.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24355 - - uid: 24237 + - 24458 + - uid: 24342 components: - type: Transform pos: 1.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24355 - - uid: 24238 + - 24458 + - uid: 24343 components: - type: Transform pos: 3.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24355 - - uid: 24239 + - 24458 + - uid: 24344 components: - type: Transform pos: 2.5,-3.5 parent: 2 - type: DeviceLinkSink links: - - 24355 - - uid: 24242 + - 24458 + - uid: 24345 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24460 + - uid: 24346 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24460 + - uid: 24347 components: - type: Transform pos: 26.5,-40.5 parent: 2 - type: DeviceLinkSink links: - - 24357 - - uid: 24243 + - 24460 + - uid: 24348 components: - type: Transform pos: 27.5,-40.5 parent: 2 - type: DeviceLinkSink links: - - 24357 - - uid: 24244 + - 24460 + - uid: 24349 components: - type: Transform rot: -1.5707963267948966 rad @@ -162065,8 +159389,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 31691 - - uid: 24245 + - 24460 + - uid: 24350 components: - type: Transform rot: -1.5707963267948966 rad @@ -162074,8 +159398,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 31691 - - uid: 24246 + - 24460 + - uid: 24351 components: - type: Transform rot: -1.5707963267948966 rad @@ -162083,8 +159407,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 31691 - - uid: 24247 + - 24460 + - uid: 24352 components: - type: Transform rot: -1.5707963267948966 rad @@ -162092,8 +159416,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24356 - - uid: 24248 + - 24459 + - uid: 24353 components: - type: Transform rot: -1.5707963267948966 rad @@ -162101,8 +159425,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24356 - - uid: 24249 + - 24459 + - uid: 24354 components: - type: Transform rot: -1.5707963267948966 rad @@ -162110,8 +159434,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24356 - - uid: 24250 + - 24459 + - uid: 24355 components: - type: Transform rot: -1.5707963267948966 rad @@ -162119,8 +159443,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24356 - - uid: 24251 + - 24459 + - uid: 24356 components: - type: Transform rot: -1.5707963267948966 rad @@ -162128,8 +159452,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24345 - - uid: 24252 + - 24449 + - uid: 24357 components: - type: Transform rot: -1.5707963267948966 rad @@ -162137,8 +159461,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24345 - - uid: 24253 + - 24449 + - uid: 24358 components: - type: Transform rot: -1.5707963267948966 rad @@ -162146,8 +159470,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24345 - - uid: 24254 + - 24449 + - uid: 24359 components: - type: Transform rot: -1.5707963267948966 rad @@ -162155,8 +159479,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24345 - - uid: 24255 + - 24449 + - uid: 24360 components: - type: Transform rot: -1.5707963267948966 rad @@ -162164,8 +159488,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24358 - - uid: 24256 + - 24461 + - uid: 24361 components: - type: Transform rot: -1.5707963267948966 rad @@ -162173,82 +159497,82 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 24358 + - 24461 - proto: ShuttleConsoleCircuitboard entities: - - uid: 24257 + - uid: 24362 components: - type: Transform pos: 8.934531,42.902378 parent: 2 - proto: ShuttleWindow entities: - - uid: 24258 + - uid: 24363 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 - - uid: 24259 + - uid: 24364 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 - - uid: 24260 + - uid: 24365 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-53.5 parent: 2 - - uid: 24261 + - uid: 24366 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 - - uid: 24262 + - uid: 24367 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 - - uid: 24263 + - uid: 24368 components: - type: Transform pos: -72.5,-50.5 parent: 2 - - uid: 24264 + - uid: 24369 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-51.5 parent: 2 - - uid: 24265 + - uid: 24370 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-56.5 parent: 2 - - uid: 24266 + - uid: 24371 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-55.5 parent: 2 - - uid: 24267 + - uid: 24372 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-54.5 parent: 2 - - uid: 24268 + - uid: 24373 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-53.5 parent: 2 - - uid: 24269 + - uid: 24374 components: - type: Transform rot: 1.5707963267948966 rad @@ -162256,35 +159580,35 @@ entities: parent: 2 - proto: ShuttleWindowDiagonal entities: - - uid: 24270 + - uid: 24375 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-56.5 parent: 2 - - uid: 24271 + - uid: 24376 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-55.5 parent: 2 - - uid: 24272 + - uid: 24377 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-52.5 parent: 2 - - uid: 24273 + - uid: 24378 components: - type: Transform pos: -80.5,-52.5 parent: 2 - - uid: 24274 + - uid: 24379 components: - type: Transform pos: -79.5,-51.5 parent: 2 - - uid: 24275 + - uid: 24380 components: - type: Transform rot: -1.5707963267948966 rad @@ -162292,14 +159616,14 @@ entities: parent: 2 - proto: SignAi entities: - - uid: 24276 + - uid: 24381 components: - type: Transform pos: -3.5,60.5 parent: 2 - proto: SignalButtonDirectional entities: - - uid: 24277 + - uid: 24382 components: - type: Transform rot: -1.5707963267948966 rad @@ -162307,9 +159631,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 112: + 116: - Pressed: DoorBolt - - uid: 24278 + - uid: 24383 components: - type: Transform rot: 1.5707963267948966 rad @@ -162317,9 +159641,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 113: + 117: - Pressed: DoorBolt - - uid: 24279 + - uid: 24384 components: - type: Transform rot: 1.5707963267948966 rad @@ -162327,18 +159651,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 111: + 115: - Pressed: DoorBolt - - uid: 24280 + - uid: 24385 components: - type: Transform pos: -22.5,40.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 799: + 796: - Pressed: DoorBolt - - uid: 24281 + - uid: 24386 components: - type: Transform rot: 3.141592653589793 rad @@ -162346,9 +159670,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 114: + 118: - Pressed: DoorBolt - - uid: 24282 + - uid: 24387 components: - type: Transform rot: -1.5707963267948966 rad @@ -162356,11 +159680,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 115: + 119: - Pressed: DoorBolt - 677: + 674: - Pressed: DoorBolt - - uid: 24283 + - uid: 24388 components: - type: Transform rot: -1.5707963267948966 rad @@ -162368,9 +159692,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 798: + 795: - Pressed: DoorBolt - - uid: 24284 + - uid: 24389 components: - type: MetaData name: door switch @@ -162380,9 +159704,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 116: + 120: - Pressed: DoorBolt - - uid: 24285 + - uid: 24390 components: - type: Transform rot: -1.5707963267948966 rad @@ -162390,13 +159714,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24181: + 24287: - Pressed: Toggle - 24180: + 24286: - Pressed: Toggle - proto: SignalSwitch entities: - - uid: 24286 + - uid: 24391 components: - type: MetaData name: shutters switch @@ -162408,28 +159732,29 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24210: + 24312: - On: Open - Off: Close - 24206: + 24311: - On: Open - Off: Close - 24205: + 24296: - On: Open - Off: Close - 24190: + 24313: - On: Open - Off: Close - 24207: + 24314: - On: Open - Off: Close - 24208: + 24315: - On: Open - Off: Close - 24209: + 24239: - On: Open - Off: Close - - uid: 24287 + - Status: Toggle + - uid: 24392 components: - type: Transform rot: -1.5707963267948966 rad @@ -162439,28 +159764,28 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24145: + 24252: - On: Open - Off: Close - 24195: + 24301: - On: Open - Off: Close - 24196: + 24302: - On: Open - Off: Close - 24150: + 24257: - On: Open - Off: Close - 24151: + 24258: - On: Open - Off: Close - 24168: + 24275: - On: Open - Off: Close - 24204: + 24310: - On: Open - Off: Close - - uid: 24288 + - uid: 24393 components: - type: MetaData name: shutters switch @@ -162471,41 +159796,28 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24135: - - On: Open - - Off: Close - 24140: + 24242: - On: Open - Off: Close - 24141: + 24247: - On: Open - Off: Close - 24147: + 24248: - On: Open - Off: Close - 24143: + 24254: - On: Open - Off: Close - 24142: + 24250: - On: Open - Off: Close - 24149: + 24249: - On: Open - Off: Close - - uid: 24289 - components: - - type: MetaData - name: blast door switch - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2136: + 24256: - On: Open - Off: Close - - uid: 24290 + - uid: 24394 components: - type: Transform rot: -1.5707963267948966 rad @@ -162515,25 +159827,25 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24164: + 24271: - On: Open - Off: Close - 24138: + 24245: - On: Open - Off: Close - 24197: + 24303: - On: Open - Off: Close - 24198: + 24304: - On: Open - Off: Close - 24199: + 24305: - On: Open - Off: Close - 24200: + 24306: - On: Open - Off: Close - - uid: 24291 + - uid: 24395 components: - type: Transform rot: 1.5707963267948966 rad @@ -162541,13 +159853,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24131: + 24236: - On: Open - Off: Close - 24132: + 24237: - On: Open - Off: Close - - uid: 24292 + - uid: 24396 components: - type: Transform rot: 3.141592653589793 rad @@ -162555,19 +159867,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2115: + 2114: - On: Open - Off: Close - - uid: 24293 + - uid: 24397 components: - type: Transform pos: 47.5,-55.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2073: - - On: Open - - Off: Close 2072: - On: Open - Off: Close @@ -162577,7 +159886,10 @@ entities: 2070: - On: Open - Off: Close - - uid: 24294 + 2069: + - On: Open + - Off: Close + - uid: 24398 components: - type: Transform rot: -1.5707963267948966 rad @@ -162585,20 +159897,20 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2074: + 2073: - On: Open - Off: Close - - uid: 24295 + - uid: 24399 components: - type: Transform pos: -51.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2088: + 2087: - On: Open - Off: Close - - uid: 24296 + - uid: 24400 components: - type: Transform rot: 3.141592653589793 rad @@ -162606,45 +159918,45 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2076: + 2075: - On: Open - Off: Close - 2077: + 2076: - On: Open - Off: Close - - uid: 24297 + - uid: 24401 components: - type: Transform pos: 16.5,-51.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2069: + 2068: - On: Open - Off: Close - - uid: 24298 + - uid: 24402 components: - type: Transform pos: -62.5,-26.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2146: + 2144: - On: Open - Off: Close - 2145: + 2143: - On: Open - Off: Close - 2144: + 2142: - On: Open - Off: Close - 2143: + 2141: - On: Open - Off: Close - 2142: + 2140: - On: Open - Off: Close - - uid: 24299 + - uid: 24403 components: - type: Transform pos: -52.5,-11.5 @@ -162653,31 +159965,28 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2137: + 2135: - On: Open - Off: Close - 2138: + 2136: - On: Open - Off: Close - 2139: + 2137: - On: Open - Off: Close - 2140: + 2138: - On: Open - Off: Close - 2141: + 2139: - On: Open - Off: Close - - uid: 24300 + - uid: 24404 components: - type: Transform pos: -36.5,-40.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2082: - - On: Open - - Off: Close 2081: - On: Open - Off: Close @@ -162687,33 +159996,36 @@ entities: 2079: - On: Open - Off: Close - - uid: 24301 + 2078: + - On: Open + - Off: Close + - uid: 24405 components: - type: Transform pos: -51.5,21.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2089: + 2088: - On: Open - Off: Close - 2090: + 2089: - On: Open - Off: Close - - uid: 24302 + - uid: 24406 components: - type: Transform pos: -49.5,24.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2084: + 2083: - On: Open - Off: Close - 2083: + 2082: - On: Open - Off: Close - - uid: 24303 + - uid: 24407 components: - type: Transform pos: 50.5,48.5 @@ -162722,13 +160034,13 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2095: + 2094: - On: Open - Off: Close - 2097: + 2096: - On: Close - Off: Open - - uid: 24304 + - uid: 24408 components: - type: Transform pos: 52.5,48.5 @@ -162737,13 +160049,13 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2099: + 2098: - On: Open - Off: Close - 2091: + 2090: - On: Close - Off: Open - - uid: 24305 + - uid: 24409 components: - type: Transform pos: -46.5,17.5 @@ -162752,19 +160064,19 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24160: + 24267: - On: Open - Off: Close - 24161: + 24268: - On: Open - Off: Close - 24166: + 24273: - On: Open - Off: Close - 24167: + 24274: - On: Open - Off: Close - - uid: 24306 + - uid: 24410 components: - type: Transform pos: 58.5,48.5 @@ -162773,39 +160085,39 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2093: + 2092: - On: Open - Off: Close - 2110: + 2109: - On: Close - Off: Open - - uid: 24307 + - uid: 24411 components: - type: Transform pos: 54.5,46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2100: + 2099: - On: Open - Off: Close - 2104: + 2103: - On: Close - Off: Open - - uid: 24308 + - uid: 24412 components: - type: Transform pos: 52.5,46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2092: + 2091: - On: Open - Off: Close - 2086: + 2085: - On: Close - Off: Open - - uid: 24309 + - uid: 24413 components: - type: Transform pos: 54.5,48.5 @@ -162814,13 +160126,13 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2104: + 2103: - On: Open - Off: Close - 2109: + 2108: - On: Close - Off: Open - - uid: 24310 + - uid: 24414 components: - type: Transform pos: 56.5,44.5 @@ -162829,13 +160141,13 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2086: + 2085: - On: Open - Off: Close - 2085: + 2084: - On: Close - Off: Open - - uid: 24311 + - uid: 24415 components: - type: Transform pos: 50.5,44.5 @@ -162844,13 +160156,13 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2106: + 2105: - On: Open - Off: Close - 2092: + 2091: - On: Close - Off: Open - - uid: 24312 + - uid: 24416 components: - type: Transform pos: 52.5,44.5 @@ -162859,26 +160171,26 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2085: + 2084: - On: Close - Off: Open - 2094: + 2093: - On: Open - Off: Close - - uid: 24313 + - uid: 24417 components: - type: Transform pos: 58.5,46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2091: + 2090: - On: Open - Off: Close - 2107: + 2106: - On: Close - Off: Open - - uid: 24314 + - uid: 24418 components: - type: Transform pos: 54.5,44.5 @@ -162887,26 +160199,26 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2102: + 2101: - On: Open - Off: Close - 2101: + 2100: - On: Close - Off: Open - - uid: 24315 + - uid: 24419 components: - type: Transform pos: 50.5,46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2103: + 2102: - On: Close - Off: Open - 2109: + 2108: - On: Open - Off: Close - - uid: 24316 + - uid: 24420 components: - type: Transform pos: 56.5,46.5 @@ -162915,13 +160227,13 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2110: + 2109: - On: Open - Off: Close - 2100: + 2099: - On: Close - Off: Open - - uid: 24317 + - uid: 24421 components: - type: Transform pos: 58.5,44.5 @@ -162930,35 +160242,35 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2102: + 2101: - On: Open - Off: Close - 2108: + 2107: - On: Open - Off: Close - 2085: + 2084: - On: Close - Off: Open - - uid: 24318 + - uid: 24422 components: - type: Transform pos: 56.5,48.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2098: + 2097: - On: Open - Off: Close - 2097: + 2096: - On: Open - Off: Close - 2104: + 2103: - On: Close - Off: Open - 2108: + 2107: - On: Close - Off: Open - - uid: 24319 + - uid: 24423 components: - type: Transform rot: 1.5707963267948966 rad @@ -162968,57 +160280,57 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24159: + 24266: - On: Open - Off: Close - 24157: + 24264: - On: Open - Off: Close - 24154: + 24261: - On: Open - Off: Close - 24165: + 24272: - On: Open - Off: Close - 24137: + 24244: - On: Open - Off: Close - 24162: + 24269: - On: Open - Off: Close - - uid: 24320 + - uid: 24424 components: - type: Transform pos: 54.5,51.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2097: + 2096: - On: Open - Off: Close - 2091: + 2090: - On: Open - Off: Close - 2101: + 2100: - On: Open - Off: Close - - uid: 24321 + - uid: 24425 components: - type: Transform pos: 5.5,49.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2067: + 2066: - On: Open - Off: Close - 2068: + 2067: - On: Open - Off: Close - 2066: + 2065: - On: Open - Off: Close - - uid: 24322 + - uid: 24426 components: - type: Transform pos: 27.5,44.5 @@ -163027,63 +160339,63 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2121: - - On: Open - - Off: Close - 2124: + 2120: - On: Open - Off: Close - 2125: + 2123: - On: Open - Off: Close - 2120: + 2124: - On: Open - Off: Close - 2118: + 2119: - On: Open - Off: Close - 2119: + 2117: - On: Open - Off: Close - 2127: + 2118: - On: Open - Off: Close 2126: - On: Open - Off: Close - 2123: + 2125: - On: Open - Off: Close 2122: - On: Open - Off: Close - - uid: 24323 + 2121: + - On: Open + - Off: Close + - uid: 24427 components: - type: Transform pos: -28.5,-96.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2111: + 2110: - On: Open - Off: Close - 2112: + 2111: - On: Open - Off: Close - - uid: 24324 + - uid: 24428 components: - type: Transform pos: -16.5,-96.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2113: + 2112: - On: Open - Off: Close - 2114: + 2113: - On: Open - Off: Close - - uid: 24325 + - uid: 24429 components: - type: Transform rot: 3.141592653589793 rad @@ -163093,31 +160405,31 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2135: + 2134: + - On: Open + - Off: Close + 2127: - On: Open - Off: Close 2128: - On: Open - Off: Close - 2129: + 2131: - On: Open - Off: Close - 2132: + 2129: - On: Open - Off: Close 2130: - On: Open - Off: Close - 2131: + 2132: - On: Open - Off: Close 2133: - On: Open - Off: Close - 2134: - - On: Open - - Off: Close - - uid: 24326 + - uid: 24430 components: - type: Transform pos: -8.5,-94.5 @@ -163126,7 +160438,10 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2135: + 2134: + - On: Open + - Off: Close + 2127: - On: Open - Off: Close 2128: @@ -163135,22 +160450,19 @@ entities: 2129: - On: Open - Off: Close - 2130: + 2131: - On: Open - Off: Close - 2132: + 2130: - On: Open - Off: Close - 2131: + 2132: - On: Open - Off: Close 2133: - On: Open - Off: Close - 2134: - - On: Open - - Off: Close - - uid: 24327 + - uid: 24431 components: - type: Transform rot: 3.141592653589793 rad @@ -163158,20 +160470,20 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2075: + 2074: - On: Open - Off: Close - - uid: 24328 + - uid: 24432 components: - type: Transform pos: 69.5,-32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2116: + 2115: - On: Open - Off: Close - - uid: 24329 + - uid: 24433 components: - type: MetaData name: cell shutter switch @@ -163182,22 +160494,22 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24155: + 24262: - On: Open - Off: Close - 24163: + 24270: - On: Open - Off: Close - 24156: + 24263: - On: Open - Off: Close - 24158: + 24265: - On: Open - Off: Close - 24146: + 24253: - On: Open - Off: Close - - uid: 24330 + - uid: 24434 components: - type: Transform rot: 3.141592653589793 rad @@ -163207,70 +160519,50 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24153: - - On: Open - - Off: Close - 24152: + 24260: - On: Open - Off: Close - 24148: + 24259: - On: Open - Off: Close - 24170: - - On: Open - - Off: Close - 24169: + 24255: - On: Open - Off: Close - 24172: + 24277: - On: Open - Off: Close - 24171: + 24276: - On: Open - Off: Close - 24173: + 24279: - On: Open - Off: Close - 24174: + 24278: - On: Open - Off: Close - 24175: + 24280: - On: Open - Off: Close - 24176: + 24281: - On: Open - Off: Close - - uid: 24331 - components: - - type: MetaData - name: shutters switch - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-55.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 24178: + 24282: - On: Open - Off: Close - - Status: Toggle - 24177: + 24283: - On: Open - Off: Close - - Status: Toggle - - uid: 24332 + - uid: 24435 components: - type: Transform pos: -51.5,36.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2087: + 2086: - On: Open - Off: Close - - uid: 24333 + - uid: 24436 components: - type: MetaData name: shutters switch @@ -163282,31 +160574,31 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24182: + 24288: - On: Open - Off: Close - 24183: + 24289: - On: Open - Off: Close - 24184: + 24290: - On: Open - Off: Close - 24189: + 24295: - On: Open - Off: Close - 24188: + 24294: - On: Open - Off: Close - 24187: + 24293: - On: Open - Off: Close - 24186: + 24292: - On: Open - Off: Close - 24185: + 24291: - On: Open - Off: Close - - uid: 24334 + - uid: 24437 components: - type: MetaData name: visitation switch @@ -163317,16 +160609,16 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24191: + 24297: - On: Open - Off: Close - 24192: + 24298: - On: Open - Off: Close - 24193: + 24299: - On: Open - Off: Close - - uid: 24335 + - uid: 24438 components: - type: MetaData name: shutters switch @@ -163336,16 +160628,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24139: + 24246: - On: Open - Off: Close - 24194: + 24300: - On: Open - Off: Close - 24144: + 24251: - On: Open - Off: Close - - uid: 24336 + - uid: 24439 components: - type: Transform rot: -1.5707963267948966 rad @@ -163355,16 +160647,16 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 24203: + 24309: - On: Open - Off: Close - 24202: + 24308: - On: Open - Off: Close - 24201: + 24307: - On: Open - Off: Close - - uid: 24337 + - uid: 24440 components: - type: MetaData name: shutters switch @@ -163374,62 +160666,62 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24213: + 24318: - On: Open - Off: Close - 24212: + 24317: - On: Open - Off: Close - 24211: + 24316: - On: Open - Off: Close - 24214: + 24319: - On: Open - Off: Close - 24215: + 24320: - On: Open - Off: Close - 24216: + 24321: - On: Open - Off: Close - 24217: + 24322: - On: Open - Off: Close - 24218: + 24323: - On: Open - Off: Close - 24219: + 24324: - On: Open - Off: Close - 24220: + 24325: - On: Open - Off: Close - 24222: + 24327: - On: Open - Off: Close - 24228: + 24333: - On: Open - Off: Close - 24227: + 24332: - On: Open - Off: Close - 24226: + 24331: - On: Open - Off: Close - 24225: + 24330: - On: Open - Off: Close - 24224: + 24329: - On: Open - Off: Close - 24223: + 24328: - On: Open - Off: Close - 24221: + 24326: - On: Open - Off: Close - Status: Toggle - - uid: 24338 + - uid: 24441 components: - type: MetaData name: shutters switch @@ -163439,88 +160731,88 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24235: + 24340: - On: Open - Off: Close - Status: Toggle - 24234: + 24339: - On: Open - Off: Close - Status: Toggle - 24233: + 24338: - On: Open - Off: Close - Status: Toggle - 24232: + 24337: - On: Open - Off: Close - Status: Toggle - 24231: + 24336: - On: Open - Off: Close - Status: Toggle - 24230: + 24335: - On: Open - Status: Toggle - Off: Close - 24229: + 24334: - On: Open - Off: Close - Status: Toggle - - uid: 24339 + - uid: 24442 components: - type: Transform pos: -2.5,16.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24133: + 24240: - On: Open - Off: Close - Status: Toggle - 24134: + 24241: - On: Open - Off: Close - Status: Toggle - - uid: 24340 + - uid: 24443 components: - type: Transform pos: -74.5,-43.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2064: + 2063: - On: Open - Off: Close - Status: Toggle - 2065: + 2064: - On: Open - Off: Close - Status: Toggle - 2063: + 2062: - On: Open - Off: Close - Status: Toggle - - uid: 24341 + - uid: 24444 components: - type: Transform pos: -74.5,-38.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2061: + 2060: - On: Open - Off: Close - Status: Toggle - 2060: + 2059: - On: Open - Off: Close - Status: Toggle - 2062: + 2061: - On: Open - Off: Close - Status: Toggle - - uid: 24342 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad @@ -163528,15 +160820,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2117: + 2116: - On: Open - Off: Close - Status: Toggle - 2078: + 2077: - On: Open - Off: Close - Status: Toggle - - uid: 24343 + - uid: 24446 components: - type: MetaData name: JSL switch @@ -163546,37 +160838,29 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21373: + 21476: - On: On - Off: Off - Status: Toggle - 21376: + 21479: - On: On - Off: Off - Status: Toggle - - uid: 31691 + - uid: 24447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-37.5 + rot: -1.5707963267948966 rad + pos: 1.5,-53.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24244: - - On: Open - - Off: Close - - Status: Toggle - 24245: - - On: Open - - Off: Close - - Status: Toggle - 24246: - - On: Open - - Off: Close + 21477: + - On: On + - Off: Off - Status: Toggle - proto: SignalSwitchDirectional entities: - - uid: 24344 + - uid: 24448 components: - type: MetaData name: lockdown switch @@ -163586,16 +160870,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 386: + 390: - On: DoorBolt - Off: DoorBolt - 392: + 396: - On: DoorBolt - Off: DoorBolt - 385: + 389: - On: DoorBolt - Off: DoorBolt - - uid: 24345 + - uid: 24449 components: - type: MetaData name: lockdown switch @@ -163605,29 +160889,29 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24251: + 24356: - On: Open - Off: Close - Status: Toggle - 24252: + 24357: - On: Open - Off: Close - Status: Toggle - 505: + 503: - On: DoorBolt - Off: DoorBolt - 490: + 488: - On: DoorBolt - Off: DoorBolt - 24253: + 24358: - On: Open - Off: Close - Status: Toggle - 24254: + 24359: - On: Open - Off: Close - Status: Toggle - - uid: 24346 + - uid: 24450 components: - type: MetaData name: light switch @@ -163637,15 +160921,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 22579: + 22662: - On: On - Off: Off - Status: Toggle - 22212: + 22310: - On: On - Off: Off - Status: Toggle - - uid: 24347 + - uid: 24451 components: - type: MetaData name: JSL switch @@ -163655,11 +160939,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21370: + 21473: - On: On - Off: Off - Status: Toggle - - uid: 24348 + - uid: 24452 components: - type: MetaData name: JSL switch @@ -163669,11 +160953,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21371: + 21474: - On: On - Off: Off - Status: Toggle - - uid: 24349 + - uid: 24453 components: - type: MetaData name: JSL switch @@ -163682,11 +160966,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21377: + 21480: - On: On - Off: Off - Status: Toggle - - uid: 24350 + - uid: 24454 components: - type: MetaData name: JSL switch @@ -163696,11 +160980,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21372: + 21475: - On: On - Off: Off - Status: Toggle - - uid: 24351 + - uid: 24455 components: - type: MetaData name: JSL switch @@ -163710,25 +160994,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21375: + 21478: - On: On - Off: Off - Status: Toggle - - uid: 24352 - components: - - type: MetaData - name: JSL switch - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-50.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21374: - - On: On - - Off: Off - - Status: Toggle - - uid: 24353 + - uid: 24456 components: - type: MetaData name: JSL switch @@ -163738,11 +161008,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21369: + 21472: - On: On - Off: Off - Status: Toggle - - uid: 24354 + - uid: 24457 components: - type: MetaData name: JSL switch @@ -163752,11 +161022,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 21378: + 21481: - On: On - Off: Off - Status: Toggle - - uid: 24355 + - uid: 24458 components: - type: MetaData name: shutters switch @@ -163766,23 +161036,23 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24237: + 24342: - On: Open - Off: Close - Status: Toggle - 24239: + 24344: - On: Open - Off: Close - Status: Toggle - 24238: + 24343: - On: Open - Off: Close - Status: Toggle - 24236: + 24341: - On: Open - Off: Close - Status: Toggle - - uid: 24356 + - uid: 24459 components: - type: MetaData name: lockdown switch @@ -163792,29 +161062,29 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24247: + 24352: - On: Open - Off: Close - Status: Toggle - 24248: + 24353: - On: Open - Status: Toggle - Off: Close - 24249: + 24354: - On: Open - Off: Close - Status: Toggle - 24250: + 24355: - On: Open - Off: Close - Status: Toggle - 489: + 487: - Off: DoorBolt - On: DoorBolt - 488: + 486: - On: DoorBolt - Off: DoorBolt - - uid: 24357 + - uid: 24460 components: - type: MetaData name: shutters switch @@ -163824,15 +161094,35 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24242: + 24347: - On: Open - Off: Close - Status: Toggle - 24243: + 24348: - On: Open - Off: Close - Status: Toggle - - uid: 24358 + 24346: + - On: Open + - Off: Close + - Status: Toggle + 24345: + - On: Open + - Off: Close + - Status: Toggle + 24350: + - On: Open + - Off: Close + - Status: Toggle + 24349: + - On: Open + - Off: Close + - Status: Toggle + 24351: + - On: Open + - Off: Close + - Status: Toggle + - uid: 24461 components: - type: MetaData name: lockdown switch @@ -163842,80 +161132,86 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 438: - - On: DoorBolt - - Off: DoorBolt 439: - On: DoorBolt - Off: DoorBolt 440: - On: DoorBolt - Off: DoorBolt - 24255: + 441: + - On: DoorBolt + - Off: DoorBolt + 24360: - On: Open - Off: Close - Status: Toggle - 24256: + 24361: - On: Open - Off: Close - Status: Toggle - - uid: 24359 + - uid: 24462 components: - - type: MetaData - name: lockdown switch - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-56.5 + pos: 0.5,-64.5 parent: 2 - type: DeviceLinkSource 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: + 31247: - On: DoorBolt - Off: DoorBolt + - Status: DoorBolt + - uid: 24463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-56.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24284: + - On: Open + - Off: Close + - Status: Toggle + 24238: + - On: Open + - Off: Close + - Status: Toggle - proto: SignAnomaly entities: - - uid: 24360 + - uid: 24464 components: - type: Transform pos: 76.5,-42.5 parent: 2 - proto: SignAnomaly2 entities: - - uid: 24361 + - uid: 24465 components: - type: Transform pos: 63.5,-41.5 parent: 2 +- proto: SignArcade + entities: + - uid: 24466 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 - proto: SignArmory entities: - - uid: 24362 + - uid: 24467 components: - type: Transform pos: 29.5,24.5 parent: 2 - proto: SignAtmos entities: - - uid: 24363 + - uid: 24468 components: - type: Transform pos: -21.5,-31.5 parent: 2 - - uid: 24364 + - uid: 24469 components: - type: MetaData name: Thermoelectric Generator @@ -163923,7 +161219,7 @@ entities: rot: 3.141592653589793 rad pos: -71.5,-33.5 parent: 2 - - uid: 24365 + - uid: 24470 components: - type: MetaData name: Thermo-Electric Generator @@ -163933,24 +161229,24 @@ entities: parent: 2 - proto: SignAtmosMinsky entities: - - uid: 24366 + - uid: 24471 components: - type: Transform pos: -30.5,-29.5 parent: 2 - - uid: 24367 + - uid: 24472 components: - type: Transform pos: -21.5,-33.5 parent: 2 - proto: SignBar entities: - - uid: 24368 + - uid: 24473 components: - type: Transform pos: 15.5,5.5 parent: 2 - - uid: 24369 + - uid: 24474 components: - type: Transform rot: 1.5707963267948966 rad @@ -163958,97 +161254,98 @@ entities: parent: 2 - proto: SignBiohazardMed entities: - - uid: 24370 + - uid: 24475 components: - type: Transform pos: -23.5,-74.5 parent: 2 - proto: SignBridge entities: - - uid: 24371 + - uid: 24476 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 24372 + - uid: 24477 components: - type: Transform pos: 33.5,-26.5 parent: 2 - proto: SignCanisters entities: - - uid: 24373 + - uid: 24478 components: - type: Transform pos: -36.5,-39.5 parent: 2 - - uid: 24374 + - uid: 24479 components: - type: Transform pos: 47.5,-50.5 parent: 2 - proto: SignCargo entities: - - uid: 24375 + - uid: 24480 components: - type: Transform pos: -21.5,22.5 parent: 2 - proto: SignCargoDock entities: - - uid: 24376 + - uid: 24481 components: - type: Transform pos: -35.532974,23.594805 parent: 2 - proto: SignChem entities: - - uid: 24377 + - uid: 24482 components: - type: Transform pos: 2.5,-44.5 parent: 2 -- proto: SignCloning +- proto: SignConference entities: - - uid: 24378 + - uid: 24483 components: - type: Transform - pos: -7.5,-62.5 + pos: 22.5,-26.5 parent: 2 -- proto: SignConference +- proto: SignCryogenicsMed entities: - - uid: 24379 + - uid: 24484 components: - type: Transform - pos: 22.5,-26.5 + rot: 1.5707963267948966 rad + pos: -0.5,-54.5 parent: 2 - proto: SignDangerMed entities: - - uid: 24380 + - uid: 24485 components: - type: Transform pos: 15.5,35.5 parent: 2 - proto: SignDirectionalBar entities: - - uid: 24381 + - uid: 24486 components: - type: Transform pos: -19.478512,48.31118 parent: 2 - - uid: 24382 + - uid: 24487 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 - - uid: 24383 + - uid: 24488 components: - type: Transform rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 - - uid: 24384 + - uid: 24489 components: - type: Transform rot: 1.5707963267948966 rad @@ -164056,52 +161353,52 @@ entities: parent: 2 - proto: SignDirectionalBridge entities: - - uid: 24385 + - uid: 24490 components: - type: Transform pos: -19.478844,48.09307 parent: 2 - - uid: 24386 + - uid: 24491 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 - - uid: 24387 + - uid: 24492 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 - - uid: 24388 + - uid: 24493 components: - type: Transform pos: 27.5,-7.5 parent: 2 - - uid: 24389 + - uid: 24494 components: - type: Transform pos: 15.5507345,4.4965997 parent: 2 - - uid: 24390 + - uid: 24495 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 - - uid: 24391 + - uid: 24496 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 - - uid: 24392 + - uid: 24497 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 - - uid: 24393 + - uid: 24498 components: - type: Transform rot: 1.5707963267948966 rad @@ -164109,19 +161406,19 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: - - uid: 24394 + - uid: 24499 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 - - uid: 24395 + - uid: 24500 components: - type: Transform rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 - - uid: 24396 + - uid: 24501 components: - type: Transform rot: -1.5707963267948966 rad @@ -164129,238 +161426,238 @@ entities: parent: 2 - proto: SignDirectionalEng entities: - - uid: 24397 + - uid: 24502 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 - - uid: 24398 + - uid: 24503 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 - - uid: 24399 + - uid: 24504 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 - - uid: 24400 + - uid: 24505 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 - - uid: 24401 + - uid: 24506 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 - - uid: 24402 + - uid: 24507 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 - - uid: 24403 + - uid: 24508 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 - - uid: 24404 + - uid: 24509 components: - type: Transform pos: -11.54485,0.20892155 parent: 2 - - uid: 24405 + - uid: 24510 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 - - uid: 24406 + - uid: 24511 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 - - uid: 24407 + - uid: 24512 components: - type: Transform pos: -19.479143,47.185772 parent: 2 - - uid: 24408 + - uid: 24513 components: - type: Transform pos: -21.4735,10.205865 parent: 2 - - uid: 24409 + - uid: 24514 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 - - uid: 24410 + - uid: 24515 components: - type: Transform pos: -27.491566,-1.4688294 parent: 2 - proto: SignDirectionalEvac entities: - - uid: 24411 + - uid: 24516 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 - - uid: 24412 + - uid: 24517 components: - type: Transform rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 - - uid: 24413 + - uid: 24518 components: - type: Transform rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 - - uid: 24414 + - uid: 24519 components: - type: Transform rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 - - uid: 24415 + - uid: 24520 components: - type: Transform rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 - - uid: 24416 + - uid: 24521 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 - - uid: 24417 + - uid: 24522 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 - - uid: 24418 + - uid: 24523 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 - - uid: 24419 + - uid: 24524 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 - - uid: 24420 + - uid: 24525 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 - - uid: 24421 + - uid: 24526 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 - - uid: 24422 + - uid: 24527 components: - type: Transform pos: -19.483376,48.548702 parent: 2 - - uid: 24423 + - uid: 24528 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 - - uid: 24424 + - uid: 24529 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 - - uid: 24425 + - uid: 24530 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 - - uid: 24426 + - uid: 24531 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 - - uid: 24427 + - uid: 24532 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 - - uid: 24428 + - uid: 24533 components: - type: Transform pos: -17.5,22.5 parent: 2 - - uid: 24429 + - uid: 24534 components: - type: Transform pos: -17.5,33.5 parent: 2 - proto: SignDirectionalFood entities: - - uid: 24430 + - uid: 24535 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 - - uid: 24431 + - uid: 24536 components: - type: Transform rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 - - uid: 24432 + - uid: 24537 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 - - uid: 24433 + - uid: 24538 components: - type: Transform rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 - - uid: 24434 + - uid: 24539 components: - type: Transform rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 - - uid: 24435 + - uid: 24540 components: - type: Transform rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 - - uid: 24436 + - uid: 24541 components: - type: Transform rot: 1.5707963267948966 rad @@ -164368,43 +161665,43 @@ entities: parent: 2 - proto: SignDirectionalHop entities: - - uid: 24437 + - uid: 24542 components: - type: Transform rot: 3.141592653589793 rad pos: -6.407528,-39.689182 parent: 2 - - uid: 24438 + - uid: 24543 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5195708,-23.764477 parent: 2 - - uid: 24439 + - uid: 24544 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.506188,-24.076977 parent: 2 - - uid: 24440 + - uid: 24545 components: - type: Transform rot: 3.141592653589793 rad pos: 13.449441,-39.80865 parent: 2 - - uid: 24441 + - uid: 24546 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5029292,-2.2492237 parent: 2 - - uid: 24442 + - uid: 24547 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.50559,-7.2209973 parent: 2 - - uid: 24443 + - uid: 24548 components: - type: Transform rot: -1.5707963267948966 rad @@ -164412,24 +161709,24 @@ entities: parent: 2 - proto: SignDirectionalJanitor entities: - - uid: 24444 + - uid: 24549 components: - type: Transform pos: -6.5,-2.5 parent: 2 - - uid: 24445 + - uid: 24550 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 - - uid: 24446 + - uid: 24551 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 - - uid: 24447 + - uid: 24552 components: - type: Transform rot: 3.141592653589793 rad @@ -164437,230 +161734,230 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 24448 + - uid: 24553 components: - type: Transform pos: -19.479143,47.404522 parent: 2 - - uid: 24449 + - uid: 24554 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 - - uid: 24450 + - uid: 24555 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 - - uid: 24451 + - uid: 24556 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 - - uid: 24452 + - uid: 24557 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 - - uid: 24453 + - uid: 24558 components: - type: Transform pos: -1.509499,0.7144314 parent: 2 - - uid: 24454 + - uid: 24559 components: - type: Transform pos: -6.468719,-24.785433 parent: 2 - - uid: 24455 + - uid: 24560 components: - type: Transform pos: -11.538088,0.45501685 parent: 2 - - uid: 24456 + - uid: 24561 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 - - uid: 24457 + - uid: 24562 components: - type: Transform pos: -17.51201,-24.680704 parent: 2 - - uid: 24458 + - uid: 24563 components: - type: Transform pos: -21.471863,9.993778 parent: 2 - - uid: 24459 + - uid: 24564 components: - type: Transform pos: -17.494442,-12.803106 parent: 2 - - uid: 24460 + - uid: 24565 components: - type: Transform pos: -27.491566,-1.7032045 parent: 2 - proto: SignDirectionalSci entities: - - uid: 24461 + - uid: 24566 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 - - uid: 24462 + - uid: 24567 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 - - uid: 24463 + - uid: 24568 components: - type: Transform pos: 15.550735,4.2699327 parent: 2 - - uid: 24464 + - uid: 24569 components: - type: Transform pos: 13.494197,-28.22207 parent: 2 - - uid: 24465 + - uid: 24570 components: - type: Transform pos: 27.506117,-7.7341094 parent: 2 - - uid: 24466 + - uid: 24571 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 - - uid: 24467 + - uid: 24572 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 - - uid: 24468 + - uid: 24573 components: - type: Transform pos: -19.479143,47.623272 parent: 2 - - uid: 24469 + - uid: 24574 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 - - uid: 24470 + - uid: 24575 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 - - uid: 24471 + - uid: 24576 components: - type: Transform pos: -17.507042,-24.18393 parent: 2 - - uid: 24472 + - uid: 24577 components: - type: Transform pos: -27.491566,-1.2344544 parent: 2 - proto: SignDirectionalSec entities: - - uid: 24473 + - uid: 24578 components: - type: Transform rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 - - uid: 24474 + - uid: 24579 components: - type: Transform rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 - - uid: 24475 + - uid: 24580 components: - type: Transform rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 - - uid: 24476 + - uid: 24581 components: - type: Transform rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 - - uid: 24477 + - uid: 24582 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 - - uid: 24478 + - uid: 24583 components: - type: Transform rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 - - uid: 24479 + - uid: 24584 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 - - uid: 24480 + - uid: 24585 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 - - uid: 24481 + - uid: 24586 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 - - uid: 24482 + - uid: 24587 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 - - uid: 24483 + - uid: 24588 components: - type: Transform pos: -19.471409,47.857254 parent: 2 - - uid: 24484 + - uid: 24589 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 - - uid: 24485 + - uid: 24590 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 - - uid: 24486 + - uid: 24591 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 - - uid: 24487 + - uid: 24592 components: - type: Transform rot: 1.5707963267948966 rad @@ -164668,12 +161965,12 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: - - uid: 24488 + - uid: 24593 components: - type: Transform pos: -0.5,-76.5 parent: 2 - - uid: 24489 + - uid: 24594 components: - type: Transform rot: 3.141592653589793 rad @@ -164681,225 +161978,225 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: - - uid: 24490 + - uid: 24595 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 - - uid: 24491 + - uid: 24596 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 - - uid: 24492 + - uid: 24597 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 - - uid: 24493 + - uid: 24598 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 - - uid: 24494 + - uid: 24599 components: - type: Transform rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 - - uid: 24495 + - uid: 24600 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 - - uid: 24496 + - uid: 24601 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 - - uid: 24497 + - uid: 24602 components: - type: Transform rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 - - uid: 24498 + - uid: 24603 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 - - uid: 24499 + - uid: 24604 components: - type: Transform rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 - - uid: 24500 + - uid: 24605 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 - - uid: 24501 + - uid: 24606 components: - type: Transform rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 - - uid: 24502 + - uid: 24607 components: - type: Transform pos: -19.471409,48.794754 parent: 2 - proto: SignDisposalSpace entities: - - uid: 24503 + - uid: 24608 components: - type: Transform pos: 23.5,-52.5 parent: 2 - proto: SignElectrical entities: - - uid: 24504 + - uid: 24609 components: - type: Transform pos: -78.5,-5.5 parent: 2 - - uid: 24505 + - uid: 24610 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 24506 + - uid: 24611 components: - type: Transform pos: -71.5,-2.5 parent: 2 - - uid: 24507 + - uid: 24612 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 24508 + - uid: 24613 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 24509 + - uid: 24614 components: - type: Transform pos: 32.5,39.5 parent: 2 - - uid: 24510 + - uid: 24615 components: - type: Transform pos: 38.5,31.5 parent: 2 - proto: SignElectricalMed entities: - - uid: 24511 + - uid: 24616 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 24512 + - uid: 24617 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 24513 + - uid: 24618 components: - type: Transform pos: 8.5,-44.5 parent: 2 - - uid: 24514 + - uid: 24619 components: - type: Transform pos: 37.5,-44.5 parent: 2 - - uid: 24515 + - uid: 24620 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 24516 + - uid: 24621 components: - type: Transform pos: 46.5,-6.5 parent: 2 - - uid: 24517 + - uid: 24622 components: - type: Transform pos: 47.5,-0.5 parent: 2 - - uid: 24518 + - uid: 24623 components: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 24519 + - uid: 24624 components: - type: Transform pos: -29.5,-54.5 parent: 2 - proto: SignEngine entities: - - uid: 24520 + - uid: 24625 components: - type: Transform pos: -43.5,-9.5 parent: 2 - - uid: 24521 + - uid: 24626 components: - type: Transform pos: -49.5,-18.5 parent: 2 - proto: SignEngineering entities: - - uid: 24522 + - uid: 24627 components: - type: Transform pos: -21.5,-8.5 parent: 2 - - uid: 24523 + - uid: 24628 components: - type: Transform pos: -21.5,-15.5 parent: 2 - proto: SignEscapePods entities: - - uid: 24524 + - uid: 24629 components: - type: Transform pos: 29.5,-93.5 parent: 2 - - uid: 24525 + - uid: 24630 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 24526 + - uid: 24631 components: - type: Transform pos: 49.5,-93.5 parent: 2 - proto: SignEVA entities: - - uid: 24527 + - uid: 24632 components: - type: Transform pos: 34.5,-15.5 parent: 2 - proto: SignExplosives entities: - - uid: 24528 + - uid: 24633 components: - type: Transform rot: 1.5707963267948966 rad @@ -164907,138 +162204,177 @@ entities: parent: 2 - proto: SignFlammableMed entities: - - uid: 24529 + - uid: 24634 components: - type: Transform pos: -42.5,-63.5 parent: 2 - proto: SignGravity entities: - - uid: 24530 + - uid: 24635 components: - type: Transform pos: -18.5,-3.5 parent: 2 - proto: SignHydro3 entities: - - uid: 24531 + - uid: 24636 components: - type: Transform pos: -5.5,4.5 parent: 2 - proto: SignInterrogation entities: - - uid: 24532 + - uid: 24637 components: - type: Transform pos: 18.5,18.5 parent: 2 - proto: SignJanitor entities: - - uid: 24533 + - uid: 24638 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 24639 components: - type: Transform pos: -6.5,-20.5 parent: 2 - proto: SignLaserMed entities: - - uid: 24534 + - uid: 24640 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 - - uid: 24535 + - uid: 24641 components: - type: Transform pos: -62.5,-22.5 parent: 2 - - uid: 24536 + - uid: 24642 components: - type: Transform pos: -70.5,-22.5 parent: 2 - proto: SignLibrary entities: - - uid: 24537 + - uid: 24643 components: - type: Transform pos: 9.5,-2.5 parent: 2 - proto: SignMagneticsMed entities: - - uid: 24538 + - uid: 24644 components: - type: Transform pos: -47.5,27.5 parent: 2 - proto: SignMedical entities: - - uid: 24539 + - uid: 24645 components: - type: Transform pos: -2.5,-44.5 parent: 2 - proto: SignMinerDock entities: - - uid: 24540 + - uid: 24646 components: - type: Transform pos: -44.5,27.5 parent: 2 - proto: SignMorgue entities: - - uid: 24541 + - uid: 24647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-62.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-62.5 + parent: 2 + - uid: 24649 components: - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 - - uid: 24542 +- proto: SignNews + entities: + - uid: 24650 components: - type: Transform - pos: -12.5,-62.5 + pos: -27.5,8.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 24652 + components: + - type: Transform + pos: -21.5,-6.5 parent: 2 - proto: SignPlaque entities: - - uid: 24543 + - uid: 24653 components: - type: Transform pos: -8.5,-16.5 parent: 2 - proto: SignPrison entities: - - uid: 24544 + - uid: 24654 components: - type: Transform pos: 39.5,24.5 parent: 2 - - uid: 24545 + - uid: 24655 components: - type: MetaData name: open prison sign - type: Transform pos: 43.5,13.5 parent: 2 +- proto: SignPsychology + entities: + - uid: 24656 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 - proto: SignRadiationMed entities: - - uid: 24546 + - uid: 24657 components: - type: Transform pos: -63.5,-25.5 parent: 2 - proto: SignRedFive entities: - - uid: 24547 + - uid: 24658 components: - type: Transform pos: 57.5,22.5 parent: 2 - - uid: 24548 + - uid: 24659 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 24549 + - uid: 24660 components: - type: Transform rot: 3.141592653589793 rad @@ -165046,17 +162382,17 @@ entities: parent: 2 - proto: SignRedFour entities: - - uid: 24550 + - uid: 24661 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 24551 + - uid: 24662 components: - type: Transform pos: 54.5,22.5 parent: 2 - - uid: 24552 + - uid: 24663 components: - type: Transform rot: 3.141592653589793 rad @@ -165064,71 +162400,71 @@ entities: parent: 2 - proto: SignRedNine entities: - - uid: 24553 + - uid: 24664 components: - type: Transform pos: 51.62568,41.505035 parent: 2 - proto: SignRedOne entities: - - uid: 24554 + - uid: 24665 components: - type: Transform pos: 45.5,22.5 parent: 2 - - uid: 24555 + - uid: 24666 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 - - uid: 24556 + - uid: 24667 components: - type: Transform pos: 30.70196,-15.491432 parent: 2 - - uid: 24557 + - uid: 24668 components: - type: Transform pos: 37.5,17.5 parent: 2 - proto: SignRedSeven entities: - - uid: 24558 + - uid: 24669 components: - type: Transform pos: 60.5,17.5 parent: 2 - proto: SignRedSix entities: - - uid: 24559 + - uid: 24670 components: - type: Transform pos: 42.5,17.5 parent: 2 - - uid: 24560 + - uid: 24671 components: - type: Transform pos: 60.5,20.5 parent: 2 - - uid: 24561 + - uid: 24672 components: - type: Transform pos: 51.40693,41.505035 parent: 2 - proto: SignRedThree entities: - - uid: 24562 + - uid: 24673 components: - type: Transform pos: 51.5,22.5 parent: 2 - - uid: 24563 + - uid: 24674 components: - type: Transform pos: 39.5,17.5 parent: 2 - - uid: 24564 + - uid: 24675 components: - type: Transform rot: 3.141592653589793 rad @@ -165136,18 +162472,18 @@ entities: parent: 2 - proto: SignRedTwo entities: - - uid: 24565 + - uid: 24676 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 24566 + - uid: 24677 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 - - uid: 24567 + - uid: 24678 components: - type: Transform rot: 3.141592653589793 rad @@ -165155,130 +162491,135 @@ entities: parent: 2 - proto: SignRedZero entities: - - uid: 24568 + - uid: 24679 components: - type: Transform pos: 30.467585,-15.491432 parent: 2 - - uid: 24569 + - uid: 24680 components: - type: Transform pos: 30.23321,-15.491432 parent: 2 - proto: SignRND entities: - - uid: 24570 + - uid: 24681 components: - type: Transform pos: 47.5,-38.5 parent: 2 - proto: SignRobo entities: - - uid: 24571 + - uid: 24682 components: - type: Transform pos: 66.5,-47.5 parent: 2 - proto: SignScience1 entities: - - uid: 24572 + - uid: 24683 components: - type: Transform pos: 38.5,-40.5 parent: 2 - proto: SignShipDock entities: - - uid: 24573 + - uid: 24684 components: - type: MetaData name: docking arm - type: Transform pos: -14.5,70.5 parent: 2 - - uid: 24574 + - uid: 24685 components: - type: MetaData name: docking arm - type: Transform pos: -20.5,70.5 parent: 2 - - uid: 24575 + - uid: 24686 components: - type: Transform pos: 76.5,-32.5 parent: 2 - proto: SignShock entities: - - uid: 24576 + - uid: 24687 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 24577 + - uid: 24688 components: - type: Transform pos: 11.5,-15.5 parent: 2 - proto: SignSmoking entities: - - uid: 24578 + - uid: 24689 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 24579 - components: - - type: Transform - pos: -10.5,-49.5 - parent: 2 - proto: SignSomethingOld entities: - - uid: 24580 + - uid: 24690 components: - type: Transform pos: -29.5,2.5 parent: 2 - proto: SignSpace entities: - - uid: 24581 + - uid: 24691 components: - type: Transform pos: -2.5,-76.5 parent: 2 - - uid: 24582 + - uid: 24692 components: - type: Transform pos: -58.5,-53.5 parent: 2 - - uid: 24583 + - uid: 24693 components: - type: Transform pos: -49.5,18.5 parent: 2 - proto: SignSurgery entities: - - uid: 24584 + - uid: 24694 components: - type: Transform - pos: -1.5,-62.5 + pos: -12.5,-57.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: -10.5,-53.5 parent: 2 - proto: SignTelecomms entities: - - uid: 24585 + - uid: 24696 components: - type: Transform pos: 13.5,-22.5 parent: 2 - proto: SignToolStorage entities: - - uid: 24586 + - uid: 24697 components: - type: Transform pos: -33.5,-13.5 parent: 2 + - uid: 24698 + components: + - type: Transform + pos: 38.5,-57.5 + parent: 2 - proto: SignToxins2 entities: - - uid: 24587 + - uid: 24699 components: - type: MetaData name: toxin lab sign @@ -165287,40 +162628,41 @@ entities: parent: 2 - proto: SignVirology entities: - - uid: 24588 + - uid: 24700 components: - type: Transform - pos: -18.5,-62.5 + rot: 1.5707963267948966 rad + pos: -18.5,-65.5 parent: 2 - proto: SilverOre1 entities: - - uid: 24589 + - uid: 24701 components: - type: Transform pos: 73.48065,-67.68085 parent: 2 - proto: SingularityGenerator entities: - - uid: 24590 + - uid: 24702 components: - type: Transform pos: -72.5,-23.5 parent: 2 - proto: SinkStemlessWater entities: - - uid: 24591 + - uid: 24703 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 - - uid: 24592 + - uid: 24704 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 - - uid: 24593 + - uid: 24705 components: - type: Transform rot: -1.5707963267948966 rad @@ -165328,92 +162670,92 @@ entities: parent: 2 - proto: SinkWide entities: - - uid: 24594 + - uid: 24706 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 2 - - uid: 24595 + - uid: 24707 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 - - uid: 24596 + - uid: 24708 components: - type: Transform pos: 1.5,9.5 parent: 2 - - uid: 24597 + - uid: 24709 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 - - uid: 24598 + - uid: 24710 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 - - uid: 24599 + - uid: 24711 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 - - uid: 24600 + - uid: 24712 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 - - uid: 24601 + - uid: 24713 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 - - uid: 24602 + - uid: 24714 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 - - uid: 24603 + - uid: 24715 components: - type: Transform pos: 63.5,13.5 parent: 2 - - uid: 24604 + - uid: 24716 components: - type: Transform pos: 63.5,11.5 parent: 2 - - uid: 24605 + - uid: 24717 components: - type: Transform pos: 63.5,9.5 parent: 2 - - uid: 24606 + - uid: 24718 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 - - uid: 24607 + - uid: 24719 components: - type: Transform pos: -3.5,56.5 parent: 2 - - uid: 24608 + - uid: 24720 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 - - uid: 24609 + - uid: 24721 components: - type: Transform rot: 3.141592653589793 rad @@ -165421,7 +162763,7 @@ entities: parent: 2 - proto: SmallLight entities: - - uid: 24610 + - uid: 24722 components: - type: Transform rot: -1.5707963267948966 rad @@ -165429,167 +162771,172 @@ entities: parent: 2 - proto: SmartFridge entities: - - uid: 24611 + - uid: 24723 components: - type: Transform - pos: -4.5,-61.5 + pos: 1.5,-52.5 parent: 2 - - uid: 24612 +- proto: SMESBasic + entities: + - uid: 24724 components: - type: Transform - pos: 11.5,-45.5 + pos: 13.5,-46.5 parent: 2 -- proto: SMESBasic - entities: - - uid: 24613 + - uid: 24725 components: - type: Transform pos: -56.5,-87.5 parent: 2 - - uid: 24614 + - uid: 24726 components: - type: MetaData name: shuttle smes - type: Transform pos: -65.5,-53.5 parent: 2 - - uid: 24615 + - uid: 24727 components: - type: MetaData name: teg smes - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 24616 + - uid: 24728 components: - type: MetaData name: telecoms smes - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 24617 + - uid: 24729 components: - type: MetaData name: south solar smes 2 - type: Transform pos: -2.5,-78.5 parent: 2 - - uid: 24618 + - uid: 24730 components: - type: MetaData name: brig smes - type: Transform pos: 48.5,-3.5 parent: 2 - - uid: 24619 + - uid: 24731 components: - type: MetaData name: engineering smes 1 - type: Transform pos: -48.5,-21.5 parent: 2 - - uid: 24620 + - uid: 24732 components: - type: MetaData name: engineering smes 2 - type: Transform pos: -46.5,-21.5 parent: 2 - - uid: 24621 + - uid: 24733 components: - type: MetaData name: engineering smes 3 - type: Transform pos: -44.5,-21.5 parent: 2 - - uid: 24622 + - uid: 24734 components: - type: MetaData name: singularity substation - type: Transform pos: -50.5,-9.5 parent: 2 - - uid: 24623 + - uid: 24735 components: - type: MetaData name: PA smes - type: Transform pos: -56.5,-20.5 parent: 2 - - uid: 24624 + - uid: 24736 components: - type: MetaData name: atmos smes - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 24625 + - uid: 24737 components: - type: MetaData name: north solars smes 1 - type: Transform pos: 73.5,38.5 parent: 2 - - uid: 24626 + - uid: 24738 components: - type: MetaData name: north solars smes 2 - type: Transform pos: 73.5,34.5 parent: 2 - - uid: 24627 + - uid: 24739 components: - type: MetaData name: south solar smes 1 - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 24628 + - uid: 24740 components: - type: MetaData name: engineering smes 6 - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 24629 + - uid: 24741 components: - type: MetaData name: engineering smes 4 - type: Transform pos: -74.5,-30.5 parent: 2 - - uid: 24630 + - uid: 24742 components: - type: MetaData name: engineering smes 5 - type: Transform pos: -72.5,-30.5 parent: 2 -- proto: soda_dispenser + - uid: 24743 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 +- proto: SodaDispenser entities: - - uid: 24631 + - uid: 24744 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 - - uid: 24632 + - uid: 24745 components: - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 24633 + - uid: 24746 components: - type: Transform pos: 37.5,51.5 parent: 2 - - uid: 24634 + - uid: 24747 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,47.5 parent: 2 - - uid: 24635 + - uid: 24748 components: - type: Transform rot: -1.5707963267948966 rad @@ -165597,653 +162944,653 @@ entities: parent: 2 - proto: SodiumLightTube entities: - - uid: 24636 + - uid: 24749 components: - type: Transform pos: -42.50719,-90.42425 parent: 2 - - uid: 24637 + - uid: 24750 components: - type: Transform pos: -13.634616,12.467242 parent: 2 - proto: SolarPanel entities: - - uid: 24638 + - uid: 24751 components: - type: Transform pos: 10.5,-101.5 parent: 2 - - uid: 24639 + - uid: 24752 components: - type: Transform pos: 16.5,-95.5 parent: 2 - - uid: 24640 + - uid: 24753 components: - type: Transform pos: 18.5,-95.5 parent: 2 - - uid: 24641 + - uid: 24754 components: - type: Transform pos: 6.5,-104.5 parent: 2 - - uid: 24642 + - uid: 24755 components: - type: Transform pos: 10.5,-95.5 parent: 2 - - uid: 24643 + - uid: 24756 components: - type: Transform pos: 12.5,-101.5 parent: 2 - - uid: 24644 + - uid: 24757 components: - type: Transform pos: 8.5,-104.5 parent: 2 - - uid: 24645 + - uid: 24758 components: - type: Transform pos: 14.5,-98.5 parent: 2 - - uid: 24646 + - uid: 24759 components: - type: Transform pos: 10.5,-98.5 parent: 2 - - uid: 24647 + - uid: 24760 components: - type: Transform pos: 8.5,-98.5 parent: 2 - - uid: 24648 + - uid: 24761 components: - type: Transform pos: 8.5,-95.5 parent: 2 - - uid: 24649 + - uid: 24762 components: - type: Transform pos: 12.5,-95.5 parent: 2 - - uid: 24650 + - uid: 24763 components: - type: Transform pos: 12.5,-98.5 parent: 2 - - uid: 24651 + - uid: 24764 components: - type: Transform pos: 14.5,-101.5 parent: 2 - - uid: 24652 + - uid: 24765 components: - type: Transform pos: 14.5,-95.5 parent: 2 - - uid: 24653 + - uid: 24766 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 24654 + - uid: 24767 components: - type: Transform pos: 8.5,-101.5 parent: 2 - - uid: 24655 + - uid: 24768 components: - type: Transform pos: 4.5,-95.5 parent: 2 - - uid: 24656 + - uid: 24769 components: - type: Transform pos: 12.5,-104.5 parent: 2 - - uid: 24657 + - uid: 24770 components: - type: Transform pos: 16.5,-101.5 parent: 2 - - uid: 24658 + - uid: 24771 components: - type: Transform pos: 18.5,-101.5 parent: 2 - - uid: 24659 + - uid: 24772 components: - type: Transform pos: 18.5,-98.5 parent: 2 - - uid: 24660 + - uid: 24773 components: - type: Transform pos: 16.5,-98.5 parent: 2 - - uid: 24661 + - uid: 24774 components: - type: Transform pos: 18.5,-104.5 parent: 2 - - uid: 24662 + - uid: 24775 components: - type: Transform pos: 16.5,-104.5 parent: 2 - - uid: 24663 + - uid: 24776 components: - type: Transform pos: 4.5,-104.5 parent: 2 - - uid: 24664 + - uid: 24777 components: - type: Transform pos: 4.5,-101.5 parent: 2 - - uid: 24665 + - uid: 24778 components: - type: Transform pos: 6.5,-101.5 parent: 2 - - uid: 24666 + - uid: 24779 components: - type: Transform pos: 4.5,-98.5 parent: 2 - - uid: 24667 + - uid: 24780 components: - type: Transform pos: 6.5,-98.5 parent: 2 - - uid: 24668 + - uid: 24781 components: - type: Transform pos: 14.5,-104.5 parent: 2 - - uid: 24669 + - uid: 24782 components: - type: Transform pos: 10.5,-104.5 parent: 2 - - uid: 24670 + - uid: 24783 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 - - uid: 24671 + - uid: 24784 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 - - uid: 24672 + - uid: 24785 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 - - uid: 24673 + - uid: 24786 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 - - uid: 24674 + - uid: 24787 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 - - uid: 24675 + - uid: 24788 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 - - uid: 24676 + - uid: 24789 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 - - uid: 24677 + - uid: 24790 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 - - uid: 24678 + - uid: 24791 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 - - uid: 24679 + - uid: 24792 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 - - uid: 24680 + - uid: 24793 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 - - uid: 24681 + - uid: 24794 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 - - uid: 24682 + - uid: 24795 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 - - uid: 24683 + - uid: 24796 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 - - uid: 24684 + - uid: 24797 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 - - uid: 24685 + - uid: 24798 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 - - uid: 24686 + - uid: 24799 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 - - uid: 24687 + - uid: 24800 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 - - uid: 24688 + - uid: 24801 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 - - uid: 24689 + - uid: 24802 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 - - uid: 24690 + - uid: 24803 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 - - uid: 24691 + - uid: 24804 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 - - uid: 24692 + - uid: 24805 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 - - uid: 24693 + - uid: 24806 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 - - uid: 24694 + - uid: 24807 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 - - uid: 24695 + - uid: 24808 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 - - uid: 24696 + - uid: 24809 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 - - uid: 24697 + - uid: 24810 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 - - uid: 24698 + - uid: 24811 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 - - uid: 24699 + - uid: 24812 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 - - uid: 24700 + - uid: 24813 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 - - uid: 24701 + - uid: 24814 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 - - uid: 24702 + - uid: 24815 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 - - uid: 24703 + - uid: 24816 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 - - uid: 24704 + - uid: 24817 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 - - uid: 24705 + - uid: 24818 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 - - uid: 24706 + - uid: 24819 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 - - uid: 24707 + - uid: 24820 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 - - uid: 24708 + - uid: 24821 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 - - uid: 24709 + - uid: 24822 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 - - uid: 24710 + - uid: 24823 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 - - uid: 24711 + - uid: 24824 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 - - uid: 24712 + - uid: 24825 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 - - uid: 24713 + - uid: 24826 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 - - uid: 24714 + - uid: 24827 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 - - uid: 24715 + - uid: 24828 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 - - uid: 24716 + - uid: 24829 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 - - uid: 24717 + - uid: 24830 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 - - uid: 24718 + - uid: 24831 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 - - uid: 24719 + - uid: 24832 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 - - uid: 24720 + - uid: 24833 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 - - uid: 24721 + - uid: 24834 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 - - uid: 24722 + - uid: 24835 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 - - uid: 24723 + - uid: 24836 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 - - uid: 24724 + - uid: 24837 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 - - uid: 24725 + - uid: 24838 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 - - uid: 24726 + - uid: 24839 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 - - uid: 24727 + - uid: 24840 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 - - uid: 24728 + - uid: 24841 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 - - uid: 24729 + - uid: 24842 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 - - uid: 24730 + - uid: 24843 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 - - uid: 24731 + - uid: 24844 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 - - uid: 24732 + - uid: 24845 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 - - uid: 24733 + - uid: 24846 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 - - uid: 24734 + - uid: 24847 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 - - uid: 24735 + - uid: 24848 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 - - uid: 24736 + - uid: 24849 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 - - uid: 24737 + - uid: 24850 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 - - uid: 24738 + - uid: 24851 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 - - uid: 24739 + - uid: 24852 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 - - uid: 24740 + - uid: 24853 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 - - uid: 24741 + - uid: 24854 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 - - uid: 24742 + - uid: 24855 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 - - uid: 24743 + - uid: 24856 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 - - uid: 24744 + - uid: 24857 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 - - uid: 24745 + - uid: 24858 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 - - uid: 24746 + - uid: 24859 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 - - uid: 24747 + - uid: 24860 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 - - uid: 24748 + - uid: 24861 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 - - uid: 24749 + - uid: 24862 components: - type: Transform rot: 1.5707963267948966 rad @@ -166251,214 +163598,209 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 24750 + - uid: 24863 components: - type: Transform pos: -4.5,-73.5 parent: 2 - - uid: 24751 + - uid: 24864 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 - - uid: 24752 + - uid: 24865 components: - type: Transform pos: 46.5,-62.5 parent: 2 - proto: SolarTracker entities: - - uid: 24753 + - uid: 24866 components: - type: Transform pos: 11.5,-105.5 parent: 2 - - uid: 24754 + - uid: 24867 components: - type: Transform pos: 91.5,36.5 parent: 2 - proto: SpaceCash entities: - - uid: 24755 + - uid: 24868 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 - - uid: 24756 + - uid: 24869 components: - type: Transform pos: 53.49319,28.910408 parent: 2 - - uid: 24757 + - uid: 24870 components: - type: Transform pos: 53.58694,28.691658 parent: 2 - proto: SpaceCash1000 entities: - - uid: 24758 + - uid: 24871 components: - type: Transform pos: 59.59177,-29.360462 parent: 2 - proto: SpaceQuartz1 entities: - - uid: 24760 + - uid: 24872 components: - type: Transform pos: -31.635456,29.591772 parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 24761 + - uid: 24873 components: - type: Transform pos: -12.610414,35.61681 parent: 2 - proto: SpawnMobAlexander entities: - - uid: 24762 + - uid: 24874 components: - type: Transform - pos: 3.5,5.5 + pos: -4.5,18.5 parent: 2 - proto: SpawnMobBear entities: - - uid: 24763 + - uid: 24875 components: - type: Transform pos: -37.5,62.5 parent: 2 - proto: SpawnMobButterfly entities: - - uid: 24764 + - uid: 24876 components: - type: Transform pos: -5.5,54.5 parent: 2 - - uid: 24765 + - uid: 24877 components: - type: Transform pos: -8.5,51.5 parent: 2 - proto: SpawnMobCat entities: - - uid: 24766 + - uid: 24878 components: - type: Transform pos: -12.5,-38.5 parent: 2 - - uid: 24767 + - uid: 24879 components: - type: Transform pos: 57.5,16.5 parent: 2 - proto: SpawnMobCatGeneric entities: - - uid: 24768 + - uid: 24880 components: - type: Transform pos: -55.5,-64.5 parent: 2 - proto: SpawnMobCleanBot entities: - - uid: 24769 + - uid: 24881 components: - type: Transform pos: 15.5,-42.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 24770 + - uid: 24882 components: - type: Transform pos: 3.5,-7.5 parent: 2 - proto: SpawnMobCow entities: - - uid: 24771 + - uid: 24883 components: - type: Transform pos: -7.5,18.5 parent: 2 - - uid: 24772 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 24773 + - uid: 24884 components: - type: Transform pos: -36.5,-43.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 24774 + - uid: 24885 components: - type: Transform pos: 32.5,-28.5 parent: 2 - proto: SpawnMobFrog entities: - - uid: 24775 + - uid: 24886 components: - type: Transform pos: 11.5,53.5 parent: 2 - - uid: 24776 + - uid: 24887 components: - type: Transform pos: 8.5,54.5 parent: 2 - proto: SpawnMobHamsterHamlet entities: - - uid: 24777 + - uid: 24888 components: - type: Transform pos: 30.5,-23.5 parent: 2 - proto: SpawnMobKangaroo entities: - - uid: 24778 + - uid: 24889 components: - type: Transform pos: -53.5,61.5 parent: 2 - proto: SpawnMobKangarooWillow entities: - - uid: 24779 + - uid: 24890 components: - type: Transform pos: 25.5,-0.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 24780 + - uid: 24891 components: - type: Transform pos: 26.5,23.5 parent: 2 - proto: SpawnMobMedibot entities: - - uid: 24781 + - uid: 24892 components: - type: Transform pos: -8.5,-46.5 parent: 2 - proto: SpawnMobMonkey entities: - - uid: 24782 + - uid: 24893 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-89.5 parent: 2 - - uid: 24783 + - uid: 24894 components: - type: Transform rot: -1.5707963267948966 rad @@ -166466,934 +163808,901 @@ entities: parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 24784 + - uid: 24895 components: - type: Transform pos: 16.5,9.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 24785 + - uid: 24896 components: - type: Transform pos: 2.5,-69.5 parent: 2 - - uid: 24786 + - uid: 24897 components: - type: Transform pos: -0.5,33.5 parent: 2 - - uid: 24787 + - uid: 24898 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 24788 + - uid: 24899 components: - type: Transform pos: -29.5,-47.5 parent: 2 - - uid: 24789 + - uid: 24900 components: - type: Transform pos: 49.5,-33.5 parent: 2 - - uid: 24790 + - uid: 24901 components: - type: Transform pos: -7.5,-81.5 parent: 2 - - uid: 24791 + - uid: 24902 components: - type: Transform pos: 6.5,32.5 parent: 2 - - uid: 24792 + - uid: 24903 components: - type: Transform pos: 35.5,22.5 parent: 2 - - uid: 24793 + - uid: 24904 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 24794 + - uid: 24905 components: - type: Transform pos: 52.5,36.5 parent: 2 - - uid: 24795 + - uid: 24906 components: - type: Transform pos: -51.5,-0.5 parent: 2 - - uid: 24796 + - uid: 24907 components: - type: Transform pos: -38.5,-64.5 parent: 2 - - uid: 24797 + - uid: 24908 components: - type: Transform pos: -40.5,-81.5 parent: 2 - - uid: 24798 + - uid: 24909 components: - type: Transform pos: -45.5,-77.5 parent: 2 - - uid: 24799 + - uid: 24910 components: - type: Transform pos: 48.5,-65.5 parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 24800 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - proto: SpawnMobRaccoonMorticia entities: - - uid: 24801 + - uid: 24911 components: - type: Transform pos: -33.5,31.5 parent: 2 - proto: SpawnMobShiva entities: - - uid: 24802 + - uid: 24912 components: - type: Transform pos: 4.5,19.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 24803 + - uid: 24913 components: - type: Transform pos: 12.5,-7.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 24804 + - uid: 24914 components: - type: Transform pos: 62.5,-43.5 parent: 2 - proto: SpawnMobSpaceSpider entities: - - uid: 24805 + - uid: 24915 components: - type: Transform pos: -47.5,68.5 parent: 2 - proto: SpawnMobWalter entities: - - uid: 24806 + - uid: 24916 components: - type: Transform - pos: -0.5,-53.5 + pos: 5.5,-49.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 24807 + - uid: 24917 components: - type: Transform pos: -39.5,-34.5 parent: 2 - - uid: 24808 + - uid: 24918 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 24809 + - uid: 24919 components: - type: Transform pos: -36.5,-34.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 24810 + - uid: 24920 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 24811 + - uid: 24921 components: - type: Transform pos: 17.5,11.5 parent: 2 -- proto: SpawnPointBlueShield - entities: - - uid: 31055 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 2 - proto: SpawnPointBorg entities: - - uid: 24812 + - uid: 24922 components: - type: Transform pos: 64.5,-44.5 parent: 2 - - uid: 24813 + - uid: 24923 components: - type: Transform pos: 60.5,-44.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 24814 + - uid: 24924 components: - type: Transform pos: -5.5,7.5 parent: 2 - - uid: 24815 + - uid: 24925 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 24816 + - uid: 24926 components: - type: Transform pos: -9.5,7.5 parent: 2 - proto: SpawnPointBoxer entities: - - uid: 24817 + - uid: 24927 components: - type: Transform pos: 22.5,2.5 parent: 2 -- proto: SpawnPointBrigmedic - entities: - - uid: 2040 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - proto: SpawnPointCaptain entities: - - uid: 24818 + - uid: 24928 components: - type: Transform pos: 26.5,-22.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 24819 + - uid: 24929 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 24820 + - uid: 24930 components: - type: Transform pos: -31.5,24.5 parent: 2 - - uid: 24821 + - uid: 24931 components: - type: Transform pos: -33.5,22.5 parent: 2 - - uid: 24822 + - uid: 24932 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 24823 + - uid: 24933 components: - type: Transform pos: -31.5,21.5 parent: 2 -- proto: SpawnPointCentcomConsultant - entities: - - uid: 31657 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 2 - proto: SpawnPointChaplain entities: - - uid: 24824 + - uid: 24934 components: - type: Transform pos: -30.5,13.5 parent: 2 - - uid: 24825 + - uid: 24935 components: - type: Transform pos: -30.5,14.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 24826 + - uid: 24936 components: - type: Transform pos: 0.5,7.5 parent: 2 - - uid: 24827 + - uid: 24937 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 24828 + - uid: 24938 components: - type: Transform pos: 5.5,9.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 24829 + - uid: 24939 components: - type: Transform - pos: 3.5,-50.5 + pos: 3.5,-48.5 parent: 2 - - uid: 24830 + - uid: 24940 components: - type: Transform - pos: 3.5,-48.5 + pos: 3.5,-46.5 parent: 2 - - uid: 24831 + - uid: 24941 components: - type: Transform - pos: 3.5,-46.5 + pos: 3.5,-52.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 24832 + - uid: 24942 components: - type: Transform pos: -36.5,-17.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 24833 + - uid: 24943 components: - type: Transform pos: -18.5,-55.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 24834 + - uid: 24944 components: - type: Transform pos: -21.5,38.5 parent: 2 - - uid: 24835 + - uid: 24945 components: - type: Transform pos: 0.5,-21.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 24836 + - uid: 24946 components: - type: Transform pos: 19.5,-11.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 24837 + - uid: 24947 components: - type: Transform pos: 4.5,-5.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 24838 + - uid: 24948 components: - type: Transform pos: 5.5,21.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 24839 + - uid: 24949 components: - type: Transform pos: -11.5,-18.5 parent: 2 - - uid: 24840 + - uid: 24950 components: - type: Transform pos: -10.5,-22.5 parent: 2 - - uid: 24841 + - uid: 24951 components: - type: Transform pos: -12.5,-22.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 24842 + - uid: 24952 components: - type: Transform pos: 39.5,-72.5 parent: 2 - - uid: 24843 - components: - - type: Transform - pos: 40.5,-72.5 - parent: 2 - - uid: 24844 + - uid: 24953 components: - type: Transform - pos: 42.5,-72.5 + pos: 37.5,-72.5 parent: 2 - - uid: 24845 + - uid: 24954 components: - type: Transform - pos: 37.5,-72.5 + pos: 42.5,-72.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 24846 + - uid: 24955 components: - type: Transform pos: 42.5,-2.5 parent: 2 - - uid: 24847 + - uid: 24956 components: - type: Transform pos: 39.5,-4.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 24848 + - uid: 24957 components: - type: Transform pos: 11.5,-9.5 parent: 2 - - uid: 24849 + - uid: 24958 components: - type: Transform pos: 9.5,-9.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 24850 + - uid: 24959 components: - type: Transform pos: -14.5,-46.5 parent: 2 - - uid: 24851 + - uid: 24960 components: - type: Transform pos: -12.5,-46.5 parent: 2 - - uid: 24852 + - uid: 24961 components: - type: Transform pos: -12.5,-48.5 parent: 2 - - uid: 24853 + - uid: 24962 components: - type: Transform pos: -14.5,-48.5 parent: 2 - - uid: 24854 + - uid: 24963 components: - type: Transform pos: -28.5,-74.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 24855 + - uid: 24964 components: - type: Transform pos: -0.5,-47.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 24856 + - uid: 24965 components: - type: Transform pos: -27.5,45.5 parent: 2 - - uid: 24857 + - uid: 24966 components: - type: Transform pos: -0.5,-20.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 24858 + - uid: 24967 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 24859 + - uid: 24968 components: - type: Transform pos: -7.5,-5.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 24860 + - uid: 24969 components: - type: Transform pos: -4.5,-41.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 24861 + - uid: 24970 components: - type: Transform - pos: 3.5,-64.5 + pos: -4.5,-65.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 24862 + - uid: 24971 components: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 24863 + - uid: 24972 components: - type: Transform pos: -23.5,-22.5 parent: 2 - - uid: 24864 + - uid: 24973 components: - type: Transform pos: 41.5,-72.5 parent: 2 - - uid: 24865 + - uid: 24974 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 24866 + - uid: 24975 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 24867 + - uid: 24976 components: - type: Transform pos: -51.5,14.5 parent: 2 - - uid: 24868 + - uid: 24977 components: - type: Transform pos: -45.5,5.5 parent: 2 - - uid: 24869 + - uid: 24978 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 24870 + - uid: 24979 components: - type: Transform pos: 39.5,-54.5 parent: 2 - - uid: 24871 + - uid: 24980 components: - type: Transform pos: -46.5,7.5 parent: 2 - - uid: 24872 + - uid: 24981 components: - type: Transform pos: -19.5,34.5 parent: 2 - - uid: 24873 + - uid: 24982 components: - type: Transform pos: -11.5,32.5 parent: 2 - - uid: 24874 + - uid: 24983 components: - type: Transform pos: -23.5,30.5 parent: 2 - - uid: 24875 + - uid: 24984 components: - type: Transform pos: -42.5,10.5 parent: 2 - - uid: 24876 + - uid: 24985 components: - type: Transform pos: -24.5,-20.5 parent: 2 - - uid: 24877 + - uid: 24986 components: - type: Transform pos: -44.5,3.5 parent: 2 - - uid: 24878 + - uid: 24987 components: - type: Transform pos: 43.5,-72.5 parent: 2 - - uid: 24879 + - uid: 24988 components: - type: Transform pos: 36.5,-72.5 parent: 2 - proto: SpawnPointPsychologist entities: - - uid: 24880 + - uid: 24989 components: - type: Transform pos: -11.5,-36.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 24881 + - uid: 24990 components: - type: Transform pos: -31.5,30.5 parent: 2 - proto: SpawnPointReporter entities: - - uid: 24882 + - uid: 24991 components: - type: Transform pos: -25.5,11.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 24883 + - uid: 24992 components: - type: Transform pos: 49.5,-40.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 24884 + - uid: 24993 components: - type: Transform pos: 63.5,-52.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 24885 + - uid: 24994 components: - type: Transform pos: -37.5,32.5 parent: 2 - - uid: 24886 + - uid: 24995 components: - type: Transform pos: -37.5,30.5 parent: 2 - - uid: 24887 + - uid: 24996 components: - type: Transform pos: -37.5,28.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 24888 + - uid: 24997 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 24889 + - uid: 24998 components: - type: Transform pos: 43.5,-46.5 parent: 2 - - uid: 24890 + - uid: 24999 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 24891 + - uid: 25000 components: - type: Transform pos: 44.5,-47.5 parent: 2 - - uid: 24892 + - uid: 25001 components: - type: Transform pos: 74.5,-34.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 24893 + - uid: 25002 components: - type: Transform pos: 23.5,18.5 parent: 2 - - uid: 24894 + - uid: 25003 components: - type: Transform pos: 25.5,18.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 24895 + - uid: 25004 components: - type: Transform pos: 1.5,19.5 parent: 2 - - uid: 24896 + - uid: 25005 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 24897 + - uid: 25006 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 24898 + - uid: 25007 components: - type: Transform pos: 0.5,18.5 parent: 2 - - uid: 24899 + - uid: 25008 components: - type: Transform pos: 1.5,17.5 parent: 2 - - uid: 24900 + - uid: 25009 components: - type: Transform pos: 6.5,13.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 24901 + - uid: 25010 components: - type: Transform pos: -21.5,44.5 parent: 2 - - uid: 24902 + - uid: 25011 components: - type: Transform pos: -10.5,42.5 parent: 2 - - uid: 24903 + - uid: 25012 components: - type: Transform pos: -21.5,48.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 24904 + - uid: 25013 components: - type: Transform pos: -37.5,-10.5 parent: 2 - - uid: 24905 + - uid: 25014 components: - type: Transform pos: -38.5,-12.5 parent: 2 - - uid: 24906 + - uid: 25015 components: - type: Transform pos: -36.5,-12.5 parent: 2 - - uid: 24907 + - uid: 25016 components: - type: Transform pos: -35.5,-10.5 parent: 2 - - uid: 24908 + - uid: 25017 components: - type: Transform pos: -35.5,-7.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 24909 + - uid: 25018 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 24910 + - uid: 25019 components: - type: Transform pos: -24.5,-12.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 24911 + - uid: 25020 components: - type: Transform pos: 23.5,21.5 parent: 2 - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 24917 + - uid: 25021 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 24918 + - uid: 25022 components: - type: Transform pos: -13.5,-12.5 parent: 2 - proto: SpiderWeb entities: - - uid: 24919 + - uid: 25023 components: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 24920 + - uid: 25024 components: - type: Transform pos: -39.5,-70.5 parent: 2 - - uid: 24921 + - uid: 25025 components: - type: Transform pos: -46.5,-72.5 parent: 2 - - uid: 24922 + - uid: 25026 components: - type: Transform pos: -47.5,-73.5 parent: 2 - - uid: 24923 + - uid: 25027 components: - type: Transform pos: -52.5,-68.5 parent: 2 - - uid: 24924 + - uid: 25028 components: - type: Transform pos: -50.5,-62.5 parent: 2 - proto: SprayBottle entities: - - uid: 24925 + - uid: 25029 components: - type: Transform pos: -7.3262715,-17.288473 parent: 2 - - uid: 24926 + - uid: 25030 components: - type: Transform pos: -7.2793965,-17.491598 parent: 2 - - uid: 24927 + - uid: 25031 components: - type: Transform pos: 53.44381,-51.454926 parent: 2 - proto: SprayBottleSpaceCleaner entities: - - uid: 24928 + - uid: 25032 components: - type: Transform pos: -13.517906,-22.26318 parent: 2 - - uid: 24929 + - uid: 25033 components: - type: Transform pos: -13.721031,-22.20068 parent: 2 - - uid: 24930 + - uid: 25034 components: - type: Transform pos: -13.62392,-22.29671 parent: 2 - - uid: 24931 + - uid: 25035 components: - type: Transform pos: -13.389545,-22.218584 parent: 2 - proto: Stairs entities: - - uid: 24932 + - uid: 25036 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 - - uid: 24933 + - uid: 25037 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-8.5 parent: 2 - - uid: 24934 + - uid: 25038 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 - - uid: 24935 + - uid: 25039 components: - type: Transform pos: -20.5,-23.5 parent: 2 - - uid: 24936 + - uid: 25040 components: - type: Transform pos: -19.5,-23.5 parent: 2 - - uid: 24937 + - uid: 25041 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-8.5 parent: 2 - - uid: 24938 + - uid: 25042 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 24939 + - uid: 25043 components: - type: Transform pos: -31.5,-20.5 parent: 2 - - uid: 24940 + - uid: 25044 components: - type: Transform pos: -32.5,-20.5 parent: 2 - - uid: 24941 + - uid: 25045 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-32.5 parent: 2 - - uid: 24942 + - uid: 25046 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-31.5 parent: 2 - - uid: 24943 + - uid: 25047 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 - - uid: 24944 + - uid: 25048 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-37.5 parent: 2 - - uid: 24945 + - uid: 25049 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-27.5 parent: 2 - - uid: 24946 + - uid: 25050 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-28.5 parent: 2 - - uid: 24947 + - uid: 25051 components: - type: Transform rot: -1.5707963267948966 rad @@ -167401,13 +164710,13 @@ entities: parent: 2 - proto: StairStage entities: - - uid: 24948 + - uid: 25052 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-2.5 parent: 2 - - uid: 24949 + - uid: 25053 components: - type: Transform rot: -1.5707963267948966 rad @@ -167415,82 +164724,125 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 24950 + - uid: 25054 components: - type: Transform - pos: 4.5,-64.5 + pos: -3.5,-66.5 parent: 2 - - uid: 24951 + - uid: 25055 components: - type: Transform - pos: 4.5,-63.5 + pos: -3.5,-64.5 + parent: 2 + - uid: 25056 + components: + - type: Transform + pos: -3.5,-65.5 parent: 2 - proto: StationMap entities: - - uid: 24952 + - uid: 25057 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 24953 + - uid: 25058 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 24954 + - uid: 25059 components: - type: Transform pos: -18.5,52.5 parent: 2 - - uid: 24955 + - uid: 25060 components: - type: Transform pos: 45.5,-70.5 parent: 2 - - uid: 24956 + - uid: 25061 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 24957 + - uid: 25062 components: - type: Transform pos: 48.5,3.5 parent: 2 - - uid: 24958 + - uid: 25063 components: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 24959 + - uid: 25064 components: - type: Transform pos: -8.5,47.5 parent: 2 - - uid: 24960 + - uid: 25065 components: - type: Transform pos: 12.5,-79.5 parent: 2 - - uid: 24961 + - uid: 25066 components: - type: Transform pos: -69.5,-36.5 parent: 2 - - uid: 24962 + - uid: 25067 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-2.5 parent: 2 - - uid: 24963 + - uid: 25068 components: - type: Transform pos: 9.5,-40.5 parent: 2 +- proto: SteelBench + entities: + - uid: 25069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 2 + - uid: 25070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-43.5 + parent: 2 + - uid: 25071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-43.5 + parent: 2 + - uid: 25072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 2 + - uid: 25073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-43.5 + parent: 2 + - uid: 25074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-43.5 + parent: 2 - proto: SteelOre1 entities: - - uid: 24964 + - uid: 25075 components: - type: Transform rot: 3.141592653589793 rad @@ -167498,49 +164850,49 @@ entities: parent: 2 - proto: Stool entities: - - uid: 24965 + - uid: 25076 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 - - uid: 24966 + - uid: 25077 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,13.5 parent: 2 - - uid: 24967 + - uid: 25078 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-31.5 parent: 2 - - uid: 24968 + - uid: 25079 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-31.5 parent: 2 - - uid: 24969 + - uid: 25080 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-31.5 parent: 2 - - uid: 24970 + - uid: 25081 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-33.5 parent: 2 - - uid: 24971 + - uid: 25082 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 2 - - uid: 24972 + - uid: 25083 components: - type: Transform rot: 3.141592653589793 rad @@ -167548,13 +164900,13 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 24973 + - uid: 25084 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 - - uid: 24974 + - uid: 25085 components: - type: MetaData name: stool @@ -167562,7 +164914,7 @@ entities: rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 2 - - uid: 24975 + - uid: 25086 components: - type: MetaData name: stool @@ -167570,24 +164922,24 @@ entities: rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 2 - - uid: 24976 + - uid: 25087 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 - - uid: 24977 + - uid: 25088 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 - - uid: 24978 + - uid: 25089 components: - type: Transform pos: 5.5,12.5 parent: 2 - - uid: 24979 + - uid: 25090 components: - type: MetaData name: stool @@ -167595,7 +164947,7 @@ entities: rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 2 - - uid: 24980 + - uid: 25091 components: - type: MetaData name: stool @@ -167603,78 +164955,78 @@ entities: rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 2 - - uid: 24981 + - uid: 25092 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 - - uid: 24982 + - uid: 25093 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 24983 + - uid: 25094 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 - - uid: 24984 + - uid: 25095 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 - - uid: 24985 + - uid: 25096 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 - - uid: 24986 + - uid: 25097 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 - - uid: 24987 + - uid: 25098 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 - - uid: 24988 + - uid: 25099 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 - - uid: 24989 + - uid: 25100 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 - - uid: 24990 + - uid: 25101 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 - - uid: 24991 + - uid: 25102 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 - - uid: 24992 + - uid: 25103 components: - type: Transform pos: 4.5,12.5 parent: 2 - - uid: 24993 + - uid: 25104 components: - type: MetaData name: stool @@ -167682,7 +165034,7 @@ entities: rot: 3.141592653589793 rad pos: -7.5,3.5 parent: 2 - - uid: 24994 + - uid: 25105 components: - type: MetaData name: stool @@ -167690,75 +165042,75 @@ entities: rot: 3.141592653589793 rad pos: -8.5,3.5 parent: 2 - - uid: 24995 + - uid: 25106 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 - - uid: 24996 + - uid: 25107 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 - - uid: 24997 + - uid: 25108 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 - - uid: 24998 + - uid: 25109 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 - - uid: 24999 + - uid: 25110 components: - type: MetaData name: donk stool - type: Transform pos: -9.5,44.5 parent: 2 - - uid: 25000 + - uid: 25111 components: - type: MetaData name: donk stool - type: Transform pos: -10.5,44.5 parent: 2 - - uid: 25001 + - uid: 25112 components: - type: Transform pos: -30.5,-96.5 parent: 2 - - uid: 25002 + - uid: 25113 components: - type: MetaData name: donk stool - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 25003 + - uid: 25114 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-34.5 parent: 2 - - uid: 25004 + - uid: 25115 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 - - uid: 25005 + - uid: 25116 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 - - uid: 25006 + - uid: 25117 components: - type: Transform rot: 1.5707963267948966 rad @@ -167766,318 +165118,268 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 25007 + - uid: 25118 components: - type: Transform pos: -75.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25008 + - uid: 25119 components: - type: Transform pos: 45.5,-54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25009 + - uid: 25120 components: - type: Transform pos: -16.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25010 + - uid: 25121 components: - type: Transform pos: -38.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25011 + - uid: 25122 components: - type: Transform pos: -38.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25012 + - uid: 25123 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25013 + - uid: 25124 components: - type: Transform pos: -34.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25014 + - uid: 25125 components: - type: Transform pos: -35.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25015 + - uid: 25126 components: - type: Transform pos: -50.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25016 + - uid: 25127 components: - type: Transform pos: -50.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25017 + - uid: 25128 components: - type: Transform pos: 53.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25018 + - uid: 25129 components: - type: Transform pos: -24.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25019 + - uid: 25130 components: - type: Transform pos: -26.5,-55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25020 + - uid: 25131 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25021 + - uid: 25132 components: - type: Transform pos: -50.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25022 + - uid: 25133 components: - type: Transform pos: -50.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25023 + - uid: 25134 components: - type: Transform pos: -35.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25024 + - uid: 25135 components: - type: Transform pos: -75.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Stunbaton entities: - - uid: 25025 + - uid: 25136 components: - type: Transform pos: 8.313212,12.723815 parent: 2 - - uid: 25026 + - uid: 25137 components: - type: Transform pos: 8.262076,12.8623 parent: 2 - proto: SubstationBasic entities: - - uid: 25027 + - uid: 25138 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 25028 - components: - - type: MetaData - name: medbay substation - - type: Transform - pos: 13.5,-45.5 - parent: 2 - - uid: 25029 - components: - - type: MetaData - name: medbay substation 2 - - type: Transform - pos: 13.5,-47.5 - parent: 2 - - uid: 25030 + - uid: 25139 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 25031 + - uid: 25140 components: - type: MetaData name: command substation - type: Transform pos: 18.5,-27.5 parent: 2 - - uid: 25032 + - uid: 25141 components: - type: MetaData name: teg substation - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 25033 + - uid: 25142 components: - type: MetaData name: chapel substation - type: Transform pos: -34.5,-3.5 parent: 2 - - uid: 25034 + - uid: 25143 components: - type: MetaData - name: virology substation + name: south maintenance substation - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 25035 + - uid: 25144 components: - type: MetaData - name: medbay substation 3 + name: maintenance substation - type: Transform pos: 15.5,-58.5 parent: 2 - - uid: 25036 + - uid: 25145 components: - type: MetaData name: boxing substation - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 25037 + - uid: 25146 components: - type: MetaData name: vault substation - type: Transform pos: 38.5,-28.5 parent: 2 - - uid: 25038 + - uid: 25147 components: - type: MetaData name: robotics substation - type: Transform pos: 69.5,-59.5 parent: 2 - - uid: 25039 + - uid: 25148 components: - type: MetaData name: sec substation - type: Transform pos: 33.5,25.5 parent: 2 - - uid: 25040 + - uid: 25149 components: - type: MetaData name: prison substation - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 25041 + - uid: 25150 components: - type: MetaData name: brig substation - type: Transform pos: 47.5,-3.5 parent: 2 - - uid: 25042 + - uid: 25151 components: - type: MetaData name: evac substation - type: Transform pos: 48.5,-5.5 parent: 2 - - uid: 25043 + - uid: 25152 components: - type: MetaData name: science substation - type: Transform pos: 38.5,-46.5 parent: 2 - - uid: 25044 + - uid: 25153 components: - type: MetaData name: gravity substation - type: Transform pos: -16.5,-0.5 parent: 2 - - uid: 25045 + - uid: 25154 components: - type: MetaData name: engineering substation - type: Transform pos: -28.5,-23.5 parent: 2 - - uid: 25046 + - uid: 25155 components: - type: MetaData name: arrivals substation - type: Transform pos: 43.5,-58.5 parent: 2 - - uid: 25047 + - uid: 25156 components: - type: MetaData name: singularity substation - type: Transform pos: -50.5,-8.5 parent: 2 - - uid: 25048 + - uid: 25157 components: - type: MetaData name: PA substation - type: Transform pos: -57.5,-20.5 parent: 2 - - uid: 25049 + - uid: 25158 components: - type: MetaData name: atmos substation - type: Transform pos: -27.5,-37.5 parent: 2 - - uid: 25050 + - uid: 25159 components: - type: MetaData name: maints bar substation - type: Transform pos: -31.5,-54.5 parent: 2 - - uid: 25051 + - uid: 25160 components: - type: MetaData name: north maints substation - type: Transform pos: -8.5,35.5 parent: 2 - - uid: 25052 + - uid: 25161 components: - type: MetaData name: cargo substation @@ -168086,215 +165388,222 @@ entities: parent: 2 missingComponents: - Anchorable - - uid: 25053 + - uid: 25162 components: - type: MetaData name: telecoms substation - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 25054 + - uid: 25163 components: - type: MetaData name: sec maints substation - type: Transform pos: 50.5,29.5 parent: 2 - - uid: 25055 + - uid: 25164 components: - type: MetaData name: ai substation - type: Transform pos: -10.5,62.5 parent: 2 - - uid: 25056 + - uid: 25165 components: - type: MetaData name: detective substation - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 25057 + - uid: 25166 components: - type: MetaData name: shuttle substation - type: Transform pos: -65.5,-54.5 parent: 2 + - uid: 25167 + components: + - type: MetaData + name: medbay substation + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 25168 + components: + - type: MetaData + name: medbay corridor substation + - type: Transform + pos: 6.5,-38.5 + parent: 2 - proto: SuitStorageAtmos entities: - - uid: 25058 + - uid: 25169 components: - type: Transform pos: -40.5,-36.5 parent: 2 - - uid: 25059 + - uid: 25170 components: - type: Transform pos: -36.5,-36.5 parent: 2 - - uid: 25060 + - uid: 25171 components: - type: Transform pos: -38.5,-36.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 21435 + - uid: 25172 components: - type: Transform pos: 28.5,-29.5 parent: 2 - proto: SuitStorageCE entities: - - uid: 25062 + - uid: 25173 components: - type: Transform pos: -37.5,-16.5 parent: 2 -- proto: SuitStorageCentcomConsultant - entities: - - uid: 31664 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 2 - proto: SuitStorageCMO entities: - - uid: 25063 + - uid: 25174 components: - type: Transform pos: -22.5,-55.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 25064 + - uid: 25175 components: - type: Transform pos: -34.5,-5.5 parent: 2 - - uid: 25065 + - uid: 25176 components: - type: Transform pos: -34.5,-7.5 parent: 2 - - uid: 25066 + - uid: 25177 components: - type: Transform pos: -34.5,-8.5 parent: 2 - - uid: 25067 + - uid: 25178 components: - type: Transform pos: -34.5,-6.5 parent: 2 - - uid: 25068 + - uid: 25179 components: - type: Transform pos: -55.5,-15.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 25069 + - uid: 25180 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 25070 + - uid: 25181 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 25071 + - uid: 25182 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 25072 + - uid: 25183 components: - type: Transform pos: 31.5,-12.5 parent: 2 - - uid: 25073 + - uid: 25184 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 25074 + - uid: 25185 components: - type: Transform pos: 33.5,-12.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 25075 + - uid: 25186 components: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 25076 + - uid: 25187 components: - type: Transform pos: 63.5,5.5 parent: 2 - proto: SuitStorageHOS entities: - - uid: 25077 + - uid: 25188 components: - type: Transform pos: 5.5,22.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 25078 + - uid: 25189 components: - type: Transform pos: 65.5,-52.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 25079 + - uid: 25190 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 25080 + - uid: 25191 components: - type: Transform pos: -36.5,29.5 parent: 2 - - uid: 25081 + - uid: 25192 components: - type: Transform pos: -36.5,31.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 25082 + - uid: 25193 components: - type: Transform pos: 26.5,30.5 parent: 2 - - uid: 25083 + - uid: 25194 components: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 25084 + - uid: 25195 components: - type: Transform pos: 32.5,27.5 parent: 2 - proto: SuitStorageWarden entities: - - uid: 25085 + - uid: 25196 components: - type: Transform pos: 20.5,20.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 25087 + - uid: 25197 components: - type: Transform rot: 1.5707963267948966 rad @@ -168305,7 +165614,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: chief medical officer - - uid: 25088 + - uid: 25198 components: - type: Transform rot: -1.5707963267948966 rad @@ -168316,7 +165625,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: 'head of security ' - - uid: 25089 + - uid: 25199 components: - type: Transform rot: 3.141592653589793 rad @@ -168327,7 +165636,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: vault b - - uid: 25090 + - uid: 25200 components: - type: Transform rot: 3.141592653589793 rad @@ -168338,7 +165647,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: vault a - - uid: 25091 + - uid: 25201 components: - type: Transform pos: 31.5,-22.5 @@ -168348,7 +165657,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: bridge - - uid: 25092 + - uid: 25202 components: - type: Transform rot: 3.141592653589793 rad @@ -168359,7 +165668,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: research director - - uid: 25093 + - uid: 25203 components: - type: Transform rot: -1.5707963267948966 rad @@ -168370,7 +165679,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: EVA closet - - uid: 25094 + - uid: 25204 components: - type: Transform pos: 28.5,-43.5 @@ -168380,7 +165689,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: personnel - - uid: 25095 + - uid: 25205 components: - type: Transform rot: 1.5707963267948966 rad @@ -168391,20 +165700,9 @@ entities: - SurveillanceCameraCommand nameSet: True id: hop - - uid: 31674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Consultant's Office - proto: SurveillanceCameraEngineering entities: - - uid: 25096 + - uid: 25206 components: - type: Transform rot: -1.5707963267948966 rad @@ -168415,7 +165713,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: atmospherics - - uid: 25097 + - uid: 25207 components: - type: Transform rot: 3.141592653589793 rad @@ -168426,7 +165724,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: engineering main corridor - - uid: 25098 + - uid: 25208 components: - type: Transform pos: -38.5,-13.5 @@ -168436,7 +165734,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: engineer canteen - - uid: 25099 + - uid: 25209 components: - type: Transform rot: -1.5707963267948966 rad @@ -168447,7 +165745,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: 'AME ' - - uid: 25100 + - uid: 25210 components: - type: Transform pos: -52.5,-20.5 @@ -168457,7 +165755,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: engineering console room - - uid: 25101 + - uid: 25211 components: - type: Transform pos: -67.5,-28.5 @@ -168467,7 +165765,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: particle accelerator - - uid: 25102 + - uid: 25212 components: - type: Transform rot: -1.5707963267948966 rad @@ -168480,7 +165778,7 @@ entities: id: gravity generator - proto: SurveillanceCameraGeneral entities: - - uid: 25103 + - uid: 25213 components: - type: Transform pos: -6.5,-27.5 @@ -168490,7 +165788,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: janitorial closet - - uid: 25104 + - uid: 25214 components: - type: Transform rot: 1.5707963267948966 rad @@ -168501,7 +165799,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: north youtool - - uid: 25105 + - uid: 25215 components: - type: Transform rot: 3.141592653589793 rad @@ -168512,7 +165810,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: food court - - uid: 25106 + - uid: 25216 components: - type: Transform rot: 1.5707963267948966 rad @@ -168523,7 +165821,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: south youtool - - uid: 25107 + - uid: 25217 components: - type: Transform pos: 37.5,-73.5 @@ -168533,7 +165831,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: arrivals - - uid: 25108 + - uid: 25218 components: - type: Transform rot: -1.5707963267948966 rad @@ -168544,7 +165842,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: evac - - uid: 25109 + - uid: 25219 components: - type: Transform rot: 3.141592653589793 rad @@ -168557,7 +165855,7 @@ entities: id: waste sorting - proto: SurveillanceCameraMedical entities: - - uid: 25110 + - uid: 25220 components: - type: Transform rot: -1.5707963267948966 rad @@ -168568,7 +165866,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: medbay corridor - - uid: 25111 + - uid: 25221 components: - type: Transform rot: 1.5707963267948966 rad @@ -168579,118 +165877,129 @@ entities: - SurveillanceCameraMedical nameSet: True id: medbay reception - - uid: 25112 + - uid: 25222 components: - type: Transform - pos: -10.5,-61.5 + rot: -1.5707963267948966 rad + pos: -25.5,-70.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: medical doctors corridor - - uid: 25113 + id: virology reception + - uid: 25223 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-52.5 + pos: -26.5,-80.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: medical beds - - uid: 25114 + id: virology treatment + - uid: 25224 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-70.5 + pos: -23.5,-83.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: virology reception - - uid: 25115 + id: virology testing + - uid: 25225 components: - type: Transform - pos: -26.5,-80.5 + rot: 3.141592653589793 rad + pos: -15.5,-52.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: virology treatment - - uid: 25116 + id: surgery + - uid: 25226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + - type: ActiveUserInterface + - uid: 25227 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-83.5 + pos: 0.5,-59.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: virology testing + id: cryogenics - proto: SurveillanceCameraRouterCommand entities: - - uid: 25117 + - uid: 25228 components: - type: Transform pos: -18.5,-48.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 25118 + - uid: 25229 components: - type: Transform pos: -21.5,-47.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 25119 + - uid: 25230 components: - type: Transform pos: -18.5,-45.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 25120 + - uid: 25231 components: - type: Transform pos: -18.5,-46.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 25121 + - uid: 25232 components: - type: Transform pos: -21.5,-45.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 25122 + - uid: 25233 components: - type: Transform pos: -21.5,-48.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 25123 + - uid: 25234 components: - type: Transform pos: -18.5,-47.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 25124 + - uid: 25235 components: - type: Transform pos: -21.5,-46.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 25125 + - uid: 25236 components: - type: Transform rot: 1.5707963267948966 rad @@ -168701,7 +166010,7 @@ entities: - SurveillanceCameraScience nameSet: True id: robotics - - uid: 25126 + - uid: 25237 components: - type: Transform rot: 1.5707963267948966 rad @@ -168712,7 +166021,7 @@ entities: - SurveillanceCameraScience nameSet: True id: r&d - - uid: 25127 + - uid: 25238 components: - type: Transform rot: 1.5707963267948966 rad @@ -168723,7 +166032,7 @@ entities: - SurveillanceCameraScience nameSet: True id: science robotics showcase - - uid: 25128 + - uid: 25239 components: - type: Transform rot: 3.141592653589793 rad @@ -168734,7 +166043,7 @@ entities: - SurveillanceCameraScience nameSet: True id: science entrance - - uid: 25129 + - uid: 25240 components: - type: Transform rot: 1.5707963267948966 rad @@ -168747,7 +166056,7 @@ entities: id: artifact lab - proto: SurveillanceCameraSecurity entities: - - uid: 25130 + - uid: 25241 components: - type: Transform rot: 1.5707963267948966 rad @@ -168758,7 +166067,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: space armory - - uid: 25131 + - uid: 25242 components: - type: Transform rot: 1.5707963267948966 rad @@ -168769,7 +166078,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: open prison north west - - uid: 25132 + - uid: 25243 components: - type: Transform rot: -1.5707963267948966 rad @@ -168780,7 +166089,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: open prison south - - uid: 25133 + - uid: 25244 components: - type: Transform rot: 1.5707963267948966 rad @@ -168791,7 +166100,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: brig south - - uid: 25134 + - uid: 25245 components: - type: Transform rot: 3.141592653589793 rad @@ -168802,7 +166111,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: brig - - uid: 25135 + - uid: 25246 components: - type: Transform rot: 1.5707963267948966 rad @@ -168813,7 +166122,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: armory - - uid: 25136 + - uid: 25247 components: - type: Transform rot: 3.141592653589793 rad @@ -168824,7 +166133,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: security canteen - - uid: 25137 + - uid: 25248 components: - type: Transform rot: -1.5707963267948966 rad @@ -168837,7 +166146,7 @@ entities: id: detective agency - proto: SurveillanceCameraService entities: - - uid: 25138 + - uid: 25249 components: - type: Transform rot: 1.5707963267948966 rad @@ -168848,7 +166157,7 @@ entities: - SurveillanceCameraService nameSet: True id: library - - uid: 25139 + - uid: 25250 components: - type: Transform rot: 1.5707963267948966 rad @@ -168859,7 +166168,7 @@ entities: - SurveillanceCameraService nameSet: True id: Kitchen - - uid: 25140 + - uid: 25251 components: - type: Transform rot: 1.5707963267948966 rad @@ -168870,7 +166179,7 @@ entities: - SurveillanceCameraService nameSet: True id: bar - - uid: 25141 + - uid: 25252 components: - type: Transform rot: 1.5707963267948966 rad @@ -168883,7 +166192,7 @@ entities: id: hydrophonics - proto: SurveillanceCameraSupply entities: - - uid: 25142 + - uid: 25253 components: - type: Transform pos: -43.5,18.5 @@ -168893,7 +166202,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: cargo dock - - uid: 25143 + - uid: 25254 components: - type: Transform rot: 1.5707963267948966 rad @@ -168904,7 +166213,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: cargo - - uid: 25144 + - uid: 25255 components: - type: Transform pos: -43.5,28.5 @@ -168914,7 +166223,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: salvage magnet - - uid: 25145 + - uid: 25256 components: - type: Transform rot: 3.141592653589793 rad @@ -168927,14 +166236,14 @@ entities: id: swap shop - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 25146 + - uid: 25257 components: - type: Transform pos: -27.5,12.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 25147 + - uid: 25258 components: - type: Transform rot: 3.141592653589793 rad @@ -168945,7 +166254,7 @@ entities: id: news camera 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 25148 + - uid: 25259 components: - type: Transform pos: -24.5,13.5 @@ -168955,7 +166264,7 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: news camera - - uid: 25149 + - uid: 25260 components: - type: Transform rot: -1.5707963267948966 rad @@ -168963,2208 +166272,2178 @@ entities: parent: 2 - proto: SynthesizerInstrument entities: - - uid: 25150 + - uid: 25261 components: - type: Transform pos: -10.500677,-5.723185 parent: 2 - proto: Syringe entities: - - uid: 25151 + - uid: 25262 components: - type: Transform pos: -25.497284,-79.35806 parent: 2 - proto: Table entities: - - uid: 25152 + - uid: 25263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-21.5 + pos: -47.5,38.5 parent: 2 - - uid: 25153 + - uid: 25264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-19.5 + pos: -47.5,39.5 parent: 2 - - uid: 25154 + - uid: 25265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 + rot: 3.141592653589793 rad + pos: -22.5,-58.5 parent: 2 - - uid: 25155 + - uid: 25266 components: - type: Transform - pos: 7.5,-45.5 + rot: 3.141592653589793 rad + pos: -24.5,-57.5 parent: 2 - - uid: 25156 + - uid: 25267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 + rot: 3.141592653589793 rad + pos: -22.5,-57.5 parent: 2 - - uid: 25157 + - uid: 25268 components: - type: Transform - pos: 55.5,61.5 + rot: 3.141592653589793 rad + pos: 4.5,-53.5 parent: 2 - - uid: 25158 + - uid: 25269 components: - type: Transform - pos: 54.5,61.5 + pos: 4.5,-50.5 parent: 2 - - uid: 25159 + - uid: 25270 components: - type: Transform - pos: 53.5,61.5 + pos: -26.5,-57.5 parent: 2 - - uid: 25160 + - uid: 25271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-40.5 + pos: -24.5,-62.5 parent: 2 - - uid: 25161 + - uid: 25272 components: - type: Transform - pos: -37.5,-18.5 + pos: -22.5,-62.5 parent: 2 - - uid: 25162 + - uid: 25273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-34.5 + pos: -25.5,-61.5 parent: 2 - - uid: 25163 + - uid: 25274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-34.5 + pos: -26.5,-61.5 parent: 2 - - uid: 25164 + - uid: 25275 components: - type: Transform - pos: -25.5,-52.5 + pos: -25.5,-62.5 parent: 2 - - uid: 25165 + - uid: 25276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-7.5 + pos: 5.5,-50.5 parent: 2 - - uid: 25166 + - uid: 25277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-7.5 + pos: -23.5,-62.5 parent: 2 - - uid: 25167 + - uid: 25278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,7.5 + pos: -7.5,-61.5 parent: 2 - - uid: 25168 + - uid: 25279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,11.5 + pos: -5.5,-65.5 parent: 2 - - uid: 25169 + - uid: 25280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 + pos: -1.5,-59.5 parent: 2 - - uid: 25170 + - uid: 25281 components: - type: Transform - pos: -25.5,-78.5 + pos: -7.5,-57.5 parent: 2 - - uid: 25171 + - uid: 25282 components: - type: Transform - pos: -19.5,-85.5 + pos: -1.5,-61.5 parent: 2 - - uid: 25172 + - uid: 25283 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,6.5 + pos: -13.5,-21.5 parent: 2 - - uid: 25173 + - uid: 25284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 parent: 2 - - uid: 25174 + - uid: 25285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,12.5 + pos: 3.5,-45.5 parent: 2 - - uid: 25175 + - uid: 25286 components: - type: Transform - pos: 10.5,-56.5 + pos: 7.5,-45.5 parent: 2 - - uid: 25176 + - uid: 25287 components: - type: Transform - pos: -28.5,21.5 + pos: 55.5,61.5 parent: 2 - - uid: 25177 + - uid: 25288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-38.5 + pos: 54.5,61.5 parent: 2 - - uid: 25178 + - uid: 25289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 + pos: 53.5,61.5 parent: 2 - - uid: 25179 + - uid: 25290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 + rot: -1.5707963267948966 rad + pos: 55.5,-40.5 parent: 2 - - uid: 25180 + - uid: 25291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-56.5 + pos: -37.5,-18.5 parent: 2 - - uid: 25181 + - uid: 25292 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-56.5 + pos: -66.5,-34.5 parent: 2 - - uid: 25182 + - uid: 25293 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-56.5 + pos: -67.5,-34.5 parent: 2 - - uid: 25183 + - uid: 25294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-56.5 + pos: -25.5,-52.5 parent: 2 - - uid: 25184 + - uid: 25295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-56.5 + rot: 3.141592653589793 rad + pos: -37.5,-7.5 parent: 2 - - uid: 25185 + - uid: 25296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 + rot: 3.141592653589793 rad + pos: -36.5,-7.5 parent: 2 - - uid: 25186 + - uid: 25297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - uid: 25298 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-36.5 + pos: 18.5,11.5 parent: 2 - - uid: 25187 + - uid: 25299 components: - type: Transform - pos: 10.5,-58.5 + rot: 3.141592653589793 rad + pos: 18.5,13.5 parent: 2 - - uid: 25188 + - uid: 25300 components: - type: Transform - pos: 10.5,-59.5 + pos: -25.5,-78.5 parent: 2 - - uid: 25189 + - uid: 25301 components: - type: Transform - pos: 10.5,-61.5 + pos: -19.5,-85.5 parent: 2 - - uid: 25190 + - uid: 25302 components: - type: Transform - pos: 10.5,-62.5 + rot: 1.5707963267948966 rad + pos: 2.5,6.5 parent: 2 - - uid: 25191 + - uid: 25303 components: - type: Transform - pos: 9.5,-62.5 + rot: -1.5707963267948966 rad + pos: 6.5,12.5 parent: 2 - - uid: 25192 + - uid: 25304 components: - type: Transform - pos: 8.5,-62.5 + pos: 10.5,-56.5 parent: 2 - - uid: 25193 + - uid: 25305 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 25306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-38.5 + parent: 2 + - uid: 25307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - uid: 25308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 2 + - uid: 25309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-36.5 + parent: 2 + - uid: 25310 components: - type: Transform pos: -13.5,-23.5 parent: 2 - - uid: 25194 + - uid: 25311 components: - type: Transform pos: -12.5,-19.5 parent: 2 - - uid: 25195 + - uid: 25312 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 25196 + - uid: 25313 components: - type: Transform pos: 8.5,13.5 parent: 2 - - uid: 25197 + - uid: 25314 components: - type: Transform pos: 7.5,12.5 parent: 2 - - uid: 25198 + - uid: 25315 components: - type: Transform pos: -22.5,-78.5 parent: 2 - - uid: 25199 + - uid: 25316 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 25200 + - uid: 25317 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 - - uid: 25201 + - uid: 25318 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 - - uid: 25202 - components: - - type: Transform - pos: 10.5,-60.5 - parent: 2 - - uid: 25203 + - uid: 25319 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 - - uid: 25204 + - uid: 25320 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 25205 + - uid: 25321 components: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 25206 + - uid: 25322 components: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 25207 + - uid: 25323 components: - type: Transform pos: -62.5,-28.5 parent: 2 - - uid: 25208 + - uid: 25324 components: - type: Transform pos: -22.5,-76.5 parent: 2 - - uid: 25209 + - uid: 25325 components: - type: Transform pos: -20.5,-77.5 parent: 2 - - uid: 25210 + - uid: 25326 components: - type: Transform pos: -6.5,-73.5 parent: 2 - - uid: 25211 + - uid: 25327 components: - type: Transform pos: 9.5,-56.5 parent: 2 - - uid: 25212 + - uid: 25328 components: - type: Transform pos: -23.5,-71.5 parent: 2 - - uid: 25213 - components: - - type: Transform - pos: -11.5,-67.5 - parent: 2 - - uid: 25214 + - uid: 25329 components: - type: Transform pos: -24.5,-71.5 parent: 2 - - uid: 25215 + - uid: 25330 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 25216 + - uid: 25331 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 25217 + - uid: 25332 components: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 25218 + - uid: 25333 components: - type: Transform pos: -22.5,-69.5 parent: 2 - - uid: 25219 + - uid: 25334 components: - type: Transform pos: -30.5,-69.5 parent: 2 - - uid: 25220 + - uid: 25335 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 - - uid: 25221 + - uid: 25336 components: - type: Transform pos: -8.5,-15.5 parent: 2 - - uid: 25222 + - uid: 25337 components: - type: Transform pos: 15.5,-64.5 parent: 2 - - uid: 25223 + - uid: 25338 components: - type: Transform pos: 16.5,-64.5 parent: 2 - - uid: 25224 + - uid: 25339 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 - - uid: 25225 + - uid: 25340 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 - - uid: 25226 + - uid: 25341 components: - type: Transform pos: 8.5,12.5 parent: 2 - - uid: 25227 - components: - - type: Transform - pos: 9.5,-58.5 - parent: 2 - - uid: 25228 + - uid: 25342 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 25229 + - uid: 25343 components: - type: Transform pos: -19.5,-87.5 parent: 2 - - uid: 25230 + - uid: 25344 components: - type: Transform pos: -19.5,-84.5 parent: 2 - - uid: 25231 + - uid: 25345 components: - type: Transform pos: -26.5,-86.5 parent: 2 - - uid: 25232 + - uid: 25346 components: - type: Transform pos: -26.5,-84.5 parent: 2 - - uid: 25233 + - uid: 25347 components: - type: Transform pos: -25.5,-84.5 parent: 2 - - uid: 25234 + - uid: 25348 components: - type: Transform pos: -24.5,-84.5 parent: 2 - - uid: 25235 + - uid: 25349 components: - type: Transform pos: 12.5,20.5 parent: 2 - - uid: 25236 + - uid: 25350 components: - type: Transform pos: 12.5,19.5 parent: 2 - - uid: 25237 + - uid: 25351 components: - type: Transform pos: 12.5,21.5 parent: 2 - - uid: 25238 + - uid: 25352 components: - type: Transform pos: -10.5,-32.5 parent: 2 - - uid: 25239 + - uid: 25353 components: - type: Transform pos: -9.5,-32.5 parent: 2 - - uid: 25240 + - uid: 25354 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 25241 + - uid: 25355 components: - type: Transform pos: -8.5,-33.5 parent: 2 - - uid: 25242 + - uid: 25356 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 - - uid: 25243 + - uid: 25357 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 25244 + - uid: 25358 components: - type: Transform pos: 16.5,21.5 parent: 2 - - uid: 25245 + - uid: 25359 components: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 25246 + - uid: 25360 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 - - uid: 25247 + - uid: 25361 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 - - uid: 25248 + - uid: 25362 components: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 25249 + - uid: 25363 components: - type: Transform pos: 53.5,35.5 parent: 2 - - uid: 25250 + - uid: 25364 components: - type: Transform pos: 54.5,35.5 parent: 2 - - uid: 25251 + - uid: 25365 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 - - uid: 25252 + - uid: 25366 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 - - uid: 25253 + - uid: 25367 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 - - uid: 25255 + - uid: 25368 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 25369 components: - type: Transform pos: 62.5,18.5 parent: 2 - - uid: 25256 + - uid: 25370 components: - type: Transform pos: 62.5,15.5 parent: 2 - - uid: 25257 + - uid: 25371 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 25258 + - uid: 25372 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 25259 + - uid: 25373 components: - type: Transform pos: 53.5,24.5 parent: 2 - - uid: 25260 + - uid: 25374 components: - type: Transform pos: 50.5,24.5 parent: 2 - - uid: 25261 + - uid: 25375 components: - type: Transform pos: 56.5,24.5 parent: 2 - - uid: 25262 + - uid: 25376 components: - type: Transform pos: 48.5,18.5 parent: 2 - - uid: 25263 + - uid: 25377 components: - type: Transform pos: 57.5,20.5 parent: 2 - - uid: 25264 + - uid: 25378 components: - type: Transform pos: 57.5,19.5 parent: 2 - - uid: 25265 + - uid: 25379 components: - type: Transform pos: 58.5,19.5 parent: 2 - - uid: 25266 + - uid: 25380 components: - type: Transform pos: 51.5,7.5 parent: 2 - - uid: 25267 + - uid: 25381 components: - type: Transform pos: 52.5,7.5 parent: 2 - - uid: 25268 + - uid: 25382 components: - type: Transform pos: 52.5,6.5 parent: 2 - - uid: 25269 + - uid: 25383 components: - type: Transform pos: 51.5,6.5 parent: 2 - - uid: 25270 + - uid: 25384 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 - - uid: 25271 + - uid: 25385 components: - type: Transform pos: 58.5,20.5 parent: 2 - - uid: 25273 + - uid: 25386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 + - uid: 25387 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 - - uid: 25274 + - uid: 25388 components: - type: Transform pos: 41.5,-39.5 parent: 2 - - uid: 25275 + - uid: 25389 components: - type: Transform pos: 40.5,-39.5 parent: 2 - - uid: 25276 + - uid: 25390 components: - type: Transform pos: 39.5,-39.5 parent: 2 - - uid: 25277 + - uid: 25391 components: - type: Transform pos: 38.5,-39.5 parent: 2 - - uid: 25278 + - uid: 25392 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 25279 + - uid: 25393 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 25280 + - uid: 25394 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 - - uid: 25281 + - uid: 25395 components: - type: Transform pos: 38.5,-36.5 parent: 2 - - uid: 25282 + - uid: 25396 components: - type: Transform pos: 42.5,-35.5 parent: 2 - - uid: 25283 + - uid: 25397 components: - type: Transform pos: 41.5,-35.5 parent: 2 - - uid: 25284 + - uid: 25398 components: - type: Transform pos: 46.5,-49.5 parent: 2 - - uid: 25285 + - uid: 25399 components: - type: Transform pos: 45.5,-49.5 parent: 2 - - uid: 25286 + - uid: 25400 components: - type: Transform pos: 44.5,-49.5 parent: 2 - - uid: 25287 + - uid: 25401 components: - type: Transform pos: 43.5,-49.5 parent: 2 - - uid: 25288 + - uid: 25402 components: - type: Transform pos: 42.5,-49.5 parent: 2 - - uid: 25289 + - uid: 25403 components: - type: Transform pos: 42.5,-48.5 parent: 2 - - uid: 25290 + - uid: 25404 components: - type: Transform pos: 71.5,-43.5 parent: 2 - - uid: 25291 + - uid: 25405 components: - type: Transform pos: 73.5,-44.5 parent: 2 - - uid: 25292 + - uid: 25406 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 - - uid: 25293 + - uid: 25407 components: - type: Transform pos: 69.5,-49.5 parent: 2 - - uid: 25294 + - uid: 25408 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 - - uid: 25295 + - uid: 25409 components: - type: Transform pos: 73.5,-43.5 parent: 2 - - uid: 25296 + - uid: 25410 components: - type: Transform pos: 72.5,-43.5 parent: 2 - - uid: 25297 + - uid: 25411 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 25298 + - uid: 25412 components: - type: Transform pos: -11.5,-49.5 parent: 2 - - uid: 25299 + - uid: 25413 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 25300 + - uid: 25414 components: - type: Transform pos: -12.5,-50.5 parent: 2 - - uid: 25301 + - uid: 25415 components: - type: Transform pos: 53.5,-51.5 parent: 2 - - uid: 25302 + - uid: 25416 components: - type: Transform pos: 53.5,-52.5 parent: 2 - - uid: 25303 + - uid: 25417 components: - type: Transform pos: 53.5,-53.5 parent: 2 - - uid: 25304 + - uid: 25418 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 - - uid: 25305 + - uid: 25419 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 - - uid: 25306 + - uid: 25420 components: - type: Transform pos: -22.5,-20.5 parent: 2 - - uid: 25307 + - uid: 25421 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 - - uid: 25308 + - uid: 25422 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 - - uid: 25309 + - uid: 25423 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 - - uid: 25310 + - uid: 25424 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 25311 + - uid: 25425 components: - type: Transform pos: 30.5,-61.5 parent: 2 - - uid: 25312 + - uid: 25426 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 25313 + - uid: 25427 components: - type: Transform pos: 40.5,-53.5 parent: 2 - - uid: 25314 + - uid: 25428 components: - type: Transform pos: 41.5,-53.5 parent: 2 - - uid: 25315 + - uid: 25429 components: - type: Transform pos: 41.5,-54.5 parent: 2 - - uid: 25316 + - uid: 25430 components: - type: Transform pos: 41.5,-55.5 parent: 2 - - uid: 25317 + - uid: 25431 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 - - uid: 25318 + - uid: 25432 components: - type: Transform pos: -34.5,-13.5 parent: 2 - - uid: 25319 + - uid: 25433 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 25320 + - uid: 25434 components: - type: Transform pos: -36.5,-8.5 parent: 2 - - uid: 25321 + - uid: 25435 components: - type: Transform pos: -34.5,-12.5 parent: 2 - - uid: 25322 + - uid: 25436 components: - type: Transform pos: -39.5,-16.5 parent: 2 - - uid: 25323 + - uid: 25437 components: - type: Transform pos: -39.5,-17.5 parent: 2 - - uid: 25324 + - uid: 25438 components: - type: Transform pos: -39.5,-18.5 parent: 2 - - uid: 25325 + - uid: 25439 components: - type: Transform pos: -40.5,-18.5 parent: 2 - - uid: 25326 + - uid: 25440 components: - type: Transform pos: -42.5,-18.5 parent: 2 - - uid: 25327 + - uid: 25441 components: - type: Transform pos: -42.5,-17.5 parent: 2 - - uid: 25328 + - uid: 25442 components: - type: Transform pos: -42.5,-16.5 parent: 2 - - uid: 25329 + - uid: 25443 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 - - uid: 25330 + - uid: 25444 components: - type: Transform pos: -30.5,-37.5 parent: 2 - - uid: 25331 + - uid: 25445 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 - - uid: 25332 + - uid: 25446 components: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 25333 + - uid: 25447 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 25334 + - uid: 25448 components: - type: Transform pos: -35.5,-46.5 parent: 2 - - uid: 25335 + - uid: 25449 components: - type: Transform pos: -35.5,-47.5 parent: 2 - - uid: 25336 + - uid: 25450 components: - type: Transform pos: -35.5,-48.5 parent: 2 - - uid: 25337 + - uid: 25451 components: - type: Transform pos: -35.5,-49.5 parent: 2 - - uid: 25338 + - uid: 25452 components: - type: Transform pos: -35.5,-50.5 parent: 2 - - uid: 25339 + - uid: 25453 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 25340 + - uid: 25454 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 25341 + - uid: 25455 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 25342 + - uid: 25456 components: - type: Transform pos: -70.5,-25.5 parent: 2 - - uid: 25343 + - uid: 25457 components: - type: Transform pos: -70.5,-26.5 parent: 2 - - uid: 25344 + - uid: 25458 components: - type: Transform pos: -71.5,-26.5 parent: 2 - - uid: 25345 + - uid: 25459 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 - - uid: 25346 + - uid: 25460 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 25347 + - uid: 25461 components: - type: Transform pos: -27.5,-52.5 parent: 2 - - uid: 25348 + - uid: 25462 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 25349 + - uid: 25463 components: - type: Transform pos: -38.5,-27.5 parent: 2 - - uid: 25350 + - uid: 25464 components: - type: Transform pos: -43.5,-27.5 parent: 2 - - uid: 25351 + - uid: 25465 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 25352 + - uid: 25466 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 25353 + - uid: 25467 components: - type: Transform pos: -55.5,-39.5 parent: 2 - - uid: 25354 + - uid: 25468 components: - type: Transform pos: -57.5,-35.5 parent: 2 - - uid: 25355 + - uid: 25469 components: - type: Transform pos: -56.5,-35.5 parent: 2 - - uid: 25356 + - uid: 25470 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 25357 + - uid: 25471 components: - type: Transform pos: 38.5,-55.5 parent: 2 - - uid: 25358 + - uid: 25472 components: - type: Transform pos: 38.5,-56.5 parent: 2 - - uid: 25359 + - uid: 25473 components: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 25360 + - uid: 25474 components: - type: Transform pos: -27.5,24.5 parent: 2 - - uid: 25361 + - uid: 25475 components: - type: Transform pos: -22.5,17.5 parent: 2 - - uid: 25362 + - uid: 25476 components: - type: Transform pos: -39.5,25.5 parent: 2 - - uid: 25363 + - uid: 25477 components: - type: Transform pos: -40.5,25.5 parent: 2 - - uid: 25364 + - uid: 25478 components: - type: Transform pos: -43.5,25.5 parent: 2 - - uid: 25365 + - uid: 25479 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 - - uid: 25366 + - uid: 25480 components: - type: Transform pos: -3.5,31.5 parent: 2 - - uid: 25367 + - uid: 25481 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 25368 + - uid: 25482 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 25369 + - uid: 25483 components: - type: Transform pos: 1.5,23.5 parent: 2 - - uid: 25370 + - uid: 25484 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 25371 + - uid: 25485 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 25372 + - uid: 25486 components: - type: Transform pos: -34.5,26.5 parent: 2 - - uid: 25373 + - uid: 25487 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 25374 + - uid: 25488 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 - - uid: 25375 + - uid: 25489 components: - type: Transform pos: -32.5,29.5 parent: 2 - - uid: 25376 + - uid: 25490 components: - type: Transform pos: -31.5,29.5 parent: 2 - - uid: 25377 + - uid: 25491 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 - - uid: 25378 + - uid: 25492 components: - type: Transform pos: -41.5,35.5 parent: 2 - - uid: 25379 + - uid: 25493 components: - type: Transform pos: -40.5,35.5 parent: 2 - - uid: 25380 + - uid: 25494 components: - type: Transform pos: -40.5,34.5 parent: 2 - - uid: 25381 + - uid: 25495 components: - type: Transform pos: -40.5,33.5 parent: 2 - - uid: 25382 + - uid: 25496 components: - type: Transform pos: -40.5,32.5 parent: 2 - - uid: 25383 + - uid: 25497 components: - type: Transform pos: -38.5,28.5 parent: 2 - - uid: 25384 + - uid: 25498 components: - type: Transform pos: -38.5,27.5 parent: 2 - - uid: 25385 + - uid: 25499 components: - type: Transform pos: -37.5,27.5 parent: 2 - - uid: 25386 + - uid: 25500 components: - type: Transform pos: -36.5,27.5 parent: 2 - - uid: 25387 + - uid: 25501 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 - - uid: 25388 + - uid: 25502 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 - - uid: 25389 + - uid: 25503 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 - - uid: 25390 + - uid: 25504 components: - type: Transform pos: -15.5,23.5 parent: 2 - - uid: 25391 + - uid: 25505 components: - type: Transform pos: -16.5,21.5 parent: 2 - - uid: 25392 + - uid: 25506 components: - type: Transform pos: -16.5,20.5 parent: 2 - - uid: 25393 + - uid: 25507 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 25394 + - uid: 25508 components: - type: Transform pos: -48.5,26.5 parent: 2 - - uid: 25395 + - uid: 25509 components: - type: Transform pos: -47.5,26.5 parent: 2 - - uid: 25396 + - uid: 25510 components: - type: Transform pos: -28.5,8.5 parent: 2 - - uid: 25397 + - uid: 25511 components: - type: Transform pos: -29.5,8.5 parent: 2 - - uid: 25398 + - uid: 25512 components: - type: Transform pos: -54.5,0.5 parent: 2 - - uid: 25399 + - uid: 25513 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 25400 + - uid: 25514 components: - type: Transform pos: -25.5,-67.5 parent: 2 - - uid: 25401 + - uid: 25515 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 - - uid: 25402 + - uid: 25516 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 25403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-65.5 - parent: 2 - - uid: 25404 + - uid: 25517 components: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 25405 + - uid: 25518 components: - type: Transform pos: -57.5,-27.5 parent: 2 - - uid: 25406 + - uid: 25519 components: - type: Transform pos: -56.5,-27.5 parent: 2 - - uid: 25407 + - uid: 25520 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 - - uid: 25408 + - uid: 25521 components: - type: Transform pos: 41.5,-58.5 parent: 2 - - uid: 25409 + - uid: 25522 components: - type: Transform pos: 77.5,-47.5 parent: 2 - - uid: 25410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-65.5 - parent: 2 - - uid: 25411 + - uid: 25523 components: - type: Transform pos: -2.5,-33.5 parent: 2 - - uid: 25412 + - uid: 25524 components: - type: Transform pos: 11.5,-66.5 parent: 2 - - uid: 25413 + - uid: 25525 components: - type: Transform pos: 12.5,-66.5 parent: 2 - - uid: 25414 + - uid: 25526 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 25415 + - uid: 25527 components: - type: Transform pos: -7.5,-30.5 parent: 2 - - uid: 25416 + - uid: 25528 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 - - uid: 25417 + - uid: 25529 components: - type: Transform pos: 57.5,42.5 parent: 2 - - uid: 25418 + - uid: 25530 components: - type: Transform pos: 56.5,42.5 parent: 2 - - uid: 25419 + - uid: 25531 components: - type: Transform pos: 55.5,42.5 parent: 2 - - uid: 25420 + - uid: 25532 components: - type: Transform pos: 50.5,42.5 parent: 2 - - uid: 25421 + - uid: 25533 components: - type: Transform pos: 58.5,52.5 parent: 2 - - uid: 25422 + - uid: 25534 components: - type: Transform pos: 58.5,51.5 parent: 2 - - uid: 25423 + - uid: 25535 components: - type: Transform pos: -8.5,39.5 parent: 2 - - uid: 25424 + - uid: 25536 components: - type: Transform pos: -8.5,38.5 parent: 2 - - uid: 25425 + - uid: 25537 components: - type: Transform pos: -8.5,37.5 parent: 2 - - uid: 25426 + - uid: 25538 components: - type: Transform pos: -9.5,39.5 parent: 2 - - uid: 25427 + - uid: 25539 components: - type: Transform pos: -9.5,37.5 parent: 2 - - uid: 25428 + - uid: 25540 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 - - uid: 25429 + - uid: 25541 components: - type: Transform pos: -22.5,45.5 parent: 2 - - uid: 25430 + - uid: 25542 components: - type: Transform pos: -22.5,44.5 parent: 2 - - uid: 25431 + - uid: 25543 components: - type: Transform pos: -22.5,43.5 parent: 2 - - uid: 25432 + - uid: 25544 components: - type: Transform pos: 64.5,29.5 parent: 2 - - uid: 25433 + - uid: 25545 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 25434 + - uid: 25546 components: - type: Transform pos: -0.5,-77.5 parent: 2 - - uid: 25435 + - uid: 25547 components: - type: Transform pos: 72.5,36.5 parent: 2 - - uid: 25436 + - uid: 25548 components: - type: Transform pos: 73.5,36.5 parent: 2 - - uid: 25437 + - uid: 25549 components: - type: Transform pos: 71.5,36.5 parent: 2 - - uid: 25438 + - uid: 25550 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 - - uid: 25439 + - uid: 25551 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 - - uid: 25440 + - uid: 25552 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 - - uid: 25441 + - uid: 25553 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 - - uid: 25442 + - uid: 25554 components: - type: Transform pos: -2.5,43.5 parent: 2 - - uid: 25443 + - uid: 25555 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 - - uid: 25444 + - uid: 25556 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 - - uid: 25445 + - uid: 25557 components: - type: Transform pos: -10.5,41.5 parent: 2 - - uid: 25446 + - uid: 25558 components: - type: Transform pos: -20.5,47.5 parent: 2 - - uid: 25447 + - uid: 25559 components: - type: Transform pos: -21.5,47.5 parent: 2 - - uid: 25448 + - uid: 25560 components: - type: Transform pos: -16.5,24.5 parent: 2 - - uid: 25449 + - uid: 25561 components: - type: Transform pos: -16.5,23.5 parent: 2 - - uid: 25450 + - uid: 25562 components: - type: Transform pos: 30.5,47.5 parent: 2 - - uid: 25451 + - uid: 25563 components: - type: Transform pos: 30.5,46.5 parent: 2 - - uid: 25452 + - uid: 25564 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 - - uid: 25453 + - uid: 25565 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 - - uid: 25454 + - uid: 25566 components: - type: Transform pos: -22.5,-100.5 parent: 2 - - uid: 25455 + - uid: 25567 components: - type: Transform pos: -14.5,-96.5 parent: 2 - - uid: 25456 + - uid: 25568 components: - type: Transform pos: -15.5,-96.5 parent: 2 - - uid: 25457 + - uid: 25569 components: - type: Transform pos: -30.5,-98.5 parent: 2 - - uid: 25458 + - uid: 25570 components: - type: Transform pos: -29.5,-98.5 parent: 2 - - uid: 25459 + - uid: 25571 components: - type: Transform pos: -21.5,-100.5 parent: 2 - - uid: 25460 + - uid: 25572 components: - type: Transform pos: -23.5,-100.5 parent: 2 - - uid: 25461 + - uid: 25573 components: - type: Transform pos: -10.5,-83.5 parent: 2 - - uid: 25462 + - uid: 25574 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 25463 + - uid: 25575 components: - type: Transform pos: -12.5,-84.5 parent: 2 - - uid: 25464 + - uid: 25576 components: - type: Transform pos: -13.5,-88.5 parent: 2 - - uid: 25465 + - uid: 25577 components: - type: Transform pos: -38.5,-97.5 parent: 2 - - uid: 25466 + - uid: 25578 components: - type: Transform pos: -38.5,-98.5 parent: 2 - - uid: 25467 + - uid: 25579 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 - - uid: 25468 + - uid: 25580 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 - - uid: 25469 + - uid: 25581 components: - type: Transform pos: 69.5,-48.5 parent: 2 - - uid: 25470 + - uid: 25582 components: - type: Transform pos: 77.5,-44.5 parent: 2 - - uid: 25471 + - uid: 25583 components: - type: Transform pos: 77.5,-43.5 parent: 2 - - uid: 25472 + - uid: 25584 components: - type: Transform pos: 76.5,-43.5 parent: 2 - - uid: 25473 + - uid: 25585 components: - type: Transform pos: 73.5,-49.5 parent: 2 - - uid: 25474 + - uid: 25586 components: - type: Transform pos: 73.5,-48.5 parent: 2 - - uid: 25475 + - uid: 25587 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 - - uid: 25476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 2 - - uid: 25477 + - uid: 25588 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 - - uid: 25478 + - uid: 25589 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 - - uid: 25479 + - uid: 25590 components: - type: Transform pos: 53.5,-67.5 parent: 2 - - uid: 25480 + - uid: 25591 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 - - uid: 25481 + - uid: 25592 components: - type: Transform pos: 59.5,-29.5 parent: 2 - - uid: 25482 + - uid: 25593 components: - type: Transform pos: 53.5,-65.5 parent: 2 - - uid: 25483 + - uid: 25594 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 - - uid: 25484 + - uid: 25595 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 - - uid: 25485 + - uid: 25596 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 - - uid: 25486 + - uid: 25597 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 - - uid: 25487 + - uid: 25598 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 - - uid: 25488 + - uid: 25599 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 - - uid: 25489 + - uid: 25600 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 - - uid: 25490 + - uid: 25601 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 - - uid: 25491 + - uid: 25602 components: - type: Transform pos: 67.5,-64.5 parent: 2 - - uid: 25492 + - uid: 25603 components: - type: Transform pos: 67.5,-65.5 parent: 2 - - uid: 25493 + - uid: 25604 components: - type: Transform pos: 45.5,-63.5 parent: 2 - - uid: 25494 + - uid: 25605 components: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 25495 + - uid: 25606 components: - type: Transform pos: 39.5,-35.5 parent: 2 - - uid: 25496 + - uid: 25607 components: - type: Transform pos: 38.5,-35.5 parent: 2 - - uid: 25497 + - uid: 25608 components: - type: Transform pos: -37.5,-8.5 parent: 2 - - uid: 25498 + - uid: 25609 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 - - uid: 25499 + - uid: 25610 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 - - uid: 25500 + - uid: 25611 components: - type: Transform pos: -12.5,-18.5 parent: 2 - - uid: 25501 + - uid: 25612 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 - - uid: 25502 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 2 - - uid: 25503 - components: - - type: Transform - pos: -22.5,-57.5 - parent: 2 - - uid: 25504 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 2 - - uid: 25505 + - uid: 25613 components: - type: Transform - pos: -26.5,-59.5 + pos: -25.5,-57.5 parent: 2 - - uid: 25506 + - uid: 25614 components: - type: Transform pos: 9.5,-45.5 parent: 2 - - uid: 25507 + - uid: 25615 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 - - uid: 25508 + - uid: 25616 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 - - uid: 25509 + - uid: 25617 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 - - uid: 25510 + - uid: 25618 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 - - uid: 25511 + - uid: 25619 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 - - uid: 25512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,38.5 - parent: 2 - - uid: 25513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,39.5 - parent: 2 - - uid: 25514 + - uid: 25620 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,40.5 parent: 2 - - uid: 25515 + - uid: 25621 components: - type: Transform pos: -2.5,10.5 parent: 2 - - uid: 25516 + - uid: 25622 components: - type: Transform pos: -72.5,-39.5 parent: 2 - - uid: 25517 + - uid: 25623 components: - type: Transform pos: -73.5,-39.5 parent: 2 - - uid: 25518 + - uid: 25624 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-43.5 parent: 2 - - uid: 25519 + - uid: 25625 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 - - uid: 25520 + - uid: 25626 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-34.5 parent: 2 - - uid: 25521 + - uid: 25627 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-34.5 parent: 2 - - uid: 25522 + - uid: 25628 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 - - uid: 25523 + - uid: 25629 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 25524 + - uid: 25630 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 25525 + - uid: 25631 components: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 25526 + - uid: 25632 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-40.5 parent: 2 - - uid: 25527 + - uid: 25633 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 + - uid: 25634 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 25635 + components: + - type: Transform + pos: -26.5,-58.5 + parent: 2 + - uid: 25636 + components: + - type: Transform + pos: -26.5,-59.5 + parent: 2 + - uid: 25637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-57.5 + parent: 2 + - uid: 25638 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 25639 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 - proto: TableCarpet entities: - - uid: 25529 + - uid: 25640 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 - - uid: 25530 + - uid: 25641 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 - - uid: 25531 + - uid: 25642 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 - - uid: 25532 + - uid: 25643 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 - - uid: 25533 + - uid: 25644 components: - type: Transform pos: -24.5,34.5 parent: 2 - - uid: 25534 + - uid: 25645 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 - - uid: 25535 + - uid: 25646 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 - - uid: 25536 + - uid: 25647 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 - - uid: 25537 + - uid: 25648 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 - - uid: 25538 + - uid: 25649 components: - type: Transform pos: 53.5,29.5 parent: 2 - - uid: 25539 + - uid: 25650 components: - type: Transform pos: 53.5,28.5 parent: 2 - - uid: 25540 + - uid: 25651 components: - type: Transform pos: 54.5,29.5 parent: 2 - - uid: 25541 + - uid: 25652 components: - type: Transform pos: 54.5,28.5 parent: 2 - - uid: 25542 + - uid: 25653 components: - type: Transform pos: 8.5,32.5 parent: 2 - - uid: 25543 + - uid: 25654 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 - - uid: 25544 + - uid: 25655 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 - - uid: 25545 + - uid: 25656 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 - - uid: 25546 + - uid: 25657 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 - - uid: 25547 + - uid: 25658 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 - - uid: 25548 + - uid: 25659 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,61.5 parent: 2 - - uid: 25549 + - uid: 25660 components: - type: Transform pos: 37.5,45.5 parent: 2 - - uid: 25550 + - uid: 25661 components: - type: Transform pos: 38.5,45.5 parent: 2 - - uid: 25551 + - uid: 25662 components: - type: Transform pos: 38.5,46.5 parent: 2 - - uid: 25552 + - uid: 25663 components: - type: Transform pos: 37.5,46.5 parent: 2 - proto: TableCounterMetal entities: - - uid: 25553 + - uid: 25664 components: - type: Transform pos: 32.5,30.5 parent: 2 - - uid: 25554 + - uid: 25665 components: - type: Transform pos: 32.5,29.5 parent: 2 - - uid: 25555 - components: - - type: Transform - pos: 0.5,-67.5 - parent: 2 - - uid: 25556 + - uid: 25666 components: - type: Transform pos: -3.5,5.5 parent: 2 - - uid: 25557 - components: - - type: Transform - pos: 0.5,-64.5 - parent: 2 - - uid: 25558 - components: - - type: Transform - pos: 0.5,-65.5 - parent: 2 - - uid: 25559 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 2 - - uid: 25560 - components: - - type: Transform - pos: -3.5,-64.5 - parent: 2 - - uid: 25561 - components: - - type: Transform - pos: -3.5,-65.5 - parent: 2 - - uid: 25562 - components: - - type: Transform - pos: -3.5,-66.5 - parent: 2 - - uid: 25563 + - uid: 25667 components: - type: Transform pos: -16.5,-77.5 parent: 2 - - uid: 25564 + - uid: 25668 components: - type: Transform pos: -4.5,5.5 parent: 2 - - uid: 25565 + - uid: 25669 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 25566 + - uid: 25670 components: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 25567 - components: - - type: Transform - pos: 0.5,-63.5 - parent: 2 - - uid: 25568 + - uid: 25671 components: - type: Transform rot: 1.5707963267948966 rad @@ -171172,2043 +168451,2108 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 25569 + - uid: 25672 components: - type: Transform pos: 3.5,-35.5 parent: 2 - - uid: 25570 + - uid: 25673 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 - - uid: 25571 + - uid: 25674 components: - type: Transform pos: 18.5,15.5 parent: 2 - - uid: 25572 + - uid: 25675 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 25573 + - uid: 25676 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 - - uid: 25574 + - uid: 25677 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 - - uid: 25575 + - uid: 25678 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 - - uid: 25576 + - uid: 25679 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 - - uid: 25577 + - uid: 25680 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 - - uid: 25578 + - uid: 25681 components: - type: Transform pos: 57.5,32.5 parent: 2 - - uid: 25579 + - uid: 25682 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 - - uid: 25580 + - uid: 25683 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-95.5 parent: 2 +- proto: TableFancyBlue + entities: + - uid: 25684 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - uid: 25685 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 25686 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - uid: 25687 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 2 + - uid: 25688 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 25689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-34.5 + parent: 2 + - uid: 25690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-36.5 + parent: 2 + - uid: 25691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-28.5 + parent: 2 + - uid: 25692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-29.5 + parent: 2 + - uid: 25693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-28.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-28.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 2 + - uid: 25696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-29.5 + parent: 2 + - uid: 25697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-35.5 + parent: 2 + - uid: 25698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-37.5 + parent: 2 + - uid: 25699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-39.5 + parent: 2 + - uid: 25700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 25701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-38.5 + parent: 2 +- proto: TableFancyCyan + entities: + - uid: 25702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 2 +- proto: TableFancyGreen + entities: + - uid: 25703 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 25705 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 - proto: TableFrame entities: - - uid: 25581 + - uid: 25707 components: - type: Transform pos: -25.5,-99.5 parent: 2 - - uid: 25582 + - uid: 25708 components: - type: Transform pos: -33.5,-98.5 parent: 2 - - uid: 25583 + - uid: 25709 components: - type: Transform pos: -34.5,-98.5 parent: 2 - proto: TableGlass entities: - - uid: 25254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,8.5 - parent: 2 - - uid: 25584 + - uid: 25710 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 - - uid: 25585 + - uid: 25711 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 - - uid: 25586 + - uid: 25712 components: - type: Transform pos: -25.5,55.5 parent: 2 - - uid: 25587 + - uid: 25713 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 - - uid: 25588 + - uid: 25714 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 - - uid: 25589 + - uid: 25715 components: - type: Transform pos: 15.5,-79.5 parent: 2 - - uid: 25590 + - uid: 25716 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 - - uid: 25591 + - uid: 25717 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-81.5 parent: 2 - - uid: 25592 + - uid: 25718 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,63.5 parent: 2 - - uid: 25593 + - uid: 25719 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,63.5 parent: 2 - - uid: 25594 + - uid: 25720 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,63.5 parent: 2 - - uid: 25595 + - uid: 25721 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,63.5 parent: 2 - - uid: 25596 + - uid: 25722 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,64.5 parent: 2 - - uid: 25597 + - uid: 25723 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,62.5 parent: 2 + - uid: 25724 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 - proto: TableReinforced entities: - - uid: 25598 + - uid: 25725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-61.5 + parent: 2 + - uid: 25726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-61.5 + parent: 2 + - uid: 25727 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 25728 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 25729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-66.5 + parent: 2 + - uid: 25730 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 25731 components: - type: Transform pos: -34.5,23.5 parent: 2 - - uid: 25599 + - uid: 25732 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 2 - - uid: 25600 + - uid: 25733 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-86.5 parent: 2 - - uid: 25601 + - uid: 25734 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 25602 + - uid: 25735 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 25603 + - uid: 25736 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 25604 + - uid: 25737 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 25605 + - uid: 25738 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 - - uid: 25606 + - uid: 25739 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 - - uid: 25607 + - uid: 25740 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 25608 + - uid: 25741 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 25609 + - uid: 25742 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 - - uid: 25610 + - uid: 25743 components: - type: Transform pos: 26.5,32.5 parent: 2 - - uid: 25611 + - uid: 25744 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 25612 + - uid: 25745 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 25613 + - uid: 25746 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 25614 + - uid: 25747 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 - - uid: 25615 + - uid: 25748 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 - - uid: 25616 + - uid: 25749 components: - type: Transform pos: 37.5,49.5 parent: 2 - - uid: 25617 + - uid: 25750 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 - - uid: 25618 + - uid: 25751 components: - type: Transform pos: 27.5,32.5 parent: 2 - - uid: 25619 + - uid: 25752 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 - - uid: 25620 + - uid: 25753 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 - - uid: 25621 + - uid: 25754 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 - - uid: 25622 + - uid: 25755 components: - type: Transform pos: -23.5,-87.5 parent: 2 - - uid: 25623 + - uid: 25756 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 25624 + - uid: 25757 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 - - uid: 25625 + - uid: 25758 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 25626 + - uid: 25759 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 - - uid: 25627 + - uid: 25760 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 - - uid: 25628 + - uid: 25761 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 - - uid: 25629 + - uid: 25762 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 - - uid: 25630 + - uid: 25763 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 - - uid: 25631 + - uid: 25764 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 - - uid: 25632 + - uid: 25765 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 - - uid: 25633 + - uid: 25766 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 - - uid: 25634 + - uid: 25767 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 25635 + - uid: 25768 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 25636 + - uid: 25769 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 25637 + - uid: 25770 components: - type: Transform pos: 28.5,32.5 parent: 2 - - uid: 25638 + - uid: 25771 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 25639 + - uid: 25772 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 25640 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 - - uid: 25641 + - uid: 25773 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 25642 + - uid: 25774 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 - - uid: 25643 + - uid: 25775 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 - - uid: 25644 + - uid: 25776 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 - - uid: 25645 + - uid: 25777 components: - type: Transform pos: 47.5,49.5 parent: 2 - - uid: 25646 + - uid: 25778 components: - type: Transform pos: 7.5,8.5 parent: 2 - - uid: 25647 + - uid: 25779 components: - type: Transform pos: 39.5,49.5 parent: 2 - - uid: 25648 + - uid: 25780 components: - type: Transform pos: 38.5,49.5 parent: 2 - - uid: 25649 + - uid: 25781 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 - - uid: 25650 + - uid: 25782 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 - - uid: 25651 + - uid: 25783 components: - type: Transform pos: 36.5,49.5 parent: 2 - - uid: 25652 + - uid: 25784 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 - - uid: 25653 + - uid: 25785 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 - - uid: 25654 + - uid: 25786 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 - - uid: 25655 + - uid: 25787 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 25656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 25657 + - uid: 25788 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 - - uid: 25658 + - uid: 25789 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 25659 + - uid: 25790 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 - - uid: 25660 + - uid: 25791 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 - - uid: 25661 + - uid: 25792 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 - - uid: 25662 + - uid: 25793 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 - - uid: 25663 + - uid: 25794 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 - - uid: 25664 + - uid: 25795 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 - - uid: 25665 + - uid: 25796 components: - type: Transform pos: -22.5,-87.5 parent: 2 - - uid: 25666 + - uid: 25797 components: - type: Transform pos: 22.5,23.5 parent: 2 - - uid: 25667 + - uid: 25798 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 25668 + - uid: 25799 components: - type: Transform pos: -11.5,43.5 parent: 2 - - uid: 25669 + - uid: 25800 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 - - uid: 25670 + - uid: 25801 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 - - uid: 25671 + - uid: 25802 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 - - uid: 25672 + - uid: 25803 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 25673 + - uid: 25804 components: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 25674 + - uid: 25805 components: - type: Transform pos: 42.5,-40.5 parent: 2 - - uid: 25675 + - uid: 25806 components: - type: Transform pos: 43.5,-40.5 parent: 2 - - uid: 25676 + - uid: 25807 components: - type: Transform pos: -27.5,-9.5 parent: 2 - - uid: 25677 + - uid: 25808 components: - type: Transform pos: -22.5,-8.5 parent: 2 - - uid: 25678 + - uid: 25809 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 25679 + - uid: 25810 components: - type: Transform pos: -27.5,-10.5 parent: 2 - - uid: 25680 + - uid: 25811 components: - type: Transform pos: -27.5,-11.5 parent: 2 - - uid: 25681 + - uid: 25812 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 25682 + - uid: 25813 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 - - uid: 25683 + - uid: 25814 components: - type: Transform pos: -25.5,-35.5 parent: 2 - - uid: 25684 + - uid: 25815 components: - type: Transform pos: -25.5,-36.5 parent: 2 - - uid: 25685 + - uid: 25816 components: - type: Transform pos: -24.5,-36.5 parent: 2 - - uid: 25686 + - uid: 25817 components: - type: Transform pos: -23.5,-36.5 parent: 2 - - uid: 25687 + - uid: 25818 components: - type: Transform pos: -36.5,-33.5 parent: 2 - - uid: 25688 + - uid: 25819 components: - type: Transform pos: -36.5,-32.5 parent: 2 - - uid: 25689 + - uid: 25820 components: - type: Transform pos: -37.5,-32.5 parent: 2 - - uid: 25690 + - uid: 25821 components: - type: Transform pos: -38.5,-32.5 parent: 2 - - uid: 25691 + - uid: 25822 components: - type: Transform pos: -39.5,-32.5 parent: 2 - - uid: 25692 + - uid: 25823 components: - type: Transform pos: -58.5,-25.5 parent: 2 - - uid: 25693 + - uid: 25824 components: - type: Transform pos: -57.5,-25.5 parent: 2 - - uid: 25694 + - uid: 25825 components: - type: Transform pos: -56.5,-25.5 parent: 2 - - uid: 25695 + - uid: 25826 components: - type: Transform pos: -55.5,-25.5 parent: 2 - - uid: 25696 + - uid: 25827 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 25697 + - uid: 25828 components: - type: Transform pos: -15.5,12.5 parent: 2 - - uid: 25698 + - uid: 25829 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 - - uid: 25699 + - uid: 25830 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 - - uid: 25700 + - uid: 25831 components: - type: Transform pos: 17.5,32.5 parent: 2 - - uid: 25701 + - uid: 25832 components: - type: Transform pos: 17.5,31.5 parent: 2 - - uid: 25702 + - uid: 25833 components: - type: Transform pos: -34.5,24.5 parent: 2 - - uid: 25703 + - uid: 25834 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 25704 + - uid: 25835 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 25705 + - uid: 25836 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 25706 - components: - - type: Transform - pos: -10.5,-61.5 - parent: 2 - - uid: 25707 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 2 - - uid: 25708 - components: - - type: Transform - pos: -0.5,-61.5 - parent: 2 - - uid: 25709 - components: - - type: Transform - pos: -11.5,-61.5 - parent: 2 - - uid: 25710 + - uid: 25837 components: - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-61.5 parent: 2 - - uid: 25711 - components: - - type: Transform - pos: -17.5,-61.5 - parent: 2 - - uid: 25712 + - uid: 25838 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-35.5 parent: 2 - - uid: 25713 + - uid: 25839 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 - - uid: 25714 + - uid: 25840 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 - - uid: 25715 + - uid: 25841 components: - type: Transform pos: -20.5,49.5 parent: 2 - - uid: 25716 + - uid: 25842 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 - - uid: 25717 + - uid: 25843 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 - - uid: 25718 + - uid: 25844 components: - type: Transform pos: -21.5,49.5 parent: 2 - - uid: 25719 + - uid: 25845 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 - - uid: 25720 + - uid: 25846 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 - - uid: 25721 + - uid: 25847 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 - - uid: 25722 + - uid: 25848 components: - type: Transform pos: 48.5,50.5 parent: 2 - - uid: 25723 + - uid: 25849 components: - type: Transform pos: 47.5,50.5 parent: 2 - - uid: 25724 + - uid: 25850 components: - type: Transform pos: 46.5,49.5 parent: 2 - - uid: 25725 + - uid: 25851 components: - type: Transform pos: 45.5,49.5 parent: 2 - - uid: 25726 + - uid: 25852 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 - - uid: 25727 + - uid: 25853 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 - - uid: 25728 + - uid: 25854 components: - type: Transform pos: 29.5,32.5 parent: 2 - - uid: 25729 + - uid: 25855 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 25730 + - uid: 25856 components: - type: Transform pos: 65.5,-29.5 parent: 2 - - uid: 25731 + - uid: 25857 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 25732 + - uid: 25858 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 25733 + - uid: 25859 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 2 - - uid: 25734 + - uid: 25860 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-88.5 parent: 2 - - uid: 25735 + - uid: 25861 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 25736 + - uid: 25862 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 25737 + - uid: 25863 components: - type: Transform pos: 53.5,-39.5 parent: 2 - - uid: 25738 + - uid: 25864 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 25739 + - uid: 25865 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 25740 + - uid: 25866 components: - type: Transform pos: 52.5,-39.5 parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 25741 + - uid: 25867 components: - type: Transform - pos: -30.5,-77.5 + pos: -14.5,-52.5 parent: 2 - - uid: 25742 + - uid: 25868 components: - type: Transform - pos: -30.5,-79.5 + pos: -13.5,-52.5 parent: 2 -- proto: TableWood - entities: - - uid: 10482 + - uid: 25869 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 25870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 25871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-55.5 + parent: 2 + - uid: 25872 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-34.5 + pos: 9.5,-60.5 parent: 2 - - uid: 12229 +- proto: TableReinforcedGlass + entities: + - uid: 25873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-39.5 + pos: -30.5,-77.5 parent: 2 - - uid: 25272 + - uid: 25874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 + pos: -30.5,-79.5 parent: 2 - - uid: 25743 +- proto: TableWood + entities: + - uid: 25875 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 - - uid: 25744 + - uid: 25876 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 25745 + - uid: 25877 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 - - uid: 25746 + - uid: 25878 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 - - uid: 25747 + - uid: 25879 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 - - uid: 25748 + - uid: 25880 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-21.5 parent: 2 - - uid: 25749 + - uid: 25881 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-20.5 parent: 2 - - uid: 25750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 - parent: 2 - - uid: 25751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 - - uid: 25752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 2 - - uid: 25753 + - uid: 25882 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 - - uid: 25754 + - uid: 25883 components: - type: Transform pos: -22.5,-54.5 parent: 2 - - uid: 25755 + - uid: 25884 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 - - uid: 25756 + - uid: 25885 components: - type: Transform pos: 22.5,10.5 parent: 2 - - uid: 25757 + - uid: 25886 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 25758 + - uid: 25887 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 - - uid: 25759 + - uid: 25888 components: - type: Transform pos: 59.5,-1.5 parent: 2 - - uid: 25760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-29.5 - parent: 2 - - uid: 25761 + - uid: 25889 components: - type: Transform pos: -4.5,-48.5 parent: 2 - - uid: 25762 + - uid: 25890 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 - - uid: 25763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 2 - - uid: 25764 + - uid: 25891 components: - type: Transform pos: 15.5,13.5 parent: 2 - - uid: 25765 + - uid: 25892 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 - - uid: 25766 + - uid: 25893 components: - type: Transform pos: -28.5,46.5 parent: 2 - - uid: 25767 - components: - - type: Transform - pos: -20.5,-56.5 - parent: 2 - - uid: 25768 + - uid: 25894 components: - type: Transform pos: -18.5,-56.5 parent: 2 - - uid: 25769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 2 - - uid: 25770 + - uid: 25895 components: - type: Transform pos: 15.5,10.5 parent: 2 - - uid: 25771 + - uid: 25896 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 25772 + - uid: 25897 components: - type: Transform pos: 15.5,12.5 parent: 2 - - uid: 25773 + - uid: 25898 components: - type: Transform pos: 20.5,-12.5 parent: 2 - - uid: 25774 + - uid: 25899 components: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 25775 + - uid: 25900 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 - - uid: 25776 + - uid: 25901 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 - - uid: 25777 + - uid: 25902 components: - type: Transform pos: 6.5,20.5 parent: 2 - - uid: 25778 + - uid: 25903 components: - type: Transform pos: -2.5,-48.5 parent: 2 - - uid: 25779 + - uid: 25904 components: - type: Transform pos: -2.5,-49.5 parent: 2 - - uid: 25780 + - uid: 25905 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 25781 + - uid: 25906 components: - type: Transform pos: -6.5,-48.5 parent: 2 - - uid: 25782 + - uid: 25907 components: - type: Transform pos: 7.5,20.5 parent: 2 - - uid: 25783 + - uid: 25908 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 - - uid: 25784 + - uid: 25909 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 25785 + - uid: 25910 components: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 25786 + - uid: 25911 components: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 25787 + - uid: 25912 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 - - uid: 25788 + - uid: 25913 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 - - uid: 25789 + - uid: 25914 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 - - uid: 25790 + - uid: 25915 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 - - uid: 25791 + - uid: 25916 components: - type: Transform pos: -3.5,-48.5 parent: 2 - - uid: 25792 + - uid: 25917 components: - type: Transform pos: 15.5,11.5 parent: 2 - - uid: 25793 + - uid: 25918 components: - type: Transform pos: -1.5,17.5 parent: 2 - - uid: 25794 + - uid: 25919 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 25795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 - - uid: 25796 + - uid: 25920 components: - type: Transform pos: -10.5,-5.5 parent: 2 - - uid: 25797 + - uid: 25921 components: - type: Transform pos: -28.5,45.5 parent: 2 - - uid: 25798 + - uid: 25922 components: - type: Transform pos: -10.5,-3.5 parent: 2 - - uid: 25799 + - uid: 25923 components: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 25800 + - uid: 25924 components: - type: Transform pos: -10.5,-6.5 parent: 2 - - uid: 25801 + - uid: 25925 components: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 25802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 2 - - uid: 25803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 2 - - uid: 25804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 2 - - uid: 25805 + - uid: 25926 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 - - uid: 25806 + - uid: 25927 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 - - uid: 25807 + - uid: 25928 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 - - uid: 25808 + - uid: 25929 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 - - uid: 25809 + - uid: 25930 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 - - uid: 25810 + - uid: 25931 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 - - uid: 25811 + - uid: 25932 components: - type: Transform pos: -14.5,-39.5 parent: 2 - - uid: 25812 + - uid: 25933 components: - type: Transform pos: -12.5,-35.5 parent: 2 - - uid: 25813 + - uid: 25934 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 - - uid: 25814 + - uid: 25935 components: - type: Transform pos: 22.5,13.5 parent: 2 - - uid: 25815 + - uid: 25936 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 - - uid: 25816 + - uid: 25937 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 - - uid: 25817 + - uid: 25938 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 - - uid: 25818 + - uid: 25939 components: - type: Transform pos: -1.5,19.5 parent: 2 - - uid: 25819 + - uid: 25940 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 - - uid: 25820 + - uid: 25941 components: - type: Transform pos: -17.5,41.5 parent: 2 - - uid: 25821 + - uid: 25942 components: - type: Transform pos: 40.5,21.5 parent: 2 - - uid: 25822 + - uid: 25943 components: - type: Transform pos: 38.5,21.5 parent: 2 - - uid: 25823 + - uid: 25944 components: - type: Transform pos: 38.5,18.5 parent: 2 - - uid: 25824 + - uid: 25945 components: - type: Transform pos: 40.5,18.5 parent: 2 - - uid: 25825 + - uid: 25946 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 - - uid: 25826 + - uid: 25947 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 - - uid: 25827 + - uid: 25948 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 - - uid: 25828 + - uid: 25949 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 - - uid: 25829 + - uid: 25950 components: - type: Transform pos: 61.5,-53.5 parent: 2 - - uid: 25830 + - uid: 25951 components: - type: Transform pos: 62.5,-53.5 parent: 2 - - uid: 25831 + - uid: 25952 components: - type: Transform pos: 63.5,-53.5 parent: 2 - - uid: 25832 + - uid: 25953 components: - type: Transform pos: -16.5,-45.5 parent: 2 - - uid: 25833 + - uid: 25954 components: - type: Transform pos: -16.5,-47.5 parent: 2 - - uid: 25834 + - uid: 25955 components: - type: Transform pos: -16.5,-49.5 parent: 2 - - uid: 25835 + - uid: 25956 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 - - uid: 25836 + - uid: 25957 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 - - uid: 25837 + - uid: 25958 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 - - uid: 25838 + - uid: 25959 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 - - uid: 25839 + - uid: 25960 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 - - uid: 25840 + - uid: 25961 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 - - uid: 25841 + - uid: 25962 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 - - uid: 25842 + - uid: 25963 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 - - uid: 25843 + - uid: 25964 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 - - uid: 25844 + - uid: 25965 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 25845 + - uid: 25966 components: - type: Transform pos: 62.5,-1.5 parent: 2 - - uid: 25846 + - uid: 25967 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 25847 + - uid: 25968 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 - - uid: 25848 + - uid: 25969 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 - - uid: 25849 + - uid: 25970 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 - - uid: 25850 + - uid: 25971 components: - type: Transform pos: 59.5,-51.5 parent: 2 - - uid: 25851 + - uid: 25972 components: - type: Transform pos: 59.5,-52.5 parent: 2 - - uid: 25852 + - uid: 25973 components: - type: Transform pos: -39.5,-76.5 parent: 2 - - uid: 25853 + - uid: 25974 components: - type: Transform pos: -39.5,-77.5 parent: 2 - - uid: 25854 + - uid: 25975 components: - type: Transform pos: -40.5,-77.5 parent: 2 - - uid: 25855 + - uid: 25976 components: - type: Transform pos: -40.5,-78.5 parent: 2 - - uid: 25856 + - uid: 25977 components: - type: Transform pos: -41.5,-78.5 parent: 2 - - uid: 25857 + - uid: 25978 components: - type: Transform pos: -42.5,-78.5 parent: 2 - - uid: 25858 + - uid: 25979 components: - type: Transform pos: -43.5,-78.5 parent: 2 - - uid: 25859 + - uid: 25980 components: - type: Transform pos: -43.5,-77.5 parent: 2 - - uid: 25860 + - uid: 25981 components: - type: Transform pos: -44.5,-77.5 parent: 2 - - uid: 25861 + - uid: 25982 components: - type: Transform pos: -44.5,-76.5 parent: 2 - - uid: 25862 + - uid: 25983 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 - - uid: 25863 + - uid: 25984 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 - - uid: 25864 - components: - - type: Transform - pos: 23.5,-28.5 - parent: 2 - - uid: 25865 + - uid: 25985 components: - type: Transform pos: 30.5,-28.5 parent: 2 - - uid: 25866 + - uid: 25986 components: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 25867 + - uid: 25987 components: - type: Transform pos: 59.5,-3.5 parent: 2 - - uid: 25868 + - uid: 25988 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 - - uid: 25869 + - uid: 25989 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 - - uid: 25870 + - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 - - uid: 25871 + - uid: 25991 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 - - uid: 25872 + - uid: 25992 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 - - uid: 25873 + - uid: 25993 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 - - uid: 25874 + - uid: 25994 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 - - uid: 25875 + - uid: 25995 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 - - uid: 25876 + - uid: 25996 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 - - uid: 25877 + - uid: 25997 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 - - uid: 25878 + - uid: 25998 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 - - uid: 25879 + - uid: 25999 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 - - uid: 25880 + - uid: 26000 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 - - uid: 25881 + - uid: 26001 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 25882 + - uid: 26002 components: - type: Transform pos: -42.5,8.5 parent: 2 - - uid: 25883 + - uid: 26003 components: - type: Transform pos: -51.5,8.5 parent: 2 - - uid: 25884 + - uid: 26004 components: - type: Transform pos: -17.5,42.5 parent: 2 - - uid: 25885 + - uid: 26005 components: - type: Transform pos: -14.5,47.5 parent: 2 - - uid: 25886 + - uid: 26006 components: - type: Transform pos: -16.5,42.5 parent: 2 - - uid: 25887 + - uid: 26007 components: - type: Transform pos: -16.5,41.5 parent: 2 - - uid: 25888 + - uid: 26008 components: - type: Transform pos: -33.5,-67.5 parent: 2 - - uid: 25889 + - uid: 26009 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 - - uid: 25890 + - uid: 26010 components: - type: Transform pos: -31.5,-73.5 parent: 2 - - uid: 25891 + - uid: 26011 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 - - uid: 25892 + - uid: 26012 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 25893 + - uid: 26013 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 - - uid: 25894 + - uid: 26014 components: - type: Transform pos: -18.5,33.5 parent: 2 - - uid: 25895 + - uid: 26015 components: - type: Transform pos: -21.5,35.5 parent: 2 - - uid: 25896 + - uid: 26016 components: - type: Transform pos: -12.5,35.5 parent: 2 - - uid: 25897 + - uid: 26017 components: - type: Transform pos: -12.5,32.5 parent: 2 - - uid: 25898 + - uid: 26018 components: - type: Transform pos: -12.5,31.5 parent: 2 - - uid: 25899 + - uid: 26019 components: - type: Transform pos: 65.5,-0.5 parent: 2 - - uid: 25900 + - uid: 26020 components: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 25901 + - uid: 26021 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 - - uid: 25902 + - uid: 26022 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 - - uid: 25903 + - uid: 26023 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 - - uid: 25904 + - uid: 26024 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 - - uid: 25905 + - uid: 26025 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 - - uid: 25906 + - uid: 26026 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 - - uid: 25907 + - uid: 26027 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 - - uid: 25908 + - uid: 26028 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 - - uid: 25909 + - uid: 26029 components: - type: Transform pos: -19.5,37.5 parent: 2 - - uid: 25910 + - uid: 26030 components: - type: Transform pos: -22.5,-97.5 parent: 2 - - uid: 25911 + - uid: 26031 components: - type: Transform pos: -22.5,-98.5 parent: 2 - - uid: 25912 + - uid: 26032 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 - - uid: 25913 + - uid: 26033 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 - - uid: 25914 + - uid: 26034 components: - type: Transform pos: -22.5,-96.5 parent: 2 - - uid: 25915 + - uid: 26035 components: - type: Transform pos: -33.5,8.5 parent: 2 - - uid: 25916 + - uid: 26036 components: - type: Transform pos: -32.5,8.5 parent: 2 - - uid: 25917 + - uid: 26037 components: - type: Transform pos: 54.5,-35.5 parent: 2 - - uid: 25918 + - uid: 26038 components: - type: Transform pos: 58.5,-30.5 parent: 2 - - uid: 25919 + - uid: 26039 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 - - uid: 25920 + - uid: 26040 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 - - uid: 25921 + - uid: 26041 components: - type: Transform pos: 12.5,-5.5 parent: 2 - - uid: 25922 + - uid: 26042 components: - type: Transform pos: 18.5,-14.5 parent: 2 - - uid: 25923 + - uid: 26043 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 - - uid: 25924 + - uid: 26044 components: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 25925 + - uid: 26045 components: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 25926 + - uid: 26046 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 - - uid: 25927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 2 - - uid: 25928 + - uid: 26047 components: - type: Transform pos: -0.5,-23.5 parent: 2 - - uid: 25929 + - uid: 26048 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 25930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-36.5 - parent: 2 - - uid: 25931 + - uid: 26049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-34.5 + pos: 12.5,-36.5 parent: 2 - - uid: 25934 + - uid: 26050 components: - type: Transform - pos: 28.5,-39.5 + rot: -1.5707963267948966 rad + pos: -1.5,-64.5 parent: 2 - - uid: 25935 +- proto: TargetDarts + entities: + - uid: 26051 components: - type: Transform - pos: 12.5,-36.5 + pos: 9.5,10.5 parent: 2 - proto: TegCenter entities: - - uid: 25936 + - uid: 26052 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: TegCirculator entities: - - uid: 25937 + - uid: 26053 components: - type: Transform rot: 3.141592653589793 rad @@ -173216,7 +170560,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 25938 + - uid: 26054 components: - type: Transform pos: -68.5,-44.5 @@ -173225,7 +170569,7 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 14685 + - uid: 14805 components: - type: Transform pos: 8.5,-20.5 @@ -173236,7 +170580,7 @@ entities: showEnts: False occludes: True ents: - - 14686 + - 14806 machine_board: !type:Container showEnts: False occludes: True @@ -173245,7 +170589,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14687 + - uid: 14807 components: - type: Transform pos: 9.5,-20.5 @@ -173256,7 +170600,7 @@ entities: showEnts: False occludes: True ents: - - 14688 + - 14808 machine_board: !type:Container showEnts: False occludes: True @@ -173265,7 +170609,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14689 + - uid: 14809 components: - type: Transform pos: 10.5,-20.5 @@ -173276,7 +170620,7 @@ entities: showEnts: False occludes: True ents: - - 14690 + - 14810 machine_board: !type:Container showEnts: False occludes: True @@ -173285,7 +170629,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14691 + - uid: 14811 components: - type: Transform pos: 11.5,-20.5 @@ -173296,7 +170640,7 @@ entities: showEnts: False occludes: True ents: - - 14692 + - 14812 machine_board: !type:Container showEnts: False occludes: True @@ -173305,7 +170649,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14693 + - uid: 14813 components: - type: Transform pos: 9.5,-22.5 @@ -173316,7 +170660,7 @@ entities: showEnts: False occludes: True ents: - - 14694 + - 14814 machine_board: !type:Container showEnts: False occludes: True @@ -173325,7 +170669,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14695 + - uid: 14815 components: - type: Transform pos: 8.5,-22.5 @@ -173336,8 +170680,8 @@ entities: showEnts: False occludes: True ents: - - 14697 - - 14696 + - 14817 + - 14816 machine_board: !type:Container showEnts: False occludes: True @@ -173346,7 +170690,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14698 + - uid: 14818 components: - type: Transform pos: 10.5,-22.5 @@ -173357,7 +170701,7 @@ entities: showEnts: False occludes: True ents: - - 14699 + - 14819 machine_board: !type:Container showEnts: False occludes: True @@ -173366,7 +170710,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 14700 + - uid: 14820 components: - type: Transform pos: 11.5,-22.5 @@ -173377,7 +170721,7 @@ entities: showEnts: False occludes: True ents: - - 14701 + - 14821 machine_board: !type:Container showEnts: False occludes: True @@ -173388,103 +170732,103 @@ entities: ents: [] - proto: TeslaCoil entities: - - uid: 25939 + - uid: 26055 components: - type: Transform pos: -72.5,-11.5 parent: 2 - - uid: 25940 + - uid: 26056 components: - type: Transform pos: -72.5,-15.5 parent: 2 - - uid: 25941 + - uid: 26057 components: - type: Transform pos: -72.5,-13.5 parent: 2 - - uid: 25942 + - uid: 26058 components: - type: Transform pos: -60.5,-11.5 parent: 2 - - uid: 25943 + - uid: 26059 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 25944 + - uid: 26060 components: - type: Transform pos: -60.5,-15.5 parent: 2 - proto: TeslaGenerator entities: - - uid: 25945 + - uid: 26061 components: - type: Transform pos: -66.5,-13.5 parent: 2 - proto: TeslaGroundingRod entities: - - uid: 25946 + - uid: 26062 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 25947 + - uid: 26063 components: - type: Transform pos: -71.5,-13.5 parent: 2 - - uid: 25948 + - uid: 26064 components: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 25949 + - uid: 26065 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 25950 + - uid: 26066 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 25951 + - uid: 26067 components: - type: Transform pos: -68.5,-7.5 parent: 2 - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 25952 + - uid: 26068 components: - type: Transform pos: -36.51641,35.415855 parent: 2 - proto: Thruster entities: - - uid: 25953 + - uid: 26069 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-88.5 parent: 2 - - uid: 25954 + - uid: 26070 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-90.5 parent: 2 - - uid: 25955 + - uid: 26071 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-90.5 parent: 2 - - uid: 25956 + - uid: 26072 components: - type: Transform rot: 1.5707963267948966 rad @@ -173492,53 +170836,77 @@ entities: parent: 2 - proto: TimerTrigger entities: - - uid: 25957 + - uid: 26073 components: - type: Transform pos: 65.507225,-28.362265 parent: 2 - proto: TintedWindow entities: - - uid: 25958 + - uid: 26074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - uid: 26075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 26076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 26077 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 - - uid: 25959 + - uid: 26078 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 + - uid: 26079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-54.5 + parent: 2 - proto: TobaccoSeeds entities: - - uid: 25960 + - uid: 26080 components: - type: Transform pos: -32.36416,6.3223424 parent: 2 - proto: ToiletDirtyWater entities: - - uid: 25961 + - uid: 26081 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 - - uid: 25962 + - uid: 26082 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 - - uid: 25963 + - uid: 26083 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 - - uid: 25964 + - uid: 26084 components: - type: Transform rot: -1.5707963267948966 rad @@ -173546,12 +170914,12 @@ entities: parent: 2 - proto: ToiletEmpty entities: - - uid: 25965 + - uid: 26085 components: - type: Transform pos: 61.5,24.5 parent: 2 - - uid: 25966 + - uid: 26086 components: - type: Transform pos: 63.5,24.5 @@ -173560,357 +170928,352 @@ entities: defaultTarget: start - proto: TomatoSeeds entities: - - uid: 25967 + - uid: 26087 components: - type: Transform pos: -32.45791,6.4317174 parent: 2 - proto: ToolboxElectrical entities: - - uid: 25968 + - uid: 26088 components: - type: Transform pos: 46.470684,-5.411702 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 25969 + - uid: 26089 components: - type: Transform pos: -36.493176,-7.9722276 parent: 2 - - uid: 25970 + - uid: 26090 components: - type: Transform pos: 32.521046,-20.990738 parent: 2 - - uid: 25971 + - uid: 26091 components: - type: Transform pos: -24.509478,-19.362955 parent: 2 - - uid: 25972 + - uid: 26092 components: - type: Transform pos: -12.493107,-98.55707 parent: 2 - - uid: 25973 + - uid: 26093 components: - type: Transform pos: 67.55947,-64.54127 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 25974 + - uid: 26094 components: - type: Transform pos: 32.521046,-22.058308 parent: 2 - - uid: 25975 - components: - - type: Transform - pos: 4.5177064,-69.50256 - parent: 2 - - uid: 25976 + - uid: 26095 components: - type: Transform pos: -22.596659,-20.233759 parent: 2 - - uid: 25977 + - uid: 26096 components: - type: Transform pos: -28.343418,-52.353195 parent: 2 - - uid: 25978 + - uid: 26097 components: - type: Transform pos: -38.44295,-67.482124 parent: 2 - - uid: 25979 + - uid: 26098 components: - type: Transform pos: -35.451088,-50.209225 parent: 2 - - uid: 25980 + - uid: 26099 components: - type: Transform pos: 54.54983,-30.496807 parent: 2 - - uid: 25981 + - uid: 26100 components: - type: Transform pos: 65.53578,-10.518121 parent: 2 - - uid: 25982 + - uid: 26101 components: - type: Transform pos: -12.486199,-5.5686293 parent: 2 - - uid: 25983 + - uid: 26102 components: - type: Transform pos: -36.5088,-7.6284776 parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 25984 + - uid: 26103 components: - type: Transform pos: 32.512478,-22.558695 parent: 2 - proto: ToolboxMechanical entities: - - uid: 25985 + - uid: 26104 components: - type: Transform pos: -22.637089,-8.36341 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 25986 + - uid: 26105 components: - type: Transform pos: -36.493176,-7.2222276 parent: 2 - - uid: 25987 + - uid: 26106 components: - type: Transform pos: -15.996035,12.5348 parent: 2 - - uid: 25988 + - uid: 26107 components: - type: Transform pos: 32.521046,-21.537613 parent: 2 - - uid: 25989 + - uid: 26108 components: - type: Transform pos: -22.52499,-67.50294 parent: 2 - - uid: 25990 + - uid: 26109 components: - type: Transform pos: 41.46839,-54.726734 parent: 2 - - uid: 25991 + - uid: 26110 components: - type: Transform pos: -36.497368,-32.593475 parent: 2 - - uid: 25992 + - uid: 26111 components: - type: Transform pos: -26.431704,-19.50094 parent: 2 - proto: ToyAi entities: - - uid: 25993 + - uid: 26112 components: - type: Transform pos: 48.41234,-27.902035 parent: 2 - - uid: 25994 + - uid: 26113 components: - type: Transform pos: -1.529743,69.62148 parent: 2 - proto: ToyAmongPequeno entities: - - uid: 25995 + - uid: 26114 components: - type: Transform pos: 64.471924,-66.472046 parent: 2 - proto: ToyDurand entities: - - uid: 25996 + - uid: 26115 components: - type: Transform pos: -18.14669,61.77462 parent: 2 - proto: ToyFigurineClown entities: - - uid: 25997 + - uid: 26116 components: - type: Transform pos: 2.672367,-19.349606 parent: 2 - proto: ToyFigurineHamlet entities: - - uid: 25998 + - uid: 26117 components: - type: Transform pos: 19.529411,-12.229433 parent: 2 - proto: ToyFigurineMime entities: - - uid: 25999 + - uid: 26118 components: - type: Transform pos: 2.266117,-19.537106 parent: 2 - proto: ToyFigurinePassenger entities: - - uid: 26000 + - uid: 26119 components: - type: Transform pos: -17.943565,62.415245 parent: 2 - proto: ToyGygax entities: - - uid: 26001 + - uid: 26120 components: - type: Transform pos: -17.318565,61.89962 parent: 2 - proto: ToyHonk entities: - - uid: 26002 + - uid: 26121 components: - type: Transform pos: 62.0246,-1.3985255 parent: 2 - - uid: 26003 + - uid: 26122 components: - type: Transform pos: -17.287315,62.508995 parent: 2 - proto: ToyIan entities: - - uid: 26004 + - uid: 26123 components: - type: Transform pos: 48.44359,-22.433285 parent: 2 - proto: ToyNuke entities: - - uid: 26005 + - uid: 26124 components: - type: Transform pos: 48.50609,-28.933285 parent: 2 - proto: ToyRubberDuck entities: - - uid: 26006 + - uid: 26125 components: - type: Transform pos: 48.59984,-28.457928 parent: 2 - - uid: 26007 + - uid: 26126 components: - type: Transform pos: 48.396713,-28.473553 parent: 2 - - uid: 26008 + - uid: 26127 components: - type: Transform pos: 48.50609,-28.286053 parent: 2 - proto: ToySpawner entities: - - uid: 26009 + - uid: 26128 components: - type: Transform pos: 53.5,-65.5 parent: 2 - - uid: 26010 + - uid: 26129 components: - type: Transform pos: 54.5,-35.5 parent: 2 - proto: TrainingBomb entities: - - uid: 26011 + - uid: 26130 components: - type: Transform pos: 11.5,23.5 parent: 2 - - uid: 26012 + - uid: 26131 components: - type: Transform pos: 10.5,23.5 parent: 2 - proto: TrashBananaPeel entities: - - uid: 26013 + - uid: 26132 components: - type: Transform pos: 46.551132,46.620934 parent: 2 - - uid: 26014 + - uid: 26133 components: - type: Transform pos: 48.49847,33.344906 parent: 2 - - uid: 26015 + - uid: 26134 components: - type: Transform pos: 50.451595,31.673027 parent: 2 - - uid: 26016 + - uid: 26135 components: - type: Transform pos: 5.4959826,24.50416 parent: 2 - - uid: 26017 + - uid: 26136 components: - type: Transform pos: 0.5065335,-21.863766 parent: 2 - proto: trayScanner entities: - - uid: 26018 + - uid: 26137 components: - type: Transform pos: -36.91505,-7.9878526 parent: 2 - - uid: 26019 + - uid: 26138 components: - type: Transform pos: -47.457436,-19.479069 parent: 2 - - uid: 26020 + - uid: 26139 components: - type: Transform pos: -42.463882,-20.49279 parent: 2 - - uid: 26021 + - uid: 26140 components: - type: Transform pos: 39.581177,-30.49341 parent: 2 - - uid: 26022 + - uid: 26141 components: - type: Transform pos: 73.06597,36.576 parent: 2 - - uid: 26023 + - uid: 26142 components: - type: Transform pos: 77.48675,-44.195305 parent: 2 - - uid: 26024 + - uid: 26143 components: - type: Transform - pos: -26.403507,-59.437252 + pos: 0.6608392,-60.017574 parent: 2 - proto: TromboneInstrument entities: - - uid: 26025 + - uid: 26144 components: - type: Transform pos: 68.56264,48.54323 parent: 2 - proto: TrumpetInstrument entities: - - uid: 26026 + - uid: 26145 components: - type: Transform pos: -10.547552,-5.035685 parent: 2 - proto: TwoWayLever entities: - - uid: 26027 + - uid: 26146 components: - type: Transform pos: 16.5,-53.5 @@ -173919,148 +171282,148 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12762: + 12871: - Left: Forward - Right: Reverse - Middle: Off - 12760: + 12869: - Left: Forward - Right: Reverse - Middle: Off - 12761: + 12870: - Left: Forward - Right: Reverse - Middle: Off - 12758: + 12867: - Left: Forward - Right: Reverse - Middle: Off - 12755: + 12864: - Left: Forward - Right: Reverse - Middle: Off - 12752: + 12861: - Left: Forward - Right: Reverse - Middle: Off - 12754: + 12863: - Left: Forward - Right: Reverse - Middle: Off - 12756: + 12865: - Left: Forward - Right: Reverse - Middle: Off - 23381: + 23477: - Left: Forward - Right: Reverse - Middle: Off - 12753: + 12862: - Left: Forward - Right: Reverse - Middle: Off - 12759: + 12868: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26028 + - uid: 26147 components: - type: Transform pos: -28.5,24.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12770: + 12879: - Left: Forward - Right: Reverse - Middle: Off - 12771: + 12880: - Left: Forward - Right: Reverse - Middle: Off - 12769: + 12878: - Left: Forward - Right: Reverse - Middle: Off - 12768: + 12877: - Left: Forward - Right: Reverse - Middle: Off - 12767: + 12876: - Left: Forward - Right: Reverse - Middle: Off - 12766: + 12875: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26029 + - uid: 26148 components: - type: Transform pos: -41.5,17.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12812: + 12921: - Left: Forward - Right: Reverse - Middle: Off - 12852: + 12961: - Left: Forward - Right: Reverse - Middle: Off - 12811: + 12920: - Left: Forward - Right: Reverse - Middle: Off - 12793: + 12902: - Left: Forward - Right: Reverse - Middle: Off - 12813: + 12922: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26030 + - uid: 26149 components: - type: Transform pos: -48.5,24.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12784: + 12893: - Left: Forward - Right: Reverse - Middle: Off - 12783: + 12892: - Left: Forward - Right: Reverse - Middle: Off - 12782: + 12891: - Left: Forward - Right: Reverse - Middle: Off - 12781: + 12890: - Left: Forward - Right: Reverse - Middle: Off - 12789: + 12898: - Left: Forward - Right: Reverse - Middle: Off - 12790: + 12899: - Left: Forward - Right: Reverse - Middle: Off - 12791: + 12900: - Left: Forward - Right: Reverse - Middle: Off - 12792: + 12901: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26031 + - uid: 26150 components: - type: Transform pos: -48.5,18.5 @@ -174069,39 +171432,39 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12780: + 12889: - Left: Forward - Right: Reverse - Middle: Off - 12779: + 12888: - Left: Forward - Right: Reverse - Middle: Off - 12778: + 12887: - Left: Forward - Right: Reverse - Middle: Off - 12777: + 12886: - Left: Forward - Right: Reverse - Middle: Off - 12787: + 12896: - Left: Forward - Right: Reverse - Middle: Off - 12788: + 12897: - Left: Forward - Right: Reverse - Middle: Off - 12786: + 12895: - Left: Forward - Right: Reverse - Middle: Off - 12785: + 12894: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26032 + - uid: 26151 components: - type: Transform pos: -36.5,24.5 @@ -174110,98 +171473,98 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12776: + 12885: - Left: Forward - Right: Reverse - Middle: Off - 12775: + 12884: - Left: Forward - Right: Reverse - Middle: Off - 12774: + 12883: - Left: Forward - Right: Reverse - Middle: Off - 12772: + 12881: - Left: Forward - Right: Reverse - Middle: Off - 12773: + 12882: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26033 + - uid: 26152 components: - type: Transform pos: -11.5,28.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12829: + 12938: - Left: Forward - Right: Reverse - Middle: Off - 12830: + 12939: - Left: Forward - Right: Reverse - Middle: Off - 12831: + 12940: - Left: Forward - Right: Reverse - Middle: Off - 12832: + 12941: - Left: Forward - Right: Reverse - Middle: Off - 12833: + 12942: - Left: Forward - Right: Reverse - Middle: Off - 12828: + 12937: - Left: Forward - Right: Reverse - Middle: Off - 12817: + 12926: - Left: Forward - Right: Reverse - Middle: Off - 12818: + 12927: - Left: Forward - Right: Reverse - Middle: Off - 12819: + 12928: - Left: Forward - Right: Reverse - Middle: Off - 12835: + 12944: - Left: Forward - Right: Reverse - Middle: Off - 12834: + 12943: - Left: Forward - Right: Reverse - Middle: Off - 12810: + 12919: - Left: Reverse - Right: Forward - Middle: Off - 12809: + 12918: - Left: Reverse - Right: Forward - Middle: Off - 12836: + 12945: - Left: Reverse - Right: Forward - Middle: Off - 12837: + 12946: - Left: Reverse - Right: Forward - Middle: Off - 12808: + 12917: - Left: Reverse - Right: Forward - Middle: Off - - uid: 26034 + - uid: 26153 components: - type: Transform pos: -48.5,29.5 @@ -174210,35 +171573,35 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12805: + 12914: - Left: Forward - Right: Reverse - Middle: Off - 12795: + 12904: - Left: Forward - Right: Reverse - Middle: Off - 12794: + 12903: - Left: Forward - Right: Reverse - Middle: Off - 12796: + 12905: - Left: Forward - Right: Reverse - Middle: Off - 12797: + 12906: - Left: Forward - Right: Reverse - Middle: Off - 12798: + 12907: - Left: Forward - Right: Reverse - Middle: Off - 12807: + 12916: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26035 + - uid: 26154 components: - type: Transform pos: -48.5,35.5 @@ -174247,35 +171610,35 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12804: + 12913: - Left: Forward - Right: Reverse - Middle: Off - 12799: + 12908: - Left: Forward - Right: Reverse - Middle: Off - 12800: + 12909: - Left: Forward - Right: Reverse - Middle: Off - 12801: + 12910: - Left: Forward - Right: Reverse - Middle: Off - 12802: + 12911: - Left: Forward - Right: Reverse - Middle: Off - 12803: + 12912: - Left: Forward - Right: Reverse - Middle: Off - 12806: + 12915: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26036 + - uid: 26155 components: - type: Transform pos: -46.5,14.5 @@ -174284,19 +171647,19 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12815: + 12924: - Left: Forward - Right: Reverse - Middle: Off - 12814: + 12923: - Left: Forward - Right: Reverse - Middle: Off - 12816: + 12925: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26037 + - uid: 26156 components: - type: Transform pos: 47.5,39.5 @@ -174305,176 +171668,176 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12820: + 12929: - Left: Forward - Right: Reverse - Middle: Off - 12821: + 12930: - Left: Forward - Right: Reverse - Middle: Off - 12822: + 12931: - Left: Forward - Right: Reverse - Middle: Off - 12823: + 12932: - Left: Forward - Right: Reverse - Middle: Off - 12824: + 12933: - Left: Forward - Right: Reverse - Middle: Off - 12825: + 12934: - Left: Forward - Right: Reverse - Middle: Off - 12826: + 12935: - Left: Forward - Right: Reverse - Middle: Off - 12827: + 12936: - Left: Forward - Right: Reverse - Middle: Off - 12838: + 12947: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26038 + - uid: 26157 components: - type: Transform pos: -36.5,-98.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12840: + 12949: - Left: Forward - Right: Reverse - Middle: Off - 12839: + 12948: - Left: Forward - Right: Reverse - Middle: Off - 12841: + 12950: - Left: Forward - Right: Reverse - Middle: Off - 12842: + 12951: - Left: Forward - Right: Reverse - Middle: Off - 12843: + 12952: - Left: Forward - Right: Reverse - Middle: Off - 12844: + 12953: - Left: Forward - Right: Reverse - Middle: Off - 12845: + 12954: - Left: Forward - Right: Reverse - Middle: Off - 12849: + 12958: - Left: Forward - Right: Reverse - Middle: Off - 12848: + 12957: - Left: Forward - Right: Reverse - Middle: Off - 12846: + 12955: - Left: Forward - Right: Reverse - Middle: Off - 12847: + 12956: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26039 + - uid: 26158 components: - type: Transform pos: -36.5,-104.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12847: + 12956: - Left: Forward - Right: Reverse - Middle: Off - 12846: + 12955: - Left: Forward - Right: Reverse - Middle: Off - 12848: + 12957: - Left: Forward - Right: Reverse - Middle: Off - 12849: + 12958: - Left: Forward - Right: Reverse - Middle: Off - 12845: + 12954: - Left: Forward - Right: Reverse - Middle: Off - 12844: + 12953: - Left: Forward - Right: Reverse - Middle: Off - 12843: + 12952: - Left: Forward - Right: Reverse - Middle: Off - 12842: + 12951: - Left: Forward - Right: Reverse - Middle: Off - 12841: + 12950: - Left: Forward - Right: Reverse - Middle: Off - 12839: + 12948: - Left: Forward - Right: Reverse - Middle: Off - 12840: + 12949: - Left: Forward - Right: Reverse - Middle: Off - - uid: 26040 + - uid: 26159 components: - type: Transform pos: -9.5,-12.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12763: + 12872: - Left: Reverse - Right: Reverse - Middle: Off - 12764: + 12873: - Left: Reverse - Right: Reverse - Middle: Off - 12757: + 12866: - Left: Reverse - Right: Reverse - Middle: Off - 12851: + 12960: - Left: Reverse - Right: Reverse - Middle: Off - 12850: + 12959: - Left: Reverse - Right: Reverse - Middle: Off - 12765: + 12874: - Left: Reverse - Right: Reverse - Middle: Off - - uid: 26041 + - uid: 26160 components: - type: Transform pos: -15.5,10.5 @@ -174483,58 +171846,58 @@ entities: nextSignalLeft: True - type: DeviceLinkSource linkedPorts: - 12853: + 12962: - Left: Reverse - Right: Forward - Middle: Off - 12854: + 12963: - Left: Reverse - Right: Forward - Middle: Off - 12855: + 12964: - Left: Reverse - Right: Forward - Middle: Off - proto: UnfinishedMachineFrame entities: - - uid: 26042 + - uid: 26161 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 26043 + - uid: 26162 components: - type: Transform pos: -10.5,39.5 parent: 2 - - uid: 26044 + - uid: 26163 components: - type: Transform pos: 53.5,-30.5 parent: 2 - proto: UniformPrinter entities: - - uid: 26045 + - uid: 26164 components: - type: Transform pos: 2.5,-4.5 parent: 2 - proto: UniformShortsRedWithTop entities: - - uid: 26046 + - uid: 26165 components: - type: Transform pos: 30.57281,4.627015 parent: 2 - proto: UprightPianoInstrument entities: - - uid: 26047 + - uid: 26166 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 - - uid: 26048 + - uid: 26167 components: - type: Transform rot: -1.5707963267948966 rad @@ -174542,708 +171905,734 @@ entities: parent: 2 - proto: Vaccinator entities: - - uid: 26049 + - uid: 26168 components: - type: Transform pos: -22.5,-77.5 parent: 2 - - uid: 26050 + - uid: 26169 components: - type: Transform pos: -20.5,-76.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 26051 + - uid: 26170 components: - type: Transform pos: -24.421421,-84.24069 parent: 2 - proto: VendingBarDrobe entities: - - uid: 26056 + - uid: 26171 components: - type: Transform pos: 21.5,14.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 26057 + - uid: 26172 components: - type: Transform pos: -35.5,-32.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 26058 + - uid: 26173 components: - type: Transform pos: -41.5,-74.5 parent: 2 - - uid: 26059 + - uid: 26174 components: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 26060 + - uid: 26175 components: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 26061 + - uid: 26176 components: - type: Transform pos: 29.5,-36.5 parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 26062 + - uid: 26177 components: - type: Transform pos: -34.5,18.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 26063 + - uid: 26178 components: - type: Transform pos: 1.5,-4.5 parent: 2 - proto: VendingMachineChang entities: - - uid: 26064 + - uid: 26179 components: - type: Transform pos: 53.5,3.5 parent: 2 - - uid: 26065 + - uid: 26180 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 26066 + - uid: 26181 components: - type: Transform pos: -21.5,-18.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 26067 + - uid: 26182 components: - type: Transform pos: -29.5,12.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 26068 + - uid: 26183 components: - type: Transform pos: 0.5,14.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 26069 + - uid: 26184 components: - type: Transform pos: 2.5,9.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 26070 + - uid: 26185 components: - type: Transform - pos: 6.5,-50.5 + pos: 2.5,-50.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 26071 + - uid: 26186 components: - type: Transform pos: 5.5,-45.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 26072 + - uid: 26187 components: - type: Transform pos: 2.5,58.5 parent: 2 - - uid: 26073 + - uid: 26188 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 26074 + - uid: 26189 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 26075 + - uid: 26190 components: - type: Transform pos: 61.5,-13.5 parent: 2 - - uid: 26076 + - uid: 26191 components: - type: Transform pos: -13.5,8.5 parent: 2 - - uid: 26077 + - uid: 26192 components: - type: Transform pos: 11.5,-85.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 26078 + - uid: 26193 components: - type: Transform pos: -19.5,31.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 26079 + - uid: 26194 components: - type: Transform - pos: -10.5,-52.5 + pos: -9.5,-61.5 parent: 2 - - uid: 26080 + - uid: 26195 components: - type: Transform pos: 37.5,-17.5 parent: 2 - - uid: 26081 + - uid: 26196 components: - type: Transform pos: 45.5,17.5 parent: 2 - - uid: 26082 + - uid: 26197 components: - type: Transform pos: 51.5,3.5 parent: 2 - - uid: 26083 + - uid: 26198 components: - type: Transform pos: 60.5,-13.5 parent: 2 - - uid: 26084 + - uid: 26199 components: - type: Transform pos: -33.5,-22.5 parent: 2 - - uid: 26085 + - uid: 26200 components: - type: Transform pos: -43.5,4.5 parent: 2 - - uid: 26086 + - uid: 26201 components: - type: Transform pos: -0.5,43.5 parent: 2 - - uid: 26087 + - uid: 26202 components: - type: Transform pos: -14.5,49.5 parent: 2 - - uid: 26088 + - uid: 26203 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 26089 + - uid: 26204 components: - type: Transform pos: 11.5,-81.5 parent: 2 - proto: VendingMachineCola entities: - - uid: 26090 + - uid: 26205 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 26091 + - uid: 26206 components: - type: Transform pos: 27.5,-11.5 parent: 2 - - uid: 26092 + - uid: 26207 components: - type: Transform pos: -27.5,-69.5 parent: 2 - proto: VendingMachineCondiments entities: - - uid: 26093 + - uid: 26208 components: - type: Transform pos: 8.5,10.5 parent: 2 - - uid: 26094 + - uid: 26209 components: - type: Transform pos: 3.5,3.5 parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 26210 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 26095 + - uid: 26211 components: - type: Transform pos: 19.5,-10.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 26096 + - uid: 26212 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 26097 + - uid: 26213 components: - type: Transform pos: -22.5,42.5 parent: 2 - proto: VendingMachineDiscount entities: - - uid: 26098 + - uid: 26214 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 26099 + - uid: 26215 components: - type: Transform pos: -33.5,-23.5 parent: 2 - - uid: 26100 + - uid: 26216 components: - type: Transform pos: -43.5,3.5 parent: 2 - - uid: 26101 + - uid: 26217 components: - type: Transform pos: -21.5,-17.5 parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 26218 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 26102 + - uid: 26219 components: - type: Transform pos: -39.5,-13.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 26103 + - uid: 26220 components: - type: Transform pos: -36.5,-4.5 parent: 2 - proto: VendingMachineGames entities: - - uid: 26104 + - uid: 26221 components: - type: Transform pos: 5.5,-34.5 parent: 2 - proto: VendingMachineGeneDrobe entities: - - uid: 26105 + - uid: 26222 components: - type: Transform pos: -12.5,-45.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 26106 + - uid: 26223 components: - type: Transform pos: 3.5,9.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 26107 + - uid: 26224 components: - type: Transform pos: -2.5,12.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 26108 + - uid: 26225 components: - type: Transform pos: -9.5,-19.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 26109 + - uid: 26226 components: - type: Transform pos: 41.5,-5.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 25061 + - uid: 26227 components: - type: Transform - pos: 44.5,8.5 + pos: -11.5,-47.5 parent: 2 - - uid: 26110 + - uid: 26228 components: - type: Transform pos: -28.5,-75.5 parent: 2 - - uid: 26111 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 26112 + - uid: 26229 components: - type: Transform pos: -14.5,-45.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 26113 + - uid: 26230 components: - type: Transform pos: -2.5,8.5 parent: 2 - proto: VendingMachineRestockSmokes entities: - - uid: 26114 + - uid: 26231 components: - type: Transform pos: -26.439571,39.52594 parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 26115 + - uid: 26232 components: - type: Transform pos: 67.5,-43.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 26116 + - uid: 26233 components: - type: Transform pos: 68.5,-49.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 26117 + - uid: 26234 components: - type: Transform pos: -38.5,33.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 26118 + - uid: 26235 components: - type: Transform pos: 43.5,-45.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 26119 + - uid: 26236 components: - type: Transform pos: 2.5,18.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 26120 + - uid: 26237 components: - type: Transform pos: 0.5,21.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 26121 + - uid: 26238 components: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 26122 + - uid: 26239 components: - type: Transform pos: -5.5,5.5 parent: 2 - proto: VendingMachineSeedsUnlocked entities: - - uid: 26123 + - uid: 26240 components: - type: Transform pos: 58.5,10.5 parent: 2 - proto: VendingMachineSnack entities: - - uid: 26124 + - uid: 26241 components: - type: Transform pos: 2.5,57.5 parent: 2 - - uid: 26125 + - uid: 26242 components: - type: Transform pos: 44.5,17.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 26126 + - uid: 26243 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 26127 + - uid: 26244 components: - type: Transform pos: 61.5,-15.5 parent: 2 - - uid: 26128 + - uid: 26245 components: - type: Transform pos: -37.5,-72.5 parent: 2 - - uid: 26129 + - uid: 26246 components: - type: Transform pos: -40.5,27.5 parent: 2 - - uid: 26130 + - uid: 26247 components: - type: Transform pos: 44.5,-15.5 parent: 2 - - uid: 26131 + - uid: 26248 components: - type: Transform pos: 56.5,-63.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 26132 + - uid: 26249 components: - type: Transform pos: -33.5,-37.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 26133 + - uid: 26250 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 26134 + - uid: 26251 components: - type: Transform pos: -22.5,-36.5 parent: 2 - - uid: 26135 + - uid: 26252 components: - type: Transform pos: -35.5,-51.5 parent: 2 - - uid: 26136 + - uid: 26253 components: - type: Transform pos: -48.5,36.5 parent: 2 - - uid: 26137 + - uid: 26254 components: - type: Transform pos: 28.5,47.5 parent: 2 - - uid: 26138 + - uid: 26255 components: - type: Transform pos: 77.5,-45.5 parent: 2 - proto: VendingMachineTheater entities: - - uid: 26139 + - uid: 26256 components: - type: Transform pos: -8.5,-4.5 parent: 2 - - uid: 26140 + - uid: 26257 components: - type: Transform pos: -20.5,31.5 parent: 2 - - uid: 26141 + - uid: 26258 components: - type: Transform pos: 2.5,-22.5 parent: 2 - - uid: 26142 + - uid: 26259 components: - type: Transform pos: 11.5,-82.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 26143 + - uid: 26260 components: - type: Transform pos: 27.5,-12.5 parent: 2 - - uid: 26144 + - uid: 26261 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 26145 + - uid: 26262 components: - type: Transform pos: -43.5,6.5 parent: 2 - - uid: 26146 + - uid: 26263 components: - type: Transform pos: 51.5,-38.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 26147 + - uid: 26264 components: - type: Transform pos: -27.5,-75.5 parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 26265 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 26266 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 2 + - uid: 26267 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 2 - proto: VendingMachineWinter entities: - - uid: 26148 + - uid: 26268 components: - type: Transform pos: -18.5,31.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 26149 + - uid: 26269 components: - type: Transform pos: 39.5,-53.5 parent: 2 - - uid: 26150 + - uid: 26270 components: - type: Transform pos: -37.5,-4.5 parent: 2 - - uid: 26151 + - uid: 26271 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 26152 + - uid: 26272 components: - type: Transform pos: -31.5,-9.5 parent: 2 - proto: VoiceTrigger entities: - - uid: 26153 + - uid: 26273 components: - type: Transform pos: 65.475975,-28.50289 parent: 2 - proto: WallmountTelevision entities: - - uid: 26154 + - uid: 26274 components: - type: Transform pos: 17.5,8.5 parent: 2 - proto: WallPlastitanium entities: - - uid: 26155 + - uid: 26275 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-90.5 parent: 2 - - uid: 26156 + - uid: 26276 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-88.5 parent: 2 - - uid: 26157 + - uid: 26277 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-86.5 parent: 2 - - uid: 26158 + - uid: 26278 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 - - uid: 26159 + - uid: 26279 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 - - uid: 26160 + - uid: 26280 components: - type: Transform pos: 62.5,-46.5 parent: 2 - - uid: 26161 + - uid: 26281 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 26162 + - uid: 26282 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 26163 + - uid: 26283 components: - type: Transform pos: -56.5,-89.5 parent: 2 - - uid: 26164 + - uid: 26284 components: - type: Transform pos: -57.5,-89.5 parent: 2 - - uid: 26165 + - uid: 26285 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 26166 + - uid: 26286 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-86.5 parent: 2 - - uid: 26167 + - uid: 26287 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-88.5 parent: 2 - - uid: 26168 + - uid: 26288 components: - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 26169 + - uid: 26289 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 26170 + - uid: 26290 components: - type: Transform rot: -1.5707963267948966 rad @@ -175251,30 +172640,30 @@ entities: parent: 2 - proto: WallPlastitaniumDiagonal entities: - - uid: 26171 + - uid: 26291 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-89.5 parent: 2 - - uid: 26172 + - uid: 26292 components: - type: Transform pos: -58.5,-85.5 parent: 2 - - uid: 26173 + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-85.5 parent: 2 - - uid: 26174 + - uid: 26294 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-89.5 parent: 2 - - uid: 26175 + - uid: 26295 components: - type: Transform rot: -1.5707963267948966 rad @@ -175282,25693 +172671,25712 @@ entities: parent: 2 - proto: WallReinforced entities: - - uid: 9001 + - uid: 26296 components: - type: Transform - pos: 24.5,-38.5 + rot: 1.5707963267948966 rad + pos: -16.5,-55.5 parent: 2 - - uid: 9879 + - uid: 26297 components: - type: Transform - pos: 24.5,-40.5 + pos: -16.5,-52.5 parent: 2 - - uid: 9880 + - uid: 26298 components: - type: Transform - pos: 23.5,-40.5 + pos: 5.5,-38.5 parent: 2 - - uid: 10372 + - uid: 26299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-33.5 + pos: -22.5,-53.5 parent: 2 - - uid: 14668 + - uid: 26300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-36.5 + pos: -17.5,-58.5 parent: 2 - - uid: 21074 + - uid: 26301 components: - type: Transform - pos: 24.5,-39.5 + pos: -21.5,-58.5 parent: 2 - - uid: 22582 + - uid: 26302 components: - type: Transform - pos: 24.5,-34.5 + pos: -20.5,-53.5 parent: 2 - - uid: 23993 + - uid: 26303 components: - type: Transform - pos: 24.5,-35.5 + pos: -21.5,-53.5 parent: 2 - - uid: 26176 + - uid: 26304 + components: + - type: Transform + pos: -20.5,-51.5 + parent: 2 + - uid: 26305 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 26306 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-75.5 parent: 2 - - uid: 26177 + - uid: 26307 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 - - uid: 26178 + - uid: 26308 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 - - uid: 26179 + - uid: 26309 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 - - uid: 26180 + - uid: 26310 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,25.5 parent: 2 - - uid: 26181 + - uid: 26311 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 parent: 2 - - uid: 26182 + - uid: 26312 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-91.5 parent: 2 - - uid: 26183 + - uid: 26313 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-91.5 parent: 2 - - uid: 26184 + - uid: 26314 components: - type: Transform pos: 12.5,26.5 parent: 2 - - uid: 26185 + - uid: 26315 components: - type: Transform pos: 11.5,27.5 parent: 2 - - uid: 26186 + - uid: 26316 components: - type: Transform pos: 7.5,26.5 parent: 2 - - uid: 26187 + - uid: 26317 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-31.5 parent: 2 - - uid: 26188 + - uid: 26318 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-31.5 parent: 2 - - uid: 26190 + - uid: 26319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-33.5 + parent: 2 + - uid: 26320 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 26191 + - uid: 26321 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 26192 + - uid: 26322 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 26193 + - uid: 26323 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 - - uid: 26194 + - uid: 26324 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 26195 + - uid: 26325 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 26196 + - uid: 26326 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 26197 + - uid: 26327 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 - - uid: 26198 + - uid: 26328 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 26199 + - uid: 26329 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-30.5 parent: 2 - - uid: 26200 + - uid: 26330 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 26201 + - uid: 26331 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 26202 + - uid: 26332 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 - - uid: 26203 + - uid: 26333 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 26204 + - uid: 26334 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 26205 + - uid: 26335 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 26206 + - uid: 26336 components: - type: Transform pos: -16.5,-56.5 parent: 2 - - uid: 26207 + - uid: 26337 components: - type: Transform pos: -23.5,-53.5 parent: 2 - - uid: 26208 + - uid: 26338 components: - type: Transform pos: 28.5,-40.5 parent: 2 - - uid: 26209 + - uid: 26339 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 26210 + - uid: 26340 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 2 - - uid: 26211 + - uid: 26341 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 26212 + - uid: 26342 components: - type: Transform pos: 22.5,-40.5 parent: 2 - - uid: 26213 + - uid: 26343 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 26214 + - uid: 26344 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 26215 + - uid: 26345 components: - type: Transform pos: -38.5,-20.5 parent: 2 - - uid: 26216 + - uid: 26346 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 26217 + - uid: 26347 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 26218 + - uid: 26348 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 26219 + - uid: 26349 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 26220 + - uid: 26350 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 26221 + - uid: 26351 components: - type: Transform pos: -38.5,-21.5 parent: 2 - - uid: 26222 + - uid: 26352 components: - type: Transform pos: -37.5,-21.5 parent: 2 - - uid: 26223 + - uid: 26353 components: - type: Transform pos: -36.5,-21.5 parent: 2 - - uid: 26224 + - uid: 26354 components: - type: Transform pos: -35.5,-21.5 parent: 2 - - uid: 26225 + - uid: 26355 components: - type: Transform pos: -35.5,-20.5 parent: 2 - - uid: 26226 - components: - - type: Transform - pos: -22.5,-53.5 - parent: 2 - - uid: 26227 + - uid: 26356 components: - type: Transform pos: -23.5,-54.5 parent: 2 - - uid: 26228 + - uid: 26357 components: - type: Transform pos: -22.5,-56.5 parent: 2 - - uid: 26229 + - uid: 26358 components: - type: Transform pos: -23.5,-55.5 parent: 2 - - uid: 26230 + - uid: 26359 components: - type: Transform pos: -23.5,-56.5 parent: 2 - - uid: 26231 + - uid: 26360 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 - - uid: 26232 + - uid: 26361 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 - - uid: 26233 + - uid: 26362 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 - - uid: 26234 + - uid: 26363 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-24.5 parent: 2 - - uid: 26235 + - uid: 26364 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-25.5 parent: 2 - - uid: 26236 + - uid: 26365 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-24.5 parent: 2 - - uid: 26237 + - uid: 26366 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-24.5 parent: 2 - - uid: 26238 + - uid: 26367 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-33.5 parent: 2 - - uid: 26239 + - uid: 26368 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-35.5 parent: 2 - - uid: 26240 + - uid: 26369 components: - type: Transform pos: -42.5,-33.5 parent: 2 - - uid: 26241 + - uid: 26370 components: - type: Transform pos: -43.5,-33.5 parent: 2 - - uid: 26242 + - uid: 26371 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 26243 + - uid: 26372 components: - type: Transform pos: -46.5,-24.5 parent: 2 - - uid: 26244 + - uid: 26373 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-33.5 parent: 2 - - uid: 26245 + - uid: 26374 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-33.5 parent: 2 - - uid: 26246 + - uid: 26375 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-43.5 parent: 2 - - uid: 26247 + - uid: 26376 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-38.5 parent: 2 - - uid: 26248 + - uid: 26377 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 - - uid: 26249 + - uid: 26378 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-35.5 parent: 2 - - uid: 26250 + - uid: 26379 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-38.5 parent: 2 - - uid: 26251 + - uid: 26380 components: - type: Transform pos: -44.5,-33.5 parent: 2 - - uid: 26252 + - uid: 26381 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-44.5 parent: 2 - - uid: 26253 + - uid: 26382 components: - type: Transform pos: -61.5,-38.5 parent: 2 - - uid: 26254 + - uid: 26383 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-35.5 parent: 2 - - uid: 26255 + - uid: 26384 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 - - uid: 26256 + - uid: 26385 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-35.5 parent: 2 - - uid: 26257 + - uid: 26386 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-44.5 parent: 2 - - uid: 26258 + - uid: 26387 components: - type: Transform pos: -64.5,-44.5 parent: 2 - - uid: 26259 + - uid: 26388 components: - type: Transform pos: -78.5,-44.5 parent: 2 - - uid: 26260 + - uid: 26389 components: - type: Transform pos: -76.5,-39.5 parent: 2 - - uid: 26261 + - uid: 26390 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-26.5 parent: 2 - - uid: 26262 + - uid: 26391 components: - type: Transform pos: -71.5,-36.5 parent: 2 - - uid: 26263 + - uid: 26392 components: - type: Transform pos: -70.5,-36.5 parent: 2 - - uid: 26264 + - uid: 26393 components: - type: Transform pos: -69.5,-36.5 parent: 2 - - uid: 26265 + - uid: 26394 components: - type: Transform pos: -68.5,-36.5 parent: 2 - - uid: 26266 + - uid: 26395 components: - type: Transform pos: -74.5,-36.5 parent: 2 - - uid: 26267 + - uid: 26396 components: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 26268 + - uid: 26397 components: - type: Transform pos: -68.5,-34.5 parent: 2 - - uid: 26269 + - uid: 26398 components: - type: Transform pos: -71.5,-34.5 parent: 2 - - uid: 26270 + - uid: 26399 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-43.5 parent: 2 - - uid: 26271 + - uid: 26400 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 - - uid: 26272 + - uid: 26401 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-38.5 parent: 2 - - uid: 26273 + - uid: 26402 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-37.5 parent: 2 - - uid: 26274 + - uid: 26403 components: - type: Transform pos: -76.5,-30.5 parent: 2 - - uid: 26275 + - uid: 26404 components: - type: Transform pos: -77.5,-30.5 parent: 2 - - uid: 26276 + - uid: 26405 components: - type: Transform pos: -64.5,-46.5 parent: 2 - - uid: 26277 + - uid: 26406 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-38.5 parent: 2 - - uid: 26278 + - uid: 26407 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-43.5 parent: 2 - - uid: 26279 + - uid: 26408 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-39.5 parent: 2 - - uid: 26280 + - uid: 26409 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 26281 + - uid: 26410 components: - type: Transform pos: 52.5,-88.5 parent: 2 - - uid: 26282 + - uid: 26411 components: - type: Transform pos: 51.5,-88.5 parent: 2 - - uid: 26283 + - uid: 26412 components: - type: Transform pos: 50.5,-88.5 parent: 2 - - uid: 26284 + - uid: 26413 components: - type: Transform pos: 50.5,-90.5 parent: 2 - - uid: 26285 + - uid: 26414 components: - type: Transform pos: 51.5,-90.5 parent: 2 - - uid: 26286 + - uid: 26415 components: - type: Transform pos: 52.5,-90.5 parent: 2 - - uid: 26287 + - uid: 26416 components: - type: Transform pos: 50.5,-83.5 parent: 2 - - uid: 26288 + - uid: 26417 components: - type: Transform pos: 52.5,-81.5 parent: 2 - - uid: 26289 + - uid: 26418 components: - type: Transform pos: 50.5,-81.5 parent: 2 - - uid: 26290 + - uid: 26419 components: - type: Transform pos: 51.5,-83.5 parent: 2 - - uid: 26291 + - uid: 26420 components: - type: Transform pos: 51.5,-81.5 parent: 2 - - uid: 26292 + - uid: 26421 components: - type: Transform pos: 52.5,-83.5 parent: 2 - - uid: 26293 + - uid: 26422 components: - type: Transform pos: 70.5,-26.5 parent: 2 - - uid: 26294 + - uid: 26423 components: - type: Transform pos: 64.5,-29.5 parent: 2 - - uid: 26295 + - uid: 26424 components: - type: Transform pos: 64.5,-28.5 parent: 2 - - uid: 26296 + - uid: 26425 components: - type: Transform pos: 66.5,-26.5 parent: 2 - - uid: 26297 + - uid: 26426 components: - type: Transform pos: 67.5,-26.5 parent: 2 - - uid: 26298 + - uid: 26427 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 - - uid: 26299 + - uid: 26428 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 - - uid: 26300 + - uid: 26429 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 - - uid: 26301 + - uid: 26430 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 - - uid: 26302 + - uid: 26431 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 - - uid: 26303 + - uid: 26432 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 - - uid: 26304 + - uid: 26433 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 - - uid: 26305 + - uid: 26434 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 - - uid: 26306 + - uid: 26435 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 - - uid: 26307 + - uid: 26436 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 - - uid: 26308 + - uid: 26437 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 - - uid: 26309 + - uid: 26438 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 - - uid: 26310 + - uid: 26439 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 - - uid: 26311 + - uid: 26440 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 - - uid: 26312 + - uid: 26441 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 - - uid: 26313 + - uid: 26442 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 - - uid: 26314 + - uid: 26443 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 - - uid: 26315 + - uid: 26444 components: - type: Transform pos: 11.5,-30.5 parent: 2 - - uid: 26316 + - uid: 26445 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 - - uid: 26317 + - uid: 26446 components: - type: Transform pos: 72.5,-42.5 parent: 2 - - uid: 26318 + - uid: 26447 components: - type: Transform pos: 71.5,-42.5 parent: 2 - - uid: 26319 + - uid: 26448 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 - - uid: 26320 + - uid: 26449 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 - - uid: 26321 + - uid: 26450 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 - - uid: 26322 + - uid: 26451 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 - - uid: 26323 + - uid: 26452 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 - - uid: 26324 + - uid: 26453 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 - - uid: 26325 + - uid: 26454 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 - - uid: 26326 + - uid: 26455 components: - type: Transform pos: 66.5,-42.5 parent: 2 - - uid: 26327 + - uid: 26456 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 - - uid: 26328 + - uid: 26457 components: - type: Transform pos: 67.5,-42.5 parent: 2 - - uid: 26329 + - uid: 26458 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 - - uid: 26330 + - uid: 26459 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 - - uid: 26331 + - uid: 26460 components: - type: Transform pos: 30.5,-26.5 parent: 2 - - uid: 26332 + - uid: 26461 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 26333 + - uid: 26462 components: - type: Transform pos: 18.5,-67.5 parent: 2 - - uid: 26334 + - uid: 26463 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 - - uid: 26335 + - uid: 26464 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 - - uid: 26336 + - uid: 26465 components: - type: Transform pos: -16.5,-80.5 parent: 2 - - uid: 26337 + - uid: 26466 components: - type: Transform pos: -13.5,-80.5 parent: 2 - - uid: 26338 + - uid: 26467 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 - - uid: 26339 + - uid: 26468 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 26340 + - uid: 26469 components: - type: Transform pos: 30.5,9.5 parent: 2 - - uid: 26341 + - uid: 26470 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 26342 + - uid: 26471 components: - type: Transform pos: -16.5,-74.5 parent: 2 - - uid: 26343 + - uid: 26472 components: - type: Transform pos: -13.5,-75.5 parent: 2 - - uid: 26344 + - uid: 26473 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 - - uid: 26345 + - uid: 26474 components: - type: Transform pos: -27.5,-84.5 parent: 2 - - uid: 26346 + - uid: 26475 components: - type: Transform pos: -27.5,-85.5 parent: 2 - - uid: 26347 + - uid: 26476 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 - - uid: 26348 + - uid: 26477 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 - - uid: 26349 + - uid: 26478 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 - - uid: 26350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,19.5 - parent: 2 - - uid: 26351 + - uid: 26479 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 - - uid: 26352 + - uid: 26480 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 - - uid: 26353 + - uid: 26481 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 - - uid: 26354 + - uid: 26482 components: - type: Transform pos: 42.5,51.5 parent: 2 - - uid: 26355 + - uid: 26483 components: - type: Transform pos: -15.5,-2.5 parent: 2 - - uid: 26356 + - uid: 26484 components: - type: Transform pos: -18.5,-86.5 parent: 2 - - uid: 26357 + - uid: 26485 components: - type: Transform pos: -22.5,-48.5 parent: 2 - - uid: 26358 + - uid: 26486 components: - type: Transform pos: 3.5,15.5 parent: 2 - - uid: 26359 + - uid: 26487 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 26360 + - uid: 26488 components: - type: Transform pos: -23.5,5.5 parent: 2 - - uid: 26361 + - uid: 26489 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 26362 + - uid: 26490 components: - type: Transform pos: 49.5,-25.5 parent: 2 - - uid: 26363 + - uid: 26491 components: - type: Transform pos: 49.5,-23.5 parent: 2 - - uid: 26364 + - uid: 26492 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - uid: 26365 + - uid: 26493 components: - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 26366 + - uid: 26494 components: - type: Transform pos: 31.5,26.5 parent: 2 - - uid: 26367 + - uid: 26495 components: - type: Transform pos: 31.5,25.5 parent: 2 - - uid: 26368 + - uid: 26496 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 - - uid: 26369 + - uid: 26497 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 - - uid: 26370 + - uid: 26498 components: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 26371 + - uid: 26499 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 - - uid: 26372 + - uid: 26500 components: - type: Transform pos: 3.5,18.5 parent: 2 - - uid: 26373 + - uid: 26501 components: - type: Transform pos: 4.5,18.5 parent: 2 - - uid: 26374 + - uid: 26502 components: - type: Transform pos: -15.5,-0.5 parent: 2 - - uid: 26375 + - uid: 26503 components: - type: Transform pos: 13.5,15.5 parent: 2 - - uid: 26376 + - uid: 26504 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 26377 + - uid: 26505 components: - type: Transform pos: -23.5,-3.5 parent: 2 - - uid: 26378 + - uid: 26506 components: - type: Transform pos: -20.5,-3.5 parent: 2 - - uid: 26379 + - uid: 26507 components: - type: Transform pos: -20.5,-2.5 parent: 2 - - uid: 26380 + - uid: 26508 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 26381 + - uid: 26509 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 - - uid: 26382 + - uid: 26510 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 - - uid: 26383 + - uid: 26511 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 - - uid: 26384 + - uid: 26512 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 - - uid: 26385 + - uid: 26513 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 - - uid: 26386 + - uid: 26514 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 - - uid: 26387 + - uid: 26515 components: - type: Transform pos: 35.5,50.5 parent: 2 - - uid: 26388 + - uid: 26516 components: - type: Transform pos: 35.5,52.5 parent: 2 - - uid: 26389 + - uid: 26517 components: - type: Transform pos: 36.5,52.5 parent: 2 - - uid: 26390 + - uid: 26518 components: - type: Transform pos: 34.5,48.5 parent: 2 - - uid: 26391 + - uid: 26519 components: - type: Transform pos: -15.5,-1.5 parent: 2 - - uid: 26392 + - uid: 26520 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 - - uid: 26393 + - uid: 26521 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 - - uid: 26394 + - uid: 26522 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 - - uid: 26395 + - uid: 26523 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 - - uid: 26396 + - uid: 26524 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 - - uid: 26397 + - uid: 26525 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 - - uid: 26398 + - uid: 26526 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 - - uid: 26399 + - uid: 26527 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 - - uid: 26400 + - uid: 26528 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 - - uid: 26401 + - uid: 26529 components: - type: Transform pos: 28.5,-13.5 parent: 2 - - uid: 26402 + - uid: 26530 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 - - uid: 26403 + - uid: 26531 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 - - uid: 26404 + - uid: 26532 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 - - uid: 26405 + - uid: 26533 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 - - uid: 26406 + - uid: 26534 components: - type: Transform pos: -23.5,1.5 parent: 2 - - uid: 26407 + - uid: 26535 components: - type: Transform pos: 8.5,-71.5 parent: 2 - - uid: 26408 + - uid: 26536 components: - type: Transform pos: 5.5,-80.5 parent: 2 - - uid: 26409 + - uid: 26537 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 - - uid: 26410 + - uid: 26538 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 26411 + - uid: 26539 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 - - uid: 26412 + - uid: 26540 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 - - uid: 26413 + - uid: 26541 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 - - uid: 26414 + - uid: 26542 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 - - uid: 26415 + - uid: 26543 components: - type: Transform pos: -13.5,-78.5 parent: 2 - - uid: 26416 + - uid: 26544 components: - type: Transform pos: -21.5,-57.5 parent: 2 - - uid: 26417 + - uid: 26545 components: - type: Transform pos: 29.5,33.5 parent: 2 - - uid: 26418 + - uid: 26546 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 - - uid: 26419 + - uid: 26547 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 - - uid: 26420 + - uid: 26548 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 - - uid: 26421 + - uid: 26549 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 26422 + - uid: 26550 components: - type: Transform pos: 20.5,-33.5 parent: 2 - - uid: 26423 + - uid: 26551 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 26424 + - uid: 26552 components: - type: Transform pos: 40.5,-30.5 parent: 2 - - uid: 26425 + - uid: 26553 components: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 26426 + - uid: 26554 components: - type: Transform pos: 40.5,-31.5 parent: 2 - - uid: 26427 + - uid: 26555 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 26428 + - uid: 26556 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 26429 + - uid: 26557 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 - - uid: 26430 + - uid: 26558 components: - type: Transform pos: 43.5,16.5 parent: 2 - - uid: 26431 + - uid: 26559 components: - type: Transform pos: 43.5,9.5 parent: 2 - - uid: 26432 + - uid: 26560 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 - - uid: 26433 + - uid: 26561 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 26434 + - uid: 26562 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 - - uid: 26435 + - uid: 26563 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 - - uid: 26436 + - uid: 26564 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 - - uid: 26437 + - uid: 26565 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 - - uid: 26438 + - uid: 26566 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 - - uid: 26439 + - uid: 26567 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 - - uid: 26440 + - uid: 26568 components: - type: Transform pos: 25.5,-26.5 parent: 2 - - uid: 26441 + - uid: 26569 components: - type: Transform pos: 21.5,-26.5 parent: 2 - - uid: 26442 + - uid: 26570 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 - - uid: 26443 + - uid: 26571 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 - - uid: 26444 + - uid: 26572 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 - - uid: 26445 + - uid: 26573 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 - - uid: 26446 + - uid: 26574 components: - type: Transform pos: 29.5,-9.5 parent: 2 - - uid: 26447 + - uid: 26575 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 - - uid: 26448 + - uid: 26576 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 - - uid: 26449 + - uid: 26577 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 - - uid: 26450 + - uid: 26578 components: - type: Transform pos: 38.5,-24.5 parent: 2 - - uid: 26451 + - uid: 26579 components: - type: Transform pos: -15.5,-2.5 parent: 2 - - uid: 26452 + - uid: 26580 components: - type: Transform pos: 41.5,52.5 parent: 2 - - uid: 26453 + - uid: 26581 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 - - uid: 26454 + - uid: 26582 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 - - uid: 26455 + - uid: 26583 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 - - uid: 26456 + - uid: 26584 components: - type: Transform pos: -0.5,15.5 parent: 2 - - uid: 26457 + - uid: 26585 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 - - uid: 26458 + - uid: 26586 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 - - uid: 26459 + - uid: 26587 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 - - uid: 26460 + - uid: 26588 components: - type: Transform pos: 42.5,50.5 parent: 2 - - uid: 26461 + - uid: 26589 components: - type: Transform pos: 27.5,-15.5 parent: 2 - - uid: 26462 + - uid: 26590 components: - type: Transform pos: 2.5,22.5 parent: 2 - - uid: 26463 + - uid: 26591 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,15.5 parent: 2 - - uid: 26464 + - uid: 26592 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 26465 + - uid: 26593 components: - type: Transform pos: 1.5,-39.5 parent: 2 - - uid: 26466 + - uid: 26594 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 26467 + - uid: 26595 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 - - uid: 26468 + - uid: 26596 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 - - uid: 26469 + - uid: 26597 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 - - uid: 26470 + - uid: 26598 components: - type: Transform pos: 7.5,-24.5 parent: 2 - - uid: 26471 + - uid: 26599 components: - type: Transform pos: 9.5,-24.5 parent: 2 - - uid: 26472 + - uid: 26600 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 - - uid: 26473 + - uid: 26601 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 26474 + - uid: 26602 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 26475 + - uid: 26603 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 - - uid: 26476 + - uid: 26604 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 - - uid: 26477 + - uid: 26605 components: - type: Transform pos: 13.5,-24.5 parent: 2 - - uid: 26478 + - uid: 26606 components: - type: Transform pos: 37.5,-24.5 parent: 2 - - uid: 26479 + - uid: 26607 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 - - uid: 26480 + - uid: 26608 components: - type: Transform pos: 3.5,19.5 parent: 2 - - uid: 26481 + - uid: 26609 components: - type: Transform pos: 3.5,21.5 parent: 2 - - uid: 26482 + - uid: 26610 components: - type: Transform pos: 13.5,19.5 parent: 2 - - uid: 26483 + - uid: 26611 components: - type: Transform pos: 13.5,20.5 parent: 2 - - uid: 26484 + - uid: 26612 components: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 26485 + - uid: 26613 components: - type: Transform pos: 20.5,-38.5 parent: 2 - - uid: 26486 + - uid: 26614 components: - type: Transform pos: 6.5,-24.5 parent: 2 - - uid: 26487 + - uid: 26615 components: - type: Transform pos: -13.5,-77.5 parent: 2 - - uid: 26488 + - uid: 26616 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 - - uid: 26489 + - uid: 26617 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 - - uid: 26490 + - uid: 26618 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 - - uid: 26491 + - uid: 26619 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 26492 + - uid: 26620 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 - - uid: 26493 + - uid: 26621 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 - - uid: 26494 + - uid: 26622 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 - - uid: 26495 + - uid: 26623 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 - - uid: 26496 + - uid: 26624 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 - - uid: 26497 + - uid: 26625 components: - type: Transform pos: 18.5,-64.5 parent: 2 - - uid: 26498 + - uid: 26626 components: - type: Transform pos: 15.5,-62.5 parent: 2 - - uid: 26499 + - uid: 26627 components: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 26500 + - uid: 26628 components: - type: Transform pos: 17.5,-56.5 parent: 2 - - uid: 26501 + - uid: 26629 components: - type: Transform pos: 15.5,-60.5 parent: 2 - - uid: 26502 + - uid: 26630 components: - type: Transform pos: 15.5,-59.5 parent: 2 - - uid: 26503 + - uid: 26631 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 26504 + - uid: 26632 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 26505 + - uid: 26633 components: - type: Transform pos: 16.5,-57.5 parent: 2 - - uid: 26506 + - uid: 26634 components: - type: Transform pos: 16.5,-56.5 parent: 2 - - uid: 26507 + - uid: 26635 components: - type: Transform pos: 17.5,-67.5 parent: 2 - - uid: 26508 + - uid: 26636 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 - - uid: 26509 + - uid: 26637 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 - - uid: 26510 + - uid: 26638 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 - - uid: 26511 + - uid: 26639 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 - - uid: 26512 + - uid: 26640 components: - type: Transform pos: 40.5,-23.5 parent: 2 - - uid: 26513 + - uid: 26641 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 26514 + - uid: 26642 components: - type: Transform pos: 49.5,-24.5 parent: 2 - - uid: 26515 + - uid: 26643 components: - type: Transform pos: 43.5,-26.5 parent: 2 - - uid: 26516 + - uid: 26644 components: - type: Transform pos: 17.5,-63.5 parent: 2 - - uid: 26517 + - uid: 26645 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 - - uid: 26518 + - uid: 26646 components: - type: Transform pos: -2.5,18.5 parent: 2 - - uid: 26519 + - uid: 26647 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 - - uid: 26520 + - uid: 26648 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 - - uid: 26521 + - uid: 26649 components: - type: Transform pos: 39.5,17.5 parent: 2 - - uid: 26522 + - uid: 26650 components: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 26523 + - uid: 26651 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 - - uid: 26524 + - uid: 26652 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 - - uid: 26525 + - uid: 26653 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 - - uid: 26526 + - uid: 26654 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 - - uid: 26527 + - uid: 26655 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 - - uid: 26528 + - uid: 26656 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 - - uid: 26529 + - uid: 26657 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 - - uid: 26530 + - uid: 26658 components: - type: Transform pos: 25.5,-28.5 parent: 2 - - uid: 26531 + - uid: 26659 components: - type: Transform pos: 20.5,-26.5 parent: 2 - - uid: 26532 + - uid: 26660 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 26533 + - uid: 26661 components: - type: Transform pos: 18.5,-26.5 parent: 2 - - uid: 26534 + - uid: 26662 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 - - uid: 26535 + - uid: 26663 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 - - uid: 26536 + - uid: 26664 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 - - uid: 26537 + - uid: 26665 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 - - uid: 26538 + - uid: 26666 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 - - uid: 26539 + - uid: 26667 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 - - uid: 26540 + - uid: 26668 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 - - uid: 26541 + - uid: 26669 components: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 26542 + - uid: 26670 components: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 26543 + - uid: 26671 components: - type: Transform pos: 45.5,16.5 parent: 2 - - uid: 26544 + - uid: 26672 components: - type: Transform pos: 46.5,16.5 parent: 2 - - uid: 26545 + - uid: 26673 components: - type: Transform pos: 46.5,13.5 parent: 2 - - uid: 26546 + - uid: 26674 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 26547 + - uid: 26675 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 - - uid: 26548 + - uid: 26676 components: - type: Transform pos: 20.5,-37.5 parent: 2 - - uid: 26549 + - uid: 26677 components: - type: Transform pos: 30.5,-34.5 parent: 2 - - uid: 26550 + - uid: 26678 components: - type: Transform pos: 30.5,-35.5 parent: 2 - - uid: 26551 + - uid: 26679 components: - type: Transform pos: 30.5,-36.5 parent: 2 - - uid: 26552 + - uid: 26680 components: - type: Transform pos: 30.5,-37.5 parent: 2 - - uid: 26553 + - uid: 26681 components: - type: Transform pos: 30.5,-33.5 parent: 2 - - uid: 26554 + - uid: 26682 components: - type: Transform pos: 24.5,-33.5 parent: 2 - - uid: 26555 + - uid: 26683 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 26556 + - uid: 26684 components: - type: Transform pos: 28.5,9.5 parent: 2 - - uid: 26557 + - uid: 26685 components: - type: Transform pos: 31.5,9.5 parent: 2 - - uid: 26558 + - uid: 26686 components: - type: Transform pos: 35.5,9.5 parent: 2 - - uid: 26559 + - uid: 26687 components: - type: Transform pos: 35.5,8.5 parent: 2 - - uid: 26560 + - uid: 26688 components: - type: Transform pos: 35.5,6.5 parent: 2 - - uid: 26561 + - uid: 26689 components: - type: Transform pos: 23.5,19.5 parent: 2 - - uid: 26562 + - uid: 26690 components: - type: Transform pos: 17.5,-38.5 parent: 2 - - uid: 26563 + - uid: 26691 components: - type: Transform pos: 33.5,-38.5 parent: 2 - - uid: 26564 + - uid: 26692 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 - - uid: 26565 + - uid: 26693 components: - type: Transform pos: 31.5,22.5 parent: 2 - - uid: 26566 + - uid: 26694 components: - type: Transform pos: 31.5,23.5 parent: 2 - - uid: 26567 + - uid: 26695 components: - type: Transform pos: 31.5,24.5 parent: 2 - - uid: 26568 + - uid: 26696 components: - type: Transform pos: 33.5,26.5 parent: 2 - - uid: 26569 + - uid: 26697 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 26570 + - uid: 26698 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 - - uid: 26571 + - uid: 26699 components: - type: Transform pos: 33.5,30.5 parent: 2 - - uid: 26572 + - uid: 26700 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 26573 + - uid: 26701 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 26574 + - uid: 26702 components: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 26575 + - uid: 26703 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 26576 + - uid: 26704 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-35.5 parent: 2 - - uid: 26577 + - uid: 26705 components: - type: Transform pos: 12.5,-30.5 parent: 2 - - uid: 26578 + - uid: 26706 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 26579 + - uid: 26707 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 26580 + - uid: 26708 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 26581 + - uid: 26709 components: - type: Transform pos: -1.5,-28.5 parent: 2 - - uid: 26582 + - uid: 26710 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 26583 + - uid: 26711 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 26586 + - uid: 26712 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 - - uid: 26587 + - uid: 26713 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 - - uid: 26588 + - uid: 26714 components: - type: Transform pos: -2.5,19.5 parent: 2 - - uid: 26589 + - uid: 26715 components: - type: Transform pos: -2.5,17.5 parent: 2 - - uid: 26590 + - uid: 26716 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 - - uid: 26591 + - uid: 26717 components: - type: Transform pos: -1.5,-40.5 parent: 2 - - uid: 26592 + - uid: 26718 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 26593 + - uid: 26719 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 26594 + - uid: 26720 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 - - uid: 26595 + - uid: 26721 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 - - uid: 26596 + - uid: 26722 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 - - uid: 26597 + - uid: 26723 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 - - uid: 26598 + - uid: 26724 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 - - uid: 26599 + - uid: 26725 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 - - uid: 26600 + - uid: 26726 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 - - uid: 26601 + - uid: 26727 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 - - uid: 26602 + - uid: 26728 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 - - uid: 26603 + - uid: 26729 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 - - uid: 26604 + - uid: 26730 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 - - uid: 26606 + - uid: 26731 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 - - uid: 26607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-53.5 - parent: 2 - - uid: 26608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-53.5 - parent: 2 - - uid: 26609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-53.5 - parent: 2 - - uid: 26610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-53.5 - parent: 2 - - uid: 26611 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 2 - - uid: 26612 + - uid: 26732 components: - type: Transform pos: 33.5,-26.5 parent: 2 - - uid: 26613 + - uid: 26733 components: - type: Transform pos: 27.5,-28.5 parent: 2 - - uid: 26614 + - uid: 26734 components: - type: Transform pos: -22.5,-49.5 parent: 2 - - uid: 26615 + - uid: 26735 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 - - uid: 26616 + - uid: 26736 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 - - uid: 26617 + - uid: 26737 components: - type: Transform pos: 27.5,-29.5 parent: 2 - - uid: 26618 + - uid: 26738 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 - - uid: 26619 + - uid: 26739 components: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 26620 + - uid: 26740 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 26622 + - uid: 26741 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 26742 components: - type: Transform pos: -17.5,-80.5 parent: 2 - - uid: 26623 + - uid: 26743 components: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 26624 + - uid: 26744 components: - type: Transform pos: -14.5,-74.5 parent: 2 - - uid: 26625 + - uid: 26745 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 - - uid: 26626 + - uid: 26746 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 - - uid: 26627 + - uid: 26747 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 - - uid: 26628 + - uid: 26748 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 - - uid: 26629 + - uid: 26749 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 - - uid: 26630 + - uid: 26750 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 - - uid: 26631 + - uid: 26751 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 - - uid: 26632 + - uid: 26752 components: - type: Transform pos: -27.5,-86.5 parent: 2 - - uid: 26633 + - uid: 26753 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 - - uid: 26634 + - uid: 26754 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 - - uid: 26635 + - uid: 26755 components: - type: Transform pos: 57.5,-50.5 parent: 2 - - uid: 26636 + - uid: 26756 components: - type: Transform pos: -51.5,-52.5 parent: 2 - - uid: 26637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 2 - - uid: 26638 + - uid: 26757 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 - - uid: 26639 + - uid: 26758 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 26640 + - uid: 26759 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 - - uid: 26641 + - uid: 26760 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 - - uid: 26642 + - uid: 26761 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 - - uid: 26643 + - uid: 26762 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 - - uid: 26644 + - uid: 26763 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 - - uid: 26645 + - uid: 26764 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 - - uid: 26646 + - uid: 26765 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 - - uid: 26647 + - uid: 26766 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 - - uid: 26648 + - uid: 26767 components: - type: Transform pos: 14.5,15.5 parent: 2 - - uid: 26649 + - uid: 26768 components: - type: Transform pos: 9.5,15.5 parent: 2 - - uid: 26650 + - uid: 26769 components: - type: Transform pos: 9.5,-71.5 parent: 2 - - uid: 26651 + - uid: 26770 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 26652 + - uid: 26771 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 - - uid: 26653 + - uid: 26772 components: - type: Transform pos: 28.5,-9.5 parent: 2 - - uid: 26654 + - uid: 26773 components: - type: Transform pos: 31.5,20.5 parent: 2 - - uid: 26655 + - uid: 26774 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 - - uid: 26656 + - uid: 26775 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 - - uid: 26657 + - uid: 26776 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 - - uid: 26658 + - uid: 26777 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 - - uid: 26659 + - uid: 26778 components: - type: Transform pos: -1.5,15.5 parent: 2 - - uid: 26660 + - uid: 26779 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 26661 + - uid: 26780 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 - - uid: 26662 + - uid: 26781 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 - - uid: 26663 + - uid: 26782 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 - - uid: 26664 + - uid: 26783 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 - - uid: 26665 + - uid: 26784 components: - type: Transform pos: 16.5,-63.5 parent: 2 - - uid: 26666 + - uid: 26785 components: - type: Transform pos: 17.5,-68.5 parent: 2 - - uid: 26667 + - uid: 26786 components: - type: Transform pos: -23.5,0.5 parent: 2 - - uid: 26668 + - uid: 26787 components: - type: Transform pos: 25.5,-29.5 parent: 2 - - uid: 26669 + - uid: 26788 components: - type: Transform pos: -23.5,-2.5 parent: 2 - - uid: 26670 + - uid: 26789 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 - - uid: 26671 + - uid: 26790 components: - type: Transform pos: -23.5,3.5 parent: 2 - - uid: 26672 + - uid: 26791 components: - type: Transform pos: -23.5,4.5 parent: 2 - - uid: 26673 + - uid: 26792 components: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 26674 + - uid: 26793 components: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 26675 + - uid: 26794 components: - type: Transform pos: 47.5,-20.5 parent: 2 - - uid: 26676 + - uid: 26795 components: - type: Transform pos: 44.5,-20.5 parent: 2 - - uid: 26677 + - uid: 26796 components: - type: Transform pos: 43.5,-22.5 parent: 2 - - uid: 26678 + - uid: 26797 components: - type: Transform pos: 43.5,-25.5 parent: 2 - - uid: 26679 + - uid: 26798 components: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 26680 + - uid: 26799 components: - type: Transform pos: 43.5,-28.5 parent: 2 - - uid: 26681 + - uid: 26800 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 26682 + - uid: 26801 components: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 26683 + - uid: 26802 components: - type: Transform pos: 25.5,26.5 parent: 2 - - uid: 26684 + - uid: 26803 components: - type: Transform pos: 25.5,28.5 parent: 2 - - uid: 26685 + - uid: 26804 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 - - uid: 26686 + - uid: 26805 components: - type: Transform pos: 25.5,30.5 parent: 2 - - uid: 26687 + - uid: 26806 components: - type: Transform pos: 32.5,26.5 parent: 2 - - uid: 26688 + - uid: 26807 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 - - uid: 26689 + - uid: 26808 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 - - uid: 26690 + - uid: 26809 components: - type: Transform pos: -2.5,-39.5 parent: 2 - - uid: 26691 + - uid: 26810 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 - - uid: 26692 + - uid: 26811 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 - - uid: 26693 + - uid: 26812 components: - type: Transform pos: 11.5,-24.5 parent: 2 - - uid: 26694 + - uid: 26813 components: - type: Transform pos: 10.5,-24.5 parent: 2 - - uid: 26695 + - uid: 26814 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 - - uid: 26696 + - uid: 26815 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 - - uid: 26697 + - uid: 26816 components: - type: Transform pos: -2.5,21.5 parent: 2 - - uid: 26698 + - uid: 26817 components: - type: Transform pos: -0.5,22.5 parent: 2 - - uid: 26699 + - uid: 26818 components: - type: Transform pos: 0.5,22.5 parent: 2 - - uid: 26700 + - uid: 26819 components: - type: Transform pos: -2.5,22.5 parent: 2 - - uid: 26701 + - uid: 26820 components: - type: Transform pos: -2.5,20.5 parent: 2 - - uid: 26702 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 2 - - uid: 26703 + - uid: 26821 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 26704 + - uid: 26822 components: - type: Transform pos: 8.5,18.5 parent: 2 - - uid: 26705 + - uid: 26823 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 - - uid: 26706 + - uid: 26824 components: - type: Transform pos: -15.5,4.5 parent: 2 - - uid: 26707 + - uid: 26825 components: - type: Transform pos: -15.5,3.5 parent: 2 - - uid: 26708 + - uid: 26826 components: - type: Transform pos: 9.5,18.5 parent: 2 - - uid: 26709 + - uid: 26827 components: - type: Transform pos: -18.5,-85.5 parent: 2 - - uid: 26710 + - uid: 26828 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 - - uid: 26711 + - uid: 26829 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 - - uid: 26712 + - uid: 26830 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 - - uid: 26713 + - uid: 26831 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 - - uid: 26714 + - uid: 26832 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 - - uid: 26715 + - uid: 26833 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 - - uid: 26716 + - uid: 26834 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 - - uid: 26717 + - uid: 26835 components: - type: Transform pos: -23.5,-0.5 parent: 2 - - uid: 26718 + - uid: 26836 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 - - uid: 26719 + - uid: 26837 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 26720 + - uid: 26838 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 - - uid: 26721 + - uid: 26839 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 - - uid: 26722 + - uid: 26840 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 - - uid: 26723 + - uid: 26841 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 - - uid: 26724 + - uid: 26842 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 - - uid: 26725 + - uid: 26843 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 - - uid: 26726 + - uid: 26844 components: - type: Transform pos: 40.5,52.5 parent: 2 - - uid: 26727 + - uid: 26845 components: - type: Transform pos: -29.5,44.5 parent: 2 - - uid: 26728 + - uid: 26846 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 26729 + - uid: 26847 components: - type: Transform pos: -15.5,-74.5 parent: 2 - - uid: 26730 + - uid: 26848 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 - - uid: 26731 + - uid: 26849 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 - - uid: 26732 + - uid: 26850 components: - type: Transform pos: -15.5,1.5 parent: 2 - - uid: 26733 + - uid: 26851 components: - type: Transform pos: -15.5,0.5 parent: 2 - - uid: 26734 + - uid: 26852 components: - type: Transform pos: 38.5,52.5 parent: 2 - - uid: 26735 + - uid: 26853 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 - - uid: 26736 + - uid: 26854 components: - type: Transform pos: 43.5,-20.5 parent: 2 - - uid: 26737 + - uid: 26855 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 - - uid: 26738 + - uid: 26856 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 26739 + - uid: 26857 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 26740 + - uid: 26858 components: - type: Transform pos: 2.5,15.5 parent: 2 - - uid: 26741 + - uid: 26859 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 - - uid: 26742 + - uid: 26860 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 - - uid: 26743 + - uid: 26861 components: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 26744 + - uid: 26862 components: - type: Transform pos: 10.5,15.5 parent: 2 - - uid: 26745 + - uid: 26863 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 26746 + - uid: 26864 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 - - uid: 26747 + - uid: 26865 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 - - uid: 26748 + - uid: 26866 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 - - uid: 26749 + - uid: 26867 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 - - uid: 26750 + - uid: 26868 components: - type: Transform pos: -22.5,5.5 parent: 2 - - uid: 26751 + - uid: 26869 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 - - uid: 26752 + - uid: 26870 components: - type: Transform pos: -29.5,43.5 parent: 2 - - uid: 26753 + - uid: 26871 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 - - uid: 26754 + - uid: 26872 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 - - uid: 26755 + - uid: 26873 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 - - uid: 26756 + - uid: 26874 components: - type: Transform pos: 7.5,27.5 parent: 2 - - uid: 26757 + - uid: 26875 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 - - uid: 26758 + - uid: 26876 components: - type: Transform pos: -15.5,3.5 parent: 2 - - uid: 26759 + - uid: 26877 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 - - uid: 26760 + - uid: 26878 components: - type: Transform pos: -18.5,-80.5 parent: 2 - - uid: 26761 + - uid: 26879 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 - - uid: 26762 + - uid: 26880 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 - - uid: 26763 + - uid: 26881 components: - type: Transform pos: 27.5,25.5 parent: 2 - - uid: 26764 + - uid: 26882 components: - type: Transform pos: 10.5,24.5 parent: 2 - - uid: 26765 + - uid: 26883 components: - type: Transform pos: 9.5,24.5 parent: 2 - - uid: 26766 + - uid: 26884 components: - type: Transform pos: -13.5,-74.5 parent: 2 - - uid: 26767 + - uid: 26885 components: - type: Transform pos: -13.5,-79.5 parent: 2 - - uid: 26768 + - uid: 26886 components: - type: Transform pos: -19.5,-80.5 parent: 2 - - uid: 26769 + - uid: 26887 components: - type: Transform pos: -13.5,-76.5 parent: 2 - - uid: 26770 + - uid: 26888 components: - type: Transform pos: 9.5,20.5 parent: 2 - - uid: 26771 + - uid: 26889 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 - - uid: 26772 + - uid: 26890 components: - type: Transform pos: -18.5,-50.5 parent: 2 - - uid: 26773 + - uid: 26891 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 - - uid: 26774 + - uid: 26892 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 - - uid: 26775 + - uid: 26893 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 - - uid: 26776 + - uid: 26894 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 - - uid: 26777 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 2 - - uid: 26778 + - uid: 26895 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 - - uid: 26779 + - uid: 26896 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 - - uid: 26780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-55.5 - parent: 2 - - uid: 26781 + - uid: 26897 components: - type: Transform pos: 19.5,-56.5 parent: 2 - - uid: 26782 + - uid: 26898 components: - type: Transform pos: -21.5,-56.5 parent: 2 - - uid: 26783 + - uid: 26899 components: - type: Transform pos: 33.5,48.5 parent: 2 - - uid: 26784 + - uid: 26900 components: - type: Transform pos: 31.5,-26.5 parent: 2 - - uid: 26785 + - uid: 26901 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 26786 + - uid: 26902 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 - - uid: 26787 + - uid: 26903 components: - type: Transform pos: -2.5,-38.5 parent: 2 - - uid: 26788 + - uid: 26904 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 - - uid: 26789 + - uid: 26905 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 - - uid: 26790 + - uid: 26906 components: - type: Transform pos: 35.5,51.5 parent: 2 - - uid: 26791 + - uid: 26907 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 26792 + - uid: 26908 components: - type: Transform pos: 33.5,-30.5 parent: 2 - - uid: 26793 + - uid: 26909 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 26794 + - uid: 26910 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 - - uid: 26795 + - uid: 26911 components: - type: Transform pos: 37.5,52.5 parent: 2 - - uid: 26796 + - uid: 26912 components: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 26797 + - uid: 26913 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 - - uid: 26798 + - uid: 26914 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 - - uid: 26799 + - uid: 26915 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 - - uid: 26800 + - uid: 26916 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 - - uid: 26801 + - uid: 26917 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 - - uid: 26802 + - uid: 26918 components: - type: Transform pos: 35.5,5.5 parent: 2 - - uid: 26803 + - uid: 26919 components: - type: Transform pos: 35.5,3.5 parent: 2 - - uid: 26804 + - uid: 26920 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 26805 + - uid: 26921 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 26806 + - uid: 26922 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 - - uid: 26807 + - uid: 26923 components: - type: Transform pos: 30.5,-38.5 parent: 2 - - uid: 26808 + - uid: 26924 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 - - uid: 26809 + - uid: 26925 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 - - uid: 26810 + - uid: 26926 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 - - uid: 26811 + - uid: 26927 components: - type: Transform pos: 9.5,22.5 parent: 2 - - uid: 26812 + - uid: 26928 components: - type: Transform pos: 9.5,21.5 parent: 2 - - uid: 26813 + - uid: 26929 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 - - uid: 26814 + - uid: 26930 components: - type: Transform pos: 3.5,20.5 parent: 2 - - uid: 26815 + - uid: 26931 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 26816 + - uid: 26932 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 26817 + - uid: 26933 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 26818 + - uid: 26934 components: - type: Transform pos: -18.5,-87.5 parent: 2 - - uid: 26819 + - uid: 26935 components: - type: Transform pos: 28.5,-11.5 parent: 2 - - uid: 26820 + - uid: 26936 components: - type: Transform pos: 13.5,-22.5 parent: 2 - - uid: 26821 + - uid: 26937 components: - type: Transform pos: 12.5,-18.5 parent: 2 - - uid: 26822 + - uid: 26938 components: - type: Transform pos: 5.5,-82.5 parent: 2 - - uid: 26823 + - uid: 26939 components: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 26824 + - uid: 26940 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-33.5 parent: 2 - - uid: 26825 + - uid: 26941 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 26826 + - uid: 26942 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 26827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 2 - - uid: 26828 + - uid: 26943 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 26830 + - uid: 26944 components: - type: Transform pos: 27.5,-13.5 parent: 2 - - uid: 26831 + - uid: 26945 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 - - uid: 26832 + - uid: 26946 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 - - uid: 26833 + - uid: 26947 components: - type: Transform pos: 28.5,-15.5 parent: 2 - - uid: 26834 + - uid: 26948 components: - type: Transform pos: 42.5,52.5 parent: 2 - - uid: 26835 + - uid: 26949 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 - - uid: 26836 + - uid: 26950 components: - type: Transform pos: -18.5,-84.5 parent: 2 - - uid: 26837 + - uid: 26951 components: - type: Transform pos: -20.5,-1.5 parent: 2 - - uid: 26838 + - uid: 26952 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 - - uid: 26839 + - uid: 26953 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 - - uid: 26840 + - uid: 26954 components: - type: Transform pos: 18.5,18.5 parent: 2 - - uid: 26841 + - uid: 26955 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 - - uid: 26842 + - uid: 26956 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 - - uid: 26843 + - uid: 26957 components: - type: Transform pos: 15.5,-63.5 parent: 2 - - uid: 26844 + - uid: 26958 components: - type: Transform pos: 17.5,-64.5 parent: 2 - - uid: 26845 + - uid: 26959 components: - type: Transform pos: 49.5,-21.5 parent: 2 - - uid: 26846 + - uid: 26960 components: - type: Transform pos: 45.5,-20.5 parent: 2 - - uid: 26847 + - uid: 26961 components: - type: Transform pos: 46.5,-20.5 parent: 2 - - uid: 26848 + - uid: 26962 components: - type: Transform pos: 43.5,-29.5 parent: 2 - - uid: 26849 + - uid: 26963 components: - type: Transform pos: 43.5,-30.5 parent: 2 - - uid: 26850 + - uid: 26964 components: - type: Transform pos: 43.5,-31.5 parent: 2 - - uid: 26851 + - uid: 26965 components: - type: Transform pos: 44.5,-31.5 parent: 2 - - uid: 26852 + - uid: 26966 components: - type: Transform pos: 49.5,-31.5 parent: 2 - - uid: 26853 + - uid: 26967 components: - type: Transform pos: 49.5,-30.5 parent: 2 - - uid: 26854 + - uid: 26968 components: - type: Transform pos: 49.5,-29.5 parent: 2 - - uid: 26855 + - uid: 26969 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 26856 + - uid: 26970 components: - type: Transform pos: 48.5,-20.5 parent: 2 - - uid: 26857 + - uid: 26971 components: - type: Transform pos: 48.5,-31.5 parent: 2 - - uid: 26858 + - uid: 26972 components: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 26859 + - uid: 26973 components: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 26860 + - uid: 26974 components: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 26861 + - uid: 26975 components: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 26862 + - uid: 26976 components: - type: Transform pos: 49.5,-20.5 parent: 2 - - uid: 26863 + - uid: 26977 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 26864 + - uid: 26978 components: - type: Transform pos: 49.5,-22.5 parent: 2 - - uid: 26865 + - uid: 26979 components: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 26866 + - uid: 26980 components: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 26867 + - uid: 26981 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 - - uid: 26868 + - uid: 26982 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 - - uid: 26869 + - uid: 26983 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 - - uid: 26870 + - uid: 26984 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 - - uid: 26871 + - uid: 26985 components: - type: Transform pos: -27.5,-87.5 parent: 2 - - uid: 26872 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 2 - - uid: 26873 + - uid: 26986 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 - - uid: 26874 + - uid: 26987 components: - type: Transform pos: 5.5,30.5 parent: 2 - - uid: 26875 + - uid: 26988 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 26876 + - uid: 26989 components: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 26877 + - uid: 26990 components: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 26878 + - uid: 26991 components: - type: Transform pos: 15.5,24.5 parent: 2 - - uid: 26879 + - uid: 26992 components: - type: Transform pos: 13.5,24.5 parent: 2 - - uid: 26880 + - uid: 26993 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 - - uid: 26881 + - uid: 26994 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 26882 + - uid: 26995 components: - type: Transform pos: 49.5,44.5 parent: 2 - - uid: 26883 + - uid: 26996 components: - type: Transform pos: 19.5,30.5 parent: 2 - - uid: 26884 + - uid: 26997 components: - type: Transform pos: 19.5,29.5 parent: 2 - - uid: 26885 + - uid: 26998 components: - type: Transform pos: 19.5,28.5 parent: 2 - - uid: 26886 + - uid: 26999 components: - type: Transform pos: 19.5,27.5 parent: 2 - - uid: 26887 + - uid: 27000 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 - - uid: 26888 + - uid: 27001 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 - - uid: 26889 + - uid: 27002 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 - - uid: 26890 + - uid: 27003 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 - - uid: 26891 + - uid: 27004 components: - type: Transform pos: 3.5,31.5 parent: 2 - - uid: 26892 + - uid: 27005 components: - type: Transform pos: 4.5,30.5 parent: 2 - - uid: 26893 + - uid: 27006 components: - type: Transform pos: 3.5,33.5 parent: 2 - - uid: 26894 + - uid: 27007 components: - type: Transform pos: 11.5,29.5 parent: 2 - - uid: 26895 + - uid: 27008 components: - type: Transform pos: 11.5,35.5 parent: 2 - - uid: 26896 + - uid: 27009 components: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 26897 + - uid: 27010 components: - type: Transform pos: 11.5,33.5 parent: 2 - - uid: 26898 + - uid: 27011 components: - type: Transform pos: 6.5,35.5 parent: 2 - - uid: 26899 + - uid: 27012 components: - type: Transform pos: 66.5,4.5 parent: 2 - - uid: 26900 + - uid: 27013 components: - type: Transform pos: 66.5,5.5 parent: 2 - - uid: 26901 + - uid: 27014 components: - type: Transform pos: 66.5,3.5 parent: 2 - - uid: 26902 + - uid: 27015 components: - type: Transform pos: 66.5,2.5 parent: 2 - - uid: 26903 + - uid: 27016 components: - type: Transform pos: 66.5,1.5 parent: 2 - - uid: 26904 + - uid: 27017 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 - - uid: 26905 + - uid: 27018 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 - - uid: 26906 + - uid: 27019 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 - - uid: 26907 + - uid: 27020 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 - - uid: 26908 + - uid: 27021 components: - type: Transform pos: 11.5,26.5 parent: 2 - - uid: 26909 + - uid: 27022 components: - type: Transform pos: 12.5,24.5 parent: 2 - - uid: 26910 + - uid: 27023 components: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 26911 + - uid: 27024 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 - - uid: 26912 + - uid: 27025 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 - - uid: 26913 + - uid: 27026 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 - - uid: 26914 + - uid: 27027 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 - - uid: 26915 + - uid: 27028 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 - - uid: 26916 + - uid: 27029 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 - - uid: 26917 + - uid: 27030 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 - - uid: 26918 + - uid: 27031 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 - - uid: 26919 + - uid: 27032 components: - type: Transform pos: 49.5,50.5 parent: 2 - - uid: 26920 + - uid: 27033 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 - - uid: 26921 + - uid: 27034 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 - - uid: 26922 + - uid: 27035 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 26923 + - uid: 27036 components: - type: Transform pos: 59.5,41.5 parent: 2 - - uid: 26924 + - uid: 27037 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 - - uid: 26925 + - uid: 27038 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 - - uid: 26926 + - uid: 27039 components: - type: Transform pos: 11.5,34.5 parent: 2 - - uid: 26927 + - uid: 27040 components: - type: Transform pos: 5.5,35.5 parent: 2 - - uid: 26928 + - uid: 27041 components: - type: Transform pos: 18.5,34.5 parent: 2 - - uid: 26929 + - uid: 27042 components: - type: Transform pos: 10.5,35.5 parent: 2 - - uid: 26930 + - uid: 27043 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 26931 + - uid: 27044 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,22.5 parent: 2 - - uid: 26932 + - uid: 27045 components: - type: Transform pos: 0.5,25.5 parent: 2 - - uid: 26933 + - uid: 27046 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 26934 + - uid: 27047 components: - type: Transform pos: -1.5,25.5 parent: 2 - - uid: 26935 + - uid: 27048 components: - type: Transform pos: -1.5,28.5 parent: 2 - - uid: 26936 + - uid: 27049 components: - type: Transform pos: -3.5,25.5 parent: 2 - - uid: 26937 + - uid: 27050 components: - type: Transform pos: -3.5,24.5 parent: 2 - - uid: 26938 + - uid: 27051 components: - type: Transform pos: 59.5,48.5 parent: 2 - - uid: 26939 + - uid: 27052 components: - type: Transform pos: 34.5,26.5 parent: 2 - - uid: 26940 + - uid: 27053 components: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 26941 + - uid: 27054 components: - type: Transform pos: 34.5,24.5 parent: 2 - - uid: 26942 + - uid: 27055 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 - - uid: 26943 + - uid: 27056 components: - type: Transform pos: 36.5,21.5 parent: 2 - - uid: 26944 + - uid: 27057 components: - type: Transform pos: 33.5,21.5 parent: 2 - - uid: 26945 + - uid: 27058 components: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 26946 + - uid: 27059 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 - - uid: 26947 + - uid: 27060 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 - - uid: 26948 + - uid: 27061 components: - type: Transform pos: 35.5,21.5 parent: 2 - - uid: 26949 + - uid: 27062 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 - - uid: 26950 + - uid: 27063 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 - - uid: 26951 + - uid: 27064 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 - - uid: 26952 + - uid: 27065 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 - - uid: 26953 + - uid: 27066 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 - - uid: 26954 + - uid: 27067 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 - - uid: 26955 + - uid: 27068 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 - - uid: 26956 + - uid: 27069 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 - - uid: 26957 + - uid: 27070 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 - - uid: 26958 + - uid: 27071 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 - - uid: 26959 + - uid: 27072 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 - - uid: 26960 + - uid: 27073 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 - - uid: 26961 + - uid: 27074 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 - - uid: 26962 + - uid: 27075 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 - - uid: 26963 + - uid: 27076 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 - - uid: 26964 + - uid: 27077 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 - - uid: 26965 + - uid: 27078 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 - - uid: 26966 + - uid: 27079 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 - - uid: 26967 + - uid: 27080 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 - - uid: 26968 + - uid: 27081 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 - - uid: 26969 + - uid: 27082 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 - - uid: 26970 + - uid: 27083 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 - - uid: 26971 + - uid: 27084 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 - - uid: 26972 + - uid: 27085 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 - - uid: 26973 + - uid: 27086 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 - - uid: 26974 + - uid: 27087 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 - - uid: 26975 + - uid: 27088 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 - - uid: 26976 + - uid: 27089 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 - - uid: 26977 + - uid: 27090 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 - - uid: 26978 + - uid: 27091 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 - - uid: 26979 + - uid: 27092 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 - - uid: 26980 + - uid: 27093 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 - - uid: 26981 + - uid: 27094 components: - type: Transform pos: 64.5,21.5 parent: 2 - - uid: 26982 + - uid: 27095 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 - - uid: 26983 + - uid: 27096 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 - - uid: 26984 + - uid: 27097 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 - - uid: 26985 + - uid: 27098 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 - - uid: 26986 + - uid: 27099 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 - - uid: 26987 + - uid: 27100 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 - - uid: 26988 + - uid: 27101 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 - - uid: 26989 + - uid: 27102 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 - - uid: 26990 + - uid: 27103 components: - type: Transform pos: 43.5,24.5 parent: 2 - - uid: 26991 + - uid: 27104 components: - type: Transform pos: 43.5,25.5 parent: 2 - - uid: 26992 + - uid: 27105 components: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 26993 + - uid: 27106 components: - type: Transform pos: 43.5,27.5 parent: 2 - - uid: 26994 + - uid: 27107 components: - type: Transform pos: 51.5,59.5 parent: 2 - - uid: 26995 + - uid: 27108 components: - type: Transform pos: 50.5,59.5 parent: 2 - - uid: 26996 + - uid: 27109 components: - type: Transform pos: 50.5,55.5 parent: 2 - - uid: 26997 + - uid: 27110 components: - type: Transform pos: 51.5,55.5 parent: 2 - - uid: 26998 + - uid: 27111 components: - type: Transform pos: 51.5,54.5 parent: 2 - - uid: 26999 + - uid: 27112 components: - type: Transform pos: 57.5,54.5 parent: 2 - - uid: 27000 + - uid: 27113 components: - type: Transform pos: 57.5,55.5 parent: 2 - - uid: 27001 + - uid: 27114 components: - type: Transform pos: 57.5,59.5 parent: 2 - - uid: 27002 + - uid: 27115 components: - type: Transform pos: 58.5,59.5 parent: 2 - - uid: 27003 + - uid: 27116 components: - type: Transform pos: 58.5,55.5 parent: 2 - - uid: 27004 + - uid: 27117 components: - type: Transform pos: 51.5,60.5 parent: 2 - - uid: 27005 + - uid: 27118 components: - type: Transform pos: 52.5,60.5 parent: 2 - - uid: 27006 + - uid: 27119 components: - type: Transform pos: 52.5,61.5 parent: 2 - - uid: 27007 + - uid: 27120 components: - type: Transform pos: 56.5,61.5 parent: 2 - - uid: 27008 + - uid: 27121 components: - type: Transform pos: 56.5,60.5 parent: 2 - - uid: 27009 + - uid: 27122 components: - type: Transform pos: 65.5,27.5 parent: 2 - - uid: 27010 + - uid: 27123 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 - - uid: 27011 + - uid: 27124 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 - - uid: 27012 + - uid: 27125 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 - - uid: 27013 + - uid: 27126 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 - - uid: 27014 + - uid: 27127 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 - - uid: 27015 + - uid: 27128 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 - - uid: 27016 + - uid: 27129 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 - - uid: 27017 + - uid: 27130 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 - - uid: 27018 + - uid: 27131 components: - type: Transform pos: 66.5,27.5 parent: 2 - - uid: 27019 + - uid: 27132 components: - type: Transform pos: 66.5,27.5 parent: 2 - - uid: 27020 + - uid: 27133 components: - type: Transform pos: 66.5,26.5 parent: 2 - - uid: 27021 + - uid: 27134 components: - type: Transform pos: 66.5,24.5 parent: 2 - - uid: 27022 + - uid: 27135 components: - type: Transform pos: 66.5,22.5 parent: 2 - - uid: 27023 + - uid: 27136 components: - type: Transform pos: 66.5,21.5 parent: 2 - - uid: 27024 + - uid: 27137 components: - type: Transform pos: 66.5,20.5 parent: 2 - - uid: 27025 + - uid: 27138 components: - type: Transform pos: 66.5,19.5 parent: 2 - - uid: 27026 + - uid: 27139 components: - type: Transform pos: 66.5,18.5 parent: 2 - - uid: 27027 + - uid: 27140 components: - type: Transform pos: 65.5,18.5 parent: 2 - - uid: 27028 + - uid: 27141 components: - type: Transform pos: 65.5,17.5 parent: 2 - - uid: 27029 + - uid: 27142 components: - type: Transform pos: 65.5,16.5 parent: 2 - - uid: 27030 + - uid: 27143 components: - type: Transform pos: 66.5,16.5 parent: 2 - - uid: 27031 + - uid: 27144 components: - type: Transform pos: 66.5,15.5 parent: 2 - - uid: 27032 + - uid: 27145 components: - type: Transform pos: 66.5,14.5 parent: 2 - - uid: 27033 + - uid: 27146 components: - type: Transform pos: 66.5,13.5 parent: 2 - - uid: 27034 + - uid: 27147 components: - type: Transform pos: 67.5,5.5 parent: 2 - - uid: 27035 + - uid: 27148 components: - type: Transform pos: 68.5,9.5 parent: 2 - - uid: 27036 + - uid: 27149 components: - type: Transform pos: 67.5,13.5 parent: 2 - - uid: 27037 + - uid: 27150 components: - type: Transform pos: 67.5,12.5 parent: 2 - - uid: 27038 + - uid: 27151 components: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 27039 + - uid: 27152 components: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 27040 + - uid: 27153 components: - type: Transform pos: 48.5,4.5 parent: 2 - - uid: 27041 + - uid: 27154 components: - type: Transform pos: 48.5,5.5 parent: 2 - - uid: 27042 + - uid: 27155 components: - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 27043 + - uid: 27156 components: - type: Transform pos: 50.5,3.5 parent: 2 - - uid: 27044 + - uid: 27157 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 27045 + - uid: 27158 components: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 27046 + - uid: 27159 components: - type: Transform pos: 52.5,4.5 parent: 2 - - uid: 27047 + - uid: 27160 components: - type: Transform pos: 53.5,4.5 parent: 2 - - uid: 27048 + - uid: 27161 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 27049 + - uid: 27162 components: - type: Transform pos: 54.5,3.5 parent: 2 - - uid: 27050 + - uid: 27163 components: - type: Transform pos: 55.5,3.5 parent: 2 - - uid: 27051 + - uid: 27164 components: - type: Transform pos: 56.5,3.5 parent: 2 - - uid: 27052 + - uid: 27165 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 27053 + - uid: 27166 components: - type: Transform pos: 58.5,3.5 parent: 2 - - uid: 27054 + - uid: 27167 components: - type: Transform pos: 64.5,5.5 parent: 2 - - uid: 27055 + - uid: 27168 components: - type: Transform pos: 64.5,4.5 parent: 2 - - uid: 27056 + - uid: 27169 components: - type: Transform pos: 64.5,3.5 parent: 2 - - uid: 27057 + - uid: 27170 components: - type: Transform pos: 63.5,3.5 parent: 2 - - uid: 27058 + - uid: 27171 components: - type: Transform pos: 62.5,3.5 parent: 2 - - uid: 27059 + - uid: 27172 components: - type: Transform pos: 61.5,3.5 parent: 2 - - uid: 27060 + - uid: 27173 components: - type: Transform pos: 60.5,3.5 parent: 2 - - uid: 27061 + - uid: 27174 components: - type: Transform pos: 59.5,3.5 parent: 2 - - uid: 27062 + - uid: 27175 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 - - uid: 27063 + - uid: 27176 components: - type: Transform pos: 68.5,6.5 parent: 2 - - uid: 27064 + - uid: 27177 components: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 27065 + - uid: 27178 components: - type: Transform pos: 44.5,13.5 parent: 2 - - uid: 27066 + - uid: 27179 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 27067 + - uid: 27180 components: - type: Transform pos: 44.5,3.5 parent: 2 - - uid: 27068 + - uid: 27181 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 - - uid: 27069 + - uid: 27182 components: - type: Transform pos: 48.5,8.5 parent: 2 - - uid: 27070 + - uid: 27183 components: - type: Transform pos: 33.5,19.5 parent: 2 - - uid: 27071 + - uid: 27184 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 - - uid: 27072 + - uid: 27185 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 - - uid: 27073 + - uid: 27186 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 - - uid: 27074 + - uid: 27187 components: - type: Transform pos: 42.5,22.5 parent: 2 - - uid: 27075 + - uid: 27188 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 27076 + - uid: 27189 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 - - uid: 27077 + - uid: 27190 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 - - uid: 27078 + - uid: 27191 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 - - uid: 27079 + - uid: 27192 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 - - uid: 27080 + - uid: 27193 components: - type: Transform pos: 48.5,-15.5 parent: 2 - - uid: 27081 + - uid: 27194 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 27082 + - uid: 27195 components: - type: Transform pos: 44.5,-16.5 parent: 2 - - uid: 27083 + - uid: 27196 components: - type: Transform pos: 11.5,-18.5 parent: 2 - - uid: 27084 + - uid: 27197 components: - type: Transform pos: 44.5,9.5 parent: 2 - - uid: 27085 + - uid: 27198 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 - - uid: 27086 + - uid: 27199 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 - - uid: 27087 + - uid: 27200 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 - - uid: 27088 + - uid: 27201 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 - - uid: 27089 + - uid: 27202 components: - type: Transform pos: 48.5,-14.5 parent: 2 - - uid: 27090 + - uid: 27203 components: - type: Transform pos: 48.5,-16.5 parent: 2 - - uid: 27091 + - uid: 27204 components: - type: Transform pos: 43.5,-16.5 parent: 2 - - uid: 27092 + - uid: 27205 components: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 27093 + - uid: 27206 components: - type: Transform pos: 50.5,-14.5 parent: 2 - - uid: 27094 + - uid: 27207 components: - type: Transform pos: 51.5,-14.5 parent: 2 - - uid: 27095 + - uid: 27208 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 - - uid: 27096 + - uid: 27209 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 - - uid: 27097 + - uid: 27210 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 - - uid: 27098 + - uid: 27211 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 - - uid: 27099 + - uid: 27212 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 - - uid: 27100 + - uid: 27213 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 - - uid: 27101 + - uid: 27214 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 27102 + - uid: 27215 components: - type: Transform pos: 64.5,-14.5 parent: 2 - - uid: 27103 + - uid: 27216 components: - type: Transform pos: 65.5,-14.5 parent: 2 - - uid: 27104 + - uid: 27217 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 - - uid: 27105 + - uid: 27218 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 - - uid: 27106 + - uid: 27219 components: - type: Transform pos: 68.5,-14.5 parent: 2 - - uid: 27107 + - uid: 27220 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 - - uid: 27108 + - uid: 27221 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 27109 + - uid: 27222 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 - - uid: 27110 + - uid: 27223 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 27111 + - uid: 27224 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 27112 + - uid: 27225 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 27113 + - uid: 27226 components: - type: Transform pos: 63.5,-21.5 parent: 2 - - uid: 27114 + - uid: 27227 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 27115 + - uid: 27228 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 27116 + - uid: 27229 components: - type: Transform pos: 63.5,-27.5 parent: 2 - - uid: 27117 + - uid: 27230 components: - type: Transform pos: 64.5,-27.5 parent: 2 - - uid: 27118 + - uid: 27231 components: - type: Transform pos: 69.5,-31.5 parent: 2 - - uid: 27119 + - uid: 27232 components: - type: Transform pos: 61.5,-16.5 parent: 2 - - uid: 27120 + - uid: 27233 components: - type: Transform pos: 61.5,-17.5 parent: 2 - - uid: 27121 + - uid: 27234 components: - type: Transform pos: 61.5,-19.5 parent: 2 - - uid: 27122 + - uid: 27235 components: - type: Transform pos: 61.5,-21.5 parent: 2 - - uid: 27123 + - uid: 27236 components: - type: Transform pos: 61.5,-23.5 parent: 2 - - uid: 27124 + - uid: 27237 components: - type: Transform pos: 61.5,-25.5 parent: 2 - - uid: 27125 + - uid: 27238 components: - type: Transform pos: 69.5,-32.5 parent: 2 - - uid: 27126 + - uid: 27239 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 27127 + - uid: 27240 components: - type: Transform pos: -2.5,-36.5 parent: 2 - - uid: 27128 + - uid: 27241 components: - type: Transform pos: 43.5,-15.5 parent: 2 - - uid: 27129 + - uid: 27242 components: - type: Transform pos: 42.5,-15.5 parent: 2 - - uid: 27130 + - uid: 27243 components: - type: Transform pos: 68.5,-15.5 parent: 2 - - uid: 27131 + - uid: 27244 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 - - uid: 27132 + - uid: 27245 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 - - uid: 27133 + - uid: 27246 components: - type: Transform pos: 70.5,-30.5 parent: 2 - - uid: 27134 + - uid: 27247 components: - type: Transform pos: 72.5,-39.5 parent: 2 - - uid: 27135 + - uid: 27248 components: - type: Transform pos: 76.5,-32.5 parent: 2 - - uid: 27136 + - uid: 27249 components: - type: Transform pos: 65.5,-37.5 parent: 2 - - uid: 27137 + - uid: 27250 components: - type: Transform pos: 63.5,-40.5 parent: 2 - - uid: 27138 + - uid: 27251 components: - type: Transform pos: 63.5,-38.5 parent: 2 - - uid: 27139 + - uid: 27252 components: - type: Transform pos: 76.5,-31.5 parent: 2 - - uid: 27140 + - uid: 27253 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 - - uid: 27141 + - uid: 27254 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - uid: 27142 + - uid: 27255 components: - type: Transform pos: 52.5,-47.5 parent: 2 - - uid: 27143 + - uid: 27256 components: - type: Transform pos: 52.5,-46.5 parent: 2 - - uid: 27144 + - uid: 27257 components: - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 27145 + - uid: 27258 components: - type: Transform pos: 54.5,-46.5 parent: 2 - - uid: 27146 + - uid: 27259 components: - type: Transform pos: 71.5,-66.5 parent: 2 - - uid: 27147 + - uid: 27260 components: - type: Transform pos: 75.5,-31.5 parent: 2 - - uid: 27148 + - uid: 27261 components: - type: Transform pos: 75.5,-30.5 parent: 2 - - uid: 27149 + - uid: 27262 components: - type: Transform pos: 74.5,-30.5 parent: 2 - - uid: 27150 + - uid: 27263 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 - - uid: 27151 + - uid: 27264 components: - type: Transform pos: 64.5,-42.5 parent: 2 - - uid: 27152 + - uid: 27265 components: - type: Transform pos: 55.5,-46.5 parent: 2 - - uid: 27153 + - uid: 27266 components: - type: Transform pos: 57.5,-46.5 parent: 2 - - uid: 27154 + - uid: 27267 components: - type: Transform pos: 58.5,-46.5 parent: 2 - - uid: 27155 + - uid: 27268 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 27156 + - uid: 27269 components: - type: Transform pos: 58.5,-49.5 parent: 2 - - uid: 27157 + - uid: 27270 components: - type: Transform pos: 59.5,-50.5 parent: 2 - - uid: 27158 + - uid: 27271 components: - type: Transform pos: 60.5,-50.5 parent: 2 - - uid: 27159 + - uid: 27272 components: - type: Transform pos: 64.5,-50.5 parent: 2 - - uid: 27160 + - uid: 27273 components: - type: Transform pos: 65.5,-50.5 parent: 2 - - uid: 27161 + - uid: 27274 components: - type: Transform pos: 63.5,-37.5 parent: 2 - - uid: 27162 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 2 - - uid: 27163 + - uid: 27275 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 - - uid: 27164 + - uid: 27276 components: - type: Transform pos: 63.5,-39.5 parent: 2 - - uid: 27165 + - uid: 27277 components: - type: Transform pos: 63.5,-41.5 parent: 2 - - uid: 27166 + - uid: 27278 components: - type: Transform pos: 52.5,-49.5 parent: 2 - - uid: 27167 + - uid: 27279 components: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 27168 + - uid: 27280 components: - type: Transform pos: 53.5,-50.5 parent: 2 - - uid: 27169 + - uid: 27281 components: - type: Transform pos: 54.5,-50.5 parent: 2 - - uid: 27170 + - uid: 27282 components: - type: Transform pos: 55.5,-54.5 parent: 2 - - uid: 27171 + - uid: 27283 components: - type: Transform pos: 65.5,-53.5 parent: 2 - - uid: 27172 + - uid: 27284 components: - type: Transform pos: 54.5,-54.5 parent: 2 - - uid: 27173 + - uid: 27285 components: - type: Transform pos: 59.5,-53.5 parent: 2 - - uid: 27174 + - uid: 27286 components: - type: Transform pos: 56.5,-54.5 parent: 2 - - uid: 27175 + - uid: 27287 components: - type: Transform pos: 64.5,-56.5 parent: 2 - - uid: 27176 + - uid: 27288 components: - type: Transform pos: 64.5,-55.5 parent: 2 - - uid: 27177 + - uid: 27289 components: - type: Transform pos: 60.5,-56.5 parent: 2 - - uid: 27178 + - uid: 27290 components: - type: Transform pos: 60.5,-55.5 parent: 2 - - uid: 27179 + - uid: 27291 components: - type: Transform pos: 66.5,-50.5 parent: 2 - - uid: 27180 + - uid: 27292 components: - type: Transform pos: 66.5,-53.5 parent: 2 - - uid: 27181 + - uid: 27293 components: - type: Transform pos: 65.5,-55.5 parent: 2 - - uid: 27182 + - uid: 27294 components: - type: Transform pos: 59.5,-55.5 parent: 2 - - uid: 27183 + - uid: 27295 components: - type: Transform pos: 58.5,-53.5 parent: 2 - - uid: 27184 + - uid: 27296 components: - type: Transform pos: 58.5,-50.5 parent: 2 - - uid: 27185 + - uid: 27297 components: - type: Transform pos: 76.5,-42.5 parent: 2 - - uid: 27186 + - uid: 27298 components: - type: Transform pos: 44.5,-65.5 parent: 2 - - uid: 27187 + - uid: 27299 components: - type: Transform pos: 70.5,-31.5 parent: 2 - - uid: 27188 + - uid: 27300 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - uid: 27189 + - uid: 27301 components: - type: Transform pos: 73.5,-39.5 parent: 2 - - uid: 27190 + - uid: 27302 components: - type: Transform pos: 73.5,-42.5 parent: 2 - - uid: 27191 + - uid: 27303 components: - type: Transform pos: 73.5,-41.5 parent: 2 - - uid: 27192 + - uid: 27304 components: - type: Transform pos: 68.5,-50.5 parent: 2 - - uid: 27193 + - uid: 27305 components: - type: Transform pos: 67.5,-50.5 parent: 2 - - uid: 27194 + - uid: 27306 components: - type: Transform pos: 65.5,-27.5 parent: 2 - - uid: 27195 + - uid: 27307 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 27196 + - uid: 27308 components: - type: Transform pos: 76.5,-39.5 parent: 2 - - uid: 27197 + - uid: 27309 components: - type: Transform pos: 76.5,-38.5 parent: 2 - - uid: 27198 + - uid: 27310 components: - type: Transform pos: 79.5,-32.5 parent: 2 - - uid: 27199 + - uid: 27311 components: - type: Transform pos: 79.5,-38.5 parent: 2 - - uid: 27200 + - uid: 27312 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 - - uid: 27201 + - uid: 27313 components: - type: Transform pos: 76.5,-41.5 parent: 2 - - uid: 27202 + - uid: 27314 components: - type: Transform pos: 76.5,-40.5 parent: 2 - - uid: 27203 + - uid: 27315 components: - type: Transform pos: 24.5,-57.5 parent: 2 - - uid: 27204 + - uid: 27316 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 - - uid: 27205 + - uid: 27317 components: - type: Transform pos: -45.5,-38.5 parent: 2 - - uid: 27206 + - uid: 27318 components: - type: Transform pos: 53.5,-54.5 parent: 2 - - uid: 27207 + - uid: 27319 components: - type: Transform pos: 53.5,-55.5 parent: 2 - - uid: 27208 + - uid: 27320 components: - type: Transform pos: 53.5,-56.5 parent: 2 - - uid: 27209 + - uid: 27321 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 - - uid: 27210 + - uid: 27322 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 - - uid: 27211 + - uid: 27323 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 - - uid: 27212 + - uid: 27324 components: - type: Transform pos: 34.5,-61.5 parent: 2 - - uid: 27213 + - uid: 27325 components: - type: Transform pos: 35.5,-61.5 parent: 2 - - uid: 27214 + - uid: 27326 components: - type: Transform pos: 36.5,-61.5 parent: 2 - - uid: 27215 + - uid: 27327 components: - type: Transform pos: 37.5,-61.5 parent: 2 - - uid: 27216 + - uid: 27328 components: - type: Transform pos: 37.5,-62.5 parent: 2 - - uid: 27217 + - uid: 27329 components: - type: Transform pos: 37.5,-63.5 parent: 2 - - uid: 27218 + - uid: 27330 components: - type: Transform pos: 37.5,-65.5 parent: 2 - - uid: 27219 + - uid: 27331 components: - type: Transform pos: 37.5,-67.5 parent: 2 - - uid: 27220 + - uid: 27332 components: - type: Transform pos: 37.5,-68.5 parent: 2 - - uid: 27221 + - uid: 27333 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 - - uid: 27222 + - uid: 27334 components: - type: Transform pos: 41.5,-67.5 parent: 2 - - uid: 27223 + - uid: 27335 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 27224 + - uid: 27336 components: - type: Transform pos: -33.5,-14.5 parent: 2 - - uid: 27225 + - uid: 27337 components: - type: Transform pos: -33.5,-18.5 parent: 2 - - uid: 27226 + - uid: 27338 components: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 27227 + - uid: 27339 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 - - uid: 27228 + - uid: 27340 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 - - uid: 27229 + - uid: 27341 components: - type: Transform pos: -17.5,-47.5 parent: 2 - - uid: 27230 + - uid: 27342 components: - type: Transform pos: -22.5,-44.5 parent: 2 - - uid: 27231 + - uid: 27343 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 - - uid: 27232 + - uid: 27344 components: - type: Transform pos: 56.5,-56.5 parent: 2 - - uid: 27233 + - uid: 27345 components: - type: Transform pos: 56.5,-57.5 parent: 2 - - uid: 27234 + - uid: 27346 components: - type: Transform pos: 57.5,-57.5 parent: 2 - - uid: 27235 + - uid: 27347 components: - type: Transform pos: 57.5,-58.5 parent: 2 - - uid: 27236 + - uid: 27348 components: - type: Transform pos: 58.5,-58.5 parent: 2 - - uid: 27237 + - uid: 27349 components: - type: Transform pos: 58.5,-61.5 parent: 2 - - uid: 27238 + - uid: 27350 components: - type: Transform pos: 53.5,-62.5 parent: 2 - - uid: 27239 + - uid: 27351 components: - type: Transform pos: 53.5,-25.5 parent: 2 - - uid: 27240 + - uid: 27352 components: - type: Transform pos: 52.5,-26.5 parent: 2 - - uid: 27241 + - uid: 27353 components: - type: Transform pos: -17.5,-49.5 parent: 2 - - uid: 27242 + - uid: 27354 components: - type: Transform pos: -17.5,-48.5 parent: 2 - - uid: 27243 + - uid: 27355 components: - type: Transform pos: -22.5,-45.5 parent: 2 - - uid: 27244 + - uid: 27356 components: - type: Transform pos: -22.5,-46.5 parent: 2 - - uid: 27245 + - uid: 27357 components: - type: Transform pos: -22.5,-47.5 parent: 2 - - uid: 27246 + - uid: 27358 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 - - uid: 27247 + - uid: 27359 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 - - uid: 27248 + - uid: 27360 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-75.5 parent: 2 - - uid: 27249 + - uid: 27361 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 - - uid: 27250 + - uid: 27362 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 - - uid: 27251 + - uid: 27363 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 - - uid: 27252 + - uid: 27364 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 - - uid: 27253 + - uid: 27365 components: - type: Transform pos: 33.5,-70.5 parent: 2 - - uid: 27254 + - uid: 27366 components: - type: Transform pos: 32.5,-70.5 parent: 2 - - uid: 27255 + - uid: 27367 components: - type: Transform pos: 12.5,-70.5 parent: 2 - - uid: 27256 + - uid: 27368 components: - type: Transform pos: 45.5,-70.5 parent: 2 - - uid: 27257 + - uid: 27369 components: - type: Transform pos: 41.5,-69.5 parent: 2 - - uid: 27258 + - uid: 27370 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 - - uid: 27259 + - uid: 27371 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 - - uid: 27260 + - uid: 27372 components: - type: Transform pos: 45.5,-69.5 parent: 2 - - uid: 27261 + - uid: 27373 components: - type: Transform pos: 37.5,-69.5 parent: 2 - - uid: 27262 + - uid: 27374 components: - type: Transform pos: 33.5,-69.5 parent: 2 - - uid: 27263 + - uid: 27375 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 - - uid: 27264 + - uid: 27376 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 - - uid: 27265 + - uid: 27377 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 - - uid: 27266 + - uid: 27378 components: - type: Transform pos: 7.5,-77.5 parent: 2 - - uid: 27267 + - uid: 27379 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 - - uid: 27268 + - uid: 27380 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 - - uid: 27269 + - uid: 27381 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 - - uid: 27270 + - uid: 27382 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 - - uid: 27271 + - uid: 27383 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 - - uid: 27272 + - uid: 27384 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 - - uid: 27273 + - uid: 27385 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 - - uid: 27274 + - uid: 27386 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 - - uid: 27275 + - uid: 27387 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 - - uid: 27276 + - uid: 27388 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 - - uid: 27277 + - uid: 27389 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 - - uid: 27278 + - uid: 27390 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 - - uid: 27279 + - uid: 27391 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 - - uid: 27280 + - uid: 27392 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 - - uid: 27281 + - uid: 27393 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 - - uid: 27282 + - uid: 27394 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 - - uid: 27283 + - uid: 27395 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 - - uid: 27284 + - uid: 27396 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 - - uid: 27285 + - uid: 27397 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 - - uid: 27286 + - uid: 27398 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 - - uid: 27287 + - uid: 27399 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 - - uid: 27288 + - uid: 27400 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 27289 + - uid: 27401 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 - - uid: 27290 + - uid: 27402 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 - - uid: 27291 + - uid: 27403 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 - - uid: 27292 + - uid: 27404 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 - - uid: 27293 + - uid: 27405 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 - - uid: 27294 + - uid: 27406 components: - type: Transform pos: 8.5,-77.5 parent: 2 - - uid: 27295 + - uid: 27407 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 - - uid: 27296 + - uid: 27408 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 - - uid: 27297 + - uid: 27409 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 - - uid: 27298 + - uid: 27410 components: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 27299 + - uid: 27411 components: - type: Transform pos: 9.5,-72.5 parent: 2 - - uid: 27300 + - uid: 27412 components: - type: Transform pos: 9.5,-73.5 parent: 2 - - uid: 27301 + - uid: 27413 components: - type: Transform pos: 9.5,-74.5 parent: 2 - - uid: 27302 + - uid: 27414 components: - type: Transform pos: 10.5,-74.5 parent: 2 - - uid: 27303 + - uid: 27415 components: - type: Transform pos: 11.5,-74.5 parent: 2 - - uid: 27304 + - uid: 27416 components: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 27305 + - uid: 27417 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 27306 + - uid: 27418 components: - type: Transform pos: 16.5,-74.5 parent: 2 - - uid: 27307 + - uid: 27419 components: - type: Transform pos: 19.5,-74.5 parent: 2 - - uid: 27308 + - uid: 27420 components: - type: Transform pos: 21.5,-74.5 parent: 2 - - uid: 27309 + - uid: 27421 components: - type: Transform pos: 21.5,-72.5 parent: 2 - - uid: 27310 + - uid: 27422 components: - type: Transform pos: 20.5,-72.5 parent: 2 - - uid: 27311 + - uid: 27423 components: - type: Transform pos: 19.5,-72.5 parent: 2 - - uid: 27312 + - uid: 27424 components: - type: Transform pos: 31.5,-70.5 parent: 2 - - uid: 27313 + - uid: 27425 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-75.5 parent: 2 - - uid: 27314 + - uid: 27426 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 - - uid: 27315 + - uid: 27427 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 - - uid: 27316 + - uid: 27428 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 - - uid: 27317 + - uid: 27429 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 - - uid: 27318 + - uid: 27430 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 - - uid: 27319 + - uid: 27431 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 - - uid: 27320 + - uid: 27432 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 - - uid: 27321 + - uid: 27433 components: - type: Transform pos: 16.5,-71.5 parent: 2 - - uid: 27322 + - uid: 27434 components: - type: Transform pos: 29.5,-69.5 parent: 2 - - uid: 27323 + - uid: 27435 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 27324 + - uid: 27436 components: - type: Transform pos: 28.5,-68.5 parent: 2 - - uid: 27325 + - uid: 27437 components: - type: Transform pos: 30.5,-70.5 parent: 2 - - uid: 27326 + - uid: 27438 components: - type: Transform pos: 20.5,-74.5 parent: 2 - - uid: 27327 + - uid: 27439 components: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 27328 + - uid: 27440 components: - type: Transform pos: 22.5,-70.5 parent: 2 - - uid: 27329 + - uid: 27441 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 - - uid: 27330 + - uid: 27442 components: - type: Transform pos: 23.5,-82.5 parent: 2 - - uid: 27331 + - uid: 27443 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 - - uid: 27332 + - uid: 27444 components: - type: Transform pos: 23.5,-84.5 parent: 2 - - uid: 27333 + - uid: 27445 components: - type: Transform pos: 21.5,-70.5 parent: 2 - - uid: 27334 + - uid: 27446 components: - type: Transform pos: 22.5,-74.5 parent: 2 - - uid: 27335 + - uid: 27447 components: - type: Transform pos: 23.5,-74.5 parent: 2 - - uid: 27336 + - uid: 27448 components: - type: Transform pos: 23.5,-75.5 parent: 2 - - uid: 27337 + - uid: 27449 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 - - uid: 27338 + - uid: 27450 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 - - uid: 27339 + - uid: 27451 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 - - uid: 27340 + - uid: 27452 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 - - uid: 27341 + - uid: 27453 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 - - uid: 27342 + - uid: 27454 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 - - uid: 27343 + - uid: 27455 components: - type: Transform pos: 7.5,-73.5 parent: 2 - - uid: 27344 + - uid: 27456 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 - - uid: 27345 + - uid: 27457 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 - - uid: 27346 + - uid: 27458 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 - - uid: 27347 + - uid: 27459 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 - - uid: 27348 + - uid: 27460 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 - - uid: 27349 + - uid: 27461 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 - - uid: 27350 + - uid: 27462 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 - - uid: 27351 + - uid: 27463 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 - - uid: 27352 + - uid: 27464 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 - - uid: 27353 + - uid: 27465 components: - type: Transform pos: 21.5,-71.5 parent: 2 - - uid: 27354 + - uid: 27466 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 - - uid: 27355 + - uid: 27467 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 - - uid: 27356 + - uid: 27468 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 - - uid: 27357 + - uid: 27469 components: - type: Transform pos: 23.5,-68.5 parent: 2 - - uid: 27358 + - uid: 27470 components: - type: Transform pos: -34.5,-14.5 parent: 2 - - uid: 27359 + - uid: 27471 components: - type: Transform pos: -35.5,-14.5 parent: 2 - - uid: 27360 + - uid: 27472 components: - type: Transform pos: -38.5,-14.5 parent: 2 - - uid: 27361 + - uid: 27473 components: - type: Transform pos: -39.5,-14.5 parent: 2 - - uid: 27362 + - uid: 27474 components: - type: Transform pos: -40.5,-14.5 parent: 2 - - uid: 27363 + - uid: 27475 components: - type: Transform pos: -17.5,-46.5 parent: 2 - - uid: 27364 + - uid: 27476 components: - type: Transform pos: -17.5,-45.5 parent: 2 - - uid: 27365 + - uid: 27477 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 27366 + - uid: 27478 components: - type: Transform pos: -18.5,-44.5 parent: 2 - - uid: 27367 + - uid: 27479 components: - type: Transform pos: -20.5,-44.5 parent: 2 - - uid: 27368 + - uid: 27480 components: - type: Transform pos: -21.5,-44.5 parent: 2 - - uid: 27369 + - uid: 27481 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 27370 + - uid: 27482 components: - type: Transform pos: -38.5,-18.5 parent: 2 - - uid: 27371 + - uid: 27483 components: - type: Transform pos: -38.5,-17.5 parent: 2 - - uid: 27372 + - uid: 27484 components: - type: Transform pos: -38.5,-16.5 parent: 2 - - uid: 27373 + - uid: 27485 components: - type: Transform pos: -38.5,-15.5 parent: 2 - - uid: 27374 + - uid: 27486 components: - type: Transform pos: 77.5,-49.5 parent: 2 - - uid: 27375 + - uid: 27487 components: - type: Transform pos: 73.5,-50.5 parent: 2 - - uid: 27376 + - uid: 27488 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 27377 + - uid: 27489 components: - type: Transform pos: 73.5,-54.5 parent: 2 - - uid: 27378 + - uid: 27490 components: - type: Transform pos: 72.5,-54.5 parent: 2 - - uid: 27379 + - uid: 27491 components: - type: Transform pos: 69.5,-54.5 parent: 2 - - uid: 27380 + - uid: 27492 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 - - uid: 27381 + - uid: 27493 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 - - uid: 27382 + - uid: 27494 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 - - uid: 27383 + - uid: 27495 components: - type: Transform pos: -44.5,-24.5 parent: 2 - - uid: 27384 + - uid: 27496 components: - type: Transform pos: -42.5,-14.5 parent: 2 - - uid: 27385 + - uid: 27497 components: - type: Transform pos: -43.5,-14.5 parent: 2 - - uid: 27386 + - uid: 27498 components: - type: Transform pos: -43.5,-12.5 parent: 2 - - uid: 27387 + - uid: 27499 components: - type: Transform pos: -43.5,-9.5 parent: 2 - - uid: 27388 + - uid: 27500 components: - type: Transform pos: -43.5,-8.5 parent: 2 - - uid: 27389 + - uid: 27501 components: - type: Transform pos: -43.5,-7.5 parent: 2 - - uid: 27390 + - uid: 27502 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 27391 + - uid: 27503 components: - type: Transform pos: -42.5,-19.5 parent: 2 - - uid: 27392 + - uid: 27504 components: - type: Transform pos: -40.5,-19.5 parent: 2 - - uid: 27393 + - uid: 27505 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 27394 + - uid: 27506 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 27395 + - uid: 27507 components: - type: Transform pos: -43.5,-16.5 parent: 2 - - uid: 27396 + - uid: 27508 components: - type: Transform pos: -43.5,-17.5 parent: 2 - - uid: 27397 + - uid: 27509 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 27398 + - uid: 27510 components: - type: Transform pos: 59.5,-61.5 parent: 2 - - uid: 27399 + - uid: 27511 components: - type: Transform pos: 67.5,-58.5 parent: 2 - - uid: 27400 + - uid: 27512 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 - - uid: 27401 + - uid: 27513 components: - type: Transform pos: 68.5,-58.5 parent: 2 - - uid: 27402 + - uid: 27514 components: - type: Transform pos: 65.5,-61.5 parent: 2 - - uid: 27403 + - uid: 27515 components: - type: Transform pos: 60.5,-61.5 parent: 2 - - uid: 27404 + - uid: 27516 components: - type: Transform pos: 65.5,-60.5 parent: 2 - - uid: 27405 + - uid: 27517 components: - type: Transform pos: 67.5,-59.5 parent: 2 - - uid: 27406 + - uid: 27518 components: - type: Transform pos: 52.5,-29.5 parent: 2 - - uid: 27407 + - uid: 27519 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 27408 + - uid: 27520 components: - type: Transform pos: 52.5,-27.5 parent: 2 - - uid: 27409 + - uid: 27521 components: - type: Transform pos: 52.5,-30.5 parent: 2 - - uid: 27410 + - uid: 27522 components: - type: Transform pos: 52.5,-31.5 parent: 2 - - uid: 27411 + - uid: 27523 components: - type: Transform pos: 43.5,-32.5 parent: 2 - - uid: 27412 + - uid: 27524 components: - type: Transform pos: 58.5,-68.5 parent: 2 - - uid: 27413 + - uid: 27525 components: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 27414 + - uid: 27526 components: - type: Transform pos: 48.5,-32.5 parent: 2 - - uid: 27415 + - uid: 27527 components: - type: Transform pos: 46.5,-32.5 parent: 2 - - uid: 27416 + - uid: 27528 components: - type: Transform pos: 57.5,-68.5 parent: 2 - - uid: 27417 + - uid: 27529 components: - type: Transform pos: 45.5,-32.5 parent: 2 - - uid: 27418 + - uid: 27530 components: - type: Transform pos: 69.5,-67.5 parent: 2 - - uid: 27419 + - uid: 27531 components: - type: Transform pos: 70.5,-67.5 parent: 2 - - uid: 27420 + - uid: 27532 components: - type: Transform pos: 71.5,-67.5 parent: 2 - - uid: 27421 + - uid: 27533 components: - type: Transform pos: 71.5,-63.5 parent: 2 - - uid: 27422 + - uid: 27534 components: - type: Transform pos: 72.5,-63.5 parent: 2 - - uid: 27423 + - uid: 27535 components: - type: Transform pos: 72.5,-60.5 parent: 2 - - uid: 27424 + - uid: 27536 components: - type: Transform pos: 73.5,-60.5 parent: 2 - - uid: 27425 + - uid: 27537 components: - type: Transform pos: 72.5,-61.5 parent: 2 - - uid: 27426 + - uid: 27538 components: - type: Transform pos: 72.5,-62.5 parent: 2 - - uid: 27427 + - uid: 27539 components: - type: Transform pos: 73.5,-59.5 parent: 2 - - uid: 27428 + - uid: 27540 components: - type: Transform pos: 73.5,-58.5 parent: 2 - - uid: 27429 + - uid: 27541 components: - type: Transform pos: 74.5,-58.5 parent: 2 - - uid: 27430 + - uid: 27542 components: - type: Transform pos: 75.5,-58.5 parent: 2 - - uid: 27431 + - uid: 27543 components: - type: Transform pos: -43.5,-23.5 parent: 2 - - uid: 27432 + - uid: 27544 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 - - uid: 27433 + - uid: 27545 components: - type: Transform pos: -43.5,-24.5 parent: 2 - - uid: 27434 + - uid: 27546 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 - - uid: 27435 + - uid: 27547 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 - - uid: 27436 + - uid: 27548 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 - - uid: 27437 + - uid: 27549 components: - type: Transform pos: 28.5,-69.5 parent: 2 - - uid: 27438 + - uid: 27550 components: - type: Transform pos: 22.5,-69.5 parent: 2 - - uid: 27439 + - uid: 27551 components: - type: Transform pos: 23.5,-69.5 parent: 2 - - uid: 27440 + - uid: 27552 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 - - uid: 27441 + - uid: 27553 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 - - uid: 27442 + - uid: 27554 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 27443 + - uid: 27555 components: - type: Transform pos: -41.5,-37.5 parent: 2 - - uid: 27444 + - uid: 27556 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 - - uid: 27445 + - uid: 27557 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 - - uid: 27446 + - uid: 27558 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 - - uid: 27447 + - uid: 27559 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 - - uid: 27448 + - uid: 27560 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 - - uid: 27449 + - uid: 27561 components: - type: Transform pos: -44.5,-7.5 parent: 2 - - uid: 27450 + - uid: 27562 components: - type: Transform pos: -45.5,-7.5 parent: 2 - - uid: 27451 + - uid: 27563 components: - type: Transform pos: -47.5,-7.5 parent: 2 - - uid: 27452 + - uid: 27564 components: - type: Transform pos: -48.5,-7.5 parent: 2 - - uid: 27453 + - uid: 27565 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 27454 + - uid: 27566 components: - type: Transform pos: -49.5,-9.5 parent: 2 - - uid: 27455 + - uid: 27567 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 27456 + - uid: 27568 components: - type: Transform pos: -49.5,-7.5 parent: 2 - - uid: 27457 + - uid: 27569 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 27458 + - uid: 27570 components: - type: Transform pos: -48.5,-18.5 parent: 2 - - uid: 27459 + - uid: 27571 components: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 27460 + - uid: 27572 components: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 27461 + - uid: 27573 components: - type: Transform pos: -49.5,-11.5 parent: 2 - - uid: 27462 + - uid: 27574 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 27463 + - uid: 27575 components: - type: Transform pos: -51.5,-11.5 parent: 2 - - uid: 27464 + - uid: 27576 components: - type: Transform pos: -51.5,-12.5 parent: 2 - - uid: 27465 + - uid: 27577 components: - type: Transform pos: -51.5,-14.5 parent: 2 - - uid: 27466 + - uid: 27578 components: - type: Transform pos: -51.5,-15.5 parent: 2 - - uid: 27467 + - uid: 27579 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 27468 + - uid: 27580 components: - type: Transform pos: -49.5,-15.5 parent: 2 - - uid: 27469 + - uid: 27581 components: - type: Transform pos: -49.5,-4.5 parent: 2 - - uid: 27470 + - uid: 27582 components: - type: Transform pos: -50.5,-4.5 parent: 2 - - uid: 27471 + - uid: 27583 components: - type: Transform pos: -51.5,-4.5 parent: 2 - - uid: 27472 + - uid: 27584 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 27473 + - uid: 27585 components: - type: Transform pos: -53.5,-4.5 parent: 2 - - uid: 27474 + - uid: 27586 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 27475 + - uid: 27587 components: - type: Transform pos: -55.5,-4.5 parent: 2 - - uid: 27476 + - uid: 27588 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 27477 + - uid: 27589 components: - type: Transform pos: -56.5,-5.5 parent: 2 - - uid: 27478 + - uid: 27590 components: - type: Transform pos: -56.5,-6.5 parent: 2 - - uid: 27479 + - uid: 27591 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 27480 + - uid: 27592 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 27481 + - uid: 27593 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 27482 + - uid: 27594 components: - type: Transform pos: -56.5,-10.5 parent: 2 - - uid: 27483 + - uid: 27595 components: - type: Transform pos: -56.5,-16.5 parent: 2 - - uid: 27484 + - uid: 27596 components: - type: Transform pos: -56.5,-17.5 parent: 2 - - uid: 27485 + - uid: 27597 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 - - uid: 27486 + - uid: 27598 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 27487 + - uid: 27599 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 27488 + - uid: 27600 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 27489 + - uid: 27601 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 27490 + - uid: 27602 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 27491 + - uid: 27603 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - uid: 27492 + - uid: 27604 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - uid: 27493 + - uid: 27605 components: - type: Transform pos: 55.5,-50.5 parent: 2 - - uid: 27494 + - uid: 27606 components: - type: Transform pos: -49.5,-22.5 parent: 2 - - uid: 27495 + - uid: 27607 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-24.5 parent: 2 - - uid: 27496 + - uid: 27608 components: - type: Transform pos: 56.5,-50.5 parent: 2 - - uid: 27497 + - uid: 27609 components: - type: Transform pos: -52.5,-26.5 parent: 2 - - uid: 27498 + - uid: 27610 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 27499 + - uid: 27611 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 - - uid: 27500 + - uid: 27612 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 - - uid: 27501 + - uid: 27613 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 - - uid: 27502 + - uid: 27614 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 - - uid: 27503 + - uid: 27615 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 - - uid: 27504 + - uid: 27616 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 - - uid: 27505 + - uid: 27617 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 - - uid: 27506 + - uid: 27618 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 - - uid: 27507 + - uid: 27619 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 - - uid: 27508 + - uid: 27620 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 - - uid: 27509 + - uid: 27621 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 - - uid: 27510 + - uid: 27622 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 - - uid: 27511 + - uid: 27623 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 - - uid: 27512 + - uid: 27624 components: - type: Transform pos: -59.5,-29.5 parent: 2 - - uid: 27513 + - uid: 27625 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 - - uid: 27514 + - uid: 27626 components: - type: Transform pos: -62.5,-26.5 parent: 2 - - uid: 27515 + - uid: 27627 components: - type: Transform pos: -63.5,-27.5 parent: 2 - - uid: 27516 + - uid: 27628 components: - type: Transform pos: -63.5,-28.5 parent: 2 - - uid: 27517 + - uid: 27629 components: - type: Transform pos: -63.5,-26.5 parent: 2 - - uid: 27518 + - uid: 27630 components: - type: Transform pos: -59.5,-31.5 parent: 2 - - uid: 27519 + - uid: 27631 components: - type: Transform pos: -60.5,-31.5 parent: 2 - - uid: 27520 + - uid: 27632 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 27521 + - uid: 27633 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 27522 + - uid: 27634 components: - type: Transform pos: -58.5,-20.5 parent: 2 - - uid: 27523 + - uid: 27635 components: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 27524 + - uid: 27636 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - uid: 27525 + - uid: 27637 components: - type: Transform pos: -63.5,-31.5 parent: 2 - - uid: 27526 + - uid: 27638 components: - type: Transform pos: -63.5,-32.5 parent: 2 - - uid: 27527 + - uid: 27639 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 - - uid: 27528 + - uid: 27640 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 - - uid: 27529 + - uid: 27641 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 - - uid: 27530 + - uid: 27642 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 - - uid: 27531 + - uid: 27643 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 - - uid: 27532 + - uid: 27644 components: - type: Transform pos: -59.5,-27.5 parent: 2 - - uid: 27533 + - uid: 27645 components: - type: Transform pos: -50.5,-55.5 parent: 2 - - uid: 27534 + - uid: 27646 components: - type: Transform pos: -50.5,-53.5 parent: 2 - - uid: 27535 + - uid: 27647 components: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 27536 + - uid: 27648 components: - type: Transform pos: -50.5,-49.5 parent: 2 - - uid: 27537 + - uid: 27649 components: - type: Transform pos: -50.5,-47.5 parent: 2 - - uid: 27538 + - uid: 27650 components: - type: Transform pos: -50.5,-45.5 parent: 2 - - uid: 27539 + - uid: 27651 components: - type: Transform pos: -50.5,-43.5 parent: 2 - - uid: 27540 + - uid: 27652 components: - type: Transform pos: -50.5,-41.5 parent: 2 - - uid: 27541 + - uid: 27653 components: - type: Transform pos: -49.5,-41.5 parent: 2 - - uid: 27542 + - uid: 27654 components: - type: Transform pos: -48.5,-41.5 parent: 2 - - uid: 27543 + - uid: 27655 components: - type: Transform pos: -47.5,-41.5 parent: 2 - - uid: 27544 + - uid: 27656 components: - type: Transform pos: -49.5,-43.5 parent: 2 - - uid: 27545 + - uid: 27657 components: - type: Transform pos: -48.5,-43.5 parent: 2 - - uid: 27546 + - uid: 27658 components: - type: Transform pos: -47.5,-43.5 parent: 2 - - uid: 27547 + - uid: 27659 components: - type: Transform pos: -49.5,-45.5 parent: 2 - - uid: 27548 + - uid: 27660 components: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 27549 + - uid: 27661 components: - type: Transform pos: -47.5,-45.5 parent: 2 - - uid: 27550 + - uid: 27662 components: - type: Transform pos: -49.5,-47.5 parent: 2 - - uid: 27551 + - uid: 27663 components: - type: Transform pos: -48.5,-47.5 parent: 2 - - uid: 27552 + - uid: 27664 components: - type: Transform pos: -47.5,-47.5 parent: 2 - - uid: 27553 + - uid: 27665 components: - type: Transform pos: -49.5,-49.5 parent: 2 - - uid: 27554 + - uid: 27666 components: - type: Transform pos: -48.5,-49.5 parent: 2 - - uid: 27555 + - uid: 27667 components: - type: Transform pos: -47.5,-49.5 parent: 2 - - uid: 27556 + - uid: 27668 components: - type: Transform pos: -49.5,-51.5 parent: 2 - - uid: 27557 + - uid: 27669 components: - type: Transform pos: -48.5,-51.5 parent: 2 - - uid: 27558 + - uid: 27670 components: - type: Transform pos: -47.5,-51.5 parent: 2 - - uid: 27559 + - uid: 27671 components: - type: Transform pos: -49.5,-53.5 parent: 2 - - uid: 27560 + - uid: 27672 components: - type: Transform pos: -48.5,-53.5 parent: 2 - - uid: 27561 + - uid: 27673 components: - type: Transform pos: -47.5,-53.5 parent: 2 - - uid: 27562 + - uid: 27674 components: - type: Transform pos: -49.5,-55.5 parent: 2 - - uid: 27563 + - uid: 27675 components: - type: Transform pos: -48.5,-55.5 parent: 2 - - uid: 27564 + - uid: 27676 components: - type: Transform pos: -47.5,-55.5 parent: 2 - - uid: 27565 + - uid: 27677 components: - type: Transform pos: -51.5,-55.5 parent: 2 - - uid: 27566 + - uid: 27678 components: - type: Transform pos: -51.5,-54.5 parent: 2 - - uid: 27567 + - uid: 27679 components: - type: Transform pos: -51.5,-53.5 parent: 2 - - uid: 27568 + - uid: 27680 components: - type: Transform pos: -51.5,-51.5 parent: 2 - - uid: 27569 + - uid: 27681 components: - type: Transform pos: -51.5,-50.5 parent: 2 - - uid: 27570 + - uid: 27682 components: - type: Transform pos: -51.5,-49.5 parent: 2 - - uid: 27571 + - uid: 27683 components: - type: Transform pos: -51.5,-48.5 parent: 2 - - uid: 27572 + - uid: 27684 components: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 27573 + - uid: 27685 components: - type: Transform pos: -51.5,-46.5 parent: 2 - - uid: 27574 + - uid: 27686 components: - type: Transform pos: -51.5,-45.5 parent: 2 - - uid: 27575 + - uid: 27687 components: - type: Transform pos: -51.5,-44.5 parent: 2 - - uid: 27576 + - uid: 27688 components: - type: Transform pos: -51.5,-43.5 parent: 2 - - uid: 27577 + - uid: 27689 components: - type: Transform pos: -51.5,-42.5 parent: 2 - - uid: 27578 + - uid: 27690 components: - type: Transform pos: -51.5,-41.5 parent: 2 - - uid: 27579 + - uid: 27691 components: - type: Transform pos: -47.5,-38.5 parent: 2 - - uid: 27580 + - uid: 27692 components: - type: Transform pos: -41.5,-39.5 parent: 2 - - uid: 27581 + - uid: 27693 components: - type: Transform pos: -41.5,-38.5 parent: 2 - - uid: 27582 + - uid: 27694 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 - - uid: 27583 + - uid: 27695 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 - - uid: 27584 + - uid: 27696 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 - - uid: 27585 + - uid: 27697 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 - - uid: 27586 + - uid: 27698 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 - - uid: 27587 + - uid: 27699 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 - - uid: 27588 + - uid: 27700 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 - - uid: 27589 + - uid: 27701 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 - - uid: 27590 + - uid: 27702 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 - - uid: 27591 + - uid: 27703 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 - - uid: 27592 + - uid: 27704 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 - - uid: 27593 + - uid: 27705 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 - - uid: 27594 + - uid: 27706 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 - - uid: 27595 + - uid: 27707 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 - - uid: 27596 + - uid: 27708 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 - - uid: 27597 + - uid: 27709 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 - - uid: 27598 + - uid: 27710 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 - - uid: 27599 + - uid: 27711 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 - - uid: 27600 + - uid: 27712 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 - - uid: 27601 + - uid: 27713 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 - - uid: 27602 + - uid: 27714 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 - - uid: 27603 + - uid: 27715 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 - - uid: 27604 + - uid: 27716 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 - - uid: 27605 + - uid: 27717 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 - - uid: 27606 + - uid: 27718 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 - - uid: 27607 + - uid: 27719 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 - - uid: 27608 + - uid: 27720 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 - - uid: 27609 + - uid: 27721 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 - - uid: 27610 + - uid: 27722 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 - - uid: 27611 + - uid: 27723 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 - - uid: 27612 + - uid: 27724 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 - - uid: 27613 + - uid: 27725 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 - - uid: 27614 + - uid: 27726 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 - - uid: 27615 + - uid: 27727 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 - - uid: 27616 + - uid: 27728 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 - - uid: 27617 + - uid: 27729 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 - - uid: 27618 + - uid: 27730 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 - - uid: 27619 + - uid: 27731 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 - - uid: 27620 + - uid: 27732 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 - - uid: 27621 + - uid: 27733 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 - - uid: 27622 + - uid: 27734 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 - - uid: 27623 + - uid: 27735 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 - - uid: 27624 + - uid: 27736 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 - - uid: 27625 + - uid: 27737 components: - type: Transform pos: -45.5,-57.5 parent: 2 - - uid: 27626 + - uid: 27738 components: - type: Transform pos: -45.5,-56.5 parent: 2 - - uid: 27627 + - uid: 27739 components: - type: Transform pos: -45.5,-58.5 parent: 2 - - uid: 27628 + - uid: 27740 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 - - uid: 27629 + - uid: 27741 components: - type: Transform pos: -43.5,-58.5 parent: 2 - - uid: 27630 + - uid: 27742 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 - - uid: 27631 + - uid: 27743 components: - type: Transform pos: -40.5,-58.5 parent: 2 - - uid: 27632 + - uid: 27744 components: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 27633 + - uid: 27745 components: - type: Transform pos: -45.5,-36.5 parent: 2 - - uid: 27634 + - uid: 27746 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 - - uid: 27635 + - uid: 27747 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 - - uid: 27636 + - uid: 27748 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 - - uid: 27637 + - uid: 27749 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 - - uid: 27638 + - uid: 27750 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 - - uid: 27639 + - uid: 27751 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 - - uid: 27640 + - uid: 27752 components: - type: Transform pos: -32.5,-44.5 parent: 2 - - uid: 27641 + - uid: 27753 components: - type: Transform pos: -32.5,-45.5 parent: 2 - - uid: 27642 + - uid: 27754 components: - type: Transform pos: -32.5,-46.5 parent: 2 - - uid: 27643 + - uid: 27755 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 27644 + - uid: 27756 components: - type: Transform pos: -32.5,-48.5 parent: 2 - - uid: 27645 + - uid: 27757 components: - type: Transform pos: -32.5,-49.5 parent: 2 - - uid: 27646 + - uid: 27758 components: - type: Transform pos: -32.5,-51.5 parent: 2 - - uid: 27647 + - uid: 27759 components: - type: Transform pos: -32.5,-52.5 parent: 2 - - uid: 27648 + - uid: 27760 components: - type: Transform pos: -32.5,-53.5 parent: 2 - - uid: 27649 + - uid: 27761 components: - type: Transform pos: -32.5,-54.5 parent: 2 - - uid: 27650 + - uid: 27762 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 27651 + - uid: 27763 components: - type: Transform pos: -32.5,-56.5 parent: 2 - - uid: 27652 + - uid: 27764 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 27653 + - uid: 27765 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 27654 + - uid: 27766 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 27655 + - uid: 27767 components: - type: Transform pos: -34.5,-58.5 parent: 2 - - uid: 27656 + - uid: 27768 components: - type: Transform pos: 65.5,-31.5 parent: 2 - - uid: 27657 + - uid: 27769 components: - type: Transform pos: -70.5,-3.5 parent: 2 - - uid: 27658 + - uid: 27770 components: - type: Transform pos: -71.5,-3.5 parent: 2 - - uid: 27659 + - uid: 27771 components: - type: Transform pos: -72.5,-3.5 parent: 2 - - uid: 27660 + - uid: 27772 components: - type: Transform pos: -76.5,-4.5 parent: 2 - - uid: 27661 + - uid: 27773 components: - type: Transform pos: -76.5,-5.5 parent: 2 - - uid: 27662 + - uid: 27774 components: - type: Transform pos: -76.5,-6.5 parent: 2 - - uid: 27663 + - uid: 27775 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 - - uid: 27664 + - uid: 27776 components: - type: Transform pos: -76.5,-18.5 parent: 2 - - uid: 27665 + - uid: 27777 components: - type: Transform pos: -76.5,-19.5 parent: 2 - - uid: 27666 + - uid: 27778 components: - type: Transform pos: -76.5,-20.5 parent: 2 - - uid: 27667 + - uid: 27779 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 27668 + - uid: 27780 components: - type: Transform pos: -63.5,-3.5 parent: 2 - - uid: 27669 + - uid: 27781 components: - type: Transform pos: -64.5,-3.5 parent: 2 - - uid: 27670 + - uid: 27782 components: - type: Transform pos: -65.5,-3.5 parent: 2 - - uid: 27671 + - uid: 27783 components: - type: Transform pos: -58.5,-3.5 parent: 2 - - uid: 27672 + - uid: 27784 components: - type: Transform pos: -75.5,-24.5 parent: 2 - - uid: 27673 + - uid: 27785 components: - type: Transform pos: -75.5,-27.5 parent: 2 - - uid: 27674 + - uid: 27786 components: - type: Transform pos: -75.5,-26.5 parent: 2 - - uid: 27675 + - uid: 27787 components: - type: Transform pos: -76.5,-26.5 parent: 2 - - uid: 27676 + - uid: 27788 components: - type: Transform pos: -45.5,-31.5 parent: 2 - - uid: 27677 + - uid: 27789 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 - - uid: 27678 + - uid: 27790 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 - - uid: 27679 + - uid: 27791 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 - - uid: 27680 + - uid: 27792 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 - - uid: 27681 + - uid: 27793 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 - - uid: 27682 + - uid: 27794 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 - - uid: 27683 + - uid: 27795 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 - - uid: 27684 + - uid: 27796 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 - - uid: 27685 + - uid: 27797 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 - - uid: 27686 + - uid: 27798 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 - - uid: 27687 + - uid: 27799 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 - - uid: 27688 + - uid: 27800 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 - - uid: 27689 + - uid: 27801 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 - - uid: 27690 + - uid: 27802 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 - - uid: 27691 + - uid: 27803 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 - - uid: 27692 + - uid: 27804 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 - - uid: 27693 + - uid: 27805 components: - type: Transform pos: -53.5,-46.5 parent: 2 - - uid: 27694 + - uid: 27806 components: - type: Transform pos: -53.5,-51.5 parent: 2 - - uid: 27695 + - uid: 27807 components: - type: Transform pos: -54.5,-51.5 parent: 2 - - uid: 27696 + - uid: 27808 components: - type: Transform pos: -54.5,-46.5 parent: 2 - - uid: 27697 + - uid: 27809 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 - - uid: 27698 + - uid: 27810 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 - - uid: 27699 + - uid: 27811 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 - - uid: 27700 + - uid: 27812 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 - - uid: 27701 + - uid: 27813 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 - - uid: 27702 + - uid: 27814 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 - - uid: 27703 + - uid: 27815 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 - - uid: 27704 + - uid: 27816 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 - - uid: 27705 + - uid: 27817 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 - - uid: 27706 + - uid: 27818 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 - - uid: 27707 + - uid: 27819 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 - - uid: 27708 + - uid: 27820 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 - - uid: 27709 + - uid: 27821 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 - - uid: 27710 + - uid: 27822 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 - - uid: 27711 + - uid: 27823 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 - - uid: 27712 + - uid: 27824 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 - - uid: 27713 + - uid: 27825 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 - - uid: 27714 + - uid: 27826 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 - - uid: 27715 + - uid: 27827 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 - - uid: 27716 + - uid: 27828 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 - - uid: 27717 + - uid: 27829 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 - - uid: 27718 + - uid: 27830 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 - - uid: 27719 + - uid: 27831 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 - - uid: 27720 + - uid: 27832 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 - - uid: 27721 + - uid: 27833 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 - - uid: 27722 + - uid: 27834 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 - - uid: 27723 + - uid: 27835 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 - - uid: 27724 + - uid: 27836 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 - - uid: 27725 + - uid: 27837 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 - - uid: 27726 + - uid: 27838 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 - - uid: 27727 + - uid: 27839 components: - type: Transform pos: -45.5,-41.5 parent: 2 - - uid: 27728 + - uid: 27840 components: - type: Transform pos: -57.5,-70.5 parent: 2 - - uid: 27729 + - uid: 27841 components: - type: Transform pos: -57.5,-72.5 parent: 2 - - uid: 27730 + - uid: 27842 components: - type: Transform pos: -57.5,-74.5 parent: 2 - - uid: 27731 + - uid: 27843 components: - type: Transform pos: -57.5,-78.5 parent: 2 - - uid: 27732 + - uid: 27844 components: - type: Transform pos: -57.5,-80.5 parent: 2 - - uid: 27733 + - uid: 27845 components: - type: Transform pos: -57.5,-82.5 parent: 2 - - uid: 27734 + - uid: 27846 components: - type: Transform pos: -56.5,-67.5 parent: 2 - - uid: 27735 + - uid: 27847 components: - type: Transform pos: -57.5,-67.5 parent: 2 - - uid: 27736 + - uid: 27848 components: - type: Transform pos: -57.5,-68.5 parent: 2 - - uid: 27737 + - uid: 27849 components: - type: Transform pos: -57.5,-69.5 parent: 2 - - uid: 27738 + - uid: 27850 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 - - uid: 27739 + - uid: 27851 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 - - uid: 27740 + - uid: 27852 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 27741 + - uid: 27853 components: - type: Transform pos: -31.5,-58.5 parent: 2 - - uid: 27742 + - uid: 27854 components: - type: Transform pos: -30.5,-58.5 parent: 2 - - uid: 27743 + - uid: 27855 components: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 27744 + - uid: 27856 components: - type: Transform pos: -30.5,-60.5 parent: 2 - - uid: 27745 + - uid: 27857 components: - type: Transform pos: -31.5,-60.5 parent: 2 - - uid: 27746 + - uid: 27858 components: - type: Transform pos: -31.5,-61.5 parent: 2 - - uid: 27747 + - uid: 27859 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 27748 + - uid: 27860 components: - type: Transform pos: -33.5,-61.5 parent: 2 - - uid: 27749 + - uid: 27861 components: - type: Transform pos: -33.5,-62.5 parent: 2 - - uid: 27750 + - uid: 27862 components: - type: Transform pos: -34.5,-62.5 parent: 2 - - uid: 27751 + - uid: 27863 components: - type: Transform pos: -35.5,-62.5 parent: 2 - - uid: 27752 + - uid: 27864 components: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 27753 + - uid: 27865 components: - type: Transform pos: -37.5,-62.5 parent: 2 - - uid: 27754 + - uid: 27866 components: - type: Transform pos: -38.5,-62.5 parent: 2 - - uid: 27755 + - uid: 27867 components: - type: Transform pos: -39.5,-62.5 parent: 2 - - uid: 27756 + - uid: 27868 components: - type: Transform pos: -42.5,-62.5 parent: 2 - - uid: 27757 + - uid: 27869 components: - type: Transform pos: -43.5,-62.5 parent: 2 - - uid: 27758 + - uid: 27870 components: - type: Transform pos: -44.5,-62.5 parent: 2 - - uid: 27759 + - uid: 27871 components: - type: Transform pos: -45.5,-62.5 parent: 2 - - uid: 27760 + - uid: 27872 components: - type: Transform pos: -46.5,-62.5 parent: 2 - - uid: 27761 + - uid: 27873 components: - type: Transform pos: -47.5,-62.5 parent: 2 - - uid: 27762 + - uid: 27874 components: - type: Transform pos: -48.5,-62.5 parent: 2 - - uid: 27763 + - uid: 27875 components: - type: Transform pos: -49.5,-62.5 parent: 2 - - uid: 27764 + - uid: 27876 components: - type: Transform pos: -50.5,-61.5 parent: 2 - - uid: 27765 + - uid: 27877 components: - type: Transform pos: -49.5,-61.5 parent: 2 - - uid: 27766 + - uid: 27878 components: - type: Transform pos: -59.5,-78.5 parent: 2 - - uid: 27767 + - uid: 27879 components: - type: Transform pos: -50.5,-77.5 parent: 2 - - uid: 27768 + - uid: 27880 components: - type: Transform pos: -50.5,-78.5 parent: 2 - - uid: 27769 + - uid: 27881 components: - type: Transform pos: -57.5,-83.5 parent: 2 - - uid: 27770 + - uid: 27882 components: - type: Transform pos: -56.5,-83.5 parent: 2 - - uid: 27771 + - uid: 27883 components: - type: Transform pos: -52.5,-83.5 parent: 2 - - uid: 27772 + - uid: 27884 components: - type: Transform pos: -52.5,-82.5 parent: 2 - - uid: 27773 + - uid: 27885 components: - type: Transform pos: -52.5,-81.5 parent: 2 - - uid: 27774 + - uid: 27886 components: - type: Transform pos: -51.5,-81.5 parent: 2 - - uid: 27775 + - uid: 27887 components: - type: Transform pos: -51.5,-80.5 parent: 2 - - uid: 27776 + - uid: 27888 components: - type: Transform pos: -50.5,-80.5 parent: 2 - - uid: 27777 + - uid: 27889 components: - type: Transform pos: -50.5,-79.5 parent: 2 - - uid: 27778 + - uid: 27890 components: - type: Transform pos: -59.5,-80.5 parent: 2 - - uid: 27779 + - uid: 27891 components: - type: Transform pos: -59.5,-82.5 parent: 2 - - uid: 27780 + - uid: 27892 components: - type: Transform pos: -58.5,-82.5 parent: 2 - - uid: 27781 + - uid: 27893 components: - type: Transform pos: -58.5,-78.5 parent: 2 - - uid: 27782 + - uid: 27894 components: - type: Transform pos: -58.5,-74.5 parent: 2 - - uid: 27783 + - uid: 27895 components: - type: Transform pos: -59.5,-74.5 parent: 2 - - uid: 27784 + - uid: 27896 components: - type: Transform pos: -59.5,-72.5 parent: 2 - - uid: 27785 + - uid: 27897 components: - type: Transform pos: -58.5,-70.5 parent: 2 - - uid: 27786 + - uid: 27898 components: - type: Transform pos: -59.5,-70.5 parent: 2 - - uid: 27787 + - uid: 27899 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 - - uid: 27788 + - uid: 27900 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 - - uid: 27789 + - uid: 27901 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 - - uid: 27790 + - uid: 27902 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 - - uid: 27791 + - uid: 27903 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 - - uid: 27792 + - uid: 27904 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 - - uid: 27793 + - uid: 27905 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 - - uid: 27794 + - uid: 27906 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 - - uid: 27795 + - uid: 27907 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 - - uid: 27796 + - uid: 27908 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 - - uid: 27797 + - uid: 27909 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 - - uid: 27798 + - uid: 27910 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 - - uid: 27799 + - uid: 27911 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 - - uid: 27800 + - uid: 27912 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 - - uid: 27801 + - uid: 27913 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 - - uid: 27802 + - uid: 27914 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 - - uid: 27803 + - uid: 27915 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 - - uid: 27804 + - uid: 27916 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 - - uid: 27805 + - uid: 27917 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 - - uid: 27806 + - uid: 27918 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 - - uid: 27807 + - uid: 27919 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 - - uid: 27808 + - uid: 27920 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 - - uid: 27809 + - uid: 27921 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 - - uid: 27810 + - uid: 27922 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 - - uid: 27811 + - uid: 27923 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 - - uid: 27812 + - uid: 27924 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 - - uid: 27813 + - uid: 27925 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 - - uid: 27814 + - uid: 27926 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 27815 + - uid: 27927 components: - type: Transform pos: -39.5,-86.5 parent: 2 - - uid: 27816 + - uid: 27928 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 - - uid: 27817 + - uid: 27929 components: - type: Transform pos: -17.5,-50.5 parent: 2 - - uid: 27818 + - uid: 27930 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 - - uid: 27819 + - uid: 27931 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 - - uid: 27820 + - uid: 27932 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 - - uid: 27821 + - uid: 27933 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 27822 + - uid: 27934 components: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 27823 + - uid: 27935 components: - type: Transform pos: 27.5,-30.5 parent: 2 - - uid: 27824 + - uid: 27936 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 - - uid: 27825 + - uid: 27937 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 - - uid: 27826 + - uid: 27938 components: - type: Transform pos: 27.5,-31.5 parent: 2 - - uid: 27827 + - uid: 27939 components: - type: Transform pos: 28.5,-31.5 parent: 2 - - uid: 27828 + - uid: 27940 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 - - uid: 27829 + - uid: 27941 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 - - uid: 27830 + - uid: 27942 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 27831 + - uid: 27943 components: - type: Transform pos: -53.5,-50.5 parent: 2 - - uid: 27832 + - uid: 27944 components: - type: Transform pos: -53.5,-47.5 parent: 2 - - uid: 27833 + - uid: 27945 components: - type: Transform pos: -53.5,-48.5 parent: 2 - - uid: 27834 + - uid: 27946 components: - type: Transform pos: -53.5,-49.5 parent: 2 - - uid: 27835 + - uid: 27947 components: - type: Transform pos: -59.5,-53.5 parent: 2 - - uid: 27836 + - uid: 27948 components: - type: Transform pos: -60.5,-53.5 parent: 2 - - uid: 27837 + - uid: 27949 components: - type: Transform pos: -59.5,-55.5 parent: 2 - - uid: 27838 + - uid: 27950 components: - type: Transform pos: -60.5,-55.5 parent: 2 - - uid: 27839 + - uid: 27951 components: - type: Transform pos: 25.5,-27.5 parent: 2 - - uid: 27840 + - uid: 27952 components: - type: Transform pos: 68.5,12.5 parent: 2 - - uid: 27841 + - uid: 27953 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 - - uid: 27842 + - uid: 27954 components: - type: Transform pos: 5.5,34.5 parent: 2 - - uid: 27843 + - uid: 27955 components: - type: Transform pos: 9.5,35.5 parent: 2 - - uid: 27844 + - uid: 27956 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 27845 + - uid: 27957 components: - type: Transform pos: -3.5,26.5 parent: 2 - - uid: 27846 + - uid: 27958 components: - type: Transform pos: -7.5,33.5 parent: 2 - - uid: 27847 + - uid: 27959 components: - type: Transform pos: -6.5,33.5 parent: 2 - - uid: 27848 + - uid: 27960 components: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 27849 + - uid: 27961 components: - type: Transform pos: -16.5,53.5 parent: 2 - - uid: 27850 + - uid: 27962 components: - type: Transform pos: -23.5,72.5 parent: 2 - - uid: 27851 + - uid: 27963 components: - type: Transform pos: -7.5,30.5 parent: 2 - - uid: 27852 + - uid: 27964 components: - type: Transform pos: -7.5,29.5 parent: 2 - - uid: 27853 + - uid: 27965 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 27854 + - uid: 27966 components: - type: Transform pos: -7.5,31.5 parent: 2 - - uid: 27855 + - uid: 27967 components: - type: Transform pos: -6.5,31.5 parent: 2 - - uid: 27856 + - uid: 27968 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 27857 + - uid: 27969 components: - type: Transform pos: -4.5,31.5 parent: 2 - - uid: 27858 + - uid: 27970 components: - type: Transform pos: -4.5,30.5 parent: 2 - - uid: 27859 + - uid: 27971 components: - type: Transform pos: -4.5,29.5 parent: 2 - - uid: 27860 + - uid: 27972 components: - type: Transform pos: -3.5,29.5 parent: 2 - - uid: 27861 + - uid: 27973 components: - type: Transform pos: -1.5,29.5 parent: 2 - - uid: 27862 + - uid: 27974 components: - type: Transform pos: -0.5,29.5 parent: 2 - - uid: 27863 + - uid: 27975 components: - type: Transform pos: 0.5,29.5 parent: 2 - - uid: 27864 + - uid: 27976 components: - type: Transform pos: 1.5,29.5 parent: 2 - - uid: 27865 + - uid: 27977 components: - type: Transform pos: 1.5,30.5 parent: 2 - - uid: 27866 + - uid: 27978 components: - type: Transform pos: 1.5,31.5 parent: 2 - - uid: 27867 + - uid: 27979 components: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 27868 + - uid: 27980 components: - type: Transform pos: 2.5,33.5 parent: 2 - - uid: 27869 + - uid: 27981 components: - type: Transform pos: 1.5,33.5 parent: 2 - - uid: 27870 + - uid: 27982 components: - type: Transform pos: 1.5,34.5 parent: 2 - - uid: 27871 + - uid: 27983 components: - type: Transform pos: 1.5,35.5 parent: 2 - - uid: 27872 + - uid: 27984 components: - type: Transform pos: 0.5,35.5 parent: 2 - - uid: 27873 + - uid: 27985 components: - type: Transform pos: -3.5,35.5 parent: 2 - - uid: 27874 + - uid: 27986 components: - type: Transform pos: -4.5,35.5 parent: 2 - - uid: 27875 + - uid: 27987 components: - type: Transform pos: -4.5,34.5 parent: 2 - - uid: 27876 + - uid: 27988 components: - type: Transform pos: -4.5,33.5 parent: 2 - - uid: 27877 + - uid: 27989 components: - type: Transform pos: -23.5,58.5 parent: 2 - - uid: 27878 + - uid: 27990 components: - type: Transform pos: -20.5,72.5 parent: 2 - - uid: 27879 + - uid: 27991 components: - type: Transform pos: -23.5,57.5 parent: 2 - - uid: 27880 + - uid: 27992 components: - type: Transform pos: 49.5,41.5 parent: 2 - - uid: 27881 + - uid: 27993 components: - type: Transform pos: 12.5,31.5 parent: 2 - - uid: 27882 + - uid: 27994 components: - type: Transform pos: 6.5,29.5 parent: 2 - - uid: 27883 + - uid: 27995 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 27884 + - uid: 27996 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 27885 + - uid: 27997 components: - type: Transform pos: -5.5,24.5 parent: 2 - - uid: 27886 + - uid: 27998 components: - type: Transform pos: -6.5,24.5 parent: 2 - - uid: 27887 + - uid: 27999 components: - type: Transform pos: -7.5,24.5 parent: 2 - - uid: 27888 + - uid: 28000 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 27889 + - uid: 28001 components: - type: Transform pos: -34.5,27.5 parent: 2 - - uid: 27890 + - uid: 28002 components: - type: Transform pos: -35.5,27.5 parent: 2 - - uid: 27891 + - uid: 28003 components: - type: Transform pos: -35.5,28.5 parent: 2 - - uid: 27892 + - uid: 28004 components: - type: Transform pos: -35.5,26.5 parent: 2 - - uid: 27893 + - uid: 28005 components: - type: Transform pos: -49.5,27.5 parent: 2 - - uid: 27894 + - uid: 28006 components: - type: Transform pos: -49.5,24.5 parent: 2 - - uid: 27895 + - uid: 28007 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 - - uid: 27896 + - uid: 28008 components: - type: Transform pos: -49.5,25.5 parent: 2 - - uid: 27897 + - uid: 28009 components: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 27898 + - uid: 28010 components: - type: Transform pos: -49.5,17.5 parent: 2 - - uid: 27899 + - uid: 28011 components: - type: Transform pos: -49.5,18.5 parent: 2 - - uid: 27900 + - uid: 28012 components: - type: Transform pos: -51.5,18.5 parent: 2 - - uid: 27901 + - uid: 28013 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 27902 + - uid: 28014 components: - type: Transform pos: 4.5,34.5 parent: 2 - - uid: 27903 + - uid: 28015 components: - type: Transform pos: 5.5,29.5 parent: 2 - - uid: 27904 + - uid: 28016 components: - type: Transform pos: 12.5,33.5 parent: 2 - - uid: 27905 + - uid: 28017 components: - type: Transform pos: -3.5,28.5 parent: 2 - - uid: 27906 + - uid: 28018 components: - type: Transform pos: 58.5,41.5 parent: 2 - - uid: 27907 + - uid: 28019 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 - - uid: 27908 + - uid: 28020 components: - type: Transform pos: 54.5,51.5 parent: 2 - - uid: 27909 + - uid: 28021 components: - type: Transform pos: 57.5,60.5 parent: 2 - - uid: 27910 + - uid: 28022 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 - - uid: 27911 + - uid: 28023 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 - - uid: 27912 + - uid: 28024 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 27913 + - uid: 28025 components: - type: Transform pos: -35.5,29.5 parent: 2 - - uid: 27914 + - uid: 28026 components: - type: Transform pos: -29.5,29.5 parent: 2 - - uid: 27915 + - uid: 28027 components: - type: Transform pos: -29.5,30.5 parent: 2 - - uid: 27916 + - uid: 28028 components: - type: Transform pos: -29.5,31.5 parent: 2 - - uid: 27917 + - uid: 28029 components: - type: Transform pos: -29.5,32.5 parent: 2 - - uid: 27918 + - uid: 28030 components: - type: Transform pos: -35.5,30.5 parent: 2 - - uid: 27919 + - uid: 28031 components: - type: Transform pos: -35.5,31.5 parent: 2 - - uid: 27920 + - uid: 28032 components: - type: Transform pos: -35.5,32.5 parent: 2 - - uid: 27921 + - uid: 28033 components: - type: Transform pos: -34.5,32.5 parent: 2 - - uid: 27922 + - uid: 28034 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 27923 + - uid: 28035 components: - type: Transform pos: -49.5,32.5 parent: 2 - - uid: 27924 + - uid: 28036 components: - type: Transform pos: -50.5,32.5 parent: 2 - - uid: 27925 + - uid: 28037 components: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 27926 + - uid: 28038 components: - type: Transform pos: -52.5,32.5 parent: 2 - - uid: 27927 + - uid: 28039 components: - type: Transform pos: -49.5,28.5 parent: 2 - - uid: 27928 + - uid: 28040 components: - type: Transform pos: -50.5,28.5 parent: 2 - - uid: 27929 + - uid: 28041 components: - type: Transform pos: -51.5,28.5 parent: 2 - - uid: 27930 + - uid: 28042 components: - type: Transform pos: -52.5,28.5 parent: 2 - - uid: 27931 + - uid: 28043 components: - type: Transform pos: -49.5,36.5 parent: 2 - - uid: 27932 + - uid: 28044 components: - type: Transform pos: -50.5,36.5 parent: 2 - - uid: 27933 + - uid: 28045 components: - type: Transform pos: -51.5,36.5 parent: 2 - - uid: 27934 + - uid: 28046 components: - type: Transform pos: -52.5,36.5 parent: 2 - - uid: 27935 + - uid: 28047 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 - - uid: 27936 + - uid: 28048 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 - - uid: 27937 + - uid: 28049 components: - type: Transform pos: -49.5,37.5 parent: 2 - - uid: 27938 + - uid: 28050 components: - type: Transform pos: -48.5,37.5 parent: 2 - - uid: 27939 + - uid: 28051 components: - type: Transform pos: -35.5,34.5 parent: 2 - - uid: 27940 + - uid: 28052 components: - type: Transform pos: -35.5,33.5 parent: 2 - - uid: 27941 + - uid: 28053 components: - type: Transform pos: 49.5,43.5 parent: 2 - - uid: 27942 + - uid: 28054 components: - type: Transform pos: 49.5,48.5 parent: 2 - - uid: 27943 + - uid: 28055 components: - type: Transform pos: 59.5,49.5 parent: 2 - - uid: 27944 + - uid: 28056 components: - type: Transform pos: 49.5,49.5 parent: 2 - - uid: 27945 + - uid: 28057 components: - type: Transform pos: 59.5,44.5 parent: 2 - - uid: 27946 + - uid: 28058 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 - - uid: 27947 + - uid: 28059 components: - type: Transform pos: 49.5,42.5 parent: 2 - - uid: 27948 + - uid: 28060 components: - type: Transform pos: 59.5,42.5 parent: 2 - - uid: 27949 + - uid: 28061 components: - type: Transform pos: 66.5,-31.5 parent: 2 - - uid: 27950 + - uid: 28062 components: - type: Transform pos: 66.5,-32.5 parent: 2 - - uid: 27951 + - uid: 28063 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 - - uid: 27952 + - uid: 28064 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 - - uid: 27953 + - uid: 28065 components: - type: Transform pos: -57.5,-0.5 parent: 2 - - uid: 27954 + - uid: 28066 components: - type: Transform pos: -56.5,-0.5 parent: 2 - - uid: 27955 + - uid: 28067 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 27956 + - uid: 28068 components: - type: Transform pos: -57.5,-2.5 parent: 2 - - uid: 27957 + - uid: 28069 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 - - uid: 27958 + - uid: 28070 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 - - uid: 27959 + - uid: 28071 components: - type: Transform pos: -55.5,1.5 parent: 2 - - uid: 27960 + - uid: 28072 components: - type: Transform pos: -55.5,0.5 parent: 2 - - uid: 27961 + - uid: 28073 components: - type: Transform pos: -50.5,16.5 parent: 2 - - uid: 27962 + - uid: 28074 components: - type: Transform pos: 58.5,48.5 parent: 2 - - uid: 27963 + - uid: 28075 components: - type: Transform pos: 56.5,44.5 parent: 2 - - uid: 27964 + - uid: 28076 components: - type: Transform pos: 50.5,48.5 parent: 2 - - uid: 27965 + - uid: 28077 components: - type: Transform pos: 54.5,46.5 parent: 2 - - uid: 27966 + - uid: 28078 components: - type: Transform pos: 54.5,48.5 parent: 2 - - uid: 27967 + - uid: 28079 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 - - uid: 27968 + - uid: 28080 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 - - uid: 27969 + - uid: 28081 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 - - uid: 27970 + - uid: 28082 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 - - uid: 27971 + - uid: 28083 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 - - uid: 27972 + - uid: 28084 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 - - uid: 27973 + - uid: 28085 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 - - uid: 27974 + - uid: 28086 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 - - uid: 27975 + - uid: 28087 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 - - uid: 27976 + - uid: 28088 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 - - uid: 27977 + - uid: 28089 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 - - uid: 27978 + - uid: 28090 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 - - uid: 27979 + - uid: 28091 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 - - uid: 27980 + - uid: 28092 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 - - uid: 27981 + - uid: 28093 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 - - uid: 27982 + - uid: 28094 components: - type: Transform pos: 56.5,46.5 parent: 2 - - uid: 27983 + - uid: 28095 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 - - uid: 27984 + - uid: 28096 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 27985 + - uid: 28097 components: - type: Transform pos: 58.5,44.5 parent: 2 - - uid: 27986 + - uid: 28098 components: - type: Transform pos: 58.5,46.5 parent: 2 - - uid: 27987 + - uid: 28099 components: - type: Transform pos: 50.5,44.5 parent: 2 - - uid: 27988 + - uid: 28100 components: - type: Transform pos: 52.5,44.5 parent: 2 - - uid: 27989 + - uid: 28101 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 - - uid: 27990 + - uid: 28102 components: - type: Transform pos: 52.5,46.5 parent: 2 - - uid: 27991 + - uid: 28103 components: - type: Transform pos: 50.5,46.5 parent: 2 - - uid: 27992 + - uid: 28104 components: - type: Transform pos: 56.5,48.5 parent: 2 - - uid: 27993 + - uid: 28105 components: - type: Transform pos: 54.5,44.5 parent: 2 - - uid: 27994 + - uid: 28106 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 - - uid: 27995 + - uid: 28107 components: - type: Transform pos: 68.5,-16.5 parent: 2 - - uid: 27996 + - uid: 28108 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 - - uid: 27997 + - uid: 28109 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 - - uid: 27998 + - uid: 28110 components: - type: Transform pos: 52.5,48.5 parent: 2 - - uid: 27999 + - uid: 28111 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 - - uid: 28000 + - uid: 28112 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 - - uid: 28001 + - uid: 28113 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 - - uid: 28002 + - uid: 28114 components: - type: Transform pos: 13.5,-71.5 parent: 2 - - uid: 28003 + - uid: 28115 components: - type: Transform pos: 24.5,-26.5 parent: 2 - - uid: 28004 + - uid: 28116 components: - type: Transform pos: 22.5,-26.5 parent: 2 - - uid: 28005 + - uid: 28117 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 - - uid: 28006 + - uid: 28118 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 - - uid: 28007 + - uid: 28119 components: - type: Transform pos: 64.5,-61.5 parent: 2 - - uid: 28008 + - uid: 28120 components: - type: Transform pos: 27.5,-33.5 parent: 2 - - uid: 28009 + - uid: 28121 components: - type: Transform pos: -47.5,52.5 parent: 2 - - uid: 28010 + - uid: 28122 components: - type: Transform pos: -41.5,52.5 parent: 2 - - uid: 28011 + - uid: 28123 components: - type: Transform pos: 52.5,-25.5 parent: 2 - - uid: 28012 + - uid: 28124 components: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 28013 + - uid: 28125 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 - - uid: 28014 + - uid: 28126 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 - - uid: 28015 + - uid: 28127 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 - - uid: 28016 + - uid: 28128 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 - - uid: 28017 + - uid: 28129 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 - - uid: 28018 + - uid: 28130 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 - - uid: 28019 + - uid: 28131 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 - - uid: 28020 + - uid: 28132 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 - - uid: 28021 + - uid: 28133 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 - - uid: 28022 + - uid: 28134 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 - - uid: 28023 + - uid: 28135 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 - - uid: 28024 + - uid: 28136 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 - - uid: 28025 + - uid: 28137 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 - - uid: 28026 + - uid: 28138 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 - - uid: 28027 + - uid: 28139 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 - - uid: 28028 + - uid: 28140 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 - - uid: 28029 + - uid: 28141 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 - - uid: 28030 + - uid: 28142 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 - - uid: 28031 + - uid: 28143 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 - - uid: 28032 + - uid: 28144 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 - - uid: 28033 + - uid: 28145 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 - - uid: 28034 + - uid: 28146 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 - - uid: 28035 + - uid: 28147 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 - - uid: 28036 + - uid: 28148 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 - - uid: 28037 + - uid: 28149 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 - - uid: 28038 + - uid: 28150 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 - - uid: 28039 + - uid: 28151 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 - - uid: 28040 + - uid: 28152 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 - - uid: 28041 + - uid: 28153 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 - - uid: 28042 + - uid: 28154 components: - type: Transform pos: 34.5,21.5 parent: 2 - - uid: 28043 + - uid: 28155 components: - type: Transform pos: 67.5,-67.5 parent: 2 - - uid: 28044 + - uid: 28156 components: - type: Transform pos: 69.5,-69.5 parent: 2 - - uid: 28045 + - uid: 28157 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 28046 + - uid: 28158 components: - type: Transform pos: -78.5,-5.5 parent: 2 - - uid: 28047 + - uid: 28159 components: - type: Transform pos: -71.5,-2.5 parent: 2 - - uid: 28048 + - uid: 28160 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 28049 + - uid: 28161 components: - type: Transform pos: -64.5,-47.5 parent: 2 - - uid: 28050 + - uid: 28162 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 28051 + - uid: 28163 components: - type: Transform pos: 32.5,39.5 parent: 2 - - uid: 28052 + - uid: 28164 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 28053 + - uid: 28165 components: - type: Transform pos: 73.5,-40.5 parent: 2 - - uid: 28054 + - uid: 28166 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 28055 + - uid: 28167 components: - type: Transform pos: 77.5,-48.5 parent: 2 - - uid: 28056 + - uid: 28168 components: - type: Transform pos: 27.5,-26.5 parent: 2 - - uid: 28057 + - uid: 28169 components: - type: Transform pos: 59.5,50.5 parent: 2 - - uid: 28058 + - uid: 28170 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 28059 + - uid: 28171 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 - - uid: 28060 + - uid: 28172 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 - - uid: 28061 + - uid: 28173 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 - - uid: 28062 + - uid: 28174 components: - type: Transform pos: 48.5,44.5 parent: 2 - - uid: 28063 + - uid: 28175 components: - type: Transform pos: 47.5,44.5 parent: 2 - - uid: 28064 + - uid: 28176 components: - type: Transform pos: 47.5,43.5 parent: 2 - - uid: 28065 + - uid: 28177 components: - type: Transform pos: 45.5,43.5 parent: 2 - - uid: 28066 + - uid: 28178 components: - type: Transform pos: 44.5,43.5 parent: 2 - - uid: 28067 + - uid: 28179 components: - type: Transform pos: 59.5,51.5 parent: 2 - - uid: 28068 + - uid: 28180 components: - type: Transform pos: 59.5,52.5 parent: 2 - - uid: 28069 + - uid: 28181 components: - type: Transform pos: 59.5,53.5 parent: 2 - - uid: 28070 + - uid: 28182 components: - type: Transform pos: 58.5,53.5 parent: 2 - - uid: 28071 + - uid: 28183 components: - type: Transform pos: 57.5,53.5 parent: 2 - - uid: 28072 + - uid: 28184 components: - type: Transform pos: 51.5,53.5 parent: 2 - - uid: 28073 + - uid: 28185 components: - type: Transform pos: 50.5,53.5 parent: 2 - - uid: 28074 + - uid: 28186 components: - type: Transform pos: 49.5,53.5 parent: 2 - - uid: 28075 + - uid: 28187 components: - type: Transform pos: 49.5,52.5 parent: 2 - - uid: 28076 + - uid: 28188 components: - type: Transform pos: 49.5,51.5 parent: 2 - - uid: 28077 + - uid: 28189 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 - - uid: 28078 + - uid: 28190 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 - - uid: 28079 + - uid: 28191 components: - type: Transform pos: 61.5,30.5 parent: 2 - - uid: 28080 + - uid: 28192 components: - type: Transform pos: 59.5,31.5 parent: 2 - - uid: 28081 + - uid: 28193 components: - type: Transform pos: 59.5,34.5 parent: 2 - - uid: 28082 + - uid: 28194 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 - - uid: 28083 + - uid: 28195 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 - - uid: 28084 + - uid: 28196 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 - - uid: 28085 + - uid: 28197 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 - - uid: 28086 + - uid: 28198 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 - - uid: 28087 + - uid: 28199 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 - - uid: 28088 + - uid: 28200 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 - - uid: 28089 + - uid: 28201 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 - - uid: 28090 + - uid: 28202 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 - - uid: 28091 + - uid: 28203 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 - - uid: 28092 + - uid: 28204 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 - - uid: 28093 + - uid: 28205 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 - - uid: 28094 + - uid: 28206 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 - - uid: 28095 + - uid: 28207 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 - - uid: 28096 + - uid: 28208 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,60.5 parent: 2 - - uid: 28097 + - uid: 28209 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 - - uid: 28098 + - uid: 28210 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 28099 + - uid: 28211 components: - type: Transform pos: -16.5,59.5 parent: 2 - - uid: 28100 + - uid: 28212 components: - type: Transform pos: -16.5,58.5 parent: 2 - - uid: 28101 + - uid: 28213 components: - type: Transform pos: -23.5,59.5 parent: 2 - - uid: 28102 + - uid: 28214 components: - type: Transform pos: -23.5,64.5 parent: 2 - - uid: 28103 + - uid: 28215 components: - type: Transform pos: -23.5,65.5 parent: 2 - - uid: 28104 + - uid: 28216 components: - type: Transform pos: -16.5,54.5 parent: 2 - - uid: 28105 + - uid: 28217 components: - type: Transform pos: -14.5,52.5 parent: 2 - - uid: 28106 + - uid: 28218 components: - type: Transform pos: -14.5,53.5 parent: 2 - - uid: 28107 + - uid: 28219 components: - type: Transform pos: -16.5,52.5 parent: 2 - - uid: 28108 + - uid: 28220 components: - type: Transform pos: -15.5,52.5 parent: 2 - - uid: 28109 + - uid: 28221 components: - type: Transform pos: -23.5,71.5 parent: 2 - - uid: 28110 + - uid: 28222 components: - type: Transform pos: -23.5,70.5 parent: 2 - - uid: 28111 + - uid: 28223 components: - type: Transform pos: -23.5,69.5 parent: 2 - - uid: 28112 + - uid: 28224 components: - type: Transform pos: -20.5,71.5 parent: 2 - - uid: 28113 + - uid: 28225 components: - type: Transform pos: -20.5,70.5 parent: 2 - - uid: 28114 + - uid: 28226 components: - type: Transform pos: -16.5,69.5 parent: 2 - - uid: 28115 + - uid: 28227 components: - type: Transform pos: -23.5,60.5 parent: 2 - - uid: 28116 + - uid: 28228 components: - type: Transform pos: -23.5,74.5 parent: 2 - - uid: 28117 + - uid: 28229 components: - type: Transform pos: -23.5,75.5 parent: 2 - - uid: 28118 + - uid: 28230 components: - type: Transform pos: -20.5,75.5 parent: 2 - - uid: 28119 + - uid: 28231 components: - type: Transform pos: -20.5,74.5 parent: 2 - - uid: 28120 + - uid: 28232 components: - type: Transform pos: -15.5,59.5 parent: 2 - - uid: 28121 + - uid: 28233 components: - type: Transform pos: -14.5,59.5 parent: 2 - - uid: 28122 + - uid: 28234 components: - type: Transform pos: -11.5,74.5 parent: 2 - - uid: 28123 + - uid: 28235 components: - type: Transform pos: -11.5,75.5 parent: 2 - - uid: 28124 + - uid: 28236 components: - type: Transform pos: -14.5,75.5 parent: 2 - - uid: 28125 + - uid: 28237 components: - type: Transform pos: -14.5,74.5 parent: 2 - - uid: 28126 + - uid: 28238 components: - type: Transform pos: -14.5,57.5 parent: 2 - - uid: 28127 + - uid: 28239 components: - type: Transform pos: -16.5,57.5 parent: 2 - - uid: 28128 + - uid: 28240 components: - type: Transform pos: -14.5,54.5 parent: 2 - - uid: 28129 + - uid: 28241 components: - type: Transform pos: -23.5,67.5 parent: 2 - - uid: 28130 + - uid: 28242 components: - type: Transform pos: -23.5,68.5 parent: 2 - - uid: 28131 + - uid: 28243 components: - type: Transform pos: -16.5,70.5 parent: 2 - - uid: 28132 + - uid: 28244 components: - type: Transform pos: -11.5,66.5 parent: 2 - - uid: 28133 + - uid: 28245 components: - type: Transform pos: -23.5,66.5 parent: 2 - - uid: 28134 + - uid: 28246 components: - type: Transform pos: -18.5,69.5 parent: 2 - - uid: 28135 + - uid: 28247 components: - type: Transform pos: -11.5,65.5 parent: 2 - - uid: 28136 + - uid: 28248 components: - type: Transform pos: -11.5,64.5 parent: 2 - - uid: 28137 + - uid: 28249 components: - type: Transform pos: -10.5,63.5 parent: 2 - - uid: 28138 + - uid: 28250 components: - type: Transform pos: -14.5,70.5 parent: 2 - - uid: 28139 + - uid: 28251 components: - type: Transform pos: -14.5,72.5 parent: 2 - - uid: 28140 + - uid: 28252 components: - type: Transform pos: -11.5,72.5 parent: 2 - - uid: 28141 + - uid: 28253 components: - type: Transform pos: -11.5,71.5 parent: 2 - - uid: 28142 + - uid: 28254 components: - type: Transform pos: -11.5,70.5 parent: 2 - - uid: 28143 + - uid: 28255 components: - type: Transform pos: -14.5,69.5 parent: 2 - - uid: 28144 + - uid: 28256 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 - - uid: 28145 + - uid: 28257 components: - type: Transform pos: -14.5,71.5 parent: 2 - - uid: 28146 + - uid: 28258 components: - type: Transform pos: -18.5,70.5 parent: 2 - - uid: 28147 + - uid: 28259 components: - type: Transform pos: -20.5,69.5 parent: 2 - - uid: 28148 + - uid: 28260 components: - type: Transform pos: -20.5,68.5 parent: 2 - - uid: 28149 + - uid: 28261 components: - type: Transform pos: -19.5,68.5 parent: 2 - - uid: 28150 + - uid: 28262 components: - type: Transform pos: -14.5,68.5 parent: 2 - - uid: 28151 + - uid: 28263 components: - type: Transform pos: -15.5,68.5 parent: 2 - - uid: 28152 + - uid: 28264 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 28153 + - uid: 28265 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 - - uid: 28154 + - uid: 28266 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 - - uid: 28155 + - uid: 28267 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 - - uid: 28156 + - uid: 28268 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 - - uid: 28157 + - uid: 28269 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 - - uid: 28158 + - uid: 28270 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 - - uid: 28159 + - uid: 28271 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 - - uid: 28160 + - uid: 28272 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 - - uid: 28161 + - uid: 28273 components: - type: Transform pos: 60.5,30.5 parent: 2 - - uid: 28162 + - uid: 28274 components: - type: Transform pos: 9.5,-35.5 parent: 2 - - uid: 28163 + - uid: 28275 components: - type: Transform pos: 3.5,58.5 parent: 2 - - uid: 28164 + - uid: 28276 components: - type: Transform pos: 2.5,45.5 parent: 2 - - uid: 28165 + - uid: 28277 components: - type: Transform pos: 2.5,44.5 parent: 2 - - uid: 28166 + - uid: 28278 components: - type: Transform pos: 2.5,52.5 parent: 2 - - uid: 28167 + - uid: 28279 components: - type: Transform pos: 2.5,53.5 parent: 2 - - uid: 28168 + - uid: 28280 components: - type: Transform pos: 2.5,54.5 parent: 2 - - uid: 28169 + - uid: 28281 components: - type: Transform pos: 2.5,55.5 parent: 2 - - uid: 28170 + - uid: 28282 components: - type: Transform pos: 3.5,56.5 parent: 2 - - uid: 28171 + - uid: 28283 components: - type: Transform pos: -7.5,43.5 parent: 2 - - uid: 28172 + - uid: 28284 components: - type: Transform pos: 3.5,59.5 parent: 2 - - uid: 28173 + - uid: 28285 components: - type: Transform pos: 2.5,56.5 parent: 2 - - uid: 28174 + - uid: 28286 components: - type: Transform pos: -4.5,42.5 parent: 2 - - uid: 28175 + - uid: 28287 components: - type: Transform pos: -5.5,42.5 parent: 2 - - uid: 28176 + - uid: 28288 components: - type: Transform pos: -0.5,42.5 parent: 2 - - uid: 28177 + - uid: 28289 components: - type: Transform pos: 0.5,42.5 parent: 2 - - uid: 28178 + - uid: 28290 components: - type: Transform pos: 2.5,60.5 parent: 2 - - uid: 28179 + - uid: 28291 components: - type: Transform pos: 5.5,49.5 parent: 2 - - uid: 28180 + - uid: 28292 components: - type: Transform pos: 10.5,50.5 parent: 2 - - uid: 28181 + - uid: 28293 components: - type: Transform pos: 10.5,46.5 parent: 2 - - uid: 28182 + - uid: 28294 components: - type: Transform pos: 34.5,49.5 parent: 2 - - uid: 28183 + - uid: 28295 components: - type: Transform pos: 35.5,49.5 parent: 2 - - uid: 28184 + - uid: 28296 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 - - uid: 28185 + - uid: 28297 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 - - uid: 28186 + - uid: 28298 components: - type: Transform pos: 59.5,35.5 parent: 2 - - uid: 28187 + - uid: 28299 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 - - uid: 28188 + - uid: 28300 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 - - uid: 28189 + - uid: 28301 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 - - uid: 28190 + - uid: 28302 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 - - uid: 28191 + - uid: 28303 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 - - uid: 28192 + - uid: 28304 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 - - uid: 28193 + - uid: 28305 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 - - uid: 28194 + - uid: 28306 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 - - uid: 28195 + - uid: 28307 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 - - uid: 28196 + - uid: 28308 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 - - uid: 28197 + - uid: 28309 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 - - uid: 28198 + - uid: 28310 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 - - uid: 28199 + - uid: 28311 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 - - uid: 28200 + - uid: 28312 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 - - uid: 28201 + - uid: 28313 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 - - uid: 28202 + - uid: 28314 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 - - uid: 28203 + - uid: 28315 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 - - uid: 28204 + - uid: 28316 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 - - uid: 28205 + - uid: 28317 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 - - uid: 28206 + - uid: 28318 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 - - uid: 28207 + - uid: 28319 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 - - uid: 28208 + - uid: 28320 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 - - uid: 28209 + - uid: 28321 components: - type: Transform pos: 71.5,-65.5 parent: 2 - - uid: 28210 + - uid: 28322 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 - - uid: 28211 + - uid: 28323 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 - - uid: 28212 + - uid: 28324 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 - - uid: 28213 + - uid: 28325 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 - - uid: 28214 + - uid: 28326 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 - - uid: 28215 + - uid: 28327 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 - - uid: 28216 + - uid: 28328 components: - type: Transform pos: 30.5,48.5 parent: 2 - - uid: 28217 + - uid: 28329 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 - - uid: 28218 + - uid: 28330 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 - - uid: 28219 + - uid: 28331 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 - - uid: 28220 + - uid: 28332 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 - - uid: 28221 + - uid: 28333 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 - - uid: 28222 + - uid: 28334 components: - type: Transform pos: 2.5,46.5 parent: 2 - - uid: 28223 + - uid: 28335 components: - type: Transform pos: -6.5,43.5 parent: 2 - - uid: 28224 + - uid: 28336 components: - type: Transform pos: -5.5,43.5 parent: 2 - - uid: 28225 + - uid: 28337 components: - type: Transform pos: 2.5,43.5 parent: 2 - - uid: 28226 + - uid: 28338 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 28227 + - uid: 28339 components: - type: Transform pos: 0.5,43.5 parent: 2 - - uid: 28228 + - uid: 28340 components: - type: Transform pos: -8.5,60.5 parent: 2 - - uid: 28229 + - uid: 28341 components: - type: Transform pos: -3.5,60.5 parent: 2 - - uid: 28230 + - uid: 28342 components: - type: Transform pos: -4.5,60.5 parent: 2 - - uid: 28231 + - uid: 28343 components: - type: Transform pos: -5.5,60.5 parent: 2 - - uid: 28232 + - uid: 28344 components: - type: Transform pos: -6.5,60.5 parent: 2 - - uid: 28233 + - uid: 28345 components: - type: Transform pos: -7.5,60.5 parent: 2 - - uid: 28234 + - uid: 28346 components: - type: Transform pos: 1.5,60.5 parent: 2 - - uid: 28235 + - uid: 28347 components: - type: Transform pos: 0.5,60.5 parent: 2 - - uid: 28236 + - uid: 28348 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 - - uid: 28237 + - uid: 28349 components: - type: Transform pos: 18.5,35.5 parent: 2 - - uid: 28238 + - uid: 28350 components: - type: Transform pos: 19.5,35.5 parent: 2 - - uid: 28239 + - uid: 28351 components: - type: Transform pos: 19.5,36.5 parent: 2 - - uid: 28240 + - uid: 28352 components: - type: Transform pos: 19.5,37.5 parent: 2 - - uid: 28241 + - uid: 28353 components: - type: Transform pos: 19.5,38.5 parent: 2 - - uid: 28242 + - uid: 28354 components: - type: Transform pos: 19.5,39.5 parent: 2 - - uid: 28243 + - uid: 28355 components: - type: Transform pos: 19.5,40.5 parent: 2 - - uid: 28244 + - uid: 28356 components: - type: Transform pos: 18.5,40.5 parent: 2 - - uid: 28245 + - uid: 28357 components: - type: Transform pos: 17.5,40.5 parent: 2 - - uid: 28246 + - uid: 28358 components: - type: Transform pos: 17.5,41.5 parent: 2 - - uid: 28247 + - uid: 28359 components: - type: Transform pos: 15.5,41.5 parent: 2 - - uid: 28248 + - uid: 28360 components: - type: Transform pos: 15.5,40.5 parent: 2 - - uid: 28249 + - uid: 28361 components: - type: Transform pos: 14.5,40.5 parent: 2 - - uid: 28250 + - uid: 28362 components: - type: Transform pos: 13.5,40.5 parent: 2 - - uid: 28251 + - uid: 28363 components: - type: Transform pos: 13.5,39.5 parent: 2 - - uid: 28252 + - uid: 28364 components: - type: Transform pos: 13.5,38.5 parent: 2 - - uid: 28253 + - uid: 28365 components: - type: Transform pos: 13.5,37.5 parent: 2 - - uid: 28254 + - uid: 28366 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 28255 + - uid: 28367 components: - type: Transform pos: 13.5,35.5 parent: 2 - - uid: 28256 + - uid: 28368 components: - type: Transform pos: 14.5,35.5 parent: 2 - - uid: 28257 + - uid: 28369 components: - type: Transform pos: 0.5,61.5 parent: 2 - - uid: 28258 + - uid: 28370 components: - type: Transform pos: 0.5,63.5 parent: 2 - - uid: 28259 + - uid: 28371 components: - type: Transform pos: 0.5,62.5 parent: 2 - - uid: 28260 + - uid: 28372 components: - type: Transform pos: -3.5,63.5 parent: 2 - - uid: 28261 + - uid: 28373 components: - type: Transform pos: -3.5,62.5 parent: 2 - - uid: 28262 + - uid: 28374 components: - type: Transform pos: -3.5,61.5 parent: 2 - - uid: 28263 + - uid: 28375 components: - type: Transform pos: 0.5,64.5 parent: 2 - - uid: 28264 + - uid: 28376 components: - type: Transform pos: -0.5,64.5 parent: 2 - - uid: 28265 + - uid: 28377 components: - type: Transform pos: -2.5,64.5 parent: 2 - - uid: 28266 + - uid: 28378 components: - type: Transform pos: -3.5,64.5 parent: 2 - - uid: 28267 + - uid: 28379 components: - type: Transform pos: -4.5,64.5 parent: 2 - - uid: 28268 + - uid: 28380 components: - type: Transform pos: -5.5,64.5 parent: 2 - - uid: 28269 + - uid: 28381 components: - type: Transform pos: -5.5,65.5 parent: 2 - - uid: 28270 + - uid: 28382 components: - type: Transform pos: -5.5,65.5 parent: 2 - - uid: 28271 + - uid: 28383 components: - type: Transform pos: -6.5,65.5 parent: 2 - - uid: 28272 + - uid: 28384 components: - type: Transform pos: -7.5,65.5 parent: 2 - - uid: 28273 + - uid: 28385 components: - type: Transform pos: -7.5,66.5 parent: 2 - - uid: 28274 + - uid: 28386 components: - type: Transform pos: -8.5,66.5 parent: 2 - - uid: 28275 + - uid: 28387 components: - type: Transform pos: -8.5,67.5 parent: 2 - - uid: 28276 + - uid: 28388 components: - type: Transform pos: -8.5,68.5 parent: 2 - - uid: 28277 + - uid: 28389 components: - type: Transform pos: -8.5,70.5 parent: 2 - - uid: 28278 + - uid: 28390 components: - type: Transform pos: -8.5,71.5 parent: 2 - - uid: 28279 + - uid: 28391 components: - type: Transform pos: -8.5,72.5 parent: 2 - - uid: 28280 + - uid: 28392 components: - type: Transform pos: -7.5,72.5 parent: 2 - - uid: 28281 + - uid: 28393 components: - type: Transform pos: -7.5,73.5 parent: 2 - - uid: 28282 + - uid: 28394 components: - type: Transform pos: -6.5,73.5 parent: 2 - - uid: 28283 + - uid: 28395 components: - type: Transform pos: -6.5,74.5 parent: 2 - - uid: 28284 + - uid: 28396 components: - type: Transform pos: -5.5,74.5 parent: 2 - - uid: 28285 + - uid: 28397 components: - type: Transform pos: -4.5,74.5 parent: 2 - - uid: 28286 + - uid: 28398 components: - type: Transform pos: -3.5,74.5 parent: 2 - - uid: 28287 + - uid: 28399 components: - type: Transform pos: -2.5,74.5 parent: 2 - - uid: 28288 + - uid: 28400 components: - type: Transform pos: -1.5,74.5 parent: 2 - - uid: 28289 + - uid: 28401 components: - type: Transform pos: -0.5,74.5 parent: 2 - - uid: 28290 + - uid: 28402 components: - type: Transform pos: 0.5,74.5 parent: 2 - - uid: 28291 + - uid: 28403 components: - type: Transform pos: 1.5,74.5 parent: 2 - - uid: 28292 + - uid: 28404 components: - type: Transform pos: 2.5,74.5 parent: 2 - - uid: 28293 + - uid: 28405 components: - type: Transform pos: 3.5,74.5 parent: 2 - - uid: 28294 + - uid: 28406 components: - type: Transform pos: 3.5,73.5 parent: 2 - - uid: 28295 + - uid: 28407 components: - type: Transform pos: 4.5,73.5 parent: 2 - - uid: 28296 + - uid: 28408 components: - type: Transform pos: 4.5,72.5 parent: 2 - - uid: 28297 + - uid: 28409 components: - type: Transform pos: 5.5,72.5 parent: 2 - - uid: 28298 + - uid: 28410 components: - type: Transform pos: 5.5,71.5 parent: 2 - - uid: 28299 + - uid: 28411 components: - type: Transform pos: 5.5,70.5 parent: 2 - - uid: 28300 + - uid: 28412 components: - type: Transform pos: 5.5,68.5 parent: 2 - - uid: 28301 + - uid: 28413 components: - type: Transform pos: 5.5,67.5 parent: 2 - - uid: 28302 + - uid: 28414 components: - type: Transform pos: 5.5,66.5 parent: 2 - - uid: 28303 + - uid: 28415 components: - type: Transform pos: 4.5,66.5 parent: 2 - - uid: 28304 + - uid: 28416 components: - type: Transform pos: 4.5,65.5 parent: 2 - - uid: 28305 + - uid: 28417 components: - type: Transform pos: 3.5,65.5 parent: 2 - - uid: 28306 + - uid: 28418 components: - type: Transform pos: 2.5,64.5 parent: 2 - - uid: 28307 + - uid: 28419 components: - type: Transform pos: 2.5,65.5 parent: 2 - - uid: 28308 + - uid: 28420 components: - type: Transform pos: 1.5,64.5 parent: 2 - - uid: 28309 + - uid: 28421 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 - - uid: 28310 + - uid: 28422 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 - - uid: 28311 + - uid: 28423 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 - - uid: 28312 + - uid: 28424 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 - - uid: 28313 + - uid: 28425 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 - - uid: 28314 + - uid: 28426 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 - - uid: 28315 + - uid: 28427 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 - - uid: 28316 + - uid: 28428 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 - - uid: 28317 + - uid: 28429 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 - - uid: 28318 + - uid: 28430 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 - - uid: 28319 + - uid: 28431 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 - - uid: 28320 + - uid: 28432 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 - - uid: 28321 + - uid: 28433 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 - - uid: 28322 + - uid: 28434 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 - - uid: 28323 + - uid: 28435 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 - - uid: 28324 + - uid: 28436 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 - - uid: 28325 + - uid: 28437 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 - - uid: 28326 + - uid: 28438 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 - - uid: 28327 + - uid: 28439 components: - type: Transform pos: 76.5,37.5 parent: 2 - - uid: 28328 + - uid: 28440 components: - type: Transform pos: 77.5,37.5 parent: 2 - - uid: 28329 + - uid: 28441 components: - type: Transform pos: 76.5,35.5 parent: 2 - - uid: 28330 + - uid: 28442 components: - type: Transform pos: 77.5,35.5 parent: 2 - - uid: 28331 + - uid: 28443 components: - type: Transform pos: 68.5,37.5 parent: 2 - - uid: 28332 + - uid: 28444 components: - type: Transform pos: 67.5,37.5 parent: 2 - - uid: 28333 + - uid: 28445 components: - type: Transform pos: 67.5,35.5 parent: 2 - - uid: 28334 + - uid: 28446 components: - type: Transform pos: 68.5,35.5 parent: 2 - - uid: 28335 + - uid: 28447 components: - type: Transform pos: 64.5,32.5 parent: 2 - - uid: 28336 + - uid: 28448 components: - type: Transform pos: 64.5,31.5 parent: 2 - - uid: 28337 + - uid: 28449 components: - type: Transform pos: 62.5,32.5 parent: 2 - - uid: 28338 + - uid: 28450 components: - type: Transform pos: 62.5,31.5 parent: 2 - - uid: 28339 + - uid: 28451 components: - type: Transform pos: -38.5,43.5 parent: 2 - - uid: 28340 + - uid: 28452 components: - type: Transform pos: -38.5,42.5 parent: 2 - - uid: 28341 + - uid: 28453 components: - type: Transform pos: -38.5,41.5 parent: 2 - - uid: 28342 + - uid: 28454 components: - type: Transform pos: -36.5,43.5 parent: 2 - - uid: 28343 + - uid: 28455 components: - type: Transform pos: -36.5,42.5 parent: 2 - - uid: 28344 + - uid: 28456 components: - type: Transform pos: -36.5,41.5 parent: 2 - - uid: 28345 + - uid: 28457 components: - type: Transform pos: -38.5,40.5 parent: 2 - - uid: 28346 + - uid: 28458 components: - type: Transform pos: -39.5,40.5 parent: 2 - - uid: 28347 + - uid: 28459 components: - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 28348 + - uid: 28460 components: - type: Transform pos: -41.5,40.5 parent: 2 - - uid: 28349 + - uid: 28461 components: - type: Transform pos: -42.5,40.5 parent: 2 - - uid: 28350 + - uid: 28462 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 - - uid: 28351 + - uid: 28463 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 - - uid: 28352 + - uid: 28464 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 - - uid: 28353 + - uid: 28465 components: - type: Transform pos: -48.5,40.5 parent: 2 - - uid: 28354 + - uid: 28466 components: - type: Transform pos: -48.5,39.5 parent: 2 - - uid: 28355 + - uid: 28467 components: - type: Transform pos: -48.5,38.5 parent: 2 - - uid: 28356 + - uid: 28468 components: - type: Transform pos: -36.5,40.5 parent: 2 - - uid: 28357 + - uid: 28469 components: - type: Transform pos: -35.5,40.5 parent: 2 - - uid: 28358 + - uid: 28470 components: - type: Transform pos: -34.5,40.5 parent: 2 - - uid: 28359 + - uid: 28471 components: - type: Transform pos: -31.5,40.5 parent: 2 - - uid: 28360 + - uid: 28472 components: - type: Transform pos: -30.5,40.5 parent: 2 - - uid: 28361 + - uid: 28473 components: - type: Transform pos: -30.5,41.5 parent: 2 - - uid: 28362 + - uid: 28474 components: - type: Transform pos: -30.5,42.5 parent: 2 - - uid: 28363 + - uid: 28475 components: - type: Transform pos: -29.5,42.5 parent: 2 - - uid: 28364 + - uid: 28476 components: - type: Transform pos: -26.5,47.5 parent: 2 - - uid: 28365 + - uid: 28477 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 28366 + - uid: 28478 components: - type: Transform pos: -28.5,47.5 parent: 2 - - uid: 28367 + - uid: 28479 components: - type: Transform pos: -29.5,47.5 parent: 2 - - uid: 28368 + - uid: 28480 components: - type: Transform pos: -29.5,46.5 parent: 2 - - uid: 28369 + - uid: 28481 components: - type: Transform pos: -25.5,47.5 parent: 2 - - uid: 28370 + - uid: 28482 components: - type: Transform pos: -25.5,48.5 parent: 2 - - uid: 28371 + - uid: 28483 components: - type: Transform pos: 32.5,48.5 parent: 2 - - uid: 28372 + - uid: 28484 components: - type: Transform pos: 31.5,48.5 parent: 2 - - uid: 28373 + - uid: 28485 components: - type: Transform pos: 31.5,47.5 parent: 2 - - uid: 28374 + - uid: 28486 components: - type: Transform pos: 31.5,46.5 parent: 2 - - uid: 28375 + - uid: 28487 components: - type: Transform pos: 31.5,44.5 parent: 2 - - uid: 28376 + - uid: 28488 components: - type: Transform pos: 27.5,46.5 parent: 2 - - uid: 28377 + - uid: 28489 components: - type: Transform pos: 27.5,44.5 parent: 2 - - uid: 28378 + - uid: 28490 components: - type: Transform pos: 28.5,48.5 parent: 2 - - uid: 28379 + - uid: 28491 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 - - uid: 28380 + - uid: 28492 components: - type: Transform pos: 46.5,51.5 parent: 2 - - uid: 28381 + - uid: 28493 components: - type: Transform pos: 47.5,51.5 parent: 2 - - uid: 28382 + - uid: 28494 components: - type: Transform pos: 48.5,51.5 parent: 2 - - uid: 28383 + - uid: 28495 components: - type: Transform pos: 30.5,42.5 parent: 2 - - uid: 28384 + - uid: 28496 components: - type: Transform pos: 30.5,41.5 parent: 2 - - uid: 28385 + - uid: 28497 components: - type: Transform pos: 28.5,42.5 parent: 2 - - uid: 28386 + - uid: 28498 components: - type: Transform pos: 28.5,41.5 parent: 2 - - uid: 28387 + - uid: 28499 components: - type: Transform pos: 27.5,48.5 parent: 2 - - uid: 28388 + - uid: 28500 components: - type: Transform pos: -8.5,63.5 parent: 2 - - uid: 28389 + - uid: 28501 components: - type: Transform pos: -9.5,63.5 parent: 2 - - uid: 28390 + - uid: 28502 components: - type: Transform pos: -11.5,63.5 parent: 2 - - uid: 28391 + - uid: 28503 components: - type: Transform pos: -8.5,62.5 parent: 2 - - uid: 28392 + - uid: 28504 components: - type: Transform pos: -8.5,61.5 parent: 2 - - uid: 28393 + - uid: 28505 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 28394 + - uid: 28506 components: - type: Transform pos: 9.5,-30.5 parent: 2 - - uid: 28395 + - uid: 28507 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-35.5 parent: 2 - - uid: 28396 + - uid: 28508 components: - type: Transform pos: -25.5,49.5 parent: 2 - - uid: 28397 + - uid: 28509 components: - type: Transform pos: -25.5,50.5 parent: 2 - - uid: 28398 + - uid: 28510 components: - type: Transform pos: -26.5,50.5 parent: 2 - - uid: 28399 + - uid: 28511 components: - type: Transform pos: -26.5,51.5 parent: 2 - - uid: 28400 + - uid: 28512 components: - type: Transform pos: -26.5,52.5 parent: 2 - - uid: 28401 + - uid: 28513 components: - type: Transform pos: -26.5,55.5 parent: 2 - - uid: 28402 + - uid: 28514 components: - type: Transform pos: -26.5,56.5 parent: 2 - - uid: 28403 + - uid: 28515 components: - type: Transform pos: -25.5,56.5 parent: 2 - - uid: 28404 + - uid: 28516 components: - type: Transform pos: -25.5,57.5 parent: 2 - - uid: 28405 + - uid: 28517 components: - type: Transform pos: -24.5,57.5 parent: 2 - - uid: 28406 + - uid: 28518 components: - type: Transform pos: 3.5,57.5 parent: 2 - - uid: 28407 + - uid: 28519 components: - type: Transform pos: 10.5,-30.5 parent: 2 - - uid: 28408 + - uid: 28520 components: - type: Transform pos: 9.5,-33.5 parent: 2 - - uid: 28409 + - uid: 28521 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 - - uid: 28410 + - uid: 28522 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 - - uid: 28411 + - uid: 28523 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 - - uid: 28412 + - uid: 28524 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 - - uid: 28413 + - uid: 28525 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 - - uid: 28414 + - uid: 28526 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 - - uid: 28415 + - uid: 28527 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 - - uid: 28416 + - uid: 28528 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 - - uid: 28417 + - uid: 28529 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 - - uid: 28418 + - uid: 28530 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 - - uid: 28419 + - uid: 28531 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 - - uid: 28420 + - uid: 28532 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 - - uid: 28421 + - uid: 28533 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 - - uid: 28422 + - uid: 28534 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 - - uid: 28423 + - uid: 28535 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 - - uid: 28424 + - uid: 28536 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 - - uid: 28425 + - uid: 28537 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 - - uid: 28426 + - uid: 28538 components: - type: Transform pos: -5.5,-94.5 parent: 2 - - uid: 28427 + - uid: 28539 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 - - uid: 28428 + - uid: 28540 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 - - uid: 28429 + - uid: 28541 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 - - uid: 28430 + - uid: 28542 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 - - uid: 28431 + - uid: 28543 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 - - uid: 28432 + - uid: 28544 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 - - uid: 28433 + - uid: 28545 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 - - uid: 28434 + - uid: 28546 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 - - uid: 28435 + - uid: 28547 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 - - uid: 28436 + - uid: 28548 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 28437 + - uid: 28549 components: - type: Transform pos: -18.5,-95.5 parent: 2 - - uid: 28438 + - uid: 28550 components: - type: Transform pos: -18.5,-99.5 parent: 2 - - uid: 28439 + - uid: 28551 components: - type: Transform pos: -26.5,-95.5 parent: 2 - - uid: 28440 + - uid: 28552 components: - type: Transform pos: -26.5,-99.5 parent: 2 - - uid: 28441 + - uid: 28553 components: - type: Transform pos: -18.5,-94.5 parent: 2 - - uid: 28442 + - uid: 28554 components: - type: Transform pos: -19.5,-94.5 parent: 2 - - uid: 28443 + - uid: 28555 components: - type: Transform pos: -20.5,-94.5 parent: 2 - - uid: 28444 + - uid: 28556 components: - type: Transform pos: -24.5,-94.5 parent: 2 - - uid: 28445 + - uid: 28557 components: - type: Transform pos: -25.5,-94.5 parent: 2 - - uid: 28446 + - uid: 28558 components: - type: Transform pos: -26.5,-94.5 parent: 2 - - uid: 28447 + - uid: 28559 components: - type: Transform pos: -18.5,-100.5 parent: 2 - - uid: 28448 + - uid: 28560 components: - type: Transform pos: -19.5,-100.5 parent: 2 - - uid: 28449 + - uid: 28561 components: - type: Transform pos: -20.5,-100.5 parent: 2 - - uid: 28450 + - uid: 28562 components: - type: Transform pos: -26.5,-100.5 parent: 2 - - uid: 28451 + - uid: 28563 components: - type: Transform pos: -25.5,-100.5 parent: 2 - - uid: 28452 + - uid: 28564 components: - type: Transform pos: -24.5,-100.5 parent: 2 - - uid: 28453 + - uid: 28565 components: - type: Transform pos: -17.5,-95.5 parent: 2 - - uid: 28454 + - uid: 28566 components: - type: Transform pos: -16.5,-95.5 parent: 2 - - uid: 28455 + - uid: 28567 components: - type: Transform pos: -15.5,-95.5 parent: 2 - - uid: 28456 + - uid: 28568 components: - type: Transform pos: -14.5,-95.5 parent: 2 - - uid: 28457 + - uid: 28569 components: - type: Transform pos: -17.5,-99.5 parent: 2 - - uid: 28458 + - uid: 28570 components: - type: Transform pos: -16.5,-99.5 parent: 2 - - uid: 28459 + - uid: 28571 components: - type: Transform pos: -15.5,-99.5 parent: 2 - - uid: 28460 + - uid: 28572 components: - type: Transform pos: -14.5,-99.5 parent: 2 - - uid: 28461 + - uid: 28573 components: - type: Transform pos: -27.5,-95.5 parent: 2 - - uid: 28462 + - uid: 28574 components: - type: Transform pos: -28.5,-95.5 parent: 2 - - uid: 28463 + - uid: 28575 components: - type: Transform pos: -29.5,-95.5 parent: 2 - - uid: 28464 + - uid: 28576 components: - type: Transform pos: -30.5,-95.5 parent: 2 - - uid: 28465 + - uid: 28577 components: - type: Transform pos: -27.5,-99.5 parent: 2 - - uid: 28466 + - uid: 28578 components: - type: Transform pos: -28.5,-99.5 parent: 2 - - uid: 28467 + - uid: 28579 components: - type: Transform pos: -29.5,-99.5 parent: 2 - - uid: 28468 + - uid: 28580 components: - type: Transform pos: -30.5,-99.5 parent: 2 - - uid: 28469 + - uid: 28581 components: - type: Transform pos: -13.5,-95.5 parent: 2 - - uid: 28470 + - uid: 28582 components: - type: Transform pos: -13.5,-99.5 parent: 2 - - uid: 28471 + - uid: 28583 components: - type: Transform pos: -31.5,-95.5 parent: 2 - - uid: 28472 + - uid: 28584 components: - type: Transform pos: -31.5,-99.5 parent: 2 - - uid: 28473 + - uid: 28585 components: - type: Transform pos: -10.5,-94.5 parent: 2 - - uid: 28474 + - uid: 28586 components: - type: Transform pos: -11.5,-94.5 parent: 2 - - uid: 28475 + - uid: 28587 components: - type: Transform pos: -11.5,-95.5 parent: 2 - - uid: 28476 + - uid: 28588 components: - type: Transform pos: -12.5,-95.5 parent: 2 - - uid: 28477 + - uid: 28589 components: - type: Transform pos: -4.5,-94.5 parent: 2 - - uid: 28478 + - uid: 28590 components: - type: Transform pos: -4.5,-95.5 parent: 2 - - uid: 28479 + - uid: 28591 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 28480 + - uid: 28592 components: - type: Transform pos: -7.5,-101.5 parent: 2 - - uid: 28481 + - uid: 28593 components: - type: Transform pos: -4.5,-101.5 parent: 2 - - uid: 28482 + - uid: 28594 components: - type: Transform pos: -4.5,-100.5 parent: 2 - - uid: 28483 + - uid: 28595 components: - type: Transform pos: -3.5,-100.5 parent: 2 - - uid: 28484 + - uid: 28596 components: - type: Transform pos: -10.5,-101.5 parent: 2 - - uid: 28485 + - uid: 28597 components: - type: Transform pos: -10.5,-100.5 parent: 2 - - uid: 28486 + - uid: 28598 components: - type: Transform pos: -11.5,-100.5 parent: 2 - - uid: 28487 + - uid: 28599 components: - type: Transform pos: -11.5,-99.5 parent: 2 - - uid: 28488 + - uid: 28600 components: - type: Transform pos: -12.5,-99.5 parent: 2 - - uid: 28489 + - uid: 28601 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 28490 + - uid: 28602 components: - type: Transform pos: -3.5,-99.5 parent: 2 - - uid: 28491 + - uid: 28603 components: - type: Transform pos: -39.5,-87.5 parent: 2 - - uid: 28492 + - uid: 28604 components: - type: Transform pos: -39.5,-88.5 parent: 2 - - uid: 28493 + - uid: 28605 components: - type: Transform pos: -44.5,-87.5 parent: 2 - - uid: 28494 + - uid: 28606 components: - type: Transform pos: -44.5,-88.5 parent: 2 - - uid: 28495 + - uid: 28607 components: - type: Transform pos: -32.5,-99.5 parent: 2 - - uid: 28496 + - uid: 28608 components: - type: Transform pos: -33.5,-99.5 parent: 2 - - uid: 28497 + - uid: 28609 components: - type: Transform pos: -34.5,-99.5 parent: 2 - - uid: 28498 + - uid: 28610 components: - type: Transform pos: -36.5,-99.5 parent: 2 - - uid: 28499 + - uid: 28611 components: - type: Transform pos: -38.5,-99.5 parent: 2 - - uid: 28500 + - uid: 28612 components: - type: Transform pos: -39.5,-99.5 parent: 2 - - uid: 28501 + - uid: 28613 components: - type: Transform pos: -34.5,-101.5 parent: 2 - - uid: 28502 + - uid: 28614 components: - type: Transform pos: -36.5,-101.5 parent: 2 - - uid: 28503 + - uid: 28615 components: - type: Transform pos: -6.5,-94.5 parent: 2 - - uid: 28504 + - uid: 28616 components: - type: Transform pos: -8.5,-94.5 parent: 2 - - uid: 28505 + - uid: 28617 components: - type: Transform pos: 66.5,-15.5 parent: 2 - - uid: 28506 + - uid: 28618 components: - type: Transform pos: 66.5,-16.5 parent: 2 - - uid: 28507 + - uid: 28619 components: - type: Transform pos: -39.5,-91.5 parent: 2 - - uid: 28508 + - uid: 28620 components: - type: Transform pos: -44.5,-91.5 parent: 2 - - uid: 28509 + - uid: 28621 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 - - uid: 28510 + - uid: 28622 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 - - uid: 28511 + - uid: 28623 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 - - uid: 28512 + - uid: 28624 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 - - uid: 28513 + - uid: 28625 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 - - uid: 28514 + - uid: 28626 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 - - uid: 28515 + - uid: 28627 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 - - uid: 28516 + - uid: 28628 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 - - uid: 28517 + - uid: 28629 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 - - uid: 28518 + - uid: 28630 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 - - uid: 28519 + - uid: 28631 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 - - uid: 28520 + - uid: 28632 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 - - uid: 28521 + - uid: 28633 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 - - uid: 28522 + - uid: 28634 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 - - uid: 28523 + - uid: 28635 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 - - uid: 28524 + - uid: 28636 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 - - uid: 28525 + - uid: 28637 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 - - uid: 28526 + - uid: 28638 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 - - uid: 28527 + - uid: 28639 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 - - uid: 28528 + - uid: 28640 components: - type: Transform pos: -20.5,-101.5 parent: 2 - - uid: 28529 + - uid: 28641 components: - type: Transform pos: -24.5,-101.5 parent: 2 - - uid: 28530 + - uid: 28642 components: - type: Transform pos: -75.5,-28.5 parent: 2 - - uid: 28531 + - uid: 28643 components: - type: Transform pos: -75.5,-29.5 parent: 2 - - uid: 28532 + - uid: 28644 components: - type: Transform pos: -75.5,-30.5 parent: 2 - - uid: 28533 + - uid: 28645 components: - type: Transform pos: -75.5,-32.5 parent: 2 - - uid: 28534 + - uid: 28646 components: - type: Transform pos: -77.5,-32.5 parent: 2 - - uid: 28535 + - uid: 28647 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 28536 + - uid: 28648 components: - type: Transform pos: -70.5,-33.5 parent: 2 - - uid: 28537 + - uid: 28649 components: - type: Transform pos: -71.5,-33.5 parent: 2 - - uid: 28538 + - uid: 28650 components: - type: Transform pos: -74.5,-33.5 parent: 2 - - uid: 28539 + - uid: 28651 components: - type: Transform pos: -75.5,-33.5 parent: 2 - - uid: 28540 + - uid: 28652 components: - type: Transform pos: 70.5,-39.5 parent: 2 - - uid: 28541 + - uid: 28653 components: - type: Transform pos: 71.5,-39.5 parent: 2 - - uid: 28542 + - uid: 28654 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 - - uid: 28543 + - uid: 28655 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 - - uid: 28544 + - uid: 28656 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 - - uid: 28545 + - uid: 28657 components: - type: Transform pos: 29.5,34.5 parent: 2 - - uid: 28546 + - uid: 28658 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 - - uid: 28547 + - uid: 28659 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 - - uid: 28548 + - uid: 28660 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 - - uid: 28549 + - uid: 28661 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 - - uid: 28550 + - uid: 28662 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 - - uid: 28551 + - uid: 28663 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 - - uid: 28552 + - uid: 28664 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 - - uid: 28553 + - uid: 28665 components: - type: Transform pos: 65.5,-67.5 parent: 2 - - uid: 28554 + - uid: 28666 components: - type: Transform pos: 65.5,-68.5 parent: 2 - - uid: 28555 + - uid: 28667 components: - type: Transform pos: 64.5,-68.5 parent: 2 - - uid: 28556 + - uid: 28668 components: - type: Transform pos: 63.5,-69.5 parent: 2 - - uid: 28557 + - uid: 28669 components: - type: Transform pos: 69.5,-50.5 parent: 2 - - uid: 28558 + - uid: 28670 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 - - uid: 28559 + - uid: 28671 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 - - uid: 28560 + - uid: 28672 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 - - uid: 28561 + - uid: 28673 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 - - uid: 28562 + - uid: 28674 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 - - uid: 28563 + - uid: 28675 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 - - uid: 28564 + - uid: 28676 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 - - uid: 28565 + - uid: 28677 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 - - uid: 28566 + - uid: 28678 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 - - uid: 28567 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 28568 + - uid: 28679 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 - - uid: 28569 + - uid: 28680 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 - - uid: 28570 + - uid: 28681 components: - type: Transform pos: 5.5,-36.5 parent: 2 - - uid: 28571 + - uid: 28682 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 28572 + - uid: 28683 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 28573 + - uid: 28684 components: - type: Transform pos: 4.5,-36.5 parent: 2 - - uid: 28574 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 2 - - uid: 28575 + - uid: 28685 components: - type: Transform pos: 63.5,-70.5 parent: 2 - - uid: 28576 + - uid: 28686 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 28577 + - uid: 28687 components: - type: Transform pos: 66.5,-60.5 parent: 2 - - uid: 28578 + - uid: 28688 components: - type: Transform pos: 76.5,-52.5 parent: 2 - - uid: 28579 + - uid: 28689 components: - type: Transform pos: 76.5,-51.5 parent: 2 - - uid: 28580 + - uid: 28690 components: - type: Transform pos: 73.5,-51.5 parent: 2 - - uid: 28581 + - uid: 28691 components: - type: Transform pos: 73.5,-53.5 parent: 2 - - uid: 28582 + - uid: 28692 components: - type: Transform pos: 75.5,-57.5 parent: 2 - - uid: 28583 + - uid: 28693 components: - type: Transform pos: 76.5,-57.5 parent: 2 - - uid: 28584 + - uid: 28694 components: - type: Transform pos: 68.5,-55.5 parent: 2 - - uid: 28585 + - uid: 28695 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 - - uid: 28586 + - uid: 28696 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 - - uid: 28587 + - uid: 28697 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 - - uid: 28588 + - uid: 28698 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 - - uid: 28589 + - uid: 28699 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 - - uid: 28590 + - uid: 28700 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 - - uid: 28591 + - uid: 28701 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 - - uid: 28592 + - uid: 28702 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 - - uid: 28593 + - uid: 28703 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 - - uid: 28594 + - uid: 28704 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 - - uid: 28596 + - uid: 28705 components: - type: Transform pos: 59.5,-69.5 parent: 2 - - uid: 28597 + - uid: 28706 components: - type: Transform pos: 9.5,-32.5 parent: 2 - - uid: 28598 + - uid: 28707 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 - - uid: 28599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-40.5 - parent: 2 - - uid: 28600 + - uid: 28708 components: - type: Transform pos: 47.5,-32.5 parent: 2 - - uid: 28601 + - uid: 28709 components: - type: Transform pos: 69.5,-68.5 parent: 2 - - uid: 28602 + - uid: 28710 components: - type: Transform pos: 64.5,-69.5 parent: 2 - - uid: 28603 + - uid: 28711 components: - type: Transform pos: 59.5,-70.5 parent: 2 - - uid: 28604 + - uid: 28712 components: - type: Transform pos: 58.5,-69.5 parent: 2 - - uid: 28605 + - uid: 28713 components: - type: Transform pos: 67.5,-68.5 parent: 2 - - uid: 28606 + - uid: 28714 components: - type: Transform pos: 67.5,-69.5 parent: 2 - - uid: 28607 + - uid: 28715 components: - type: Transform pos: 76.5,-56.5 parent: 2 - - uid: 28608 + - uid: 28716 components: - type: Transform pos: 76.5,-55.5 parent: 2 - - uid: 28609 + - uid: 28717 components: - type: Transform pos: 76.5,-54.5 parent: 2 - - uid: 28610 + - uid: 28718 components: - type: Transform pos: 76.5,-53.5 parent: 2 - - uid: 28611 + - uid: 28719 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 - - uid: 28612 + - uid: 28720 components: - type: Transform pos: -45.5,-37.5 parent: 2 - - uid: 28613 + - uid: 28721 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 - - uid: 28614 + - uid: 28722 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 - - uid: 28615 + - uid: 28723 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-74.5 parent: 2 - - uid: 28616 + - uid: 28724 components: - type: Transform pos: 8.5,-84.5 parent: 2 - - uid: 28617 + - uid: 28725 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 28618 + - uid: 28726 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 28619 + - uid: 28727 components: - type: Transform pos: 9.5,-84.5 parent: 2 - - uid: 28620 + - uid: 28728 components: - type: Transform pos: 7.5,-86.5 parent: 2 - - uid: 28621 + - uid: 28729 components: - type: Transform pos: 5.5,-84.5 parent: 2 - - uid: 28622 + - uid: 28730 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 28623 + - uid: 28731 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 28624 + - uid: 28732 components: - type: Transform pos: 5.5,-81.5 parent: 2 - - uid: 28625 + - uid: 28733 components: - type: Transform pos: 5.5,-83.5 parent: 2 - - uid: 28626 + - uid: 28734 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 - - uid: 28627 + - uid: 28735 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 - - uid: 28628 + - uid: 28736 components: - type: Transform pos: 27.5,-75.5 parent: 2 - - uid: 28629 + - uid: 28737 components: - type: Transform pos: 64.5,-41.5 parent: 2 - - uid: 28630 + - uid: 28738 components: - type: Transform pos: -47.5,-37.5 parent: 2 - - uid: 28631 + - uid: 28739 components: - type: Transform pos: -47.5,-36.5 parent: 2 - - uid: 28632 + - uid: 28740 components: - type: Transform pos: -51.5,-34.5 parent: 2 - - uid: 28633 + - uid: 28741 components: - type: Transform pos: -51.5,-35.5 parent: 2 - - uid: 28634 + - uid: 28742 components: - type: Transform pos: -51.5,-38.5 parent: 2 - - uid: 28635 + - uid: 28743 components: - type: Transform pos: -51.5,-39.5 parent: 2 - - uid: 28636 + - uid: 28744 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 28637 + - uid: 28745 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 - - uid: 28638 + - uid: 28746 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 - - uid: 28639 + - uid: 28747 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 - - uid: 28640 + - uid: 28748 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 - - uid: 28641 + - uid: 28749 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 - - uid: 28642 + - uid: 28750 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 - - uid: 28643 + - uid: 28751 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 - - uid: 28644 + - uid: 28752 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 - - uid: 28645 + - uid: 28753 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 - - uid: 28646 + - uid: 28754 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 - - uid: 28647 + - uid: 28755 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 - - uid: 28648 + - uid: 28756 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 - - uid: 28649 + - uid: 28757 components: - type: Transform pos: 49.5,-94.5 parent: 2 - - uid: 28650 + - uid: 28758 components: - type: Transform pos: 46.5,-91.5 parent: 2 - - uid: 28651 + - uid: 28759 components: - type: Transform pos: 47.5,-93.5 parent: 2 - - uid: 28652 + - uid: 28760 components: - type: Transform pos: 46.5,-93.5 parent: 2 - - uid: 28653 + - uid: 28761 components: - type: Transform pos: 50.5,-91.5 parent: 2 - - uid: 28654 + - uid: 28762 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 - - uid: 28655 + - uid: 28763 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 - - uid: 28656 + - uid: 28764 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 - - uid: 28657 + - uid: 28765 components: - type: Transform pos: 49.5,-95.5 parent: 2 - - uid: 28658 + - uid: 28766 components: - type: Transform pos: 47.5,-95.5 parent: 2 - - uid: 28659 + - uid: 28767 components: - type: Transform pos: 46.5,-92.5 parent: 2 - - uid: 28660 + - uid: 28768 components: - type: Transform pos: 50.5,-93.5 parent: 2 - - uid: 28661 + - uid: 28769 components: - type: Transform pos: 49.5,-93.5 parent: 2 - - uid: 28662 + - uid: 28770 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 - - uid: 28663 + - uid: 28771 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 - - uid: 28664 + - uid: 28772 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 - - uid: 28665 + - uid: 28773 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 - - uid: 28666 + - uid: 28774 components: - type: Transform pos: 47.5,-94.5 parent: 2 - - uid: 28667 + - uid: 28775 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 - - uid: 28668 + - uid: 28776 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 - - uid: 28669 + - uid: 28777 components: - type: Transform pos: 5.5,-76.5 parent: 2 - - uid: 28670 + - uid: 28778 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 - - uid: 28671 + - uid: 28779 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 - - uid: 28672 + - uid: 28780 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 - - uid: 28673 + - uid: 28781 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 - - uid: 28674 + - uid: 28782 components: - type: Transform pos: 8.5,-79.5 parent: 2 - - uid: 28675 + - uid: 28783 components: - type: Transform pos: 8.5,-80.5 parent: 2 - - uid: 28676 + - uid: 28784 components: - type: Transform pos: 50.5,-92.5 parent: 2 - - uid: 28677 + - uid: 28785 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 - - uid: 28678 + - uid: 28786 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 - - uid: 28679 + - uid: 28787 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 - - uid: 28680 + - uid: 28788 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 - - uid: 28681 + - uid: 28789 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 - - uid: 28682 + - uid: 28790 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 - - uid: 28683 + - uid: 28791 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 - - uid: 28684 + - uid: 28792 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 - - uid: 28685 + - uid: 28793 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 - - uid: 28686 + - uid: 28794 components: - type: Transform pos: 7.5,-74.5 parent: 2 - - uid: 28687 + - uid: 28795 components: - type: Transform pos: 7.5,-76.5 parent: 2 - - uid: 28688 + - uid: 28796 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 28689 + - uid: 28797 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 28690 + - uid: 28798 components: - type: Transform pos: 10.5,-82.5 parent: 2 - - uid: 28691 + - uid: 28799 components: - type: Transform pos: 10.5,-84.5 parent: 2 - - uid: 28692 + - uid: 28800 components: - type: Transform pos: 10.5,-85.5 parent: 2 - - uid: 28693 + - uid: 28801 components: - type: Transform pos: 5.5,-77.5 parent: 2 - - uid: 28694 + - uid: 28802 components: - type: Transform pos: 8.5,-78.5 parent: 2 - - uid: 28695 + - uid: 28803 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 - - uid: 28696 + - uid: 28804 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 - - uid: 28697 + - uid: 28805 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 - - uid: 28698 + - uid: 28806 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 - - uid: 28699 + - uid: 28807 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 - - uid: 28700 + - uid: 28808 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 - - uid: 28701 + - uid: 28809 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 - - uid: 28702 + - uid: 28810 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 - - uid: 28703 + - uid: 28811 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 - - uid: 28704 + - uid: 28812 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 - - uid: 28705 + - uid: 28813 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 - - uid: 28706 + - uid: 28814 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 - - uid: 28707 + - uid: 28815 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 - - uid: 28708 + - uid: 28816 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 - - uid: 28709 + - uid: 28817 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 28710 + - uid: 28818 components: - type: Transform pos: 8.5,-82.5 parent: 2 - - uid: 28711 + - uid: 28819 components: - type: Transform pos: 9.5,-82.5 parent: 2 - - uid: 28712 + - uid: 28820 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 - - uid: 28713 + - uid: 28821 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 - - uid: 28714 + - uid: 28822 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 - - uid: 28715 + - uid: 28823 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 - - uid: 28716 + - uid: 28824 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 - - uid: 28717 + - uid: 28825 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 - - uid: 28718 + - uid: 28826 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 - - uid: 28719 + - uid: 28827 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 - - uid: 28720 + - uid: 28828 components: - type: Transform pos: 65.5,-26.5 parent: 2 - - uid: 28721 + - uid: 28829 components: - type: Transform pos: 68.5,-26.5 parent: 2 - - uid: 28722 + - uid: 28830 components: - type: Transform pos: 69.5,-26.5 parent: 2 - - uid: 28723 + - uid: 28831 components: - type: Transform pos: -17.5,-83.5 parent: 2 - - uid: 28724 + - uid: 28832 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 - - uid: 28725 + - uid: 28833 components: - type: Transform pos: -65.5,-47.5 parent: 2 - - uid: 28726 + - uid: 28834 components: - type: Transform pos: -66.5,-47.5 parent: 2 - - uid: 28727 + - uid: 28835 components: - type: Transform pos: -67.5,-47.5 parent: 2 - - uid: 28728 + - uid: 28836 components: - type: Transform pos: -71.5,-47.5 parent: 2 - - uid: 28729 + - uid: 28837 components: - type: Transform pos: -72.5,-47.5 parent: 2 - - uid: 28730 + - uid: 28838 components: - type: Transform pos: -73.5,-47.5 parent: 2 - - uid: 28731 + - uid: 28839 components: - type: Transform pos: -74.5,-47.5 parent: 2 - - uid: 28732 + - uid: 28840 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-33.5 parent: 2 - - uid: 28733 + - uid: 28841 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-46.5 parent: 2 - - uid: 28734 + - uid: 28842 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-46.5 parent: 2 - - uid: 28735 + - uid: 28843 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 - - uid: 28736 + - uid: 28844 components: - type: Transform pos: -78.5,-46.5 parent: 2 - - uid: 28737 + - uid: 28845 components: - type: Transform pos: -78.5,-47.5 parent: 2 - - uid: 28738 + - uid: 28846 components: - type: Transform pos: -77.5,-47.5 parent: 2 - - uid: 28739 + - uid: 28847 components: - type: Transform pos: -76.5,-47.5 parent: 2 - - uid: 28740 + - uid: 28848 + components: + - type: Transform + pos: -75.5,-47.5 + parent: 2 + - uid: 28849 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 28850 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 28851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-34.5 + parent: 2 + - uid: 28852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-35.5 + parent: 2 + - uid: 28853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-44.5 + parent: 2 + - uid: 28854 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 28855 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 28856 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 28857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 2 + - uid: 28858 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 28859 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 28860 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 28861 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 28862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-67.5 + parent: 2 + - uid: 28863 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 28865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-57.5 + parent: 2 + - uid: 28866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-56.5 + parent: 2 + - uid: 28867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-57.5 + parent: 2 + - uid: 28868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-51.5 + parent: 2 + - uid: 28869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-57.5 + parent: 2 + - uid: 28870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-57.5 + parent: 2 + - uid: 28871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-57.5 + parent: 2 + - uid: 28872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-55.5 + parent: 2 + - uid: 28873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-51.5 + parent: 2 + - uid: 28874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-51.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-50.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-50.5 + parent: 2 + - uid: 28877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-50.5 + parent: 2 + - uid: 28878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-50.5 + parent: 2 + - uid: 28879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-55.5 + parent: 2 + - uid: 28880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-50.5 + parent: 2 + - uid: 28881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-51.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-51.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-56.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-52.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-56.5 + parent: 2 + - uid: 28886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-52.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-56.5 + parent: 2 + - uid: 28888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-56.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 28889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-57.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-57.5 + parent: 2 + - uid: 28891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-57.5 + parent: 2 + - uid: 28892 + components: + - type: Transform + pos: -75.5,-50.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-50.5 + parent: 2 + - uid: 28894 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-51.5 + parent: 2 + - uid: 28896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-56.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-51.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + pos: -69.5,-56.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 28899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-66.5 + parent: 2 + - uid: 28900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 28901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,40.5 + parent: 2 + - uid: 28902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,37.5 + parent: 2 + - uid: 28903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 28904 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 28905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-69.5 + parent: 2 + - uid: 28906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-69.5 + parent: 2 + - uid: 28907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-69.5 + parent: 2 + - uid: 28908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-69.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + pos: 11.5,-62.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-61.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-65.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-65.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-65.5 + parent: 2 + - uid: 28919 components: - type: Transform - pos: -75.5,-47.5 + rot: 3.141592653589793 rad + pos: 8.5,-61.5 parent: 2 - - uid: 28741 + - uid: 28920 components: - type: Transform - pos: -49.5,-26.5 + rot: 3.141592653589793 rad + pos: 7.5,-61.5 parent: 2 - - uid: 28742 + - uid: 28921 components: - type: Transform - pos: -50.5,-26.5 + rot: 3.141592653589793 rad + pos: 10.5,-61.5 parent: 2 - - uid: 28743 + - uid: 28922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-34.5 + rot: 3.141592653589793 rad + pos: 7.5,-58.5 parent: 2 - - uid: 28744 + - uid: 28923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-35.5 + pos: 8.5,-63.5 parent: 2 - - uid: 28745 + - uid: 28924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-44.5 + pos: -27.5,-58.5 parent: 2 - - uid: 28746 + - uid: 28925 components: - type: Transform - pos: 6.5,-3.5 + pos: -19.5,-53.5 parent: 2 - - uid: 28747 + - uid: 28926 components: - type: Transform - pos: 19.5,-27.5 + pos: -17.5,-53.5 parent: 2 - - uid: 28748 + - uid: 28927 components: - type: Transform - pos: 5.5,-3.5 + rot: 3.141592653589793 rad + pos: -0.5,-59.5 parent: 2 - - uid: 28749 + - uid: 28928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-38.5 + rot: 3.141592653589793 rad + pos: -8.5,-61.5 parent: 2 - - uid: 28750 + - uid: 28929 components: - type: Transform - pos: 6.5,-8.5 + rot: 3.141592653589793 rad + pos: -10.5,-62.5 parent: 2 - - uid: 28751 + - uid: 28930 components: - type: Transform - pos: 19.5,-28.5 + rot: 3.141592653589793 rad + pos: -0.5,-58.5 parent: 2 - - uid: 28752 + - uid: 28931 components: - type: Transform - pos: -35.5,-19.5 + rot: -1.5707963267948966 rad + pos: 1.5,-53.5 parent: 2 - - uid: 28753 + - uid: 28932 components: - type: Transform - pos: -34.5,-19.5 + pos: -11.5,-68.5 parent: 2 - - uid: 28754 + - uid: 28933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-67.5 + pos: -13.5,-68.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 28756 + - uid: 28934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-57.5 + pos: -15.5,-68.5 parent: 2 - - uid: 28757 + - uid: 28935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-56.5 + pos: -5.5,-67.5 parent: 2 - - uid: 28758 + - uid: 28936 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-57.5 + pos: 2.5,-54.5 parent: 2 - - uid: 28759 + - uid: 28937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-51.5 + pos: -10.5,-68.5 parent: 2 - - uid: 28760 + - uid: 28938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-57.5 + pos: -12.5,-68.5 parent: 2 - - uid: 28761 + - uid: 28939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-57.5 + rot: 3.141592653589793 rad + pos: -0.5,-57.5 parent: 2 - - uid: 28762 + - uid: 28940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-57.5 + rot: 3.141592653589793 rad + pos: -10.5,-56.5 parent: 2 - - uid: 28763 + - uid: 28941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-55.5 + rot: 3.141592653589793 rad + pos: -15.5,-62.5 parent: 2 - - uid: 28764 + - uid: 28942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-51.5 + rot: 3.141592653589793 rad + pos: -0.5,-63.5 parent: 2 - - uid: 28765 + - uid: 28943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-57.5 parent: 2 - - uid: 28766 + - uid: 28944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-50.5 + rot: 3.141592653589793 rad + pos: -0.5,-60.5 parent: 2 - - uid: 28767 + - uid: 28945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-50.5 + rot: 3.141592653589793 rad + pos: -6.5,-64.5 parent: 2 - - uid: 28768 + - uid: 28946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-50.5 + rot: 3.141592653589793 rad + pos: -0.5,-61.5 parent: 2 - - uid: 28769 + - uid: 28947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-50.5 + rot: 3.141592653589793 rad + pos: -11.5,-62.5 parent: 2 - - uid: 28770 + - uid: 28948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-55.5 + rot: 3.141592653589793 rad + pos: -1.5,-63.5 parent: 2 - - uid: 28771 + - uid: 28949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-50.5 + rot: 3.141592653589793 rad + pos: -0.5,-62.5 parent: 2 - - uid: 28772 + - uid: 28950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-58.5 parent: 2 - - uid: 28773 + - uid: 28951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-51.5 + rot: -1.5707963267948966 rad + pos: 1.5,-54.5 parent: 2 - - uid: 28774 + - uid: 28952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-56.5 + rot: 3.141592653589793 rad + pos: -15.5,-57.5 parent: 2 - - uid: 28775 + - uid: 28953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-52.5 + rot: 3.141592653589793 rad + pos: -2.5,-65.5 parent: 2 - - uid: 28776 + - uid: 28954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-56.5 + rot: 3.141592653589793 rad + pos: -14.5,-62.5 parent: 2 - - uid: 28777 + - uid: 28955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-52.5 + rot: 3.141592653589793 rad + pos: -2.5,-63.5 parent: 2 - - uid: 28778 + - uid: 28956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-56.5 + rot: 3.141592653589793 rad + pos: -7.5,-63.5 parent: 2 - - uid: 28779 + - uid: 28957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-56.5 + rot: 3.141592653589793 rad + pos: -9.5,-62.5 parent: 2 -- proto: WallShuttleDiagonal - entities: - - uid: 28780 + - uid: 28958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-57.5 + rot: 3.141592653589793 rad + pos: -2.5,-64.5 parent: 2 - - uid: 28781 + - uid: 28959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-57.5 + rot: 3.141592653589793 rad + pos: -10.5,-57.5 parent: 2 - - uid: 28782 + - uid: 28960 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-57.5 + pos: -2.5,-66.5 parent: 2 - - uid: 28783 + - uid: 28961 components: - type: Transform - pos: -75.5,-50.5 + rot: -1.5707963267948966 rad + pos: -2.5,-67.5 parent: 2 - - uid: 28784 + - uid: 28962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-50.5 + rot: 3.141592653589793 rad + pos: -10.5,-52.5 parent: 2 - - uid: 28785 + - uid: 28963 components: - type: Transform - pos: -66.5,-50.5 + rot: -1.5707963267948966 rad + pos: -6.5,-67.5 parent: 2 - - uid: 28786 + - uid: 28964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-51.5 + pos: 0.5,-54.5 parent: 2 - - uid: 28787 + - uid: 28965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-56.5 + rot: 3.141592653589793 rad + pos: -11.5,-57.5 parent: 2 - - uid: 28788 + - uid: 28966 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-51.5 + pos: -9.5,-57.5 parent: 2 - - uid: 28789 + - uid: 28967 components: - type: Transform - pos: -69.5,-56.5 + rot: 3.141592653589793 rad + pos: -6.5,-63.5 parent: 2 -- proto: WallSolid - entities: - - uid: 26584 + - uid: 28968 components: - type: Transform pos: 13.5,-38.5 parent: 2 - - uid: 26585 + - uid: 28969 components: - type: Transform pos: 13.5,-37.5 parent: 2 - - uid: 26605 + - uid: 28970 components: - type: Transform pos: 13.5,-36.5 parent: 2 - - uid: 26829 + - uid: 28971 components: - type: Transform pos: 13.5,-35.5 parent: 2 - - uid: 28595 + - uid: 28972 components: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 28755 + - uid: 28973 components: - type: Transform pos: 13.5,-40.5 parent: 2 - - uid: 28790 + - uid: 28974 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-39.5 parent: 2 - - uid: 28791 + - uid: 28975 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-37.5 parent: 2 - - uid: 28792 + - uid: 28976 components: - type: Transform pos: 48.5,-59.5 parent: 2 - - uid: 28793 + - uid: 28977 components: - type: Transform pos: 52.5,-60.5 parent: 2 - - uid: 28794 + - uid: 28978 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 - - uid: 28795 + - uid: 28979 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 28796 + - uid: 28980 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,20.5 parent: 2 - - uid: 28797 + - uid: 28981 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 28798 + - uid: 28982 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 28799 + - uid: 28983 components: - type: Transform pos: -1.5,11.5 parent: 2 - - uid: 28800 + - uid: 28984 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 28801 + - uid: 28985 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 28802 + - uid: 28986 components: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 28803 + - uid: 28987 components: - type: Transform pos: -1.5,12.5 parent: 2 - - uid: 28804 + - uid: 28988 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 - - uid: 28805 + - uid: 28989 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - - uid: 28806 + - uid: 28990 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 - - uid: 28807 + - uid: 28991 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 - - uid: 28808 + - uid: 28992 components: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 28809 + - uid: 28993 components: - type: Transform pos: 16.5,-45.5 parent: 2 - - uid: 28810 + - uid: 28994 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-45.5 parent: 2 - - uid: 28811 + - uid: 28995 components: - type: Transform pos: 15.5,-48.5 parent: 2 - - uid: 28812 + - uid: 28996 components: - type: Transform pos: -34.5,-21.5 parent: 2 - - uid: 28813 + - uid: 28997 components: - type: Transform pos: -33.5,-21.5 parent: 2 - - uid: 28814 + - uid: 28998 components: - type: Transform pos: -33.5,-20.5 parent: 2 - - uid: 28815 + - uid: 28999 components: - type: Transform pos: 55.5,-39.5 parent: 2 - - uid: 28816 + - uid: 29000 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 - - uid: 28817 + - uid: 29001 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-12.5 parent: 2 - - uid: 28818 + - uid: 29002 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 - - uid: 28819 + - uid: 29003 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 2 - - uid: 28820 + - uid: 29004 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - uid: 28821 + - uid: 29005 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-12.5 parent: 2 - - uid: 28822 + - uid: 29006 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 28823 + - uid: 29007 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 28824 + - uid: 29008 components: - type: Transform pos: -1.5,-18.5 parent: 2 - - uid: 28825 + - uid: 29009 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 28826 + - uid: 29010 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 28827 + - uid: 29011 components: - type: Transform pos: 1.5,-18.5 parent: 2 - - uid: 28828 + - uid: 29012 components: - type: Transform pos: -2.5,-20.5 parent: 2 - - uid: 28829 + - uid: 29013 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - uid: 28830 + - uid: 29014 components: - type: Transform pos: -2.5,-24.5 parent: 2 - - uid: 28831 + - uid: 29015 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 28832 + - uid: 29016 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 28833 + - uid: 29017 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 28834 + - uid: 29018 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - - uid: 28835 + - uid: 29019 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 28836 + - uid: 29020 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 28837 + - uid: 29021 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 28838 + - uid: 29022 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-30.5 parent: 2 - - uid: 28839 + - uid: 29023 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-30.5 parent: 2 - - uid: 28840 + - uid: 29024 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 - - uid: 28841 + - uid: 29025 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-32.5 parent: 2 - - uid: 28842 + - uid: 29026 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 - - uid: 28843 + - uid: 29027 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-31.5 parent: 2 - - uid: 28844 + - uid: 29028 components: - type: Transform pos: -42.5,-31.5 parent: 2 - - uid: 28845 + - uid: 29029 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 - - uid: 28846 + - uid: 29030 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-34.5 parent: 2 - - uid: 28847 + - uid: 29031 components: - type: Transform pos: -10.5,13.5 parent: 2 - - uid: 28848 + - uid: 29032 components: - type: Transform pos: -9.5,16.5 parent: 2 - - uid: 28849 + - uid: 29033 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,20.5 parent: 2 - - uid: 28850 + - uid: 29034 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 28851 + - uid: 29035 components: - type: Transform pos: -9.5,18.5 parent: 2 - - uid: 28852 + - uid: 29036 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 - - uid: 28853 + - uid: 29037 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 - - uid: 28854 + - uid: 29038 components: - type: Transform pos: 37.5,-56.5 parent: 2 - - uid: 28855 + - uid: 29039 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 28856 + - uid: 29040 components: - type: Transform pos: -11.5,-3.5 parent: 2 - - uid: 28857 + - uid: 29041 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 - - uid: 28858 + - uid: 29042 components: - type: Transform pos: 40.5,-0.5 parent: 2 - - uid: 28859 + - uid: 29043 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 - - uid: 28860 + - uid: 29044 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 28861 + - uid: 29045 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 - - uid: 28862 + - uid: 29046 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 - - uid: 28863 + - uid: 29047 components: - type: Transform pos: 37.5,-53.5 parent: 2 - - uid: 28864 + - uid: 29048 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 - - uid: 28865 + - uid: 29049 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 - - uid: 28866 + - uid: 29050 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 - - uid: 28867 + - uid: 29051 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 - - uid: 28868 + - uid: 29052 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 28869 + - uid: 29053 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 - - uid: 28870 - components: - - type: Transform - pos: 11.5,-61.5 - parent: 2 - - uid: 28871 - components: - - type: Transform - pos: 11.5,-63.5 - parent: 2 - - uid: 28872 - components: - - type: Transform - pos: 9.5,-63.5 - parent: 2 - - uid: 28873 + - uid: 29054 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 28874 + - uid: 29055 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 - - uid: 28875 + - uid: 29056 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 - - uid: 28876 + - uid: 29057 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 - - uid: 28877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 2 - - uid: 28878 + - uid: 29058 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 28879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-68.5 - parent: 2 - - uid: 28880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-67.5 - parent: 2 - - uid: 28881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 2 - - uid: 28882 - components: - - type: Transform - pos: 1.5,-64.5 - parent: 2 - - uid: 28883 - components: - - type: Transform - pos: 1.5,-63.5 - parent: 2 - - uid: 28884 + - uid: 29059 components: - type: Transform pos: -17.5,-63.5 parent: 2 - - uid: 28885 - components: - - type: Transform - pos: 4.5,-51.5 - parent: 2 - - uid: 28886 + - uid: 29060 components: - type: Transform pos: -12.5,-72.5 parent: 2 - - uid: 28887 + - uid: 29061 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 28888 + - uid: 29062 components: - type: Transform pos: -3.5,-74.5 parent: 2 - - uid: 28889 + - uid: 29063 components: - type: Transform pos: 9.5,-68.5 parent: 2 - - uid: 28890 + - uid: 29064 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 - - uid: 28891 + - uid: 29065 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 - - uid: 28892 + - uid: 29066 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 - - uid: 28893 + - uid: 29067 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 - - uid: 28894 - components: - - type: Transform - pos: 1.5,-67.5 - parent: 2 - - uid: 28895 - components: - - type: Transform - pos: 5.5,-63.5 - parent: 2 - - uid: 28896 + - uid: 29068 components: - type: Transform pos: 13.5,-59.5 parent: 2 - - uid: 28897 + - uid: 29069 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 - - uid: 28898 - components: - - type: Transform - pos: -21.5,-64.5 - parent: 2 - - uid: 28899 + - uid: 29070 components: - type: Transform pos: -21.5,-66.5 parent: 2 - - uid: 28900 + - uid: 29071 components: - type: Transform pos: -21.5,-67.5 parent: 2 - - uid: 28901 + - uid: 29072 components: - type: Transform pos: -21.5,-68.5 parent: 2 - - uid: 28902 + - uid: 29073 components: - type: Transform pos: -22.5,-68.5 parent: 2 - - uid: 28903 + - uid: 29074 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 28904 + - uid: 29075 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 28905 + - uid: 29076 components: - type: Transform pos: -23.5,-74.5 parent: 2 - - uid: 28906 + - uid: 29077 components: - type: Transform pos: -22.5,-74.5 parent: 2 - - uid: 28907 + - uid: 29078 components: - type: Transform pos: -16.5,-71.5 parent: 2 - - uid: 28908 + - uid: 29079 components: - type: Transform pos: -21.5,-75.5 parent: 2 - - uid: 28909 + - uid: 29080 components: - type: Transform pos: -10.5,-74.5 parent: 2 - - uid: 28910 + - uid: 29081 components: - type: Transform pos: -8.5,-73.5 parent: 2 - - uid: 28911 + - uid: 29082 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 28912 + - uid: 29083 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 28913 + - uid: 29084 components: - type: Transform pos: 7.5,-66.5 parent: 2 - - uid: 28914 + - uid: 29085 components: - type: Transform pos: 9.5,-66.5 parent: 2 - - uid: 28915 + - uid: 29086 components: - type: Transform pos: -19.5,-74.5 parent: 2 - - uid: 28916 + - uid: 29087 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 - - uid: 28917 + - uid: 29088 components: - type: Transform pos: 9.5,-13.5 parent: 2 - - uid: 28918 + - uid: 29089 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 - - uid: 28919 + - uid: 29090 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 - - uid: 28920 + - uid: 29091 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 - - uid: 28921 + - uid: 29092 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 28922 + - uid: 29093 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 - - uid: 28923 + - uid: 29094 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 - - uid: 28924 - components: - - type: Transform - pos: 6.5,-68.5 - parent: 2 - - uid: 28925 + - uid: 29095 components: - type: Transform pos: 15.5,4.5 parent: 2 - - uid: 28926 + - uid: 29096 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 - - uid: 28927 + - uid: 29097 components: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 28928 + - uid: 29098 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 - - uid: 28929 + - uid: 29099 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 28930 + - uid: 29100 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 - - uid: 28931 + - uid: 29101 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 28932 + - uid: 29102 components: - type: Transform pos: 13.5,-54.5 parent: 2 - - uid: 28933 + - uid: 29103 components: - type: Transform pos: -17.5,-64.5 parent: 2 - - uid: 28934 + - uid: 29104 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 28935 + - uid: 29105 components: - type: Transform pos: -10.5,-2.5 parent: 2 - - uid: 28936 + - uid: 29106 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 - - uid: 28937 + - uid: 29107 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 - - uid: 28938 + - uid: 29108 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 - - uid: 28939 + - uid: 29109 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 - - uid: 28940 + - uid: 29110 components: - type: Transform pos: 37.5,-39.5 parent: 2 - - uid: 28941 + - uid: 29111 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 28942 + - uid: 29112 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 - - uid: 28943 + - uid: 29113 components: - type: Transform pos: 43.5,-57.5 parent: 2 - - uid: 28944 + - uid: 29114 components: - type: Transform pos: 37.5,-27.5 parent: 2 - - uid: 28945 + - uid: 29115 components: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 28946 + - uid: 29116 components: - type: Transform pos: -17.5,-28.5 parent: 2 - - uid: 28947 + - uid: 29117 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 28948 + - uid: 29118 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 - - uid: 28949 + - uid: 29119 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 - - uid: 28950 + - uid: 29120 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 28951 + - uid: 29121 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 - - uid: 28952 + - uid: 29122 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 28953 + - uid: 29123 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 - - uid: 28954 + - uid: 29124 components: - type: Transform pos: 13.5,-48.5 parent: 2 - - uid: 28955 + - uid: 29125 components: - type: Transform pos: -2.5,-18.5 parent: 2 - - uid: 28956 + - uid: 29126 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 28957 + - uid: 29127 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 28958 + - uid: 29128 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 28959 + - uid: 29129 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 - - uid: 28960 + - uid: 29130 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 - - uid: 28961 + - uid: 29131 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 - - uid: 28962 + - uid: 29132 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 - - uid: 28963 + - uid: 29133 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 - - uid: 28964 + - uid: 29134 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 - - uid: 28965 + - uid: 29135 components: - type: Transform pos: 16.5,-13.5 parent: 2 - - uid: 28966 + - uid: 29136 components: - type: Transform pos: 7.5,-12.5 parent: 2 - - uid: 28967 + - uid: 29137 components: - type: Transform pos: -32.5,-69.5 parent: 2 - - uid: 28968 + - uid: 29138 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 28969 + - uid: 29139 components: - type: Transform pos: 18.5,-44.5 parent: 2 - - uid: 28970 + - uid: 29140 components: - type: Transform pos: 42.5,-52.5 parent: 2 - - uid: 28971 + - uid: 29141 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 - - uid: 28972 + - uid: 29142 components: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 28973 + - uid: 29143 components: - type: Transform pos: 37.5,-28.5 parent: 2 - - uid: 28974 + - uid: 29144 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 28975 + - uid: 29145 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 - - uid: 28976 + - uid: 29146 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 - - uid: 28977 + - uid: 29147 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 - - uid: 28978 + - uid: 29148 components: - type: Transform pos: 42.5,-56.5 parent: 2 - - uid: 28979 + - uid: 29149 components: - type: Transform pos: -17.5,-38.5 parent: 2 - - uid: 28980 + - uid: 29150 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 - - uid: 28981 + - uid: 29151 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 28982 + - uid: 29152 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 28983 + - uid: 29153 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 28984 + - uid: 29154 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 28985 + - uid: 29155 components: - type: Transform pos: -30.5,-76.5 parent: 2 - - uid: 28986 + - uid: 29156 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 - - uid: 28987 - components: - - type: Transform - pos: 11.5,-65.5 - parent: 2 - - uid: 28988 + - uid: 29157 components: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 28989 + - uid: 29158 components: - type: Transform pos: 15.5,-56.5 parent: 2 - - uid: 28990 - components: - - type: Transform - pos: 8.5,-63.5 - parent: 2 - - uid: 28991 + - uid: 29159 components: - type: Transform - pos: 11.5,-62.5 + pos: 10.5,-62.5 parent: 2 - - uid: 28992 + - uid: 29160 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 28993 + - uid: 29161 components: - type: Transform - pos: 11.5,-60.5 + rot: 3.141592653589793 rad + pos: 10.5,-59.5 parent: 2 - - uid: 28994 + - uid: 29162 components: - type: Transform - pos: 11.5,-59.5 + rot: 3.141592653589793 rad + pos: 10.5,-58.5 parent: 2 - - uid: 28995 + - uid: 29163 components: - type: Transform - pos: 11.5,-58.5 + rot: 3.141592653589793 rad + pos: 10.5,-60.5 parent: 2 - - uid: 28996 + - uid: 29164 components: - type: Transform pos: 11.5,-57.5 parent: 2 - - uid: 28997 + - uid: 29165 components: - type: Transform pos: 10.5,-57.5 parent: 2 - - uid: 28998 + - uid: 29166 components: - type: Transform pos: 9.5,-57.5 parent: 2 - - uid: 28999 + - uid: 29167 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 - - uid: 29000 + - uid: 29168 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 - - uid: 29001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-68.5 - parent: 2 - - uid: 29002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-68.5 - parent: 2 - - uid: 29003 + - uid: 29169 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 - - uid: 29004 + - uid: 29170 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 - - uid: 29005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-67.5 - parent: 2 - - uid: 29006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-67.5 - parent: 2 - - uid: 29007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-67.5 - parent: 2 - - uid: 29008 - components: - - type: Transform - pos: 1.5,-62.5 - parent: 2 - - uid: 29009 - components: - - type: Transform - pos: 1.5,-65.5 - parent: 2 - - uid: 29010 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 2 - - uid: 29011 + - uid: 29171 components: - type: Transform pos: -17.5,-65.5 parent: 2 - - uid: 29012 - components: - - type: Transform - pos: -7.5,-62.5 - parent: 2 - - uid: 29013 + - uid: 29172 components: - type: Transform pos: 12.5,-50.5 parent: 2 - - uid: 29014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-55.5 - parent: 2 - - uid: 29015 + - uid: 29173 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 - - uid: 29016 + - uid: 29174 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 29017 + - uid: 29175 components: - type: Transform pos: -21.5,-7.5 parent: 2 - - uid: 29018 + - uid: 29176 components: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 29019 + - uid: 29177 components: - type: Transform pos: -16.5,-7.5 parent: 2 - - uid: 29020 + - uid: 29178 components: - type: Transform pos: -14.5,-7.5 parent: 2 - - uid: 29021 + - uid: 29179 components: - type: Transform pos: -12.5,-7.5 parent: 2 - - uid: 29022 + - uid: 29180 components: - type: Transform pos: -11.5,-5.5 parent: 2 - - uid: 29023 + - uid: 29181 components: - type: Transform pos: -11.5,-7.5 parent: 2 - - uid: 29024 + - uid: 29182 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 - - uid: 29025 + - uid: 29183 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 - - uid: 29026 + - uid: 29184 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 - - uid: 29027 + - uid: 29185 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 - - uid: 29028 + - uid: 29186 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 - - uid: 29029 + - uid: 29187 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 - - uid: 29030 + - uid: 29188 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 - - uid: 29031 + - uid: 29189 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 - - uid: 29032 + - uid: 29190 components: - type: Transform pos: 37.5,-31.5 parent: 2 - - uid: 29033 + - uid: 29191 components: - type: Transform pos: 28.5,-3.5 parent: 2 - - uid: 29034 + - uid: 29192 components: - type: Transform pos: -7.5,-34.5 parent: 2 - - uid: 29035 + - uid: 29193 components: - type: Transform pos: -20.5,-74.5 parent: 2 - - uid: 29036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-51.5 - parent: 2 - - uid: 29037 + - uid: 29194 components: - type: Transform pos: 41.5,-52.5 parent: 2 - - uid: 29038 + - uid: 29195 components: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 29039 + - uid: 29196 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 - - uid: 29040 + - uid: 29197 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 29041 + - uid: 29198 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 29042 + - uid: 29199 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 29043 + - uid: 29200 components: - type: Transform pos: -24.5,-68.5 parent: 2 - - uid: 29044 + - uid: 29201 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 29045 + - uid: 29202 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 - - uid: 29046 + - uid: 29203 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 29047 + - uid: 29204 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 29048 + - uid: 29205 components: - type: Transform pos: -22.5,-19.5 parent: 2 - - uid: 29049 + - uid: 29206 components: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 29050 + - uid: 29207 components: - type: Transform pos: 37.5,-57.5 parent: 2 - - uid: 29051 + - uid: 29208 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 29052 + - uid: 29209 components: - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 29053 + - uid: 29210 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 - - uid: 29054 + - uid: 29211 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 - - uid: 29055 + - uid: 29212 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 - - uid: 29056 + - uid: 29213 components: - type: Transform pos: -3.5,-72.5 parent: 2 - - uid: 29057 + - uid: 29214 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 29058 + - uid: 29215 components: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 29059 + - uid: 29216 components: - type: Transform pos: -11.5,-6.5 parent: 2 - - uid: 29060 + - uid: 29217 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 - - uid: 29061 + - uid: 29218 components: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 29062 + - uid: 29219 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 - - uid: 29063 + - uid: 29220 components: - type: Transform pos: 11.5,-48.5 parent: 2 - - uid: 29064 + - uid: 29221 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 - - uid: 29065 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 2 - - uid: 29066 + - uid: 29222 components: - type: Transform pos: 7.5,-57.5 parent: 2 - - uid: 29067 + - uid: 29223 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 - - uid: 29068 + - uid: 29224 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 - - uid: 29069 + - uid: 29225 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 29070 + - uid: 29226 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 29071 + - uid: 29227 components: - type: Transform pos: -8.5,-3.5 parent: 2 - - uid: 29072 + - uid: 29228 components: - type: Transform pos: -6.5,-2.5 parent: 2 - - uid: 29073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-51.5 - parent: 2 - - uid: 29074 + - uid: 29229 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 29075 + - uid: 29230 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 - - uid: 29076 + - uid: 29231 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 - - uid: 29077 + - uid: 29232 components: - type: Transform pos: 15.5,-3.5 parent: 2 - - uid: 29078 + - uid: 29233 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 29079 + - uid: 29234 components: - type: Transform pos: -11.5,1.5 parent: 2 - - uid: 29080 + - uid: 29235 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 29081 + - uid: 29236 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 29082 + - uid: 29237 components: - type: Transform pos: 42.5,-57.5 parent: 2 - - uid: 29083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-62.5 - parent: 2 - - uid: 29084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-51.5 - parent: 2 - - uid: 29085 + - uid: 29238 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - uid: 29086 + - uid: 29239 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 29087 + - uid: 29240 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 29088 + - uid: 29241 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 - - uid: 29089 + - uid: 29242 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 - - uid: 29090 + - uid: 29243 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 - - uid: 29091 + - uid: 29244 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 29092 + - uid: 29245 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - uid: 29093 + - uid: 29246 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 29094 + - uid: 29247 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 - - uid: 29095 + - uid: 29248 components: - type: Transform pos: 27.5,-56.5 parent: 2 - - uid: 29096 + - uid: 29249 components: - type: Transform pos: 27.5,-50.5 parent: 2 - - uid: 29097 + - uid: 29250 components: - type: Transform pos: 23.5,-50.5 parent: 2 - - uid: 29098 + - uid: 29251 components: - type: Transform pos: 23.5,-54.5 parent: 2 - - uid: 29099 + - uid: 29252 components: - type: Transform pos: 23.5,-52.5 parent: 2 - - uid: 29100 + - uid: 29253 components: - type: Transform pos: 23.5,-51.5 parent: 2 - - uid: 29101 + - uid: 29254 components: - type: Transform pos: 23.5,-49.5 parent: 2 - - uid: 29102 + - uid: 29255 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 - - uid: 29103 + - uid: 29256 components: - type: Transform pos: -17.5,-31.5 parent: 2 - - uid: 29104 + - uid: 29257 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 - - uid: 29105 + - uid: 29258 components: - type: Transform pos: 19.5,-2.5 parent: 2 - - uid: 29106 + - uid: 29259 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 29107 + - uid: 29260 components: - type: Transform pos: 16.5,-7.5 parent: 2 - - uid: 29108 + - uid: 29261 components: - type: Transform pos: -9.5,-16.5 parent: 2 - - uid: 29109 + - uid: 29262 components: - type: Transform pos: 2.5,10.5 parent: 2 - - uid: 29110 + - uid: 29263 components: - type: Transform pos: 14.5,-44.5 parent: 2 - - uid: 29111 + - uid: 29264 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 - - uid: 29112 + - uid: 29265 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 - - uid: 29113 + - uid: 29266 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 - - uid: 29114 + - uid: 29267 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 - - uid: 29115 + - uid: 29268 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 - - uid: 29116 + - uid: 29269 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 - - uid: 29117 + - uid: 29270 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 - - uid: 29118 + - uid: 29271 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 - - uid: 29119 + - uid: 29272 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 29120 + - uid: 29273 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 - - uid: 29121 + - uid: 29274 components: - type: Transform pos: -27.5,10.5 parent: 2 - - uid: 29122 + - uid: 29275 components: - type: Transform pos: -21.5,9.5 parent: 2 - - uid: 29123 + - uid: 29276 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 29124 + - uid: 29277 components: - type: Transform pos: -21.5,14.5 parent: 2 - - uid: 29125 + - uid: 29278 components: - type: Transform pos: -10.5,-7.5 parent: 2 - - uid: 29126 + - uid: 29279 components: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 29127 + - uid: 29280 components: - type: Transform pos: -15.5,-7.5 parent: 2 - - uid: 29128 + - uid: 29281 components: - type: Transform pos: -17.5,-7.5 parent: 2 - - uid: 29129 + - uid: 29282 components: - type: Transform pos: -21.5,-8.5 parent: 2 - - uid: 29130 + - uid: 29283 components: - type: Transform pos: -22.5,-7.5 parent: 2 - - uid: 29131 + - uid: 29284 components: - type: Transform pos: -24.5,-7.5 parent: 2 - - uid: 29132 + - uid: 29285 components: - type: Transform pos: -17.5,-8.5 parent: 2 - - uid: 29133 + - uid: 29286 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 - - uid: 29134 + - uid: 29287 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 - - uid: 29135 + - uid: 29288 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 - - uid: 29136 + - uid: 29289 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 29137 + - uid: 29290 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 - - uid: 29138 + - uid: 29291 components: - type: Transform pos: 1.5,10.5 parent: 2 - - uid: 29139 + - uid: 29292 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 29140 + - uid: 29293 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 29141 + - uid: 29294 components: - type: Transform pos: -8.5,-2.5 parent: 2 - - uid: 29142 + - uid: 29295 components: - type: Transform pos: -17.5,-9.5 parent: 2 - - uid: 29143 + - uid: 29296 components: - type: Transform pos: -17.5,-10.5 parent: 2 - - uid: 29144 + - uid: 29297 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 - - uid: 29145 + - uid: 29298 components: - type: Transform pos: 35.5,-6.5 parent: 2 - - uid: 29146 + - uid: 29299 components: - type: Transform pos: 45.5,-0.5 parent: 2 - - uid: 29147 + - uid: 29300 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 29148 + - uid: 29301 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 29149 + - uid: 29302 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 29150 + - uid: 29303 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 - - uid: 29151 + - uid: 29304 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 - - uid: 29152 + - uid: 29305 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 - - uid: 29153 + - uid: 29306 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 - - uid: 29154 + - uid: 29307 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 - - uid: 29155 + - uid: 29308 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 - - uid: 29156 + - uid: 29309 components: - type: Transform pos: -26.5,-8.5 parent: 2 - - uid: 29157 + - uid: 29310 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 - - uid: 29158 + - uid: 29311 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 29159 + - uid: 29312 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 - - uid: 29160 + - uid: 29313 components: - type: Transform pos: 16.5,-44.5 parent: 2 - - uid: 29161 + - uid: 29314 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-44.5 parent: 2 - - uid: 29162 + - uid: 29315 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 29163 + - uid: 29316 components: - type: Transform pos: 11.5,-28.5 parent: 2 - - uid: 29164 + - uid: 29317 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 29165 + - uid: 29318 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 29166 + - uid: 29319 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 29167 + - uid: 29320 components: - type: Transform pos: 9.5,-48.5 parent: 2 - - uid: 29168 + - uid: 29321 components: - type: Transform pos: 2.5,-44.5 parent: 2 - - uid: 29169 + - uid: 29322 components: - type: Transform pos: 8.5,-48.5 parent: 2 - - uid: 29170 + - uid: 29323 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 - - uid: 29171 + - uid: 29324 components: - type: Transform pos: -10.5,-34.5 parent: 2 - - uid: 29172 + - uid: 29325 components: - type: Transform pos: 35.5,-44.5 parent: 2 - - uid: 29173 + - uid: 29326 components: - type: Transform pos: 41.5,-49.5 parent: 2 - - uid: 29174 + - uid: 29327 components: - type: Transform pos: 39.5,-47.5 parent: 2 - - uid: 29175 + - uid: 29328 components: - type: Transform pos: 39.5,-44.5 parent: 2 - - uid: 29176 + - uid: 29329 components: - type: Transform pos: 41.5,-48.5 parent: 2 - - uid: 29177 + - uid: 29330 components: - type: Transform pos: -3.5,-51.5 parent: 2 - - uid: 29178 + - uid: 29331 components: - type: Transform pos: -5.5,-51.5 parent: 2 - - uid: 29179 + - uid: 29332 components: - type: Transform pos: -6.5,-51.5 parent: 2 - - uid: 29180 + - uid: 29333 components: - type: Transform pos: -2.5,-50.5 parent: 2 - - uid: 29181 + - uid: 29334 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 - - uid: 29182 + - uid: 29335 components: - type: Transform pos: 7.5,-54.5 parent: 2 - - uid: 29183 + - uid: 29336 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 - - uid: 29184 + - uid: 29337 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 - - uid: 29185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-58.5 - parent: 2 - - uid: 29186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-58.5 - parent: 2 - - uid: 29187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-58.5 - parent: 2 - - uid: 29188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-55.5 - parent: 2 - - uid: 29189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 2 - - uid: 29190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-58.5 - parent: 2 - - uid: 29191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 2 - - uid: 29192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 2 - - uid: 29193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 2 - - uid: 29194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-58.5 - parent: 2 - - uid: 29195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-55.5 - parent: 2 - - uid: 29196 + - uid: 29338 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 - - uid: 29197 + - uid: 29339 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-51.5 + pos: -12.5,-62.5 parent: 2 - - uid: 29198 + - uid: 29340 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 - - uid: 29199 + - uid: 29341 components: - type: Transform pos: 9.5,-51.5 parent: 2 - - uid: 29200 + - uid: 29342 components: - type: Transform pos: 7.5,-52.5 parent: 2 - - uid: 29201 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 2 - - uid: 29202 + - uid: 29343 components: - type: Transform pos: 11.5,-50.5 parent: 2 - - uid: 29203 + - uid: 29344 components: - type: Transform pos: -17.5,-66.5 parent: 2 - - uid: 29204 + - uid: 29345 components: - type: Transform pos: -17.5,-62.5 parent: 2 - - uid: 29205 + - uid: 29346 components: - type: Transform pos: -16.5,-62.5 parent: 2 - - uid: 29206 - components: - - type: Transform - pos: -15.5,-62.5 - parent: 2 - - uid: 29207 - components: - - type: Transform - pos: -14.5,-62.5 - parent: 2 - - uid: 29208 - components: - - type: Transform - pos: -12.5,-62.5 - parent: 2 - - uid: 29209 - components: - - type: Transform - pos: -11.5,-62.5 - parent: 2 - - uid: 29210 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 2 - - uid: 29211 - components: - - type: Transform - pos: 1.5,-68.5 - parent: 2 - - uid: 29212 - components: - - type: Transform - pos: 0.5,-68.5 - parent: 2 - - uid: 29213 - components: - - type: Transform - pos: -0.5,-68.5 - parent: 2 - - uid: 29214 - components: - - type: Transform - pos: -2.5,-68.5 - parent: 2 - - uid: 29215 - components: - - type: Transform - pos: -3.5,-68.5 - parent: 2 - - uid: 29216 - components: - - type: Transform - pos: -4.5,-68.5 - parent: 2 - - uid: 29217 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 2 - - uid: 29218 - components: - - type: Transform - pos: 5.5,-62.5 - parent: 2 - - uid: 29219 - components: - - type: Transform - pos: 5.5,-64.5 - parent: 2 - - uid: 29220 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 2 - - uid: 29221 - components: - - type: Transform - pos: 5.5,-66.5 - parent: 2 - - uid: 29222 - components: - - type: Transform - pos: 4.5,-66.5 - parent: 2 - - uid: 29223 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 2 - - uid: 29224 - components: - - type: Transform - pos: 2.5,-66.5 - parent: 2 - - uid: 29225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-68.5 - parent: 2 - - uid: 29226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-68.5 - parent: 2 - - uid: 29227 + - uid: 29347 components: - type: Transform pos: 56.5,-32.5 parent: 2 - - uid: 29228 + - uid: 29348 components: - type: Transform pos: 11.5,-54.5 parent: 2 - - uid: 29229 + - uid: 29349 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 29230 + - uid: 29350 components: - type: Transform pos: -21.5,-62.5 parent: 2 - - uid: 29231 - components: - - type: Transform - pos: -20.5,-62.5 - parent: 2 - - uid: 29232 - components: - - type: Transform - pos: -18.5,-62.5 - parent: 2 - - uid: 29233 + - uid: 29351 components: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 29234 + - uid: 29352 components: - type: Transform pos: 14.5,-56.5 parent: 2 - - uid: 29235 + - uid: 29353 components: - type: Transform pos: 14.5,-54.5 parent: 2 - - uid: 29236 + - uid: 29354 components: - type: Transform pos: 13.5,-60.5 parent: 2 - - uid: 29237 + - uid: 29355 components: - type: Transform pos: 13.5,-61.5 parent: 2 - - uid: 29238 + - uid: 29356 components: - type: Transform pos: 13.5,-62.5 parent: 2 - - uid: 29239 + - uid: 29357 components: - type: Transform pos: 13.5,-64.5 parent: 2 - - uid: 29240 - components: - - type: Transform - pos: 12.5,-65.5 - parent: 2 - - uid: 29241 - components: - - type: Transform - pos: 10.5,-65.5 - parent: 2 - - uid: 29242 + - uid: 29358 components: - type: Transform pos: 10.5,-66.5 parent: 2 - - uid: 29243 + - uid: 29359 components: - type: Transform pos: -8.5,-20.5 parent: 2 - - uid: 29244 + - uid: 29360 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 - - uid: 29245 + - uid: 29361 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 - - uid: 29246 + - uid: 29362 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 - - uid: 29247 + - uid: 29363 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 - - uid: 29248 + - uid: 29364 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 - - uid: 29249 + - uid: 29365 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 - - uid: 29250 + - uid: 29366 components: - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 29251 + - uid: 29367 components: - type: Transform pos: 37.5,-52.5 parent: 2 - - uid: 29252 + - uid: 29368 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 29253 + - uid: 29369 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 - - uid: 29254 + - uid: 29370 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 - - uid: 29255 + - uid: 29371 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 29256 + - uid: 29372 components: - type: Transform pos: -21.5,-63.5 parent: 2 - - uid: 29257 + - uid: 29373 components: - type: Transform pos: -21.5,-65.5 parent: 2 - - uid: 29258 + - uid: 29374 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 29259 + - uid: 29375 components: - type: Transform pos: -26.5,-74.5 parent: 2 - - uid: 29260 + - uid: 29376 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 29261 + - uid: 29377 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 29262 + - uid: 29378 components: - type: Transform pos: -16.5,-70.5 parent: 2 - - uid: 29263 + - uid: 29379 components: - type: Transform pos: -16.5,-73.5 parent: 2 - - uid: 29264 + - uid: 29380 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 29265 + - uid: 29381 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 29266 + - uid: 29382 components: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 29267 + - uid: 29383 components: - type: Transform pos: -7.5,-72.5 parent: 2 - - uid: 29268 + - uid: 29384 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 29269 + - uid: 29385 components: - type: Transform pos: -10.5,-73.5 parent: 2 - - uid: 29270 + - uid: 29386 components: - type: Transform pos: -9.5,-73.5 parent: 2 - - uid: 29271 + - uid: 29387 components: - type: Transform pos: -7.5,-73.5 parent: 2 - - uid: 29272 + - uid: 29388 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 29273 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 2 - - uid: 29274 - components: - - type: Transform - pos: 4.5,-68.5 - parent: 2 - - uid: 29275 - components: - - type: Transform - pos: 5.5,-68.5 - parent: 2 - - uid: 29276 + - uid: 29389 components: - type: Transform pos: 7.5,-67.5 parent: 2 - - uid: 29277 + - uid: 29390 components: - type: Transform pos: 8.5,-66.5 parent: 2 - - uid: 29278 + - uid: 29391 components: - type: Transform pos: -21.5,-74.5 parent: 2 - - uid: 29279 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 2 - - uid: 29280 + - uid: 29392 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 29281 + - uid: 29393 components: - type: Transform pos: -21.5,-83.5 parent: 2 - - uid: 29282 + - uid: 29394 components: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 29283 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 2 - - uid: 29284 - components: - - type: Transform - pos: -10.5,-65.5 - parent: 2 - - uid: 29285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-65.5 - parent: 2 - - uid: 29286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-66.5 - parent: 2 - - uid: 29287 + - uid: 29395 components: - type: Transform pos: 40.5,-52.5 parent: 2 - - uid: 29288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-64.5 - parent: 2 - - uid: 29289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-63.5 - parent: 2 - - uid: 29290 + - uid: 29396 components: - type: Transform pos: -6.5,-35.5 parent: 2 - - uid: 29291 + - uid: 29397 components: - type: Transform pos: -13.5,-32.5 parent: 2 - - uid: 29292 + - uid: 29398 components: - type: Transform pos: -25.5,-7.5 parent: 2 - - uid: 29293 + - uid: 29399 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 - - uid: 29294 + - uid: 29400 components: - type: Transform pos: 12.5,-13.5 parent: 2 - - uid: 29295 + - uid: 29401 components: - type: Transform pos: 3.5,-72.5 parent: 2 - - uid: 29296 + - uid: 29402 components: - type: Transform pos: 10.5,-68.5 parent: 2 - - uid: 29297 + - uid: 29403 components: - type: Transform pos: 7.5,-51.5 parent: 2 - - uid: 29298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - - uid: 29299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 2 - - uid: 29300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 2 - - uid: 29301 + - uid: 29404 components: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 29302 + - uid: 29405 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 - - uid: 29303 + - uid: 29406 components: - type: Transform pos: 9.5,-28.5 parent: 2 - - uid: 29304 + - uid: 29407 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 29305 + - uid: 29408 components: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 29306 + - uid: 29409 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 29307 + - uid: 29410 components: - type: Transform pos: -9.5,13.5 parent: 2 - - uid: 29308 + - uid: 29411 components: - type: Transform pos: -5.5,12.5 parent: 2 - - uid: 29309 + - uid: 29412 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 29310 + - uid: 29413 components: - type: Transform pos: 13.5,-51.5 parent: 2 - - uid: 29311 + - uid: 29414 components: - type: Transform pos: 24.5,-3.5 parent: 2 - - uid: 29312 + - uid: 29415 components: - type: Transform pos: 15.5,-7.5 parent: 2 - - uid: 29313 + - uid: 29416 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 - - uid: 29314 + - uid: 29417 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 29315 + - uid: 29418 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 - - uid: 29316 + - uid: 29419 components: - type: Transform pos: -1.5,0.5 parent: 2 - - uid: 29317 + - uid: 29420 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 29318 + - uid: 29421 components: - type: Transform pos: 15.5,5.5 parent: 2 - - uid: 29319 + - uid: 29422 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 29320 + - uid: 29423 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 - - uid: 29321 + - uid: 29424 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 29322 + - uid: 29425 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 29323 + - uid: 29426 components: - type: Transform pos: 14.5,4.5 parent: 2 - - uid: 29324 + - uid: 29427 components: - type: Transform pos: -5.5,4.5 parent: 2 - - uid: 29325 + - uid: 29428 components: - type: Transform pos: 13.5,4.5 parent: 2 - - uid: 29326 + - uid: 29429 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 29327 + - uid: 29430 components: - type: Transform pos: -13.5,-72.5 parent: 2 - - uid: 29328 + - uid: 29431 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 29329 + - uid: 29432 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 - - uid: 29330 + - uid: 29433 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 29331 + - uid: 29434 components: - type: Transform pos: 15.5,-4.5 parent: 2 - - uid: 29332 + - uid: 29435 components: - type: Transform pos: 15.5,0.5 parent: 2 - - uid: 29333 + - uid: 29436 components: - type: Transform pos: 37.5,-38.5 parent: 2 - - uid: 29334 + - uid: 29437 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 - - uid: 29335 + - uid: 29438 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 - - uid: 29336 + - uid: 29439 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 - - uid: 29337 + - uid: 29440 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 - - uid: 29338 + - uid: 29441 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 - - uid: 29339 + - uid: 29442 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 29340 + - uid: 29443 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 29341 + - uid: 29444 components: - type: Transform pos: 39.5,-27.5 parent: 2 - - uid: 29342 + - uid: 29445 components: - type: Transform pos: 39.5,-31.5 parent: 2 - - uid: 29343 + - uid: 29446 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 - - uid: 29344 + - uid: 29447 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 29345 + - uid: 29448 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 - - uid: 29346 + - uid: 29449 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 - - uid: 29347 + - uid: 29450 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 - - uid: 29348 + - uid: 29451 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 - - uid: 29349 + - uid: 29452 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 - - uid: 29350 + - uid: 29453 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 29351 + - uid: 29454 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 - - uid: 29352 + - uid: 29455 components: - type: Transform pos: 38.5,-31.5 parent: 2 - - uid: 29353 + - uid: 29456 components: - type: Transform pos: -6.5,-15.5 parent: 2 - - uid: 29354 + - uid: 29457 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 - - uid: 29355 + - uid: 29458 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 - - uid: 29356 + - uid: 29459 components: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 29357 + - uid: 29460 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 - - uid: 29358 + - uid: 29461 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 29359 + - uid: 29462 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 - - uid: 29360 + - uid: 29463 components: - type: Transform pos: -26.5,-15.5 parent: 2 - - uid: 29361 + - uid: 29464 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 29362 + - uid: 29465 components: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 29363 + - uid: 29466 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 29364 + - uid: 29467 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 29365 + - uid: 29468 components: - type: Transform pos: 12.5,-48.5 parent: 2 - - uid: 29366 + - uid: 29469 components: - type: Transform pos: 9.5,-15.5 parent: 2 - - uid: 29367 + - uid: 29470 components: - type: Transform pos: 7.5,-15.5 parent: 2 - - uid: 29368 + - uid: 29471 components: - type: Transform pos: 6.5,-15.5 parent: 2 - - uid: 29369 + - uid: 29472 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 29370 + - uid: 29473 components: - type: Transform pos: -10.5,-28.5 parent: 2 - - uid: 29371 + - uid: 29474 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 - - uid: 29372 + - uid: 29475 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-40.5 parent: 2 - - uid: 29373 + - uid: 29476 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 - - uid: 29374 + - uid: 29477 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 - - uid: 29375 + - uid: 29478 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 - - uid: 29376 + - uid: 29479 components: - type: Transform pos: -2.5,-51.5 parent: 2 - - uid: 29377 + - uid: 29480 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 - - uid: 29378 + - uid: 29481 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 - - uid: 29379 + - uid: 29482 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 - - uid: 29380 + - uid: 29483 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 29381 + - uid: 29484 components: - type: Transform pos: 14.5,-11.5 parent: 2 - - uid: 29382 + - uid: 29485 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 29383 + - uid: 29486 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 - - uid: 29384 + - uid: 29487 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 29385 + - uid: 29488 components: - type: Transform pos: 16.5,-12.5 parent: 2 - - uid: 29386 + - uid: 29489 components: - type: Transform pos: 16.5,-11.5 parent: 2 - - uid: 29387 + - uid: 29490 components: - type: Transform pos: 16.5,-10.5 parent: 2 - - uid: 29388 + - uid: 29491 components: - type: Transform pos: 16.5,-9.5 parent: 2 - - uid: 29389 + - uid: 29492 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 29390 + - uid: 29493 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 29391 + - uid: 29494 components: - type: Transform pos: 1.5,-15.5 parent: 2 - - uid: 29392 + - uid: 29495 components: - type: Transform pos: 11.5,-13.5 parent: 2 - - uid: 29393 + - uid: 29496 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 29394 + - uid: 29497 components: - type: Transform pos: 14.5,-10.5 parent: 2 - - uid: 29395 + - uid: 29498 components: - type: Transform pos: 14.5,-9.5 parent: 2 - - uid: 29396 + - uid: 29499 components: - type: Transform pos: 19.5,-9.5 parent: 2 - - uid: 29397 + - uid: 29500 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 - - uid: 29398 + - uid: 29501 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 - - uid: 29399 + - uid: 29502 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 - - uid: 29400 + - uid: 29503 components: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 29401 + - uid: 29504 components: - type: Transform pos: -37.5,-29.5 parent: 2 - - uid: 29402 + - uid: 29505 components: - type: Transform pos: 13.5,-13.5 parent: 2 - - uid: 29403 + - uid: 29506 components: - type: Transform pos: 14.5,-13.5 parent: 2 - - uid: 29404 + - uid: 29507 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 - - uid: 29405 + - uid: 29508 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 - - uid: 29406 + - uid: 29509 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 - - uid: 29407 + - uid: 29510 components: - type: Transform pos: 18.5,-9.5 parent: 2 - - uid: 29408 + - uid: 29511 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 - - uid: 29409 + - uid: 29512 components: - type: Transform pos: -5.5,10.5 parent: 2 - - uid: 29410 + - uid: 29513 components: - type: Transform pos: 4.5,4.5 parent: 2 - - uid: 29411 + - uid: 29514 components: - type: Transform pos: -1.5,6.5 parent: 2 - - uid: 29412 + - uid: 29515 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 - - uid: 29413 + - uid: 29516 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 29414 + - uid: 29517 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 - - uid: 29415 + - uid: 29518 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 - - uid: 29416 + - uid: 29519 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 29417 + - uid: 29520 components: - type: Transform pos: 8.5,-50.5 parent: 2 - - uid: 29418 + - uid: 29521 components: - type: Transform pos: -17.5,-37.5 parent: 2 - - uid: 29419 + - uid: 29522 components: - type: Transform pos: -26.5,34.5 parent: 2 - - uid: 29420 + - uid: 29523 components: - type: Transform pos: -28.5,37.5 parent: 2 - - uid: 29421 + - uid: 29524 components: - type: Transform pos: 3.5,4.5 parent: 2 - - uid: 29422 + - uid: 29525 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 - - uid: 29423 + - uid: 29526 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 29424 + - uid: 29527 components: - type: Transform pos: -9.5,-34.5 parent: 2 - - uid: 29425 + - uid: 29528 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 - - uid: 29426 + - uid: 29529 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 - - uid: 29427 + - uid: 29530 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 29428 + - uid: 29531 components: - type: Transform pos: 15.5,1.5 parent: 2 - - uid: 29429 + - uid: 29532 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 - - uid: 29430 + - uid: 29533 components: - type: Transform pos: -17.5,-16.5 parent: 2 - - uid: 29431 + - uid: 29534 components: - type: Transform pos: 42.5,-6.5 parent: 2 - - uid: 29432 + - uid: 29535 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - uid: 29433 + - uid: 29536 components: - type: Transform pos: -25.5,42.5 parent: 2 - - uid: 29434 + - uid: 29537 components: - type: Transform pos: -28.5,36.5 parent: 2 - - uid: 29435 + - uid: 29538 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 29436 + - uid: 29539 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 29437 + - uid: 29540 components: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 29438 + - uid: 29541 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 29439 + - uid: 29542 components: - type: Transform pos: -4.5,-72.5 parent: 2 - - uid: 29440 + - uid: 29543 components: - type: Transform pos: 16.5,-50.5 parent: 2 - - uid: 29441 + - uid: 29544 components: - type: Transform pos: 14.5,-55.5 parent: 2 - - uid: 29442 + - uid: 29545 components: - type: Transform pos: -17.5,-17.5 parent: 2 - - uid: 29443 + - uid: 29546 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 - - uid: 29444 + - uid: 29547 components: - type: Transform pos: -21.5,-24.5 parent: 2 - - uid: 29445 + - uid: 29548 components: - type: Transform pos: 41.5,-57.5 parent: 2 - - uid: 29446 + - uid: 29549 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 - - uid: 29447 + - uid: 29550 components: - type: Transform pos: 36.5,-0.5 parent: 2 - - uid: 29448 + - uid: 29551 components: - type: Transform pos: 9.5,-54.5 parent: 2 - - uid: 29449 + - uid: 29552 components: - type: Transform pos: -17.5,-15.5 parent: 2 - - uid: 29450 + - uid: 29553 components: - type: Transform pos: 37.5,-40.5 parent: 2 - - uid: 29451 + - uid: 29554 components: - type: Transform pos: 38.5,-40.5 parent: 2 - - uid: 29452 + - uid: 29555 components: - type: Transform pos: 40.5,-40.5 parent: 2 - - uid: 29453 + - uid: 29556 components: - type: Transform pos: 27.5,-46.5 parent: 2 - - uid: 29454 + - uid: 29557 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 - - uid: 29455 + - uid: 29558 components: - type: Transform pos: 39.5,-40.5 parent: 2 - - uid: 29456 + - uid: 29559 components: - type: Transform pos: -11.5,4.5 parent: 2 - - uid: 29457 + - uid: 29560 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 - - uid: 29458 + - uid: 29561 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 - - uid: 29459 + - uid: 29562 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 29460 + - uid: 29563 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 - - uid: 29461 + - uid: 29564 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 - - uid: 29462 + - uid: 29565 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 - - uid: 29463 + - uid: 29566 components: - type: Transform pos: -29.5,-76.5 parent: 2 - - uid: 29464 + - uid: 29567 components: - type: Transform pos: -11.5,11.5 parent: 2 - - uid: 29465 + - uid: 29568 components: - type: Transform pos: -2.5,4.5 parent: 2 - - uid: 29466 + - uid: 29569 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 - - uid: 29467 + - uid: 29570 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 - - uid: 29468 + - uid: 29571 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 29469 + - uid: 29572 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 - - uid: 29470 + - uid: 29573 components: - type: Transform pos: -17.5,-35.5 parent: 2 - - uid: 29471 + - uid: 29574 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 - - uid: 29472 - components: - - type: Transform - pos: -10.5,-62.5 - parent: 2 - - uid: 29473 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 29474 + - uid: 29575 components: - type: Transform pos: -2.5,-70.5 parent: 2 - - uid: 29475 + - uid: 29576 components: - type: Transform pos: -1.5,-70.5 parent: 2 - - uid: 29476 + - uid: 29577 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 - - uid: 29477 + - uid: 29578 components: - type: Transform pos: 13.5,-53.5 parent: 2 - - uid: 29478 + - uid: 29579 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 - - uid: 29479 + - uid: 29580 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 29480 + - uid: 29581 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 29481 + - uid: 29582 components: - type: Transform pos: 42.5,-54.5 parent: 2 - - uid: 29482 + - uid: 29583 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 29483 + - uid: 29584 components: - type: Transform pos: 13.5,-44.5 parent: 2 - - uid: 29484 + - uid: 29585 components: - type: Transform pos: -28.5,-76.5 parent: 2 - - uid: 29485 + - uid: 29586 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 29486 + - uid: 29587 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 29487 + - uid: 29588 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 29488 + - uid: 29589 components: - type: Transform pos: -27.5,-76.5 parent: 2 - - uid: 29489 + - uid: 29590 components: - type: Transform pos: -20.5,-65.5 parent: 2 - - uid: 29490 + - uid: 29591 components: - type: Transform pos: -14.5,-72.5 parent: 2 - - uid: 29491 + - uid: 29592 components: - type: Transform pos: -17.5,-74.5 parent: 2 - - uid: 29492 + - uid: 29593 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 29493 + - uid: 29594 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 29494 + - uid: 29595 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 29495 + - uid: 29596 components: - type: Transform pos: -26.5,-76.5 parent: 2 - - uid: 29496 + - uid: 29597 components: - type: Transform pos: -26.5,-75.5 parent: 2 - - uid: 29497 + - uid: 29598 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 - - uid: 29498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-51.5 - parent: 2 - - uid: 29499 + - uid: 29599 components: - type: Transform pos: 16.5,-48.5 parent: 2 - - uid: 29500 + - uid: 29600 components: - type: Transform pos: -17.5,-67.5 parent: 2 - - uid: 29501 + - uid: 29601 components: - type: Transform pos: 10.5,-15.5 parent: 2 - - uid: 29502 + - uid: 29602 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 29503 + - uid: 29603 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 - - uid: 29504 + - uid: 29604 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 29505 + - uid: 29605 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 - - uid: 29506 + - uid: 29606 components: - type: Transform pos: -27.5,-72.5 parent: 2 - - uid: 29507 - components: - - type: Transform - pos: 13.5,-65.5 - parent: 2 - - uid: 29508 - components: - - type: Transform - pos: 10.5,-63.5 - parent: 2 - - uid: 29509 + - uid: 29607 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-8.5 + pos: 12.5,-65.5 parent: 2 - - uid: 29510 + - uid: 29608 components: - type: Transform pos: -6.5,-50.5 parent: 2 - - uid: 29511 + - uid: 29609 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 29512 + - uid: 29610 components: - type: Transform pos: 14.5,-12.5 parent: 2 - - uid: 29513 + - uid: 29611 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 29514 + - uid: 29612 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 - - uid: 29515 + - uid: 29613 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 - - uid: 29516 + - uid: 29614 components: - type: Transform pos: 27.5,-45.5 parent: 2 - - uid: 29517 + - uid: 29615 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 - - uid: 29518 + - uid: 29616 components: - type: Transform pos: -17.5,-13.5 parent: 2 - - uid: 29519 + - uid: 29617 components: - type: Transform pos: 43.5,-6.5 parent: 2 - - uid: 29520 + - uid: 29618 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 29521 + - uid: 29619 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 29522 + - uid: 29620 components: - type: Transform pos: -25.5,43.5 parent: 2 - - uid: 29523 + - uid: 29621 components: - type: Transform pos: -25.5,44.5 parent: 2 - - uid: 29524 + - uid: 29622 components: - type: Transform pos: -25.5,46.5 parent: 2 - - uid: 29525 + - uid: 29623 components: - type: Transform pos: -27.5,36.5 parent: 2 - - uid: 29526 + - uid: 29624 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 - - uid: 29527 + - uid: 29625 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 - - uid: 29528 + - uid: 29626 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 29529 + - uid: 29627 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 - - uid: 29530 + - uid: 29628 components: - type: Transform pos: -17.5,-24.5 parent: 2 - - uid: 29531 + - uid: 29629 components: - type: Transform pos: 42.5,-55.5 parent: 2 - - uid: 29532 + - uid: 29630 components: - type: Transform pos: -26.5,32.5 parent: 2 - - uid: 29533 + - uid: 29631 components: - type: Transform pos: 37.5,-55.5 parent: 2 - - uid: 29534 + - uid: 29632 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 - - uid: 29535 + - uid: 29633 components: - type: Transform pos: 15.5,-5.5 parent: 2 - - uid: 29536 + - uid: 29634 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 - - uid: 29537 + - uid: 29635 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 - - uid: 29538 + - uid: 29636 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 - - uid: 29539 + - uid: 29637 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 29540 + - uid: 29638 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 - - uid: 29541 + - uid: 29639 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 - - uid: 29542 + - uid: 29640 components: - type: Transform pos: 42.5,-53.5 parent: 2 - - uid: 29543 + - uid: 29641 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 - - uid: 29544 + - uid: 29642 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 - - uid: 29545 + - uid: 29643 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 - - uid: 29546 + - uid: 29644 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 - - uid: 29547 + - uid: 29645 components: - type: Transform pos: 20.5,-3.5 parent: 2 - - uid: 29548 + - uid: 29646 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 29549 + - uid: 29647 components: - type: Transform pos: 11.5,-68.5 parent: 2 - - uid: 29550 + - uid: 29648 components: - type: Transform pos: -18.5,-65.5 parent: 2 - - uid: 29551 + - uid: 29649 components: - type: Transform - pos: 7.5,-58.5 + pos: 10.5,-63.5 parent: 2 - - uid: 29552 + - uid: 29650 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 - - uid: 29553 + - uid: 29651 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 - - uid: 29554 + - uid: 29652 components: - type: Transform pos: -2.5,-16.5 parent: 2 - - uid: 29555 + - uid: 29653 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 29556 + - uid: 29654 components: - type: Transform pos: -7.5,-35.5 parent: 2 - - uid: 29557 + - uid: 29655 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 - - uid: 29558 + - uid: 29656 components: - type: Transform pos: 29.5,-3.5 parent: 2 - - uid: 29559 + - uid: 29657 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 - - uid: 29560 + - uid: 29658 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 - - uid: 29561 + - uid: 29659 components: - type: Transform pos: -17.5,-33.5 parent: 2 - - uid: 29562 + - uid: 29660 components: - type: Transform pos: 35.5,-0.5 parent: 2 - - uid: 29563 + - uid: 29661 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 - - uid: 29564 + - uid: 29662 components: - type: Transform pos: -23.5,36.5 parent: 2 - - uid: 29565 + - uid: 29663 components: - type: Transform pos: -23.5,37.5 parent: 2 - - uid: 29566 + - uid: 29664 components: - type: Transform pos: -23.5,39.5 parent: 2 - - uid: 29567 + - uid: 29665 components: - type: Transform pos: -5.5,13.5 parent: 2 - - uid: 29568 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 29569 + - uid: 29666 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 - - uid: 29570 + - uid: 29667 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 29571 + - uid: 29668 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 - - uid: 29572 + - uid: 29669 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 29573 + - uid: 29670 components: - type: Transform pos: -2.5,-72.5 parent: 2 - - uid: 29574 + - uid: 29671 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 - - uid: 29575 + - uid: 29672 components: - type: Transform pos: 57.5,-64.5 parent: 2 - - uid: 29576 + - uid: 29673 components: - type: Transform pos: -14.5,-16.5 parent: 2 - - uid: 29577 + - uid: 29674 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 29578 + - uid: 29675 components: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 29579 + - uid: 29676 components: - type: Transform pos: -17.5,-18.5 parent: 2 - - uid: 29580 + - uid: 29677 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 29581 + - uid: 29678 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 - - uid: 29582 + - uid: 29679 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 29583 + - uid: 29680 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 29584 + - uid: 29681 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 - - uid: 29585 + - uid: 29682 components: - type: Transform pos: -14.5,-17.5 parent: 2 - - uid: 29586 + - uid: 29683 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 29587 + - uid: 29684 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 29588 + - uid: 29685 components: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 29589 + - uid: 29686 components: - type: Transform pos: 11.5,-56.5 parent: 2 - - uid: 29590 + - uid: 29687 components: - type: Transform pos: -7.5,-33.5 parent: 2 - - uid: 29591 + - uid: 29688 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 - - uid: 29592 + - uid: 29689 components: - type: Transform pos: -12.5,-31.5 parent: 2 - - uid: 29593 + - uid: 29690 components: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 29594 + - uid: 29691 components: - type: Transform pos: -13.5,-35.5 parent: 2 - - uid: 29595 + - uid: 29692 components: - type: Transform pos: -13.5,-36.5 parent: 2 - - uid: 29596 + - uid: 29693 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - uid: 29597 + - uid: 29694 components: - type: Transform pos: -13.5,-39.5 parent: 2 - - uid: 29598 + - uid: 29695 components: - type: Transform pos: -16.5,-36.5 parent: 2 - - uid: 29599 + - uid: 29696 components: - type: Transform pos: -15.5,-36.5 parent: 2 - - uid: 29600 + - uid: 29697 components: - type: Transform pos: -14.5,-36.5 parent: 2 - - uid: 29601 + - uid: 29698 components: - type: Transform pos: -7.5,-32.5 parent: 2 - - uid: 29602 + - uid: 29699 components: - type: Transform pos: -7.5,-31.5 parent: 2 - - uid: 29603 + - uid: 29700 components: - type: Transform pos: -10.5,-31.5 parent: 2 - - uid: 29604 + - uid: 29701 components: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 29605 + - uid: 29702 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 29606 + - uid: 29703 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 29607 + - uid: 29704 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 - - uid: 29608 + - uid: 29705 components: - type: Transform pos: 23.5,-47.5 parent: 2 - - uid: 29609 + - uid: 29706 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 - - uid: 29610 + - uid: 29707 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 - - uid: 29611 + - uid: 29708 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 - - uid: 29612 + - uid: 29709 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 - - uid: 29613 + - uid: 29710 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 - - uid: 29614 + - uid: 29711 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 - - uid: 29615 + - uid: 29712 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 29616 + - uid: 29713 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 29617 + - uid: 29714 components: - type: Transform pos: -17.5,-11.5 parent: 2 - - uid: 29618 + - uid: 29715 components: - type: Transform pos: -17.5,-12.5 parent: 2 - - uid: 29619 + - uid: 29716 components: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 29620 + - uid: 29717 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 29621 + - uid: 29718 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 29622 + - uid: 29719 components: - type: Transform pos: -21.5,13.5 parent: 2 - - uid: 29623 + - uid: 29720 components: - type: Transform pos: -21.5,10.5 parent: 2 - - uid: 29624 + - uid: 29721 components: - type: Transform pos: -17.5,13.5 parent: 2 - - uid: 29625 + - uid: 29722 components: - type: Transform pos: -17.5,12.5 parent: 2 - - uid: 29626 + - uid: 29723 components: - type: Transform pos: -17.5,14.5 parent: 2 - - uid: 29627 + - uid: 29724 components: - type: Transform pos: -16.5,14.5 parent: 2 - - uid: 29628 + - uid: 29725 components: - type: Transform pos: -15.5,-32.5 parent: 2 - - uid: 29629 + - uid: 29726 components: - type: Transform pos: -9.5,-30.5 parent: 2 - - uid: 29630 + - uid: 29727 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 29631 + - uid: 29728 components: - type: Transform pos: -14.5,-30.5 parent: 2 - - uid: 29632 + - uid: 29729 components: - type: Transform pos: -14.5,-29.5 parent: 2 - - uid: 29633 + - uid: 29730 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 - - uid: 29634 + - uid: 29731 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 - - uid: 29635 + - uid: 29732 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 - - uid: 29636 + - uid: 29733 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 - - uid: 29637 + - uid: 29734 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 - - uid: 29638 + - uid: 29735 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 - - uid: 29639 + - uid: 29736 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 - - uid: 29640 + - uid: 29737 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 29641 + - uid: 29738 components: - type: Transform pos: -8.5,-16.5 parent: 2 - - uid: 29642 + - uid: 29739 components: - type: Transform pos: 23.5,-45.5 parent: 2 - - uid: 29643 + - uid: 29740 components: - type: Transform pos: 23.5,-44.5 parent: 2 - - uid: 29644 + - uid: 29741 components: - type: Transform pos: 23.5,-48.5 parent: 2 - - uid: 29645 + - uid: 29742 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 29646 + - uid: 29743 components: - type: Transform pos: 18.5,-46.5 parent: 2 - - uid: 29647 + - uid: 29744 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 29648 + - uid: 29745 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 - - uid: 29649 + - uid: 29746 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 29650 + - uid: 29747 components: - type: Transform pos: 61.5,5.5 parent: 2 - - uid: 29651 + - uid: 29748 components: - type: Transform pos: 64.5,1.5 parent: 2 - - uid: 29652 + - uid: 29749 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 29653 + - uid: 29750 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 29654 + - uid: 29751 components: - type: Transform pos: 17.5,30.5 parent: 2 - - uid: 29655 + - uid: 29752 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 - - uid: 29656 + - uid: 29753 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 - - uid: 29657 + - uid: 29754 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 - - uid: 29658 + - uid: 29755 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 - - uid: 29659 + - uid: 29756 components: - type: Transform pos: 47.5,34.5 parent: 2 - - uid: 29660 + - uid: 29757 components: - type: Transform pos: 47.5,33.5 parent: 2 - - uid: 29661 + - uid: 29758 components: - type: Transform pos: 47.5,31.5 parent: 2 - - uid: 29662 + - uid: 29759 components: - type: Transform pos: -9.5,47.5 parent: 2 - - uid: 29663 + - uid: 29760 components: - type: Transform pos: -10.5,47.5 parent: 2 - - uid: 29664 + - uid: 29761 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 - - uid: 29665 + - uid: 29762 components: - type: Transform pos: -3.5,20.5 parent: 2 - - uid: 29666 + - uid: 29763 components: - type: Transform pos: -6.5,20.5 parent: 2 - - uid: 29667 + - uid: 29764 components: - type: Transform pos: -7.5,20.5 parent: 2 - - uid: 29668 + - uid: 29765 components: - type: Transform pos: -9.5,19.5 parent: 2 - - uid: 29669 + - uid: 29766 components: - type: Transform pos: -9.5,20.5 parent: 2 - - uid: 29670 + - uid: 29767 components: - type: Transform pos: -11.5,20.5 parent: 2 - - uid: 29671 + - uid: 29768 components: - type: Transform pos: -11.5,19.5 parent: 2 - - uid: 29672 + - uid: 29769 components: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 29673 + - uid: 29770 components: - type: Transform pos: 34.5,23.5 parent: 2 - - uid: 29674 + - uid: 29771 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 29675 + - uid: 29772 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 - - uid: 29676 + - uid: 29773 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 - - uid: 29677 + - uid: 29774 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 - - uid: 29678 + - uid: 29775 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 - - uid: 29679 + - uid: 29776 components: - type: Transform pos: 61.5,6.5 parent: 2 - - uid: 29680 + - uid: 29777 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 29681 + - uid: 29778 components: - type: Transform pos: 43.5,21.5 parent: 2 - - uid: 29682 + - uid: 29779 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 29683 + - uid: 29780 components: - type: Transform pos: 47.5,-0.5 parent: 2 - - uid: 29684 + - uid: 29781 components: - type: Transform pos: 48.5,24.5 parent: 2 - - uid: 29685 + - uid: 29782 components: - type: Transform pos: 48.5,23.5 parent: 2 - - uid: 29686 + - uid: 29783 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 29687 + - uid: 29784 components: - type: Transform pos: 51.5,24.5 parent: 2 - - uid: 29688 + - uid: 29785 components: - type: Transform pos: 51.5,23.5 parent: 2 - - uid: 29689 + - uid: 29786 components: - type: Transform pos: 51.5,22.5 parent: 2 - - uid: 29690 + - uid: 29787 components: - type: Transform pos: 54.5,24.5 parent: 2 - - uid: 29691 + - uid: 29788 components: - type: Transform pos: 54.5,23.5 parent: 2 - - uid: 29692 + - uid: 29789 components: - type: Transform pos: 54.5,22.5 parent: 2 - - uid: 29693 + - uid: 29790 components: - type: Transform pos: 57.5,24.5 parent: 2 - - uid: 29694 + - uid: 29791 components: - type: Transform pos: 57.5,23.5 parent: 2 - - uid: 29695 + - uid: 29792 components: - type: Transform pos: 57.5,22.5 parent: 2 - - uid: 29696 + - uid: 29793 components: - type: Transform pos: 60.5,24.5 parent: 2 - - uid: 29697 + - uid: 29794 components: - type: Transform pos: 60.5,23.5 parent: 2 - - uid: 29698 + - uid: 29795 components: - type: Transform pos: 60.5,22.5 parent: 2 - - uid: 29699 + - uid: 29796 components: - type: Transform pos: 62.5,20.5 parent: 2 - - uid: 29700 + - uid: 29797 components: - type: Transform pos: 61.5,20.5 parent: 2 - - uid: 29701 + - uid: 29798 components: - type: Transform pos: 60.5,20.5 parent: 2 - - uid: 29702 + - uid: 29799 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 - - uid: 29703 + - uid: 29800 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 - - uid: 29704 + - uid: 29801 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 - - uid: 29705 + - uid: 29802 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 - - uid: 29706 + - uid: 29803 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 29707 + - uid: 29804 components: - type: Transform pos: 62.5,23.5 parent: 2 - - uid: 29708 + - uid: 29805 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 - - uid: 29709 + - uid: 29806 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 - - uid: 29710 + - uid: 29807 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 - - uid: 29711 + - uid: 29808 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 - - uid: 29712 + - uid: 29809 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 - - uid: 29713 + - uid: 29810 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 - - uid: 29714 + - uid: 29811 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 - - uid: 29715 + - uid: 29812 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 - - uid: 29716 + - uid: 29813 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 - - uid: 29717 + - uid: 29814 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 - - uid: 29718 + - uid: 29815 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 - - uid: 29719 + - uid: 29816 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 - - uid: 29720 + - uid: 29817 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 - - uid: 29721 + - uid: 29818 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 - - uid: 29722 + - uid: 29819 components: - type: Transform pos: 58.5,-0.5 parent: 2 - - uid: 29723 + - uid: 29820 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 29724 + - uid: 29821 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 29725 + - uid: 29822 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 - - uid: 29726 + - uid: 29823 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 - - uid: 29727 + - uid: 29824 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 - - uid: 29728 + - uid: 29825 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 - - uid: 29729 + - uid: 29826 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 - - uid: 29730 + - uid: 29827 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 - - uid: 29731 + - uid: 29828 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 - - uid: 29732 + - uid: 29829 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 - - uid: 29733 + - uid: 29830 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 - - uid: 29734 + - uid: 29831 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 - - uid: 29735 + - uid: 29832 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 - - uid: 29736 + - uid: 29833 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 - - uid: 29737 + - uid: 29834 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 - - uid: 29738 + - uid: 29835 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 - - uid: 29739 + - uid: 29836 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 - - uid: 29740 + - uid: 29837 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 - - uid: 29741 + - uid: 29838 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 - - uid: 29742 + - uid: 29839 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 - - uid: 29743 + - uid: 29840 components: - type: Transform pos: 49.5,-5.5 parent: 2 - - uid: 29744 + - uid: 29841 components: - type: Transform pos: 49.5,-6.5 parent: 2 - - uid: 29745 + - uid: 29842 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 29746 + - uid: 29843 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 29747 + - uid: 29844 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 - - uid: 29748 + - uid: 29845 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 - - uid: 29749 + - uid: 29846 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 - - uid: 29750 + - uid: 29847 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 - - uid: 29751 + - uid: 29848 components: - type: Transform pos: 19.5,-48.5 parent: 2 - - uid: 29752 + - uid: 29849 components: - type: Transform pos: 18.5,-48.5 parent: 2 - - uid: 29753 + - uid: 29850 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 - - uid: 29754 + - uid: 29851 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 - - uid: 29755 + - uid: 29852 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 - - uid: 29756 + - uid: 29853 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 - - uid: 29757 + - uid: 29854 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 - - uid: 29758 + - uid: 29855 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 - - uid: 29759 + - uid: 29856 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 - - uid: 29760 + - uid: 29857 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 - - uid: 29761 + - uid: 29858 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 - - uid: 29762 + - uid: 29859 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 - - uid: 29763 + - uid: 29860 components: - type: Transform pos: 40.5,-6.5 parent: 2 - - uid: 29764 + - uid: 29861 components: - type: Transform pos: -14.5,-18.5 parent: 2 - - uid: 29765 + - uid: 29862 components: - type: Transform pos: 24.5,-54.5 parent: 2 - - uid: 29766 + - uid: 29863 components: - type: Transform pos: -17.5,-21.5 parent: 2 - - uid: 29767 + - uid: 29864 components: - type: Transform pos: 55.5,-7.5 parent: 2 - - uid: 29768 + - uid: 29865 components: - type: Transform pos: 49.5,-3.5 parent: 2 - - uid: 29769 + - uid: 29866 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 29770 + - uid: 29867 components: - type: Transform pos: 58.5,-1.5 parent: 2 - - uid: 29771 + - uid: 29868 components: - type: Transform pos: 58.5,-2.5 parent: 2 - - uid: 29772 + - uid: 29869 components: - type: Transform pos: 57.5,-2.5 parent: 2 - - uid: 29773 + - uid: 29870 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 29774 + - uid: 29871 components: - type: Transform pos: 48.5,-9.5 parent: 2 - - uid: 29775 + - uid: 29872 components: - type: Transform pos: 48.5,-6.5 parent: 2 - - uid: 29776 + - uid: 29873 components: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 29777 + - uid: 29874 components: - type: Transform pos: 6.5,-17.5 parent: 2 - - uid: 29778 + - uid: 29875 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 - - uid: 29779 + - uid: 29876 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 - - uid: 29780 + - uid: 29877 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 - - uid: 29781 + - uid: 29878 components: - type: Transform pos: 65.5,-4.5 parent: 2 - - uid: 29782 + - uid: 29879 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 29783 + - uid: 29880 components: - type: Transform pos: 61.5,-4.5 parent: 2 - - uid: 29784 + - uid: 29881 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 - - uid: 29785 + - uid: 29882 components: - type: Transform pos: 53.5,-14.5 parent: 2 - - uid: 29786 + - uid: 29883 components: - type: Transform pos: 61.5,-14.5 parent: 2 - - uid: 29787 + - uid: 29884 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 29788 + - uid: 29885 components: - type: Transform pos: 59.5,-7.5 parent: 2 - - uid: 29789 + - uid: 29886 components: - type: Transform pos: 58.5,-7.5 parent: 2 - - uid: 29790 + - uid: 29887 components: - type: Transform pos: 57.5,-7.5 parent: 2 - - uid: 29791 + - uid: 29888 components: - type: Transform pos: 56.5,-7.5 parent: 2 - - uid: 29792 + - uid: 29889 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 29793 + - uid: 29890 components: - type: Transform pos: 58.5,-9.5 parent: 2 - - uid: 29794 + - uid: 29891 components: - type: Transform pos: 57.5,-9.5 parent: 2 - - uid: 29795 + - uid: 29892 components: - type: Transform pos: 56.5,-9.5 parent: 2 - - uid: 29796 + - uid: 29893 components: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 29797 + - uid: 29894 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 29798 + - uid: 29895 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 - - uid: 29799 + - uid: 29896 components: - type: Transform pos: 60.5,-29.5 parent: 2 - - uid: 29800 + - uid: 29897 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 29801 + - uid: 29898 components: - type: Transform pos: 49.5,-11.5 parent: 2 - - uid: 29802 + - uid: 29899 components: - type: Transform pos: 49.5,-12.5 parent: 2 - - uid: 29803 + - uid: 29900 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 29804 + - uid: 29901 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 29805 + - uid: 29902 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 29806 + - uid: 29903 components: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 29807 + - uid: 29904 components: - type: Transform pos: 39.5,-9.5 parent: 2 - - uid: 29808 + - uid: 29905 components: - type: Transform pos: 39.5,-8.5 parent: 2 - - uid: 29809 + - uid: 29906 components: - type: Transform pos: 41.5,-6.5 parent: 2 - - uid: 29810 + - uid: 29907 components: - type: Transform pos: 41.5,-7.5 parent: 2 - - uid: 29811 + - uid: 29908 components: - type: Transform pos: 41.5,-8.5 parent: 2 - - uid: 29812 + - uid: 29909 components: - type: Transform pos: 41.5,-9.5 parent: 2 - - uid: 29813 + - uid: 29910 components: - type: Transform pos: 41.5,-10.5 parent: 2 - - uid: 29814 + - uid: 29911 components: - type: Transform pos: 39.5,-10.5 parent: 2 - - uid: 29815 + - uid: 29912 components: - type: Transform pos: 39.5,-11.5 parent: 2 - - uid: 29816 + - uid: 29913 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 29817 + - uid: 29914 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 29818 + - uid: 29915 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 29819 + - uid: 29916 components: - type: Transform pos: 45.5,-6.5 parent: 2 - - uid: 29820 + - uid: 29917 components: - type: Transform pos: 45.5,-7.5 parent: 2 - - uid: 29821 + - uid: 29918 components: - type: Transform pos: 45.5,-8.5 parent: 2 - - uid: 29822 + - uid: 29919 components: - type: Transform pos: 45.5,-9.5 parent: 2 - - uid: 29823 + - uid: 29920 components: - type: Transform pos: 43.5,-9.5 parent: 2 - - uid: 29824 + - uid: 29921 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 29825 + - uid: 29922 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 29826 + - uid: 29923 components: - type: Transform pos: 44.5,-12.5 parent: 2 - - uid: 29827 + - uid: 29924 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 29828 + - uid: 29925 components: - type: Transform pos: 41.5,-12.5 parent: 2 - - uid: 29829 + - uid: 29926 components: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 29830 + - uid: 29927 components: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 29831 + - uid: 29928 components: - type: Transform pos: 39.5,-13.5 parent: 2 - - uid: 29832 + - uid: 29929 components: - type: Transform pos: 46.5,-12.5 parent: 2 - - uid: 29833 + - uid: 29930 components: - type: Transform pos: 47.5,-12.5 parent: 2 - - uid: 29834 + - uid: 29931 components: - type: Transform pos: 47.5,-11.5 parent: 2 - - uid: 29835 + - uid: 29932 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 29836 + - uid: 29933 components: - type: Transform pos: 46.5,-6.5 parent: 2 - - uid: 29837 + - uid: 29934 components: - type: Transform pos: 69.5,-35.5 parent: 2 - - uid: 29838 + - uid: 29935 components: - type: Transform pos: 66.5,-36.5 parent: 2 - - uid: 29839 + - uid: 29936 components: - type: Transform pos: 58.5,-40.5 parent: 2 - - uid: 29840 + - uid: 29937 components: - type: Transform pos: 58.5,-41.5 parent: 2 - - uid: 29841 + - uid: 29938 components: - type: Transform pos: 58.5,-42.5 parent: 2 - - uid: 29842 + - uid: 29939 components: - type: Transform pos: 65.5,-36.5 parent: 2 - - uid: 29843 + - uid: 29940 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 - - uid: 29844 + - uid: 29941 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 - - uid: 29845 + - uid: 29942 components: - type: Transform pos: 60.5,-41.5 parent: 2 - - uid: 29846 + - uid: 29943 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 29847 + - uid: 29944 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 - - uid: 29848 + - uid: 29945 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 - - uid: 29849 + - uid: 29946 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 - - uid: 29850 + - uid: 29947 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 - - uid: 29851 + - uid: 29948 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 - - uid: 29852 + - uid: 29949 components: - type: Transform pos: 47.5,-40.5 parent: 2 - - uid: 29853 + - uid: 29950 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 29854 + - uid: 29951 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 29855 + - uid: 29952 components: - type: Transform pos: 45.5,-44.5 parent: 2 - - uid: 29856 + - uid: 29953 components: - type: Transform pos: 41.5,-44.5 parent: 2 - - uid: 29857 + - uid: 29954 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 - - uid: 29858 + - uid: 29955 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 - - uid: 29859 + - uid: 29956 components: - type: Transform pos: 53.5,-38.5 parent: 2 - - uid: 29860 + - uid: 29957 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 - - uid: 29861 + - uid: 29958 components: - type: Transform pos: 47.5,-39.5 parent: 2 - - uid: 29862 + - uid: 29959 components: - type: Transform pos: 47.5,-38.5 parent: 2 - - uid: 29863 + - uid: 29960 components: - type: Transform pos: 54.5,-39.5 parent: 2 - - uid: 29864 + - uid: 29961 components: - type: Transform pos: 52.5,-38.5 parent: 2 - - uid: 29865 + - uid: 29962 components: - type: Transform pos: 54.5,-38.5 parent: 2 - - uid: 29866 + - uid: 29963 components: - type: Transform pos: 56.5,-33.5 parent: 2 - - uid: 29867 + - uid: 29964 components: - type: Transform pos: 59.5,-37.5 parent: 2 - - uid: 29868 + - uid: 29965 components: - type: Transform pos: 59.5,-36.5 parent: 2 - - uid: 29869 + - uid: 29966 components: - type: Transform pos: 58.5,-36.5 parent: 2 - - uid: 29870 + - uid: 29967 components: - type: Transform pos: 47.5,-47.5 parent: 2 - - uid: 29871 + - uid: 29968 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 29872 + - uid: 29969 components: - type: Transform pos: 51.5,-48.5 parent: 2 - - uid: 29873 + - uid: 29970 components: - type: Transform pos: 48.5,-48.5 parent: 2 - - uid: 29874 + - uid: 29971 components: - type: Transform pos: 47.5,-48.5 parent: 2 - - uid: 29875 + - uid: 29972 components: - type: Transform pos: 56.5,-39.5 parent: 2 - - uid: 29876 + - uid: 29973 components: - type: Transform pos: 57.5,-39.5 parent: 2 - - uid: 29877 + - uid: 29974 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 - - uid: 29878 + - uid: 29975 components: - type: Transform pos: 58.5,-43.5 parent: 2 - - uid: 29879 + - uid: 29976 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 29880 + - uid: 29977 components: - type: Transform pos: 56.5,-43.5 parent: 2 - - uid: 29881 + - uid: 29978 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 29882 + - uid: 29979 components: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 29883 + - uid: 29980 components: - type: Transform pos: 46.5,-50.5 parent: 2 - - uid: 29884 + - uid: 29981 components: - type: Transform pos: 45.5,-50.5 parent: 2 - - uid: 29885 + - uid: 29982 components: - type: Transform pos: 44.5,-50.5 parent: 2 - - uid: 29886 + - uid: 29983 components: - type: Transform pos: 43.5,-50.5 parent: 2 - - uid: 29887 + - uid: 29984 components: - type: Transform pos: 42.5,-50.5 parent: 2 - - uid: 29888 + - uid: 29985 components: - type: Transform pos: 41.5,-50.5 parent: 2 - - uid: 29889 + - uid: 29986 components: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 29890 + - uid: 29987 components: - type: Transform pos: 47.5,-35.5 parent: 2 - - uid: 29891 + - uid: 29988 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 - - uid: 29892 + - uid: 29989 components: - type: Transform pos: 66.5,-49.5 parent: 2 - - uid: 29893 + - uid: 29990 components: - type: Transform pos: 66.5,-44.5 parent: 2 - - uid: 29894 + - uid: 29991 components: - type: Transform pos: 66.5,-43.5 parent: 2 - - uid: 29895 + - uid: 29992 components: - type: Transform pos: 37.5,-44.5 parent: 2 - - uid: 29896 + - uid: 29993 components: - type: Transform pos: 40.5,-45.5 parent: 2 - - uid: 29897 + - uid: 29994 components: - type: Transform pos: 40.5,-47.5 parent: 2 - - uid: 29898 + - uid: 29995 components: - type: Transform pos: 40.5,-44.5 parent: 2 - - uid: 29899 + - uid: 29996 components: - type: Transform pos: 40.5,-48.5 parent: 2 - - uid: 29900 + - uid: 29997 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 - - uid: 29901 + - uid: 29998 components: - type: Transform pos: 46.5,-40.5 parent: 2 - - uid: 29902 + - uid: 29999 components: - type: Transform pos: 52.5,-59.5 parent: 2 - - uid: 29903 + - uid: 30000 components: - type: Transform pos: 66.5,-35.5 parent: 2 - - uid: 29904 + - uid: 30001 components: - type: Transform pos: 67.5,-35.5 parent: 2 - - uid: 29905 + - uid: 30002 components: - type: Transform pos: 68.5,-35.5 parent: 2 - - uid: 29906 + - uid: 30003 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 - - uid: 29907 + - uid: 30004 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 - - uid: 29908 + - uid: 30005 components: - type: Transform pos: 8.5,-51.5 parent: 2 - - uid: 29909 + - uid: 30006 components: - type: Transform pos: 38.5,-47.5 parent: 2 - - uid: 29910 + - uid: 30007 components: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 29911 + - uid: 30008 components: - type: Transform pos: 37.5,-46.5 parent: 2 - - uid: 29912 + - uid: 30009 components: - type: Transform pos: 37.5,-45.5 parent: 2 - - uid: 29913 + - uid: 30010 components: - type: Transform pos: 57.5,-63.5 parent: 2 - - uid: 29914 + - uid: 30011 components: - type: Transform pos: 57.5,-36.5 parent: 2 - - uid: 29915 + - uid: 30012 components: - type: Transform pos: 74.5,-50.5 parent: 2 - - uid: 29916 + - uid: 30013 components: - type: Transform pos: 59.5,-30.5 parent: 2 - - uid: 29917 + - uid: 30014 components: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 29918 + - uid: 30015 components: - type: Transform pos: 58.5,-31.5 parent: 2 - - uid: 29919 + - uid: 30016 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 - - uid: 29920 + - uid: 30017 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 29921 + - uid: 30018 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 - - uid: 29922 + - uid: 30019 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 - - uid: 29923 + - uid: 30020 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 - - uid: 29924 + - uid: 30021 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 - - uid: 29925 + - uid: 30022 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 - - uid: 29926 + - uid: 30023 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 - - uid: 29927 + - uid: 30024 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 - - uid: 29928 + - uid: 30025 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 - - uid: 29929 + - uid: 30026 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 - - uid: 29930 + - uid: 30027 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 - - uid: 29931 + - uid: 30028 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 - - uid: 29932 + - uid: 30029 components: - type: Transform pos: 35.5,-52.5 parent: 2 - - uid: 29933 + - uid: 30030 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 - - uid: 29934 + - uid: 30031 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 - - uid: 29935 + - uid: 30032 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 - - uid: 29936 + - uid: 30033 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 - - uid: 29937 + - uid: 30034 components: - type: Transform pos: 60.5,-37.5 parent: 2 - - uid: 29938 + - uid: 30035 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 29939 + - uid: 30036 components: - type: Transform pos: 44.5,-54.5 parent: 2 - - uid: 29940 + - uid: 30037 components: - type: Transform pos: 44.5,-53.5 parent: 2 - - uid: 29941 + - uid: 30038 components: - type: Transform pos: 44.5,-52.5 parent: 2 - - uid: 29942 + - uid: 30039 components: - type: Transform pos: 44.5,-51.5 parent: 2 - - uid: 29943 + - uid: 30040 components: - type: Transform pos: 45.5,-55.5 parent: 2 - - uid: 29944 + - uid: 30041 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 - - uid: 29945 + - uid: 30042 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 29946 + - uid: 30043 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 - - uid: 29947 + - uid: 30044 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 - - uid: 29948 + - uid: 30045 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 - - uid: 29949 + - uid: 30046 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 - - uid: 29950 + - uid: 30047 components: - type: Transform pos: 41.5,-63.5 parent: 2 - - uid: 29951 + - uid: 30048 components: - type: Transform pos: 41.5,-62.5 parent: 2 - - uid: 29952 + - uid: 30049 components: - type: Transform pos: 46.5,-61.5 parent: 2 - - uid: 29953 + - uid: 30050 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 29954 + - uid: 30051 components: - type: Transform pos: 47.5,-59.5 parent: 2 - - uid: 29955 + - uid: 30052 components: - type: Transform pos: 47.5,-60.5 parent: 2 - - uid: 29956 + - uid: 30053 components: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 29957 + - uid: 30054 components: - type: Transform pos: 45.5,-61.5 parent: 2 - - uid: 29958 + - uid: 30055 components: - type: Transform pos: 44.5,-61.5 parent: 2 - - uid: 29959 + - uid: 30056 components: - type: Transform pos: 43.5,-61.5 parent: 2 - - uid: 29960 + - uid: 30057 components: - type: Transform pos: 42.5,-61.5 parent: 2 - - uid: 29961 + - uid: 30058 components: - type: Transform pos: 41.5,-61.5 parent: 2 - - uid: 29962 + - uid: 30059 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 29963 + - uid: 30060 components: - type: Transform pos: -20.5,0.5 parent: 2 - - uid: 29964 + - uid: 30061 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 - - uid: 29965 + - uid: 30062 components: - type: Transform pos: -30.5,-9.5 parent: 2 - - uid: 29966 + - uid: 30063 components: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 29967 + - uid: 30064 components: - type: Transform pos: -28.5,-15.5 parent: 2 - - uid: 29968 + - uid: 30065 components: - type: Transform pos: -29.5,-15.5 parent: 2 - - uid: 29969 + - uid: 30066 components: - type: Transform pos: -30.5,-15.5 parent: 2 - - uid: 29970 + - uid: 30067 components: - type: Transform pos: -30.5,-11.5 parent: 2 - - uid: 29971 + - uid: 30068 components: - type: Transform pos: -30.5,-14.5 parent: 2 - - uid: 29972 + - uid: 30069 components: - type: Transform pos: -33.5,-13.5 parent: 2 - - uid: 29973 + - uid: 30070 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 29974 + - uid: 30071 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 - - uid: 29975 + - uid: 30072 components: - type: Transform pos: -30.5,-19.5 parent: 2 - - uid: 29976 + - uid: 30073 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 - - uid: 29977 + - uid: 30074 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 - - uid: 29978 + - uid: 30075 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 - - uid: 29979 + - uid: 30076 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 - - uid: 29980 + - uid: 30077 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 - - uid: 29981 + - uid: 30078 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 - - uid: 29982 + - uid: 30079 components: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 29983 + - uid: 30080 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 29984 + - uid: 30081 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 - - uid: 29985 + - uid: 30082 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 - - uid: 29986 + - uid: 30083 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 - - uid: 29987 + - uid: 30084 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 - - uid: 29988 + - uid: 30085 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 - - uid: 29989 + - uid: 30086 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 - - uid: 29990 + - uid: 30087 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 - - uid: 29991 + - uid: 30088 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 - - uid: 29992 + - uid: 30089 components: - type: Transform pos: -28.5,12.5 parent: 2 - - uid: 29993 + - uid: 30090 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 - - uid: 29994 + - uid: 30091 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 - - uid: 29995 + - uid: 30092 components: - type: Transform pos: -22.5,-25.5 parent: 2 - - uid: 29996 + - uid: 30093 components: - type: Transform pos: -23.5,-25.5 parent: 2 - - uid: 29997 + - uid: 30094 components: - type: Transform pos: -24.5,-25.5 parent: 2 - - uid: 29998 + - uid: 30095 components: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 29999 + - uid: 30096 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 30000 + - uid: 30097 components: - type: Transform pos: -27.5,-25.5 parent: 2 - - uid: 30001 + - uid: 30098 components: - type: Transform pos: -27.5,-23.5 parent: 2 - - uid: 30002 + - uid: 30099 components: - type: Transform pos: -27.5,-24.5 parent: 2 - - uid: 30003 + - uid: 30100 components: - type: Transform pos: -27.5,-21.5 parent: 2 - - uid: 30004 + - uid: 30101 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 - - uid: 30005 + - uid: 30102 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 - - uid: 30006 + - uid: 30103 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 - - uid: 30007 + - uid: 30104 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 - - uid: 30008 + - uid: 30105 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 - - uid: 30009 + - uid: 30106 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 - - uid: 30010 + - uid: 30107 components: - type: Transform pos: -30.5,-21.5 parent: 2 - - uid: 30011 + - uid: 30108 components: - type: Transform pos: -30.5,-22.5 parent: 2 - - uid: 30012 + - uid: 30109 components: - type: Transform pos: 50.5,41.5 parent: 2 - - uid: 30013 + - uid: 30110 components: - type: Transform pos: -21.5,-25.5 parent: 2 - - uid: 30014 + - uid: 30111 components: - type: Transform pos: -21.5,-27.5 parent: 2 - - uid: 30015 + - uid: 30112 components: - type: Transform pos: -21.5,-28.5 parent: 2 - - uid: 30016 + - uid: 30113 components: - type: Transform pos: -21.5,-29.5 parent: 2 - - uid: 30017 + - uid: 30114 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 30018 + - uid: 30115 components: - type: Transform pos: -21.5,-31.5 parent: 2 - - uid: 30019 + - uid: 30116 components: - type: Transform pos: -21.5,-33.5 parent: 2 - - uid: 30020 + - uid: 30117 components: - type: Transform pos: -21.5,-36.5 parent: 2 - - uid: 30021 + - uid: 30118 components: - type: Transform pos: -21.5,-37.5 parent: 2 - - uid: 30022 + - uid: 30119 components: - type: Transform pos: -21.5,-38.5 parent: 2 - - uid: 30023 + - uid: 30120 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 30024 + - uid: 30121 components: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 30025 + - uid: 30122 components: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 30026 + - uid: 30123 components: - type: Transform pos: -21.5,-43.5 parent: 2 - - uid: 30027 + - uid: 30124 components: - type: Transform pos: 37.5,-49.5 parent: 2 - - uid: 30028 + - uid: 30125 components: - type: Transform pos: 38.5,-49.5 parent: 2 - - uid: 30029 + - uid: 30126 components: - type: Transform pos: 39.5,-50.5 parent: 2 - - uid: 30030 + - uid: 30127 components: - type: Transform pos: 38.5,-50.5 parent: 2 - - uid: 30031 + - uid: 30128 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 30032 + - uid: 30129 components: - type: Transform pos: -1.5,-13.5 parent: 2 - - uid: 30033 + - uid: 30130 components: - type: Transform pos: 57.5,-61.5 parent: 2 - - uid: 30034 + - uid: 30131 components: - type: Transform - pos: 6.5,-58.5 + rot: 3.141592653589793 rad + pos: -8.5,-62.5 parent: 2 - - uid: 30035 + - uid: 30132 components: - type: Transform pos: -22.5,-27.5 parent: 2 - - uid: 30036 + - uid: 30133 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 30037 + - uid: 30134 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 - - uid: 30038 + - uid: 30135 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 - - uid: 30039 + - uid: 30136 components: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 30040 + - uid: 30137 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 30041 + - uid: 30138 components: - type: Transform pos: -40.5,-13.5 parent: 2 - - uid: 30042 + - uid: 30139 components: - type: Transform pos: -40.5,-8.5 parent: 2 - - uid: 30043 + - uid: 30140 components: - type: Transform pos: -40.5,-7.5 parent: 2 - - uid: 30044 + - uid: 30141 components: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 30045 + - uid: 30142 components: - type: Transform pos: -30.5,-8.5 parent: 2 - - uid: 30046 + - uid: 30143 components: - type: Transform pos: -30.5,-25.5 parent: 2 - - uid: 30047 + - uid: 30144 components: - type: Transform pos: -33.5,-25.5 parent: 2 - - uid: 30048 + - uid: 30145 components: - type: Transform pos: -23.5,-27.5 parent: 2 - - uid: 30049 + - uid: 30146 components: - type: Transform pos: -24.5,-27.5 parent: 2 - - uid: 30050 + - uid: 30147 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 - - uid: 30051 + - uid: 30148 components: - type: Transform pos: -26.5,-27.5 parent: 2 - - uid: 30052 + - uid: 30149 components: - type: Transform pos: -27.5,-27.5 parent: 2 - - uid: 30053 + - uid: 30150 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 30054 + - uid: 30151 components: - type: Transform pos: -29.5,-27.5 parent: 2 - - uid: 30055 + - uid: 30152 components: - type: Transform pos: -30.5,-27.5 parent: 2 - - uid: 30056 + - uid: 30153 components: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 30057 + - uid: 30154 components: - type: Transform pos: -34.5,-27.5 parent: 2 - - uid: 30058 + - uid: 30155 components: - type: Transform pos: -36.5,-27.5 parent: 2 - - uid: 30059 + - uid: 30156 components: - type: Transform pos: -33.5,-28.5 parent: 2 - - uid: 30060 + - uid: 30157 components: - type: Transform pos: -33.5,-29.5 parent: 2 - - uid: 30061 + - uid: 30158 components: - type: Transform pos: -33.5,-30.5 parent: 2 - - uid: 30062 + - uid: 30159 components: - type: Transform pos: -30.5,-28.5 parent: 2 - - uid: 30063 + - uid: 30160 components: - type: Transform pos: -30.5,-29.5 parent: 2 - - uid: 30064 + - uid: 30161 components: - type: Transform pos: -30.5,-30.5 parent: 2 - - uid: 30065 + - uid: 30162 components: - type: Transform pos: -45.5,-26.5 parent: 2 - - uid: 30066 + - uid: 30163 components: - type: Transform pos: -36.5,-26.5 parent: 2 - - uid: 30067 + - uid: 30164 components: - type: Transform pos: -36.5,-25.5 parent: 2 - - uid: 30068 + - uid: 30165 components: - type: Transform pos: -37.5,-25.5 parent: 2 - - uid: 30069 + - uid: 30166 components: - type: Transform pos: -38.5,-25.5 parent: 2 - - uid: 30070 + - uid: 30167 components: - type: Transform pos: -36.5,-22.5 parent: 2 - - uid: 30071 + - uid: 30168 components: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 30072 + - uid: 30169 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 30073 + - uid: 30170 components: - type: Transform pos: -38.5,-24.5 parent: 2 - - uid: 30074 + - uid: 30171 components: - type: Transform pos: 52.5,-35.5 parent: 2 - - uid: 30075 + - uid: 30172 components: - type: Transform pos: 53.5,-33.5 parent: 2 - - uid: 30076 + - uid: 30173 components: - type: Transform pos: 54.5,-62.5 parent: 2 - - uid: 30077 + - uid: 30174 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 30078 + - uid: 30175 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 - - uid: 30079 + - uid: 30176 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 - - uid: 30080 + - uid: 30177 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 - - uid: 30081 + - uid: 30178 components: - type: Transform pos: -49.5,-29.5 parent: 2 - - uid: 30082 + - uid: 30179 components: - type: Transform pos: -50.5,-30.5 parent: 2 - - uid: 30083 + - uid: 30180 components: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 30084 + - uid: 30181 components: - type: Transform pos: -43.5,-20.5 parent: 2 - - uid: 30085 + - uid: 30182 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 - - uid: 30086 + - uid: 30183 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 - - uid: 30087 + - uid: 30184 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 - - uid: 30088 + - uid: 30185 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 - - uid: 30089 + - uid: 30186 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 - - uid: 30090 + - uid: 30187 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 - - uid: 30091 + - uid: 30188 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 - - uid: 30092 + - uid: 30189 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 - - uid: 30093 + - uid: 30190 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 - - uid: 30094 + - uid: 30191 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 - - uid: 30095 + - uid: 30192 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 - - uid: 30096 + - uid: 30193 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 - - uid: 30097 + - uid: 30194 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 - - uid: 30098 + - uid: 30195 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 - - uid: 30099 + - uid: 30196 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 - - uid: 30100 + - uid: 30197 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 - - uid: 30101 + - uid: 30198 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 - - uid: 30102 + - uid: 30199 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 - - uid: 30103 + - uid: 30200 components: - type: Transform pos: -29.5,-37.5 parent: 2 - - uid: 30104 + - uid: 30201 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 - - uid: 30105 + - uid: 30202 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 - - uid: 30106 + - uid: 30203 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 - - uid: 30107 + - uid: 30204 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 - - uid: 30108 + - uid: 30205 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 - - uid: 30109 + - uid: 30206 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 - - uid: 30110 + - uid: 30207 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 - - uid: 30111 + - uid: 30208 components: - type: Transform pos: -34.5,-37.5 parent: 2 - - uid: 30112 + - uid: 30209 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 - - uid: 30113 + - uid: 30210 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 - - uid: 30114 + - uid: 30211 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 - - uid: 30115 + - uid: 30212 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 - - uid: 30116 + - uid: 30213 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 - - uid: 30117 + - uid: 30214 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 - - uid: 30118 + - uid: 30215 components: - type: Transform pos: -31.5,-4.5 parent: 2 - - uid: 30119 + - uid: 30216 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 30120 + - uid: 30217 components: - type: Transform pos: -33.5,-4.5 parent: 2 - - uid: 30121 + - uid: 30218 components: - type: Transform pos: -34.5,-4.5 parent: 2 - - uid: 30122 + - uid: 30219 components: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 30123 + - uid: 30220 components: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 30124 + - uid: 30221 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 30125 + - uid: 30222 components: - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 30126 + - uid: 30223 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 30127 + - uid: 30224 components: - type: Transform pos: -40.5,-4.5 parent: 2 - - uid: 30128 + - uid: 30225 components: - type: Transform pos: -42.5,-4.5 parent: 2 - - uid: 30129 + - uid: 30226 components: - type: Transform pos: -43.5,-4.5 parent: 2 - - uid: 30130 + - uid: 30227 components: - type: Transform pos: -22.5,-40.5 parent: 2 - - uid: 30131 + - uid: 30228 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 30132 + - uid: 30229 components: - type: Transform pos: -24.5,-40.5 parent: 2 - - uid: 30133 + - uid: 30230 components: - type: Transform pos: -24.5,-41.5 parent: 2 - - uid: 30134 + - uid: 30231 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 30135 + - uid: 30232 components: - type: Transform pos: -24.5,-43.5 parent: 2 - - uid: 30136 + - uid: 30233 components: - type: Transform pos: -24.5,-44.5 parent: 2 - - uid: 30137 + - uid: 30234 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 30138 + - uid: 30235 components: - type: Transform pos: -24.5,-46.5 parent: 2 - - uid: 30139 + - uid: 30236 components: - type: Transform pos: -24.5,-47.5 parent: 2 - - uid: 30140 + - uid: 30237 components: - type: Transform pos: -22.5,-37.5 parent: 2 - - uid: 30141 + - uid: 30238 components: - type: Transform pos: -23.5,-37.5 parent: 2 - - uid: 30142 + - uid: 30239 components: - type: Transform pos: -24.5,-37.5 parent: 2 - - uid: 30143 + - uid: 30240 components: - type: Transform pos: -25.5,-37.5 parent: 2 - - uid: 30144 + - uid: 30241 components: - type: Transform pos: -26.5,-37.5 parent: 2 - - uid: 30145 + - uid: 30242 components: - type: Transform pos: -35.5,-31.5 parent: 2 - - uid: 30146 + - uid: 30243 components: - type: Transform pos: -36.5,-31.5 parent: 2 - - uid: 30147 + - uid: 30244 components: - type: Transform pos: -37.5,-31.5 parent: 2 - - uid: 30148 + - uid: 30245 components: - type: Transform pos: -38.5,-31.5 parent: 2 - - uid: 30149 + - uid: 30246 components: - type: Transform pos: -39.5,-31.5 parent: 2 - - uid: 30150 + - uid: 30247 components: - type: Transform pos: -30.5,-38.5 parent: 2 - - uid: 30151 + - uid: 30248 components: - type: Transform pos: -30.5,-39.5 parent: 2 - - uid: 30152 + - uid: 30249 components: - type: Transform pos: -30.5,-41.5 parent: 2 - - uid: 30153 + - uid: 30250 components: - type: Transform pos: -30.5,-42.5 parent: 2 - - uid: 30154 + - uid: 30251 components: - type: Transform pos: -31.5,-42.5 parent: 2 - - uid: 30155 + - uid: 30252 components: - type: Transform pos: -48.5,-4.5 parent: 2 - - uid: 30156 + - uid: 30253 components: - type: Transform pos: -47.5,-4.5 parent: 2 - - uid: 30157 + - uid: 30254 components: - type: Transform pos: -46.5,-4.5 parent: 2 - - uid: 30158 + - uid: 30255 components: - type: Transform pos: -45.5,-4.5 parent: 2 - - uid: 30159 + - uid: 30256 components: - type: Transform pos: -44.5,-4.5 parent: 2 - - uid: 30160 + - uid: 30257 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 30161 + - uid: 30258 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 30162 + - uid: 30259 components: - type: Transform pos: -47.5,-26.5 parent: 2 - - uid: 30163 + - uid: 30260 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 - - uid: 30164 + - uid: 30261 components: - type: Transform pos: -31.5,-6.5 parent: 2 - - uid: 30165 + - uid: 30262 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 30166 + - uid: 30263 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 30167 + - uid: 30264 components: - type: Transform pos: -31.5,-8.5 parent: 2 - - uid: 30168 + - uid: 30265 components: - type: Transform pos: -33.5,-6.5 parent: 2 - - uid: 30169 + - uid: 30266 components: - type: Transform pos: -33.5,-5.5 parent: 2 - - uid: 30170 + - uid: 30267 components: - type: Transform pos: -37.5,-3.5 parent: 2 - - uid: 30171 + - uid: 30268 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 30172 + - uid: 30269 components: - type: Transform pos: -65.5,-29.5 parent: 2 - - uid: 30173 + - uid: 30270 components: - type: Transform pos: -70.5,-27.5 parent: 2 - - uid: 30174 + - uid: 30271 components: - type: Transform pos: -74.5,-27.5 parent: 2 - - uid: 30175 + - uid: 30272 components: - type: Transform pos: -69.5,-28.5 parent: 2 - - uid: 30176 + - uid: 30273 components: - type: Transform pos: -69.5,-29.5 parent: 2 - - uid: 30177 + - uid: 30274 components: - type: Transform pos: -69.5,-30.5 parent: 2 - - uid: 30178 + - uid: 30275 components: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 30179 + - uid: 30276 components: - type: Transform pos: -53.5,-29.5 parent: 2 - - uid: 30180 + - uid: 30277 components: - type: Transform pos: -49.5,-27.5 parent: 2 - - uid: 30181 + - uid: 30278 components: - type: Transform pos: -49.5,-28.5 parent: 2 - - uid: 30182 + - uid: 30279 components: - type: Transform pos: -56.5,-31.5 parent: 2 - - uid: 30183 + - uid: 30280 components: - type: Transform pos: -57.5,-31.5 parent: 2 - - uid: 30184 + - uid: 30281 components: - type: Transform pos: -63.5,-25.5 parent: 2 - - uid: 30185 + - uid: 30282 components: - type: Transform pos: -57.5,-22.5 parent: 2 - - uid: 30186 + - uid: 30283 components: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 30187 + - uid: 30284 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 30188 + - uid: 30285 components: - type: Transform pos: -49.5,-30.5 parent: 2 - - uid: 30189 + - uid: 30286 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 30190 + - uid: 30287 components: - type: Transform pos: -54.5,-29.5 parent: 2 - - uid: 30191 + - uid: 30288 components: - type: Transform pos: -56.5,-29.5 parent: 2 - - uid: 30192 + - uid: 30289 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 30193 + - uid: 30290 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 30194 + - uid: 30291 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 30195 + - uid: 30292 components: - type: Transform pos: -36.5,-52.5 parent: 2 - - uid: 30196 + - uid: 30293 components: - type: Transform pos: -36.5,-48.5 parent: 2 - - uid: 30197 + - uid: 30294 components: - type: Transform pos: -36.5,-47.5 parent: 2 - - uid: 30198 + - uid: 30295 components: - type: Transform pos: 69.5,-60.5 parent: 2 - - uid: 30199 + - uid: 30296 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 - - uid: 30200 + - uid: 30297 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 30201 + - uid: 30298 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 30202 + - uid: 30299 components: - type: Transform pos: -27.5,-38.5 parent: 2 - - uid: 30203 + - uid: 30300 components: - type: Transform pos: -26.5,-38.5 parent: 2 - - uid: 30204 + - uid: 30301 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 - - uid: 30205 + - uid: 30302 components: - type: Transform pos: -33.5,-7.5 parent: 2 - - uid: 30206 + - uid: 30303 components: - type: Transform pos: -57.5,-3.5 parent: 2 - - uid: 30207 + - uid: 30304 components: - type: Transform pos: -69.5,-25.5 parent: 2 - - uid: 30208 + - uid: 30305 components: - type: Transform pos: -69.5,-26.5 parent: 2 - - uid: 30209 + - uid: 30306 components: - type: Transform pos: -69.5,-27.5 parent: 2 - - uid: 30210 + - uid: 30307 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 - - uid: 30211 + - uid: 30308 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 - - uid: 30212 + - uid: 30309 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 - - uid: 30213 + - uid: 30310 components: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 30214 + - uid: 30311 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 - - uid: 30215 + - uid: 30312 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 - - uid: 30216 + - uid: 30313 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 - - uid: 30217 + - uid: 30314 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 - - uid: 30218 + - uid: 30315 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 - - uid: 30219 + - uid: 30316 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 - - uid: 30220 + - uid: 30317 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 - - uid: 30221 + - uid: 30318 components: - type: Transform pos: -55.5,-65.5 parent: 2 - - uid: 30222 + - uid: 30319 components: - type: Transform pos: -54.5,-65.5 parent: 2 - - uid: 30223 + - uid: 30320 components: - type: Transform pos: -53.5,-65.5 parent: 2 - - uid: 30224 + - uid: 30321 components: - type: Transform pos: -51.5,-65.5 parent: 2 - - uid: 30225 + - uid: 30322 components: - type: Transform pos: -51.5,-64.5 parent: 2 - - uid: 30226 + - uid: 30323 components: - type: Transform pos: -51.5,-62.5 parent: 2 - - uid: 30227 + - uid: 30324 components: - type: Transform pos: -56.5,-69.5 parent: 2 - - uid: 30228 + - uid: 30325 components: - type: Transform pos: -23.5,-50.5 parent: 2 - - uid: 30229 + - uid: 30326 components: - type: Transform pos: -24.5,-50.5 parent: 2 - - uid: 30230 + - uid: 30327 components: - type: Transform pos: -25.5,-50.5 parent: 2 - - uid: 30231 + - uid: 30328 components: - type: Transform pos: -24.5,-48.5 parent: 2 - - uid: 30232 + - uid: 30329 components: - type: Transform pos: -26.5,-48.5 parent: 2 - - uid: 30233 + - uid: 30330 components: - type: Transform pos: -25.5,-48.5 parent: 2 - - uid: 30234 + - uid: 30331 components: - type: Transform pos: -26.5,-50.5 parent: 2 - - uid: 30235 + - uid: 30332 components: - type: Transform pos: -27.5,-50.5 parent: 2 - - uid: 30236 + - uid: 30333 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 30237 + - uid: 30334 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 30238 + - uid: 30335 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 30239 + - uid: 30336 components: - type: Transform pos: -28.5,-46.5 parent: 2 - - uid: 30240 + - uid: 30337 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 30241 + - uid: 30338 components: - type: Transform pos: -29.5,-45.5 parent: 2 - - uid: 30242 + - uid: 30339 components: - type: Transform pos: -29.5,-42.5 parent: 2 - - uid: 30243 + - uid: 30340 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 30244 + - uid: 30341 components: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 30245 + - uid: 30342 components: - type: Transform pos: -26.5,-42.5 parent: 2 - - uid: 30246 + - uid: 30343 components: - type: Transform pos: -26.5,-43.5 parent: 2 - - uid: 30247 + - uid: 30344 components: - type: Transform pos: -26.5,-44.5 parent: 2 - - uid: 30248 + - uid: 30345 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 30249 + - uid: 30346 components: - type: Transform pos: -30.5,-45.5 parent: 2 - - uid: 30250 + - uid: 30347 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 30251 + - uid: 30348 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 30252 + - uid: 30349 components: - type: Transform pos: -27.5,-39.5 parent: 2 - - uid: 30253 + - uid: 30350 components: - type: Transform pos: -27.5,-40.5 parent: 2 - - uid: 30254 + - uid: 30351 components: - type: Transform pos: -23.5,-52.5 parent: 2 - - uid: 30255 + - uid: 30352 components: - type: Transform pos: -24.5,-56.5 parent: 2 - - uid: 30256 + - uid: 30353 components: - type: Transform pos: -25.5,-56.5 parent: 2 - - uid: 30257 + - uid: 30354 components: - type: Transform pos: -26.5,-56.5 parent: 2 - - uid: 30258 + - uid: 30355 components: - type: Transform pos: -27.5,-56.5 parent: 2 - - uid: 30259 + - uid: 30356 components: - type: Transform pos: -29.5,-56.5 parent: 2 - - uid: 30260 + - uid: 30357 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 30261 + - uid: 30358 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 30262 + - uid: 30359 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 30263 + - uid: 30360 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 30264 + - uid: 30361 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 30265 + - uid: 30362 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 30266 + - uid: 30363 components: - type: Transform pos: -51.5,-7.5 parent: 2 - - uid: 30267 + - uid: 30364 components: - type: Transform pos: -50.5,-7.5 parent: 2 - - uid: 30268 + - uid: 30365 components: - type: Transform pos: -27.5,-62.5 parent: 2 - - uid: 30269 + - uid: 30366 components: - type: Transform pos: -29.5,-60.5 parent: 2 - - uid: 30270 + - uid: 30367 components: - type: Transform pos: -29.5,-61.5 parent: 2 - - uid: 30271 + - uid: 30368 components: - type: Transform pos: -27.5,-61.5 parent: 2 - - uid: 30272 + - uid: 30369 components: - type: Transform pos: -29.5,-62.5 parent: 2 - - uid: 30273 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 2 - - uid: 30274 + - uid: 30370 components: - type: Transform pos: -28.5,-64.5 parent: 2 - - uid: 30275 + - uid: 30371 components: - type: Transform pos: -28.5,-65.5 parent: 2 - - uid: 30276 + - uid: 30372 components: - type: Transform pos: -27.5,-65.5 parent: 2 - - uid: 30277 + - uid: 30373 components: - type: Transform pos: -25.5,-63.5 parent: 2 - - uid: 30278 + - uid: 30374 components: - type: Transform pos: -24.5,-63.5 parent: 2 - - uid: 30279 + - uid: 30375 components: - type: Transform pos: -24.5,-65.5 parent: 2 - - uid: 30280 + - uid: 30376 components: - type: Transform pos: -27.5,-68.5 parent: 2 - - uid: 30281 + - uid: 30377 components: - type: Transform pos: -28.5,-68.5 parent: 2 - - uid: 30282 + - uid: 30378 components: - type: Transform pos: -29.5,-68.5 parent: 2 - - uid: 30283 + - uid: 30379 components: - type: Transform pos: -29.5,-67.5 parent: 2 - - uid: 30284 + - uid: 30380 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 30285 + - uid: 30381 components: - type: Transform pos: -30.5,-64.5 parent: 2 - - uid: 30286 + - uid: 30382 components: - type: Transform pos: -30.5,-65.5 parent: 2 - - uid: 30287 + - uid: 30383 components: - type: Transform pos: -32.5,-65.5 parent: 2 - - uid: 30288 + - uid: 30384 components: - type: Transform pos: -32.5,-64.5 parent: 2 - - uid: 30289 + - uid: 30385 components: - type: Transform pos: -33.5,-64.5 parent: 2 - - uid: 30290 + - uid: 30386 components: - type: Transform pos: -55.5,-69.5 parent: 2 - - uid: 30291 + - uid: 30387 components: - type: Transform pos: -54.5,-69.5 parent: 2 - - uid: 30292 + - uid: 30388 components: - type: Transform pos: -52.5,-69.5 parent: 2 - - uid: 30293 + - uid: 30389 components: - type: Transform pos: -52.5,-70.5 parent: 2 - - uid: 30294 + - uid: 30390 components: - type: Transform pos: -52.5,-71.5 parent: 2 - - uid: 30295 + - uid: 30391 components: - type: Transform pos: -51.5,-71.5 parent: 2 - - uid: 30296 + - uid: 30392 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 30297 + - uid: 30393 components: - type: Transform pos: -50.5,-72.5 parent: 2 - - uid: 30298 + - uid: 30394 components: - type: Transform pos: -50.5,-73.5 parent: 2 - - uid: 30299 + - uid: 30395 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 30300 + - uid: 30396 components: - type: Transform pos: -50.5,-75.5 parent: 2 - - uid: 30301 + - uid: 30397 components: - type: Transform pos: -58.5,-80.5 parent: 2 - - uid: 30302 + - uid: 30398 components: - type: Transform pos: -58.5,-72.5 parent: 2 - - uid: 30303 + - uid: 30399 components: - type: Transform pos: -49.5,-75.5 parent: 2 - - uid: 30304 + - uid: 30400 components: - type: Transform pos: -48.5,-75.5 parent: 2 - - uid: 30305 + - uid: 30401 components: - type: Transform pos: -48.5,-72.5 parent: 2 - - uid: 30306 + - uid: 30402 components: - type: Transform pos: -48.5,-71.5 parent: 2 - - uid: 30307 + - uid: 30403 components: - type: Transform pos: -47.5,-71.5 parent: 2 - - uid: 30308 + - uid: 30404 components: - type: Transform pos: -46.5,-71.5 parent: 2 - - uid: 30309 + - uid: 30405 components: - type: Transform pos: -46.5,-70.5 parent: 2 - - uid: 30310 + - uid: 30406 components: - type: Transform pos: -45.5,-70.5 parent: 2 - - uid: 30311 + - uid: 30407 components: - type: Transform pos: -45.5,-69.5 parent: 2 - - uid: 30312 + - uid: 30408 components: - type: Transform pos: -44.5,-69.5 parent: 2 - - uid: 30313 + - uid: 30409 components: - type: Transform pos: -43.5,-69.5 parent: 2 - - uid: 30314 + - uid: 30410 components: - type: Transform pos: -40.5,-68.5 parent: 2 - - uid: 30315 + - uid: 30411 components: - type: Transform pos: -40.5,-67.5 parent: 2 - - uid: 30316 + - uid: 30412 components: - type: Transform pos: -40.5,-69.5 parent: 2 - - uid: 30317 + - uid: 30413 components: - type: Transform pos: -39.5,-69.5 parent: 2 - - uid: 30318 + - uid: 30414 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 30319 + - uid: 30415 components: - type: Transform pos: -38.5,-70.5 parent: 2 - - uid: 30320 + - uid: 30416 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 30321 + - uid: 30417 components: - type: Transform pos: -37.5,-71.5 parent: 2 - - uid: 30322 + - uid: 30418 components: - type: Transform pos: -36.5,-71.5 parent: 2 - - uid: 30323 + - uid: 30419 components: - type: Transform pos: -35.5,-71.5 parent: 2 - - uid: 30324 + - uid: 30420 components: - type: Transform pos: -35.5,-72.5 parent: 2 - - uid: 30325 + - uid: 30421 components: - type: Transform pos: -43.5,-68.5 parent: 2 - - uid: 30326 + - uid: 30422 components: - type: Transform pos: -40.5,-65.5 parent: 2 - - uid: 30327 + - uid: 30423 components: - type: Transform pos: -41.5,-65.5 parent: 2 - - uid: 30328 + - uid: 30424 components: - type: Transform pos: -42.5,-65.5 parent: 2 - - uid: 30329 + - uid: 30425 components: - type: Transform pos: -43.5,-65.5 parent: 2 - - uid: 30330 + - uid: 30426 components: - type: Transform pos: -44.5,-65.5 parent: 2 - - uid: 30331 + - uid: 30427 components: - type: Transform pos: -45.5,-65.5 parent: 2 - - uid: 30332 + - uid: 30428 components: - type: Transform pos: -46.5,-65.5 parent: 2 - - uid: 30333 + - uid: 30429 components: - type: Transform pos: -47.5,-65.5 parent: 2 - - uid: 30334 + - uid: 30430 components: - type: Transform pos: -48.5,-67.5 parent: 2 - - uid: 30335 + - uid: 30431 components: - type: Transform pos: -48.5,-68.5 parent: 2 - - uid: 30336 + - uid: 30432 components: - type: Transform pos: -48.5,-69.5 parent: 2 - - uid: 30337 + - uid: 30433 components: - type: Transform pos: -48.5,-70.5 parent: 2 - - uid: 30338 + - uid: 30434 components: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 30339 + - uid: 30435 components: - type: Transform pos: -51.5,-69.5 parent: 2 - - uid: 30340 + - uid: 30436 components: - type: Transform pos: -51.5,-68.5 parent: 2 - - uid: 30341 + - uid: 30437 components: - type: Transform pos: -35.5,-63.5 parent: 2 - - uid: 30342 + - uid: 30438 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 30343 + - uid: 30439 components: - type: Transform pos: -36.5,-66.5 parent: 2 - - uid: 30344 + - uid: 30440 components: - type: Transform pos: -36.5,-67.5 parent: 2 - - uid: 30345 + - uid: 30441 components: - type: Transform pos: -35.5,-67.5 parent: 2 - - uid: 30346 + - uid: 30442 components: - type: Transform pos: -35.5,-68.5 parent: 2 - - uid: 30347 + - uid: 30443 components: - type: Transform pos: -34.5,-68.5 parent: 2 - - uid: 30348 + - uid: 30444 components: - type: Transform pos: -38.5,-66.5 parent: 2 - - uid: 30349 + - uid: 30445 components: - type: Transform pos: -35.5,-69.5 parent: 2 - - uid: 30350 + - uid: 30446 components: - type: Transform pos: -33.5,-68.5 parent: 2 - - uid: 30351 + - uid: 30447 components: - type: Transform pos: -32.5,-68.5 parent: 2 - - uid: 30352 + - uid: 30448 components: - type: Transform pos: -31.5,-68.5 parent: 2 - - uid: 30353 + - uid: 30449 components: - type: Transform pos: -42.5,-63.5 parent: 2 - - uid: 30354 + - uid: 30450 components: - type: Transform pos: -46.5,-64.5 parent: 2 - - uid: 30355 + - uid: 30451 components: - type: Transform pos: -40.5,-73.5 parent: 2 - - uid: 30356 + - uid: 30452 components: - type: Transform pos: -44.5,-73.5 parent: 2 - - uid: 30357 + - uid: 30453 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 30358 + - uid: 30454 components: - type: Transform pos: -42.5,-73.5 parent: 2 - - uid: 30359 + - uid: 30455 components: - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 30360 + - uid: 30456 components: - type: Transform pos: -43.5,-73.5 parent: 2 - - uid: 30361 + - uid: 30457 components: - type: Transform pos: -44.5,-74.5 parent: 2 - - uid: 30362 + - uid: 30458 components: - type: Transform pos: -39.5,-73.5 parent: 2 - - uid: 30363 + - uid: 30459 components: - type: Transform pos: -23.5,-63.5 parent: 2 - - uid: 30364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-53.5 - parent: 2 - - uid: 30365 + - uid: 30460 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 - - uid: 30366 + - uid: 30461 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 - - uid: 30367 + - uid: 30462 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 - - uid: 30368 + - uid: 30463 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 30369 + - uid: 30464 components: - type: Transform pos: -45.5,-68.5 parent: 2 - - uid: 30370 + - uid: 30465 components: - type: Transform pos: -27.5,-59.5 parent: 2 - - uid: 30371 + - uid: 30466 components: - type: Transform pos: -37.5,-47.5 parent: 2 - - uid: 30372 + - uid: 30467 components: - type: Transform pos: -17.5,31.5 parent: 2 - - uid: 30373 + - uid: 30468 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 30374 + - uid: 30469 components: - type: Transform pos: -22.5,-63.5 parent: 2 - - uid: 30375 + - uid: 30470 components: - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 30376 + - uid: 30471 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-57.5 parent: 2 - - uid: 30377 + - uid: 30472 components: - type: Transform pos: -33.5,-24.5 parent: 2 - - uid: 30378 + - uid: 30473 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 30379 + - uid: 30474 components: - type: Transform pos: -34.5,-22.5 parent: 2 - - uid: 30380 + - uid: 30475 components: - type: Transform pos: -34.5,-23.5 parent: 2 - - uid: 30381 + - uid: 30476 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 - - uid: 30382 + - uid: 30477 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 - - uid: 30383 + - uid: 30478 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 - - uid: 30384 + - uid: 30479 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 - - uid: 30385 + - uid: 30480 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 - - uid: 30386 + - uid: 30481 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 - - uid: 30387 + - uid: 30482 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 - - uid: 30388 + - uid: 30483 components: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 30389 + - uid: 30484 components: - type: Transform pos: -12.5,25.5 parent: 2 - - uid: 30390 + - uid: 30485 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 - - uid: 30391 + - uid: 30486 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 30392 + - uid: 30487 components: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 30393 + - uid: 30488 components: - type: Transform pos: -17.5,15.5 parent: 2 - - uid: 30394 + - uid: 30489 components: - type: Transform pos: -17.5,16.5 parent: 2 - - uid: 30395 + - uid: 30490 components: - type: Transform pos: -17.5,17.5 parent: 2 - - uid: 30396 + - uid: 30491 components: - type: Transform pos: -17.5,18.5 parent: 2 - - uid: 30397 + - uid: 30492 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 30398 + - uid: 30493 components: - type: Transform pos: -21.5,25.5 parent: 2 - - uid: 30399 + - uid: 30494 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 - - uid: 30400 + - uid: 30495 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 - - uid: 30401 + - uid: 30496 components: - type: Transform pos: -17.5,22.5 parent: 2 - - uid: 30402 + - uid: 30497 components: - type: Transform pos: -17.5,21.5 parent: 2 - - uid: 30403 + - uid: 30498 components: - type: Transform pos: -17.5,20.5 parent: 2 - - uid: 30404 + - uid: 30499 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 30405 + - uid: 30500 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 30406 + - uid: 30501 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 30407 + - uid: 30502 components: - type: Transform pos: -25.5,26.5 parent: 2 - - uid: 30408 + - uid: 30503 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 30409 + - uid: 30504 components: - type: Transform pos: -27.5,26.5 parent: 2 - - uid: 30410 + - uid: 30505 components: - type: Transform pos: -28.5,26.5 parent: 2 - - uid: 30411 + - uid: 30506 components: - type: Transform pos: -26.5,24.5 parent: 2 - - uid: 30412 + - uid: 30507 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 - - uid: 30413 + - uid: 30508 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 - - uid: 30414 + - uid: 30509 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 - - uid: 30415 + - uid: 30510 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 - - uid: 30416 + - uid: 30511 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 30417 + - uid: 30512 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 30418 + - uid: 30513 components: - type: Transform pos: -28.5,16.5 parent: 2 - - uid: 30419 + - uid: 30514 components: - type: Transform pos: -29.5,16.5 parent: 2 - - uid: 30420 + - uid: 30515 components: - type: Transform pos: -22.5,14.5 parent: 2 - - uid: 30421 + - uid: 30516 components: - type: Transform pos: -23.5,14.5 parent: 2 - - uid: 30422 + - uid: 30517 components: - type: Transform pos: -24.5,16.5 parent: 2 - - uid: 30423 + - uid: 30518 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 30424 + - uid: 30519 components: - type: Transform pos: -36.5,34.5 parent: 2 - - uid: 30425 + - uid: 30520 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 30426 + - uid: 30521 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 30427 + - uid: 30522 components: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 30428 + - uid: 30523 components: - type: Transform pos: -35.5,24.5 parent: 2 - - uid: 30429 + - uid: 30524 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 30430 + - uid: 30525 components: - type: Transform pos: -32.5,16.5 parent: 2 - - uid: 30431 + - uid: 30526 components: - type: Transform pos: -31.5,16.5 parent: 2 - - uid: 30432 + - uid: 30527 components: - type: Transform pos: -30.5,16.5 parent: 2 - - uid: 30433 + - uid: 30528 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 - - uid: 30434 + - uid: 30529 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 - - uid: 30435 + - uid: 30530 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 - - uid: 30436 + - uid: 30531 components: - type: Transform pos: -38.5,34.5 parent: 2 - - uid: 30437 + - uid: 30532 components: - type: Transform pos: -39.5,32.5 parent: 2 - - uid: 30438 + - uid: 30533 components: - type: Transform pos: -39.5,33.5 parent: 2 - - uid: 30439 + - uid: 30534 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 - - uid: 30440 + - uid: 30535 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 - - uid: 30441 + - uid: 30536 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 - - uid: 30442 + - uid: 30537 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 - - uid: 30443 + - uid: 30538 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 30444 + - uid: 30539 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 - - uid: 30445 + - uid: 30540 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 - - uid: 30446 + - uid: 30541 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 - - uid: 30447 + - uid: 30542 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 - - uid: 30448 + - uid: 30543 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 - - uid: 30449 + - uid: 30544 components: - type: Transform pos: -17.5,35.5 parent: 2 - - uid: 30450 + - uid: 30545 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 - - uid: 30451 + - uid: 30546 components: - type: Transform pos: -17.5,33.5 parent: 2 - - uid: 30452 + - uid: 30547 components: - type: Transform pos: -13.5,30.5 parent: 2 - - uid: 30453 + - uid: 30548 components: - type: Transform pos: -13.5,29.5 parent: 2 - - uid: 30454 + - uid: 30549 components: - type: Transform pos: -13.5,28.5 parent: 2 - - uid: 30455 + - uid: 30550 components: - type: Transform pos: -14.5,28.5 parent: 2 - - uid: 30456 + - uid: 30551 components: - type: Transform pos: -16.5,28.5 parent: 2 - - uid: 30457 + - uid: 30552 components: - type: Transform pos: 51.5,41.5 parent: 2 - - uid: 30458 + - uid: 30553 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 30459 + - uid: 30554 components: - type: Transform pos: -24.5,14.5 parent: 2 - - uid: 30460 + - uid: 30555 components: - type: Transform pos: -27.5,11.5 parent: 2 - - uid: 30461 + - uid: 30556 components: - type: Transform pos: -28.5,11.5 parent: 2 - - uid: 30462 + - uid: 30557 components: - type: Transform pos: -29.5,26.5 parent: 2 - - uid: 30463 + - uid: 30558 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 - - uid: 30464 + - uid: 30559 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 30465 + - uid: 30560 components: - type: Transform pos: -28.5,13.5 parent: 2 - - uid: 30466 + - uid: 30561 components: - type: Transform pos: -28.5,15.5 parent: 2 - - uid: 30467 + - uid: 30562 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 - - uid: 30468 + - uid: 30563 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 - - uid: 30469 + - uid: 30564 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 - - uid: 30470 + - uid: 30565 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 - - uid: 30471 + - uid: 30566 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 - - uid: 30472 + - uid: 30567 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 - - uid: 30473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,37.5 - parent: 2 - - uid: 30474 + - uid: 30568 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 - - uid: 30475 + - uid: 30569 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 - - uid: 30476 + - uid: 30570 components: - type: Transform pos: -37.5,26.5 parent: 2 - - uid: 30477 + - uid: 30571 components: - type: Transform pos: -36.5,26.5 parent: 2 - - uid: 30478 + - uid: 30572 components: - type: Transform pos: -25.5,38.5 parent: 2 - - uid: 30479 + - uid: 30573 components: - type: Transform pos: -38.5,26.5 parent: 2 - - uid: 30480 + - uid: 30574 components: - type: Transform pos: -39.5,26.5 parent: 2 - - uid: 30481 + - uid: 30575 components: - type: Transform pos: -39.5,27.5 parent: 2 - - uid: 30482 + - uid: 30576 components: - type: Transform pos: -39.5,28.5 parent: 2 - - uid: 30483 + - uid: 30577 components: - type: Transform pos: -39.5,30.5 parent: 2 - - uid: 30484 + - uid: 30578 components: - type: Transform pos: -39.5,34.5 parent: 2 - - uid: 30485 + - uid: 30579 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 30486 + - uid: 30580 components: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 30487 + - uid: 30581 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 30488 + - uid: 30582 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 30489 + - uid: 30583 components: - type: Transform pos: -29.5,2.5 parent: 2 - - uid: 30490 + - uid: 30584 components: - type: Transform pos: -30.5,2.5 parent: 2 - - uid: 30491 + - uid: 30585 components: - type: Transform pos: -31.5,2.5 parent: 2 - - uid: 30492 + - uid: 30586 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 30493 + - uid: 30587 components: - type: Transform pos: -33.5,2.5 parent: 2 - - uid: 30494 + - uid: 30588 components: - type: Transform pos: -34.5,-1.5 parent: 2 - - uid: 30495 + - uid: 30589 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 - - uid: 30496 + - uid: 30590 components: - type: Transform pos: -22.5,16.5 parent: 2 - - uid: 30497 + - uid: 30591 components: - type: Transform pos: -16.5,22.5 parent: 2 - - uid: 30498 + - uid: 30592 components: - type: Transform pos: -15.5,22.5 parent: 2 - - uid: 30499 + - uid: 30593 components: - type: Transform pos: -14.5,22.5 parent: 2 - - uid: 30500 + - uid: 30594 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 - - uid: 30501 + - uid: 30595 components: - type: Transform pos: -13.5,25.5 parent: 2 - - uid: 30502 + - uid: 30596 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 - - uid: 30503 + - uid: 30597 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 - - uid: 30504 + - uid: 30598 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 - - uid: 30505 + - uid: 30599 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 - - uid: 30506 + - uid: 30600 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 - - uid: 30507 + - uid: 30601 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 - - uid: 30508 + - uid: 30602 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 - - uid: 30509 + - uid: 30603 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 - - uid: 30510 + - uid: 30604 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 - - uid: 30511 + - uid: 30605 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 - - uid: 30512 + - uid: 30606 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 - - uid: 30513 + - uid: 30607 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 - - uid: 30514 + - uid: 30608 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 30515 + - uid: 30609 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 - - uid: 30516 + - uid: 30610 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 - - uid: 30517 + - uid: 30611 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 - - uid: 30518 + - uid: 30612 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 30519 + - uid: 30613 components: - type: Transform pos: -43.5,2.5 parent: 2 - - uid: 30520 + - uid: 30614 components: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 30521 + - uid: 30615 components: - type: Transform pos: -42.5,4.5 parent: 2 - - uid: 30522 + - uid: 30616 components: - type: Transform pos: -42.5,5.5 parent: 2 - - uid: 30523 + - uid: 30617 components: - type: Transform pos: -42.5,6.5 parent: 2 - - uid: 30524 + - uid: 30618 components: - type: Transform pos: -42.5,7.5 parent: 2 - - uid: 30525 + - uid: 30619 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 30526 + - uid: 30620 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 30527 + - uid: 30621 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 30528 + - uid: 30622 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 30529 + - uid: 30623 components: - type: Transform pos: -34.5,12.5 parent: 2 - - uid: 30530 + - uid: 30624 components: - type: Transform pos: -34.5,11.5 parent: 2 - - uid: 30531 + - uid: 30625 components: - type: Transform pos: -34.5,10.5 parent: 2 - - uid: 30532 + - uid: 30626 components: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 30533 + - uid: 30627 components: - type: Transform pos: -33.5,4.5 parent: 2 - - uid: 30534 + - uid: 30628 components: - type: Transform pos: -33.5,5.5 parent: 2 - - uid: 30535 + - uid: 30629 components: - type: Transform pos: -33.5,6.5 parent: 2 - - uid: 30536 + - uid: 30630 components: - type: Transform pos: -33.5,7.5 parent: 2 - - uid: 30537 + - uid: 30631 components: - type: Transform pos: -43.5,15.5 parent: 2 - - uid: 30538 + - uid: 30632 components: - type: Transform pos: -33.5,12.5 parent: 2 - - uid: 30539 + - uid: 30633 components: - type: Transform pos: -42.5,12.5 parent: 2 - - uid: 30540 + - uid: 30634 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 30541 + - uid: 30635 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 30542 + - uid: 30636 components: - type: Transform pos: -40.5,7.5 parent: 2 - - uid: 30543 + - uid: 30637 components: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 30544 + - uid: 30638 components: - type: Transform pos: -34.5,7.5 parent: 2 - - uid: 30545 + - uid: 30639 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 - - uid: 30546 + - uid: 30640 components: - type: Transform pos: -43.5,12.5 parent: 2 - - uid: 30547 + - uid: 30641 components: - type: Transform pos: -43.5,13.5 parent: 2 - - uid: 30548 + - uid: 30642 components: - type: Transform pos: -32.5,15.5 parent: 2 - - uid: 30549 + - uid: 30643 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 30550 + - uid: 30644 components: - type: Transform pos: -29.5,11.5 parent: 2 - - uid: 30551 + - uid: 30645 components: - type: Transform pos: -34.5,8.5 parent: 2 - - uid: 30552 + - uid: 30646 components: - type: Transform pos: -33.5,-1.5 parent: 2 - - uid: 30553 + - uid: 30647 components: - type: Transform pos: -34.5,9.5 parent: 2 - - uid: 30554 + - uid: 30648 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 - - uid: 30555 + - uid: 30649 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 - - uid: 30556 + - uid: 30650 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 - - uid: 30557 + - uid: 30651 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 - - uid: 30558 + - uid: 30652 components: - type: Transform pos: -43.5,-1.5 parent: 2 - - uid: 30559 + - uid: 30653 components: - type: Transform pos: -44.5,2.5 parent: 2 - - uid: 30560 + - uid: 30654 components: - type: Transform pos: -44.5,-1.5 parent: 2 - - uid: 30561 + - uid: 30655 components: - type: Transform pos: -32.5,11.5 parent: 2 - - uid: 30562 + - uid: 30656 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 30563 + - uid: 30657 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 - - uid: 30564 + - uid: 30658 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 - - uid: 30565 + - uid: 30659 components: - type: Transform pos: -32.5,7.5 parent: 2 - - uid: 30566 + - uid: 30660 components: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 30567 + - uid: 30661 components: - type: Transform pos: -29.5,7.5 parent: 2 - - uid: 30568 + - uid: 30662 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 - - uid: 30569 + - uid: 30663 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 - - uid: 30570 + - uid: 30664 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 - - uid: 30571 + - uid: 30665 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 - - uid: 30572 + - uid: 30666 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 - - uid: 30573 + - uid: 30667 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 - - uid: 30574 + - uid: 30668 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 - - uid: 30575 + - uid: 30669 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 - - uid: 30576 + - uid: 30670 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 - - uid: 30577 + - uid: 30671 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 - - uid: 30578 + - uid: 30672 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 - - uid: 30579 + - uid: 30673 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 - - uid: 30580 + - uid: 30674 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 - - uid: 30581 + - uid: 30675 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 - - uid: 30582 + - uid: 30676 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 - - uid: 30583 + - uid: 30677 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 - - uid: 30584 + - uid: 30678 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 - - uid: 30585 + - uid: 30679 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 - - uid: 30586 + - uid: 30680 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 - - uid: 30587 + - uid: 30681 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 - - uid: 30588 + - uid: 30682 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 - - uid: 30589 + - uid: 30683 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 - - uid: 30590 + - uid: 30684 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 - - uid: 30591 + - uid: 30685 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 - - uid: 30592 + - uid: 30686 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 - - uid: 30593 + - uid: 30687 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 - - uid: 30594 + - uid: 30688 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 30595 + - uid: 30689 components: - type: Transform pos: -50.5,0.5 parent: 2 - - uid: 30596 + - uid: 30690 components: - type: Transform pos: -50.5,-0.5 parent: 2 - - uid: 30597 + - uid: 30691 components: - type: Transform pos: -50.5,-1.5 parent: 2 - - uid: 30598 + - uid: 30692 components: - type: Transform pos: -46.5,-3.5 parent: 2 - - uid: 30599 + - uid: 30693 components: - type: Transform pos: -43.5,-2.5 parent: 2 - - uid: 30600 + - uid: 30694 components: - type: Transform pos: -50.5,-2.5 parent: 2 - - uid: 30601 + - uid: 30695 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 30602 + - uid: 30696 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 30603 + - uid: 30697 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 30604 + - uid: 30698 components: - type: Transform pos: -54.5,-2.5 parent: 2 - - uid: 30605 + - uid: 30699 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 - - uid: 30606 + - uid: 30700 components: - type: Transform pos: -56.5,-2.5 parent: 2 - - uid: 30607 + - uid: 30701 components: - type: Transform pos: -55.5,-2.5 parent: 2 - - uid: 30608 + - uid: 30702 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 30609 + - uid: 30703 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 30610 + - uid: 30704 components: - type: Transform pos: -50.5,13.5 parent: 2 - - uid: 30611 + - uid: 30705 components: - type: Transform pos: -50.5,14.5 parent: 2 - - uid: 30612 + - uid: 30706 components: - type: Transform pos: -50.5,15.5 parent: 2 - - uid: 30613 + - uid: 30707 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 - - uid: 30614 + - uid: 30708 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 - - uid: 30615 + - uid: 30709 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 - - uid: 30616 + - uid: 30710 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 - - uid: 30617 + - uid: 30711 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 - - uid: 30618 + - uid: 30712 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 30619 + - uid: 30713 components: - type: Transform pos: 53.5,41.5 parent: 2 - - uid: 30620 + - uid: 30714 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 30621 + - uid: 30715 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 30622 + - uid: 30716 components: - type: Transform pos: 67.5,-4.5 parent: 2 - - uid: 30623 + - uid: 30717 components: - type: Transform pos: 53.5,40.5 parent: 2 - - uid: 30624 + - uid: 30718 components: - type: Transform pos: -17.5,36.5 parent: 2 - - uid: 30625 + - uid: 30719 components: - type: Transform pos: -20.5,32.5 parent: 2 - - uid: 30626 + - uid: 30720 components: - type: Transform pos: -21.5,32.5 parent: 2 - - uid: 30627 + - uid: 30721 components: - type: Transform pos: -21.5,31.5 parent: 2 - - uid: 30628 + - uid: 30722 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 - - uid: 30629 + - uid: 30723 components: - type: Transform pos: -21.5,29.5 parent: 2 - - uid: 30630 + - uid: 30724 components: - type: Transform pos: -21.5,28.5 parent: 2 - - uid: 30631 + - uid: 30725 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 30632 + - uid: 30726 components: - type: Transform pos: -17.5,28.5 parent: 2 - - uid: 30633 + - uid: 30727 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 - - uid: 30634 + - uid: 30728 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 - - uid: 30635 + - uid: 30729 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 30636 + - uid: 30730 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 - - uid: 30637 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 2 - - uid: 30638 + - uid: 30731 components: - type: Transform pos: 59.5,-31.5 parent: 2 - - uid: 30639 + - uid: 30732 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 - - uid: 30640 + - uid: 30733 components: - type: Transform pos: 19.5,-51.5 parent: 2 - - uid: 30641 + - uid: 30734 components: - type: Transform pos: 22.5,-48.5 parent: 2 - - uid: 30642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-53.5 - parent: 2 - - uid: 30643 + - uid: 30735 components: - type: Transform pos: -27.5,-55.5 parent: 2 - - uid: 30644 + - uid: 30736 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 - - uid: 30645 + - uid: 30737 components: - type: Transform pos: -21.5,-6.5 parent: 2 - - uid: 30646 + - uid: 30738 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 - - uid: 30647 + - uid: 30739 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 - - uid: 30648 + - uid: 30740 components: - type: Transform pos: -30.5,-68.5 parent: 2 - - uid: 30649 + - uid: 30741 components: - type: Transform pos: -26.5,-72.5 parent: 2 - - uid: 30650 + - uid: 30742 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 30651 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 30652 + - uid: 30743 components: - type: Transform pos: -17.5,32.5 parent: 2 - - uid: 30653 + - uid: 30744 components: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 30654 + - uid: 30745 components: - type: Transform pos: -19.5,32.5 parent: 2 - - uid: 30655 + - uid: 30746 components: - type: Transform pos: 44.5,47.5 parent: 2 - - uid: 30656 + - uid: 30747 components: - type: Transform pos: 44.5,48.5 parent: 2 - - uid: 30657 + - uid: 30748 components: - type: Transform pos: 53.5,39.5 parent: 2 - - uid: 30658 + - uid: 30749 components: - type: Transform pos: 53.5,38.5 parent: 2 - - uid: 30659 + - uid: 30750 components: - type: Transform pos: 52.5,38.5 parent: 2 - - uid: 30660 + - uid: 30751 components: - type: Transform pos: 51.5,38.5 parent: 2 - - uid: 30661 + - uid: 30752 components: - type: Transform pos: 50.5,38.5 parent: 2 - - uid: 30662 + - uid: 30753 components: - type: Transform pos: 55.5,36.5 parent: 2 - - uid: 30663 + - uid: 30754 components: - type: Transform pos: 55.5,35.5 parent: 2 - - uid: 30664 + - uid: 30755 components: - type: Transform pos: 55.5,34.5 parent: 2 - - uid: 30665 + - uid: 30756 components: - type: Transform pos: 54.5,34.5 parent: 2 - - uid: 30666 + - uid: 30757 components: - type: Transform pos: 53.5,34.5 parent: 2 - - uid: 30667 + - uid: 30758 components: - type: Transform pos: 51.5,34.5 parent: 2 - - uid: 30668 + - uid: 30759 components: - type: Transform pos: 50.5,34.5 parent: 2 - - uid: 30669 + - uid: 30760 components: - type: Transform pos: 50.5,35.5 parent: 2 - - uid: 30670 + - uid: 30761 components: - type: Transform pos: 50.5,36.5 parent: 2 - - uid: 30671 + - uid: 30762 components: - type: Transform pos: 50.5,37.5 parent: 2 - - uid: 30672 + - uid: 30763 components: - type: Transform pos: 51.5,33.5 parent: 2 - - uid: 30673 + - uid: 30764 components: - type: Transform pos: 51.5,32.5 parent: 2 - - uid: 30674 + - uid: 30765 components: - type: Transform pos: 53.5,33.5 parent: 2 - - uid: 30675 + - uid: 30766 components: - type: Transform pos: 53.5,32.5 parent: 2 - - uid: 30676 + - uid: 30767 components: - type: Transform pos: 53.5,31.5 parent: 2 - - uid: 30677 + - uid: 30768 components: - type: Transform pos: 53.5,30.5 parent: 2 - - uid: 30678 + - uid: 30769 components: - type: Transform pos: 52.5,30.5 parent: 2 - - uid: 30679 + - uid: 30770 components: - type: Transform pos: 51.5,30.5 parent: 2 - - uid: 30680 + - uid: 30771 components: - type: Transform pos: 49.5,30.5 parent: 2 - - uid: 30681 + - uid: 30772 components: - type: Transform pos: 50.5,30.5 parent: 2 - - uid: 30682 + - uid: 30773 components: - type: Transform pos: 49.5,34.5 parent: 2 - - uid: 30683 + - uid: 30774 components: - type: Transform pos: 48.5,34.5 parent: 2 - - uid: 30684 + - uid: 30775 components: - type: Transform pos: 47.5,30.5 parent: 2 - - uid: 30685 + - uid: 30776 components: - type: Transform pos: 47.5,29.5 parent: 2 - - uid: 30686 + - uid: 30777 components: - type: Transform pos: 47.5,28.5 parent: 2 - - uid: 30687 + - uid: 30778 components: - type: Transform pos: 47.5,27.5 parent: 2 - - uid: 30688 + - uid: 30779 components: - type: Transform pos: 49.5,27.5 parent: 2 - - uid: 30689 + - uid: 30780 components: - type: Transform pos: 50.5,27.5 parent: 2 - - uid: 30690 + - uid: 30781 components: - type: Transform pos: 51.5,27.5 parent: 2 - - uid: 30691 + - uid: 30782 components: - type: Transform pos: 51.5,28.5 parent: 2 - - uid: 30692 + - uid: 30783 components: - type: Transform pos: 51.5,29.5 parent: 2 - - uid: 30693 + - uid: 30784 components: - type: Transform pos: 60.5,27.5 parent: 2 - - uid: 30694 + - uid: 30785 components: - type: Transform pos: 59.5,27.5 parent: 2 - - uid: 30695 + - uid: 30786 components: - type: Transform pos: 57.5,27.5 parent: 2 - - uid: 30696 + - uid: 30787 components: - type: Transform pos: 56.5,27.5 parent: 2 - - uid: 30697 + - uid: 30788 components: - type: Transform pos: 61.5,29.5 parent: 2 - - uid: 30698 + - uid: 30789 components: - type: Transform pos: 61.5,28.5 parent: 2 - - uid: 30699 + - uid: 30790 components: - type: Transform pos: 61.5,27.5 parent: 2 - - uid: 30700 + - uid: 30791 components: - type: Transform pos: 59.5,30.5 parent: 2 - - uid: 30701 + - uid: 30792 components: - type: Transform pos: 58.5,30.5 parent: 2 - - uid: 30702 + - uid: 30793 components: - type: Transform pos: 56.5,30.5 parent: 2 - - uid: 30703 + - uid: 30794 components: - type: Transform pos: 56.5,29.5 parent: 2 - - uid: 30704 + - uid: 30795 components: - type: Transform pos: 56.5,28.5 parent: 2 - - uid: 30705 + - uid: 30796 components: - type: Transform pos: 54.5,30.5 parent: 2 - - uid: 30706 + - uid: 30797 components: - type: Transform pos: 55.5,30.5 parent: 2 - - uid: 30707 + - uid: 30798 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 - - uid: 30708 + - uid: 30799 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 - - uid: 30709 + - uid: 30800 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 - - uid: 30710 + - uid: 30801 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 - - uid: 30711 + - uid: 30802 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 - - uid: 30712 + - uid: 30803 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 - - uid: 30713 + - uid: 30804 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 - - uid: 30714 + - uid: 30805 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 - - uid: 30715 + - uid: 30806 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 - - uid: 30716 + - uid: 30807 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 - - uid: 30717 + - uid: 30808 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 - - uid: 30718 + - uid: 30809 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 - - uid: 30719 + - uid: 30810 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 - - uid: 30720 + - uid: 30811 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 - - uid: 30721 + - uid: 30812 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 - - uid: 30722 + - uid: 30813 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 - - uid: 30723 + - uid: 30814 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 - - uid: 30724 + - uid: 30815 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 - - uid: 30725 + - uid: 30816 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 - - uid: 30726 + - uid: 30817 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 - - uid: 30727 + - uid: 30818 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 - - uid: 30728 + - uid: 30819 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 - - uid: 30729 + - uid: 30820 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 - - uid: 30730 + - uid: 30821 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 - - uid: 30731 + - uid: 30822 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 - - uid: 30732 + - uid: 30823 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 - - uid: 30733 + - uid: 30824 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 - - uid: 30734 + - uid: 30825 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 - - uid: 30735 + - uid: 30826 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 - - uid: 30736 + - uid: 30827 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 - - uid: 30737 + - uid: 30828 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 - - uid: 30738 + - uid: 30829 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 - - uid: 30739 + - uid: 30830 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 - - uid: 30740 + - uid: 30831 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 - - uid: 30741 + - uid: 30832 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 - - uid: 30742 + - uid: 30833 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 - - uid: 30743 + - uid: 30834 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 - - uid: 30744 + - uid: 30835 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 - - uid: 30745 + - uid: 30836 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 - - uid: 30746 + - uid: 30837 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 - - uid: 30747 + - uid: 30838 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 - - uid: 30748 + - uid: 30839 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 - - uid: 30749 + - uid: 30840 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 - - uid: 30750 + - uid: 30841 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 - - uid: 30751 + - uid: 30842 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 - - uid: 30752 + - uid: 30843 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 - - uid: 30753 + - uid: 30844 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 - - uid: 30754 + - uid: 30845 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 - - uid: 30755 + - uid: 30846 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 - - uid: 30756 + - uid: 30847 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 - - uid: 30757 + - uid: 30848 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 - - uid: 30758 + - uid: 30849 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 - - uid: 30759 + - uid: 30850 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 - - uid: 30760 + - uid: 30851 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 - - uid: 30761 + - uid: 30852 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 - - uid: 30762 + - uid: 30853 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 - - uid: 30763 + - uid: 30854 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 - - uid: 30764 + - uid: 30855 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 - - uid: 30765 + - uid: 30856 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 - - uid: 30766 + - uid: 30857 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 - - uid: 30767 + - uid: 30858 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 - - uid: 30768 + - uid: 30859 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 - - uid: 30769 + - uid: 30860 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 - - uid: 30770 + - uid: 30861 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 - - uid: 30771 + - uid: 30862 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 - - uid: 30772 + - uid: 30863 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 - - uid: 30773 + - uid: 30864 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 - - uid: 30774 + - uid: 30865 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 - - uid: 30775 + - uid: 30866 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 - - uid: 30776 + - uid: 30867 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 - - uid: 30777 + - uid: 30868 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 - - uid: 30778 + - uid: 30869 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 - - uid: 30779 + - uid: 30870 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 - - uid: 30780 + - uid: 30871 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 - - uid: 30781 + - uid: 30872 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 - - uid: 30782 + - uid: 30873 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 - - uid: 30783 + - uid: 30874 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 - - uid: 30784 + - uid: 30875 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 - - uid: 30785 + - uid: 30876 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 - - uid: 30786 + - uid: 30877 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 - - uid: 30787 + - uid: 30878 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 - - uid: 30788 + - uid: 30879 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 - - uid: 30789 + - uid: 30880 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 - - uid: 30790 + - uid: 30881 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 - - uid: 30791 + - uid: 30882 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 - - uid: 30792 + - uid: 30883 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 - - uid: 30793 + - uid: 30884 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 - - uid: 30794 + - uid: 30885 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 - - uid: 30795 + - uid: 30886 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 - - uid: 30796 + - uid: 30887 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 - - uid: 30797 + - uid: 30888 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 - - uid: 30798 + - uid: 30889 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 - - uid: 30799 + - uid: 30890 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 - - uid: 30800 + - uid: 30891 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 - - uid: 30801 + - uid: 30892 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 - - uid: 30802 + - uid: 30893 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 - - uid: 30803 + - uid: 30894 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 - - uid: 30804 + - uid: 30895 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 - - uid: 30805 + - uid: 30896 components: - type: Transform pos: -25.5,37.5 parent: 2 - - uid: 30806 + - uid: 30897 components: - type: Transform pos: -25.5,36.5 parent: 2 - - uid: 30807 + - uid: 30898 components: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 30808 + - uid: 30899 components: - type: Transform pos: -25.5,39.5 parent: 2 - - uid: 30809 - components: - - type: Transform - pos: -25.5,40.5 - parent: 2 - - uid: 30810 + - uid: 30900 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 30811 + - uid: 30901 components: - type: Transform pos: -30.5,37.5 parent: 2 - - uid: 30812 + - uid: 30902 components: - type: Transform pos: -31.5,37.5 parent: 2 - - uid: 30813 + - uid: 30903 components: - type: Transform pos: -33.5,37.5 parent: 2 - - uid: 30814 + - uid: 30904 components: - type: Transform pos: -33.5,38.5 parent: 2 - - uid: 30815 + - uid: 30905 components: - type: Transform pos: -34.5,38.5 parent: 2 - - uid: 30816 + - uid: 30906 components: - type: Transform pos: -35.5,36.5 parent: 2 - - uid: 30817 + - uid: 30907 components: - type: Transform pos: -37.5,38.5 parent: 2 - - uid: 30818 + - uid: 30908 components: - type: Transform pos: -38.5,38.5 parent: 2 - - uid: 30819 + - uid: 30909 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 - - uid: 30820 + - uid: 30910 components: - type: Transform pos: -44.5,13.5 parent: 2 - - uid: 30821 + - uid: 30911 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 - - uid: 30822 + - uid: 30912 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 - - uid: 30823 + - uid: 30913 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 - - uid: 30824 + - uid: 30914 components: - type: Transform pos: -23.5,40.5 parent: 2 - - uid: 30825 + - uid: 30915 components: - type: Transform pos: -23.5,42.5 parent: 2 - - uid: 30826 + - uid: 30916 components: - type: Transform pos: -23.5,43.5 parent: 2 - - uid: 30827 + - uid: 30917 components: - type: Transform pos: -23.5,44.5 parent: 2 - - uid: 30828 + - uid: 30918 components: - type: Transform pos: -23.5,45.5 parent: 2 - - uid: 30829 + - uid: 30919 components: - type: Transform pos: -23.5,46.5 parent: 2 - - uid: 30830 + - uid: 30920 components: - type: Transform pos: -22.5,46.5 parent: 2 - - uid: 30831 + - uid: 30921 components: - type: Transform pos: -21.5,46.5 parent: 2 - - uid: 30832 + - uid: 30922 components: - type: Transform pos: -20.5,46.5 parent: 2 - - uid: 30833 + - uid: 30923 components: - type: Transform pos: -8.5,47.5 parent: 2 - - uid: 30834 + - uid: 30924 components: - type: Transform pos: -7.5,47.5 parent: 2 - - uid: 30835 + - uid: 30925 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 30836 + - uid: 30926 components: - type: Transform pos: -2.5,47.5 parent: 2 - - uid: 30837 + - uid: 30927 components: - type: Transform pos: -1.5,47.5 parent: 2 - - uid: 30838 + - uid: 30928 components: - type: Transform pos: -1.5,48.5 parent: 2 - - uid: 30839 + - uid: 30929 components: - type: Transform pos: -1.5,51.5 parent: 2 - - uid: 30840 + - uid: 30930 components: - type: Transform pos: -1.5,52.5 parent: 2 - - uid: 30841 + - uid: 30931 components: - type: Transform pos: -1.5,53.5 parent: 2 - - uid: 30842 + - uid: 30932 components: - type: Transform pos: -1.5,54.5 parent: 2 - - uid: 30843 + - uid: 30933 components: - type: Transform pos: 45.5,34.5 parent: 2 - - uid: 30844 + - uid: 30934 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 - - uid: 30845 + - uid: 30935 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 - - uid: 30846 + - uid: 30936 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 - - uid: 30847 + - uid: 30937 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 - - uid: 30848 + - uid: 30938 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 - - uid: 30849 + - uid: 30939 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 - - uid: 30850 + - uid: 30940 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 - - uid: 30851 + - uid: 30941 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 - - uid: 30852 + - uid: 30942 components: - type: Transform pos: 17.5,35.5 parent: 2 - - uid: 30853 + - uid: 30943 components: - type: Transform pos: 15.5,35.5 parent: 2 - - uid: 30854 + - uid: 30944 components: - type: Transform pos: -28.5,42.5 parent: 2 - - uid: 30855 + - uid: 30945 components: - type: Transform pos: -27.5,42.5 parent: 2 - - uid: 30856 + - uid: 30946 components: - type: Transform pos: -26.5,42.5 parent: 2 - - uid: 30857 + - uid: 30947 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 30858 + - uid: 30948 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 30859 + - uid: 30949 components: - type: Transform pos: -36.5,38.5 parent: 2 - - uid: 30860 + - uid: 30950 components: - type: Transform pos: -35.5,38.5 parent: 2 - - uid: 30861 + - uid: 30951 components: - type: Transform pos: 40.5,49.5 parent: 2 - - uid: 30862 + - uid: 30952 components: - type: Transform pos: 40.5,50.5 parent: 2 - - uid: 30863 + - uid: 30953 components: - type: Transform pos: 44.5,46.5 parent: 2 - - uid: 30864 + - uid: 30954 components: - type: Transform pos: 44.5,44.5 parent: 2 - - uid: 30865 + - uid: 30955 components: - type: Transform pos: -23.5,48.5 parent: 2 - - uid: 30866 + - uid: 30956 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 30867 + - uid: 30957 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 30868 + - uid: 30958 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 30869 + - uid: 30959 components: - type: Transform pos: -22.5,-17.5 parent: 2 - - uid: 30870 + - uid: 30960 components: - type: Transform pos: -16.5,-96.5 parent: 2 - - uid: 30871 + - uid: 30961 components: - type: Transform pos: -28.5,-96.5 parent: 2 - - uid: 30872 + - uid: 30962 components: - type: Transform pos: -13.5,-98.5 parent: 2 - - uid: 30873 + - uid: 30963 components: - type: Transform pos: -13.5,-96.5 parent: 2 - - uid: 30874 + - uid: 30964 components: - type: Transform pos: -31.5,-98.5 parent: 2 - - uid: 30875 + - uid: 30965 components: - type: Transform pos: -31.5,-96.5 parent: 2 - - uid: 30876 + - uid: 30966 components: - type: Transform pos: -43.5,-93.5 parent: 2 - - uid: 30877 + - uid: 30967 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 - - uid: 30878 + - uid: 30968 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 - - uid: 30879 + - uid: 30969 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 - - uid: 30880 + - uid: 30970 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 - - uid: 30881 + - uid: 30971 components: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 30882 + - uid: 30972 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 - - uid: 30883 + - uid: 30973 components: - type: Transform pos: -13.5,33.5 parent: 2 - - uid: 30884 + - uid: 30974 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 - - uid: 30885 + - uid: 30975 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 - - uid: 30886 + - uid: 30976 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 30887 + - uid: 30977 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 30888 + - uid: 30978 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 30889 + - uid: 30979 components: - type: Transform pos: 57.5,-62.5 parent: 2 - - uid: 30890 + - uid: 30980 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 30891 + - uid: 30981 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 - - uid: 30892 + - uid: 30982 components: - type: Transform pos: 56.5,-62.5 parent: 2 - - uid: 30893 + - uid: 30983 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 30894 + - uid: 30984 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 30895 + - uid: 30985 components: - type: Transform pos: 52.5,-33.5 parent: 2 - - uid: 30896 + - uid: 30986 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 30897 + - uid: 30987 components: - type: Transform pos: 55.5,-62.5 parent: 2 - - uid: 30898 + - uid: 30988 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 - - uid: 30899 + - uid: 30989 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-38.5 parent: 2 - - uid: 30900 + - uid: 30990 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 - - uid: 30901 + - uid: 30991 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 - - uid: 30902 + - uid: 30992 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 - - uid: 30903 + - uid: 30993 components: - type: Transform pos: 73.5,-55.5 parent: 2 - - uid: 30904 + - uid: 30994 components: - type: Transform pos: 52.5,-37.5 parent: 2 - - uid: 30905 + - uid: 30995 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 - - uid: 30906 + - uid: 30996 components: - type: Transform pos: 60.5,-42.5 parent: 2 - - uid: 30907 + - uid: 30997 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 - - uid: 30908 + - uid: 30998 components: - type: Transform pos: 55.5,-33.5 parent: 2 - - uid: 30909 + - uid: 30999 components: - type: Transform pos: 56.5,-36.5 parent: 2 - - uid: 30910 + - uid: 31000 components: - type: Transform pos: 56.5,-34.5 parent: 2 - - uid: 30911 + - uid: 31001 components: - type: Transform pos: 60.5,-27.5 parent: 2 - - uid: 30912 + - uid: 31002 components: - type: Transform pos: 59.5,-27.5 parent: 2 - - uid: 30913 + - uid: 31003 components: - type: Transform pos: 58.5,-27.5 parent: 2 - - uid: 30914 + - uid: 31004 components: - type: Transform pos: 56.5,-29.5 parent: 2 - - uid: 30915 + - uid: 31005 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 30916 + - uid: 31006 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 30917 + - uid: 31007 components: - type: Transform pos: 61.5,-27.5 parent: 2 - - uid: 30918 + - uid: 31008 components: - type: Transform pos: 56.5,-27.5 parent: 2 - - uid: 30919 + - uid: 31009 components: - type: Transform pos: 53.5,-29.5 parent: 2 - - uid: 30920 + - uid: 31010 components: - type: Transform pos: 54.5,-29.5 parent: 2 - - uid: 30921 + - uid: 31011 components: - type: Transform pos: 44.5,-62.5 parent: 2 - - uid: 30922 + - uid: 31012 components: - type: Transform pos: 44.5,-63.5 parent: 2 - - uid: 30923 + - uid: 31013 components: - type: Transform pos: 53.5,-66.5 parent: 2 - - uid: 30924 + - uid: 31014 components: - type: Transform pos: 56.5,-35.5 parent: 2 - - uid: 30925 + - uid: 31015 components: - type: Transform pos: 57.5,-66.5 parent: 2 - - uid: 30926 + - uid: 31016 components: - type: Transform pos: 57.5,-67.5 parent: 2 - - uid: 30927 + - uid: 31017 components: - type: Transform pos: 65.5,-66.5 parent: 2 - - uid: 30928 + - uid: 31018 components: - type: Transform pos: 65.5,-62.5 parent: 2 - - uid: 30929 + - uid: 31019 components: - type: Transform pos: 65.5,-64.5 parent: 2 - - uid: 30930 + - uid: 31020 components: - type: Transform pos: 65.5,-63.5 parent: 2 - - uid: 30931 + - uid: 31021 components: - type: Transform pos: 73.5,-56.5 parent: 2 - - uid: 30932 + - uid: 31022 components: - type: Transform pos: 74.5,-53.5 parent: 2 - - uid: 30933 + - uid: 31023 components: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 30934 + - uid: 31024 components: - type: Transform pos: 67.5,-62.5 parent: 2 - - uid: 30935 + - uid: 31025 components: - type: Transform pos: 70.5,-63.5 parent: 2 - - uid: 30936 + - uid: 31026 components: - type: Transform pos: 70.5,-62.5 parent: 2 - - uid: 30937 + - uid: 31027 components: - type: Transform pos: 69.5,-62.5 parent: 2 - - uid: 30938 + - uid: 31028 components: - type: Transform pos: 69.5,-58.5 parent: 2 - - uid: 30939 + - uid: 31029 components: - type: Transform pos: 70.5,-58.5 parent: 2 - - uid: 30940 + - uid: 31030 components: - type: Transform pos: 70.5,-59.5 parent: 2 - - uid: 30941 + - uid: 31031 components: - type: Transform pos: 70.5,-60.5 parent: 2 - - uid: 30942 + - uid: 31032 components: - type: Transform pos: 72.5,-58.5 parent: 2 - - uid: 30943 + - uid: 31033 components: - type: Transform pos: 56.5,-37.5 parent: 2 - - uid: 30944 + - uid: 31034 components: - type: Transform pos: 58.5,-39.5 parent: 2 - - uid: 30945 + - uid: 31035 components: - type: Transform pos: 62.5,-27.5 parent: 2 - - uid: 30946 + - uid: 31036 components: - type: Transform pos: 18.5,-15.5 parent: 2 - - uid: 30947 + - uid: 31037 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 30948 + - uid: 31038 components: - type: Transform pos: -22.5,0.5 parent: 2 - - uid: 30949 + - uid: 31039 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 - - uid: 30950 + - uid: 31040 components: - type: Transform pos: 16.5,8.5 parent: 2 - - uid: 30951 + - uid: 31041 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 30952 + - uid: 31042 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 30953 + - uid: 31043 components: - type: Transform pos: -16.5,-11.5 parent: 2 - - uid: 30954 + - uid: 31044 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 31045 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 31046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-60.5 + parent: 2 + - uid: 31047 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 31048 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 2 + - uid: 31049 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 31051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-37.5 + parent: 2 + - uid: 31052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 2 + - uid: 31053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,18.5 + parent: 2 + - uid: 31054 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 31055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-63.5 + parent: 2 + - uid: 31056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-63.5 + parent: 2 + - uid: 31057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-64.5 + parent: 2 + - uid: 31058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-64.5 + parent: 2 + - uid: 31059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-64.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-64.5 + parent: 2 + - uid: 31061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-64.5 + parent: 2 + - uid: 31062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-64.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 31064 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 31065 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 31066 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - uid: 31067 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 31068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-63.5 + parent: 2 + - uid: 31069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-64.5 + parent: 2 + - uid: 31070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-65.5 + parent: 2 + - uid: 31071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-66.5 + parent: 2 + - uid: 31072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 31073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-68.5 + parent: 2 + - uid: 31074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-68.5 + parent: 2 + - uid: 31075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-68.5 + parent: 2 + - uid: 31076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-67.5 + parent: 2 + - uid: 31077 components: - type: Transform - pos: -13.5,-16.5 + rot: 1.5707963267948966 rad + pos: 2.5,-67.5 parent: 2 - - uid: 30955 + - uid: 31078 components: - type: Transform - pos: -8.5,-7.5 + rot: 1.5707963267948966 rad + pos: 3.5,-67.5 parent: 2 - - uid: 30956 + - uid: 31079 components: - type: Transform - pos: 6.5,-51.5 + rot: 1.5707963267948966 rad + pos: 4.5,-67.5 parent: 2 - - uid: 30957 + - uid: 31080 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-60.5 + pos: 4.5,-66.5 parent: 2 - - uid: 30958 + - uid: 31081 components: - type: Transform - pos: -21.5,-51.5 + rot: 1.5707963267948966 rad + pos: 4.5,-65.5 parent: 2 - - uid: 30959 + - uid: 31082 components: - type: Transform - pos: 5.5,-75.5 + pos: -8.5,-63.5 parent: 2 - - uid: 30960 + - uid: 31083 components: - type: Transform - pos: 4.5,-72.5 + pos: -13.5,-69.5 parent: 2 - - uid: 30961 + - uid: 31084 components: - type: Transform - pos: -11.5,13.5 + pos: 16.5,-14.5 parent: 2 - - uid: 30962 + - uid: 31085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-24.5 + pos: -30.5,-53.5 parent: 2 - - uid: 30963 + - uid: 31086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-37.5 + rot: -1.5707963267948966 rad + pos: -31.5,-53.5 parent: 2 - - uid: 30964 + - uid: 31087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 + pos: -29.5,-64.5 parent: 2 - proto: WallSolidDiagonal entities: - - uid: 30965 + - uid: 31088 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 - - uid: 30966 + - uid: 31089 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,16.5 parent: 2 - - uid: 30967 + - uid: 31090 components: - type: Transform rot: 3.141592653589793 rad @@ -200976,84 +198384,78 @@ entities: parent: 2 - proto: WallSolidRust entities: - - uid: 30968 + - uid: 31091 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-30.5 parent: 2 - - uid: 30969 + - uid: 31092 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-30.5 parent: 2 - - uid: 30970 + - uid: 31093 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-65.5 parent: 2 - - uid: 30971 + - uid: 31094 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 2 - - uid: 30972 + - uid: 31095 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-65.5 parent: 2 - - uid: 30973 + - uid: 31096 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-65.5 parent: 2 - - uid: 30974 + - uid: 31097 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-69.5 parent: 2 - - uid: 30975 + - uid: 31098 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-73.5 parent: 2 - - uid: 30976 + - uid: 31099 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-66.5 parent: 2 - - uid: 30977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-66.5 - parent: 2 - - uid: 30978 + - uid: 31100 components: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 30979 + - uid: 31101 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 - - uid: 30980 + - uid: 31102 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 - - uid: 30981 + - uid: 31103 components: - type: Transform rot: 1.5707963267948966 rad @@ -201061,7 +198463,7 @@ entities: parent: 2 - proto: WardrobeBotanistFilled entities: - - uid: 30982 + - uid: 31104 components: - type: Transform pos: -4.5,12.5 @@ -201084,15 +198486,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30983 + - uid: 31105 components: - type: Transform pos: -4.5,10.5 @@ -201115,17 +198509,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeGreenFilled entities: - - uid: 30984 + - uid: 31106 components: - type: Transform pos: -48.5,3.5 @@ -201148,17 +198534,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobePrisonFilled entities: - - uid: 30985 + - uid: 31107 components: - type: Transform pos: 28.5,10.5 @@ -201181,15 +198559,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30986 + - uid: 31108 components: - type: Transform pos: 36.5,5.5 @@ -201212,15 +198582,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30987 + - uid: 31109 components: - type: Transform pos: 31.5,10.5 @@ -201243,15 +198605,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30988 + - uid: 31110 components: - type: Transform pos: 34.5,10.5 @@ -201274,15 +198628,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30989 + - uid: 31111 components: - type: Transform pos: 36.5,8.5 @@ -201305,15 +198651,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30990 + - uid: 31112 components: - type: Transform pos: 55.5,22.5 @@ -201336,15 +198674,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30991 + - uid: 31113 components: - type: Transform pos: 52.5,22.5 @@ -201367,15 +198697,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30992 + - uid: 31114 components: - type: Transform pos: 49.5,22.5 @@ -201398,15 +198720,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30993 + - uid: 31115 components: - type: Transform pos: 46.5,22.5 @@ -201429,15 +198743,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30994 + - uid: 31116 components: - type: Transform pos: 58.5,22.5 @@ -201460,15 +198766,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30995 + - uid: 31117 components: - type: Transform pos: 60.5,19.5 @@ -201491,15 +198789,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30996 + - uid: 31118 components: - type: Transform pos: 60.5,16.5 @@ -201522,17 +198812,9 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeYellowFilled entities: - - uid: 30997 + - uid: 31119 components: - type: Transform pos: -49.5,3.5 @@ -201555,66 +198837,58 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WarningCO2 entities: - - uid: 30998 + - uid: 31120 components: - type: Transform pos: -51.5,-50.5 parent: 2 - proto: WarningN2 entities: - - uid: 30999 + - uid: 31121 components: - type: Transform pos: -51.5,-54.5 parent: 2 - proto: WarningN2O entities: - - uid: 31000 + - uid: 31122 components: - type: Transform pos: -51.5,-42.5 parent: 2 - proto: WarningO2 entities: - - uid: 31001 + - uid: 31123 components: - type: Transform pos: -51.5,-52.5 parent: 2 - proto: WarningPlasma entities: - - uid: 31002 + - uid: 31124 components: - type: Transform pos: -51.5,-46.5 parent: 2 - proto: WarningTritium entities: - - uid: 31003 + - uid: 31125 components: - type: Transform pos: -51.5,-44.5 parent: 2 - proto: WarningWaste entities: - - uid: 31004 + - uid: 31126 components: - type: Transform pos: -51.5,-48.5 parent: 2 - proto: WarpPoint entities: - - uid: 31005 + - uid: 31127 components: - type: MetaData name: 'warp: science' @@ -201623,63 +198897,31 @@ entities: parent: 2 - type: WarpPoint location: science reception - - uid: 31007 - components: - - type: MetaData - name: 'warp: singularity' - - type: Transform - pos: -66.5,-18.5 - parent: 2 - - type: WarpPoint - location: singularity -- proto: WarpPointBombing - entities: - - uid: 31009 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - - type: WarpPoint - location: brigmed - - uid: 31010 - components: - - type: Transform - pos: -19.5,-47.5 - parent: 2 - - type: WarpPoint - location: camera server room - - uid: 31011 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - type: WarpPoint - location: ame - proto: WaterCooler entities: - - uid: 31013 + - uid: 31128 components: - type: Transform pos: -8.5,-35.5 parent: 2 - - uid: 31014 + - uid: 31129 components: - type: Transform pos: 55.398575,18.5843 parent: 2 - - uid: 31015 + - uid: 31130 components: - type: Transform pos: 36.5,-6.5 parent: 2 - - uid: 31016 + - uid: 31131 components: - type: Transform pos: 41.5,-47.5 parent: 2 - proto: WatermelonSeeds entities: - - uid: 31017 + - uid: 31132 components: - type: Transform rot: 3.141592653589793 rad @@ -201687,438 +198929,427 @@ entities: parent: 2 - proto: WaterTank entities: - - uid: 31018 + - uid: 31133 components: - type: Transform pos: 74.5,-54.5 parent: 2 - proto: WaterTankFull entities: - - uid: 31019 + - uid: 31134 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 31020 + - uid: 31135 components: - type: Transform pos: -19.5,-86.5 parent: 2 - - uid: 31021 + - uid: 31136 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 31022 + - uid: 31137 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 31023 + - uid: 31138 components: - type: Transform pos: 8.5,-64.5 parent: 2 - - uid: 31024 + - uid: 31139 components: - type: Transform pos: -29.5,-65.5 parent: 2 - - uid: 31025 + - uid: 31140 components: - type: Transform pos: 35.5,-10.5 parent: 2 - - uid: 31026 + - uid: 31141 components: - type: Transform pos: -27.5,-43.5 parent: 2 - - uid: 31027 + - uid: 31142 components: - type: Transform pos: -39.5,-30.5 parent: 2 - - uid: 31028 + - uid: 31143 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 31029 + - uid: 31144 components: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 31030 + - uid: 31145 components: - type: Transform pos: -8.5,-8.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 31031 + - uid: 31146 components: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 31032 + - uid: 31147 components: - type: Transform pos: -5.5,8.5 parent: 2 - proto: WaterVaporCanister entities: - - uid: 31033 + - uid: 31148 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 31034 + - uid: 31149 components: - type: Transform pos: -34.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 31035 + - uid: 31150 components: - type: Transform pos: 28.5,-21.5 parent: 2 - - uid: 31036 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 2 - - uid: 31037 + - uid: 31151 components: - type: Transform pos: 6.5,12.5 parent: 2 - - uid: 31038 + - uid: 31152 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 31039 + - uid: 31153 components: - type: Transform pos: 5.5,20.5 parent: 2 - - uid: 31040 + - uid: 31154 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 31041 + - uid: 31155 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 31042 + - uid: 31156 components: - type: Transform pos: -16.5,24.5 parent: 2 - - uid: 31043 + - uid: 31157 components: - type: Transform pos: -16.5,-21.5 parent: 2 - proto: WeaponDisabler entities: - - uid: 31044 + - uid: 31158 components: - type: Transform pos: 1.6229637,21.593708 parent: 2 - - uid: 31045 + - uid: 31159 components: - type: Transform pos: 12.563014,21.38584 parent: 2 - - uid: 31046 + - uid: 31160 components: - type: Transform pos: 12.453639,21.54209 parent: 2 - proto: WeaponLaserCarbine entities: - - uid: 31047 + - uid: 31161 components: - type: Transform pos: 26.559673,29.582918 parent: 2 - - uid: 31048 + - uid: 31162 components: - type: Transform pos: 31.473701,27.53409 parent: 2 - - uid: 31049 + - uid: 31163 components: - type: Transform pos: 27.55704,27.505564 parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 31050 + - uid: 31164 components: - type: Transform pos: 31.657001,32.450115 parent: 2 - - uid: 31051 + - uid: 31165 components: - type: Transform pos: 31.637281,32.558495 parent: 2 - - uid: 31052 + - uid: 31166 components: - type: Transform pos: 31.586092,32.47933 parent: 2 - - uid: 31053 + - uid: 31167 components: - type: Transform pos: 31.657982,32.330257 parent: 2 - proto: WeaponRevolverDeckard entities: - - uid: 31054 + - uid: 31168 components: - type: Transform pos: 30.600538,32.59448 parent: 2 - proto: WeaponRevolverInspector entities: - - uid: 31658 + - uid: 31169 components: - type: Transform - pos: 27.488762,-36.36862 + pos: 23.444613,-35.267536 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 31056 + - uid: 31170 components: - type: Transform pos: 26.643364,32.60906 parent: 2 - - uid: 31057 + - uid: 31171 components: - type: Transform pos: 26.777893,32.47498 parent: 2 - - uid: 31058 + - uid: 31172 components: - type: Transform pos: 26.709015,32.580257 parent: 2 - proto: WeaponSubMachineGunDrozd entities: - - uid: 31059 + - uid: 31173 components: - type: Transform - pos: 27.939907,32.617863 + pos: 28.13088,32.539948 parent: 2 - - uid: 31060 + - uid: 31174 components: - type: Transform - pos: 28.718153,32.704456 + pos: 28.177755,32.446198 parent: 2 - - uid: 31061 + - uid: 31175 + components: + - type: Transform + pos: 28.06838,32.649323 + parent: 2 + - uid: 31176 components: - type: Transform - pos: 29.421278,32.68883 + pos: 28.25588,32.289948 parent: 2 - proto: WeaponSubMachineGunWt550 entities: - - uid: 31062 + - uid: 31177 components: - type: Transform pos: 6.384364,22.636343 parent: 2 - proto: Welder entities: - - uid: 31063 + - uid: 31178 components: - type: Transform pos: -23.377909,-24.435646 parent: 2 - - uid: 31064 + - uid: 31179 components: - type: Transform pos: -11.453522,-74.45183 parent: 2 - - uid: 31065 + - uid: 31180 components: - type: Transform pos: -44.4577,-25.484493 parent: 2 - - uid: 31066 + - uid: 31181 components: - type: Transform pos: -28.416739,-28.473803 parent: 2 - - uid: 31067 + - uid: 31182 components: - type: Transform pos: -52.43758,2.566814 parent: 2 - - uid: 31068 + - uid: 31183 components: - type: Transform pos: -44.442474,-76.91975 parent: 2 - - uid: 31069 + - uid: 31184 components: - type: Transform pos: 76.51503,-43.437786 parent: 2 - - uid: 31070 + - uid: 31185 components: - type: Transform pos: -66.37563,-43.430454 parent: 2 - proto: WelderIndustrial entities: - - uid: 31071 + - uid: 31186 components: - type: Transform pos: -34.41553,-12.611145 parent: 2 - - uid: 31072 + - uid: 31187 components: - type: Transform pos: -35.502888,-46.513077 parent: 2 - - uid: 31073 + - uid: 31188 components: - type: Transform pos: -42.417007,-21.43029 parent: 2 - proto: WelderMini entities: - - uid: 31074 + - uid: 31189 components: - type: Transform pos: -52.426445,-12.844277 parent: 2 - proto: WeldingFuelTank entities: - - uid: 31075 + - uid: 31190 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 31076 +- proto: WeldingFuelTankFull + entities: + - uid: 31191 components: - type: Transform pos: 7.5,-64.5 parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 31077 + - uid: 31192 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 31078 + - uid: 31193 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 31079 + - uid: 31194 components: - type: Transform pos: -43.5,-63.5 parent: 2 - - uid: 31080 + - uid: 31195 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 31081 + - uid: 31196 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 31082 + - uid: 31197 components: - type: Transform pos: -51.5,4.5 parent: 2 - - uid: 31083 + - uid: 31198 components: - type: Transform pos: -16.5,-18.5 parent: 2 - - uid: 31084 + - uid: 31199 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 31085 + - uid: 31200 components: - type: Transform pos: 72.5,-59.5 parent: 2 - - uid: 31086 + - uid: 31201 components: - type: Transform pos: 66.5,6.5 parent: 2 - - uid: 31087 + - uid: 31202 components: - type: Transform pos: 74.5,-55.5 parent: 2 - - uid: 31088 + - uid: 31203 components: - type: Transform pos: -54.5,-35.5 parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 31089 + - uid: 31204 components: - type: Transform pos: -53.5,-25.5 parent: 2 - proto: WetFloorSign entities: - - uid: 31090 + - uid: 31205 components: - type: Transform pos: -7.8693366,-23.228895 parent: 2 - - uid: 31091 + - uid: 31206 components: - type: Transform pos: 16.379074,-41.325726 parent: 2 - - uid: 31092 + - uid: 31207 components: - type: Transform pos: -7.8537116,-23.36952 parent: 2 - - uid: 31093 + - uid: 31208 components: - type: Transform pos: -7.7912116,-23.603895 parent: 2 -- proto: WhiteCane - entities: - - uid: 31668 - components: - - type: Transform - pos: 23.32566,-34.344116 - parent: 2 - proto: Windoor entities: - - uid: 31094 + - uid: 31209 components: - type: Transform rot: 1.5707963267948966 rad @@ -202126,200 +199357,270 @@ entities: parent: 2 - proto: WindoorBarLocked entities: - - uid: 31095 + - uid: 31210 components: - type: Transform pos: 18.5,15.5 parent: 2 - - uid: 31096 + - uid: 31211 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 31097 + - uid: 31212 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 - - uid: 31098 + - uid: 31213 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 - - uid: 31099 + - uid: 31214 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-75.5 parent: 2 - - uid: 31100 + - uid: 31215 components: - type: Transform pos: 28.5,-37.5 parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 31101 + - uid: 31216 components: - type: Transform pos: -4.5,17.5 parent: 2 - - uid: 31102 + - uid: 31217 components: - type: Transform pos: -7.5,17.5 parent: 2 - proto: WindoorSecure entities: - - uid: 31103 + - uid: 31218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 31219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-61.5 + parent: 2 + - uid: 31220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 2 + - uid: 31221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-62.5 + parent: 2 + - uid: 31222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-57.5 + parent: 2 + - uid: 31223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-57.5 + parent: 2 + - uid: 31224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 2 + - uid: 31225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-58.5 + parent: 2 + - uid: 31226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 2 + - uid: 31227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-62.5 + parent: 2 + - uid: 31228 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 31104 + - uid: 31229 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 2 - - uid: 31105 + - uid: 31230 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 31106 + - uid: 31231 components: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 31107 + - uid: 31232 components: - type: Transform pos: -13.5,-9.5 parent: 2 - - uid: 31108 + - uid: 31233 components: - type: Transform pos: 59.5,22.5 parent: 2 - - uid: 31109 + - uid: 31234 components: - type: Transform pos: 56.5,22.5 parent: 2 - - uid: 31110 + - uid: 31235 components: - type: Transform pos: 53.5,22.5 parent: 2 - - uid: 31111 + - uid: 31236 components: - type: Transform pos: 50.5,22.5 parent: 2 - - uid: 31112 + - uid: 31237 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 31113 + - uid: 31238 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 - - uid: 31114 + - uid: 31239 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 - - uid: 31115 + - uid: 31240 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 - - uid: 31116 + - uid: 31241 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-33.5 parent: 2 - - uid: 31117 + - uid: 31242 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 - - uid: 31118 + - uid: 31243 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-47.5 parent: 2 - - uid: 31119 + - uid: 31244 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - uid: 31120 + - uid: 31245 components: - type: Transform pos: -4.5,-47.5 parent: 2 - - uid: 31121 + - uid: 31246 components: - type: Transform pos: -3.5,-47.5 parent: 2 + - uid: 31247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-66.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24462 - proto: WindoorSecureArmoryLocked entities: - - uid: 31122 + - uid: 31248 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 - - uid: 31123 + - uid: 31249 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 - - uid: 31124 + - uid: 31250 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 - - uid: 31125 + - uid: 31251 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 - - uid: 31126 + - uid: 31252 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 - - uid: 31127 + - uid: 31253 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 - - uid: 31128 + - uid: 31254 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 - - uid: 31129 + - uid: 31255 components: - type: Transform rot: 3.141592653589793 rad @@ -202327,14 +199628,14 @@ entities: parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 31130 + - uid: 31256 components: - type: Transform pos: 31.5,-52.5 parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 31131 + - uid: 31257 components: - type: Transform rot: -1.5707963267948966 rad @@ -202342,33 +199643,33 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 31132 + - uid: 31258 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - uid: 31133 + - uid: 31259 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 - - uid: 31134 + - uid: 31260 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-51.5 + pos: 3.5,-54.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 31135 + - uid: 31261 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 - - uid: 31136 + - uid: 31262 components: - type: Transform rot: -1.5707963267948966 rad @@ -202376,14 +199677,14 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 31137 + - uid: 31263 components: - type: Transform pos: 4.5,-3.5 parent: 2 - proto: WindoorSecureJanitorLocked entities: - - uid: 31138 + - uid: 31264 components: - type: Transform rot: -1.5707963267948966 rad @@ -202391,60 +199692,60 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 31139 + - uid: 31265 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 31266 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 - - uid: 31140 + - uid: 31267 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 - - uid: 31141 + - uid: 31268 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 - - uid: 31142 + - uid: 31269 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 - - uid: 31143 + - uid: 31270 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 - - uid: 31144 + - uid: 31271 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 - - uid: 31145 + - uid: 31272 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 - - uid: 31146 + - uid: 31273 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 - - uid: 31147 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 31148 + - uid: 31274 components: - type: Transform rot: 1.5707963267948966 rad @@ -202452,13 +199753,13 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 31149 + - uid: 31275 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 - - uid: 31150 + - uid: 31276 components: - type: Transform rot: 3.141592653589793 rad @@ -202466,19 +199767,19 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 31151 + - uid: 31277 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 - - uid: 31152 + - uid: 31278 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 - - uid: 31153 + - uid: 31279 components: - type: Transform rot: 3.141592653589793 rad @@ -202486,8 +199787,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 2258 - - uid: 31154 + - 2261 + - uid: 31280 components: - type: Transform rot: 1.5707963267948966 rad @@ -202495,26 +199796,20 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 2260 - - uid: 31155 + - 2263 + - uid: 31281 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 - - uid: 31156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 2 - - uid: 31157 + - uid: 31282 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 - - uid: 31158 + - uid: 31283 components: - type: Transform rot: 3.141592653589793 rad @@ -202522,8 +199817,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 2259 - - uid: 31159 + - 2262 + - uid: 31284 components: - type: Transform rot: 1.5707963267948966 rad @@ -202531,14 +199826,14 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 2261 - - uid: 31160 + - 2264 + - uid: 31285 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 - - uid: 31161 + - uid: 31286 components: - type: Transform rot: 3.141592653589793 rad @@ -202546,36 +199841,36 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 2257 - - uid: 31162 + - 2260 + - uid: 31287 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 - - uid: 31163 + - uid: 31288 components: - type: Transform pos: 21.5,-44.5 parent: 2 - - uid: 31164 + - uid: 31289 components: - type: Transform pos: 22.5,-44.5 parent: 2 - - uid: 31165 + - uid: 31290 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 - - uid: 31166 + - uid: 31291 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 - - uid: 31167 + - uid: 31292 components: - type: Transform rot: 1.5707963267948966 rad @@ -202583,7 +199878,7 @@ entities: parent: 2 - proto: WindoorTheatreLocked entities: - - uid: 31168 + - uid: 31293 components: - type: Transform rot: 3.141592653589793 rad @@ -202591,826 +199886,724 @@ entities: parent: 2 - proto: Window entities: - - uid: 31169 + - uid: 31294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-63.5 + parent: 2 + - uid: 31295 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 31296 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 31297 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 31298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-59.5 + parent: 2 + - uid: 31299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-57.5 + parent: 2 + - uid: 31300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-57.5 + parent: 2 + - uid: 31301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 31302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-63.5 + parent: 2 + - uid: 31303 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 31304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-53.5 + parent: 2 + - uid: 31305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-55.5 + parent: 2 + - uid: 31306 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-40.5 parent: 2 - - uid: 31170 + - uid: 31307 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-40.5 parent: 2 - - uid: 31171 + - uid: 31308 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-72.5 parent: 2 - - uid: 31172 + - uid: 31309 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,19.5 parent: 2 - - uid: 31173 + - uid: 31310 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,18.5 parent: 2 - - uid: 31174 + - uid: 31311 components: - type: Transform pos: 8.5,-46.5 parent: 2 - - uid: 31175 + - uid: 31312 components: - type: Transform pos: 8.5,-45.5 parent: 2 - - uid: 31176 + - uid: 31313 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-74.5 parent: 2 - - uid: 31177 + - uid: 31314 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-69.5 parent: 2 - - uid: 31178 + - uid: 31315 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-69.5 parent: 2 - - uid: 31179 + - uid: 31316 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 - - uid: 31180 + - uid: 31317 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 - - uid: 31181 + - uid: 31318 components: - type: Transform pos: 27.5,-55.5 parent: 2 - - uid: 31182 + - uid: 31319 components: - type: Transform pos: 27.5,-54.5 parent: 2 - - uid: 31183 + - uid: 31320 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 - - uid: 31184 + - uid: 31321 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 - - uid: 31185 + - uid: 31322 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 - - uid: 31186 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 2 - - uid: 31187 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 2 - - uid: 31188 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 2 - - uid: 31189 + - uid: 31323 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 - - uid: 31190 + - uid: 31324 components: - type: Transform pos: -21.5,-13.5 parent: 2 - - uid: 31191 + - uid: 31325 components: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 31192 + - uid: 31326 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 - - uid: 31193 + - uid: 31327 components: - type: Transform pos: -14.5,-44.5 parent: 2 - - uid: 31194 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 2 - - uid: 31195 + - uid: 31328 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 31196 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 2 - - uid: 31197 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 2 - - uid: 31198 - components: - - type: Transform - pos: -0.5,-62.5 - parent: 2 - - uid: 31199 - components: - - type: Transform - pos: 1.5,-56.5 - parent: 2 - - uid: 31200 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 2 - - uid: 31201 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 2 - - uid: 31202 + - uid: 31329 components: - type: Transform pos: 30.5,-57.5 parent: 2 - - uid: 31203 + - uid: 31330 components: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 31204 + - uid: 31331 components: - type: Transform pos: 33.5,-57.5 parent: 2 - - uid: 31205 + - uid: 31332 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 - - uid: 31206 + - uid: 31333 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 - - uid: 31207 + - uid: 31334 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 - - uid: 31208 + - uid: 31335 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 - - uid: 31209 + - uid: 31336 components: - type: Transform pos: 35.5,-5.5 parent: 2 - - uid: 31210 + - uid: 31337 components: - type: Transform pos: -21.5,11.5 parent: 2 - - uid: 31211 + - uid: 31338 components: - type: Transform pos: -21.5,12.5 parent: 2 - - uid: 31212 + - uid: 31339 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 31213 + - uid: 31340 components: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 31214 + - uid: 31341 components: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 31215 + - uid: 31342 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 31216 + - uid: 31343 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 31217 + - uid: 31344 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 31218 + - uid: 31345 components: - type: Transform pos: -11.5,-40.5 parent: 2 - - uid: 31219 + - uid: 31346 components: - type: Transform pos: -10.5,-40.5 parent: 2 - - uid: 31220 - components: - - type: Transform - pos: 0.5,-62.5 - parent: 2 - - uid: 31221 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 2 - - uid: 31222 - components: - - type: Transform - pos: -0.5,-55.5 - parent: 2 - - uid: 31223 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 2 - - uid: 31224 - components: - - type: Transform - pos: 2.5,-62.5 - parent: 2 - - uid: 31225 - components: - - type: Transform - pos: -9.5,-62.5 - parent: 2 - - uid: 31226 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 2 - - uid: 31227 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 2 - - uid: 31228 - components: - - type: Transform - pos: 2.5,-58.5 - parent: 2 - - uid: 31229 - components: - - type: Transform - pos: 4.5,-62.5 - parent: 2 - - uid: 31230 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 2 - - uid: 31231 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 2 - - uid: 31232 - components: - - type: Transform - pos: -10.5,-57.5 - parent: 2 - - uid: 31233 + - uid: 31347 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 31234 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 2 - - uid: 31235 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 2 - - uid: 31236 - components: - - type: Transform - pos: -12.5,-55.5 - parent: 2 - - uid: 31237 + - uid: 31348 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 31238 + - uid: 31349 components: - type: Transform pos: -25.5,9.5 parent: 2 - - uid: 31239 + - uid: 31350 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 31240 + - uid: 31351 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 - - uid: 31241 + - uid: 31352 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 - - uid: 31242 + - uid: 31353 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 - - uid: 31243 + - uid: 31354 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 - - uid: 31244 + - uid: 31355 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 31245 - components: - - type: Transform - pos: -1.5,-57.5 - parent: 2 - - uid: 31246 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 2 - - uid: 31247 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 2 - - uid: 31248 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 2 - - uid: 31249 + - uid: 31356 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 31250 + - uid: 31357 components: - type: Transform pos: -10.5,-16.5 parent: 2 - - uid: 31251 + - uid: 31358 components: - type: Transform pos: 42.5,-0.5 parent: 2 - - uid: 31252 + - uid: 31359 components: - type: Transform pos: -21.5,-20.5 parent: 2 - - uid: 31253 + - uid: 31360 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 - - uid: 31254 + - uid: 31361 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 - - uid: 31255 + - uid: 31362 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 - - uid: 31256 + - uid: 31363 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 - - uid: 31257 + - uid: 31364 components: - type: Transform pos: -12.5,43.5 parent: 2 - - uid: 31258 + - uid: 31365 components: - type: Transform pos: 37.5,-0.5 parent: 2 - - uid: 31259 + - uid: 31366 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 - - uid: 31260 + - uid: 31367 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 - - uid: 31261 + - uid: 31368 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 - - uid: 31262 + - uid: 31369 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 - - uid: 31263 - components: - - type: Transform - pos: -6.5,-58.5 - parent: 2 - - uid: 31264 + - uid: 31370 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 31265 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 2 - - uid: 31266 + - uid: 31371 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 31267 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 2 - - uid: 31268 + - uid: 31372 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 - - uid: 31269 + - uid: 31373 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 - - uid: 31270 + - uid: 31374 components: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 31271 + - uid: 31375 components: - type: Transform pos: -21.5,-22.5 parent: 2 - - uid: 31272 + - uid: 31376 components: - type: Transform pos: 32.5,-57.5 parent: 2 - - uid: 31273 + - uid: 31377 components: - type: Transform pos: -12.5,14.5 parent: 2 - - uid: 31274 + - uid: 31378 components: - type: Transform pos: -23.5,9.5 parent: 2 - - uid: 31275 + - uid: 31379 components: - type: Transform pos: -22.5,9.5 parent: 2 - - uid: 31276 + - uid: 31380 components: - type: Transform pos: -8.5,43.5 parent: 2 - - uid: 31277 + - uid: 31381 components: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 31278 + - uid: 31382 components: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 31279 + - uid: 31383 components: - type: Transform pos: 43.5,-12.5 parent: 2 - - uid: 31280 + - uid: 31384 components: - type: Transform pos: 42.5,-44.5 parent: 2 - - uid: 31281 + - uid: 31385 components: - type: Transform pos: 43.5,-44.5 parent: 2 - - uid: 31282 + - uid: 31386 components: - type: Transform pos: 44.5,-44.5 parent: 2 - - uid: 31283 + - uid: 31387 components: - type: Transform pos: 27.5,-51.5 parent: 2 - - uid: 31284 + - uid: 31388 components: - type: Transform pos: 27.5,-47.5 parent: 2 - - uid: 31285 + - uid: 31389 components: - type: Transform pos: -19.5,0.5 parent: 2 - - uid: 31286 + - uid: 31390 components: - type: Transform pos: -17.5,0.5 parent: 2 - - uid: 31287 + - uid: 31391 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 31288 + - uid: 31392 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 - - uid: 31289 + - uid: 31393 components: - type: Transform pos: 38.5,-57.5 parent: 2 - - uid: 31290 + - uid: 31394 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 31291 + - uid: 31395 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 - - uid: 31292 - components: - - type: Transform - pos: 5.5,-58.5 - parent: 2 - - uid: 31293 + - uid: 31396 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 - - uid: 31294 + - uid: 31397 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 - - uid: 31295 + - uid: 31398 components: - type: Transform pos: -38.5,-63.5 parent: 2 - - uid: 31296 + - uid: 31399 components: - type: Transform pos: -38.5,-65.5 parent: 2 - - uid: 31297 + - uid: 31400 components: - type: Transform pos: -21.5,24.5 parent: 2 - - uid: 31298 + - uid: 31401 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 31299 + - uid: 31402 components: - type: Transform pos: -34.5,2.5 parent: 2 - - uid: 31300 + - uid: 31403 components: - type: Transform pos: -26.5,9.5 parent: 2 - - uid: 31301 + - uid: 31404 components: - type: Transform pos: -36.5,2.5 parent: 2 - - uid: 31302 + - uid: 31405 components: - type: Transform pos: -36.5,7.5 parent: 2 - - uid: 31303 + - uid: 31406 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 31304 + - uid: 31407 components: - type: Transform pos: -35.5,2.5 parent: 2 - - uid: 31305 + - uid: 31408 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 31306 + - uid: 31409 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 31307 + - uid: 31410 components: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 31308 + - uid: 31411 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 - - uid: 31309 + - uid: 31412 components: - type: Transform pos: -30.5,-72.5 parent: 2 - - uid: 31310 + - uid: 31413 components: - type: Transform pos: -14.5,65.5 parent: 2 - - uid: 31311 + - uid: 31414 components: - type: Transform pos: -14.5,62.5 parent: 2 - - uid: 31312 + - uid: 31415 components: - type: Transform pos: -3.5,47.5 parent: 2 - - uid: 31313 + - uid: 31416 components: - type: Transform pos: -1.5,49.5 parent: 2 - - uid: 31314 + - uid: 31417 components: - type: Transform pos: -5.5,47.5 parent: 2 - - uid: 31315 + - uid: 31418 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 - - uid: 31316 + - uid: 31419 components: - type: Transform pos: -7.5,57.5 parent: 2 - - uid: 31317 + - uid: 31420 components: - type: Transform pos: -5.5,57.5 parent: 2 - - uid: 31318 + - uid: 31421 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 31319 + - uid: 31422 components: - type: Transform pos: 2.5,50.5 parent: 2 - - uid: 31320 + - uid: 31423 components: - type: Transform pos: 2.5,51.5 parent: 2 - - uid: 31321 + - uid: 31424 components: - type: Transform pos: -1.5,50.5 parent: 2 - - uid: 31322 + - uid: 31425 components: - type: Transform pos: -11.5,51.5 parent: 2 - - uid: 31323 + - uid: 31426 components: - type: Transform pos: -11.5,53.5 parent: 2 - - uid: 31324 + - uid: 31427 components: - type: Transform pos: -20.5,62.5 parent: 2 - - uid: 31325 + - uid: 31428 components: - type: Transform rot: 3.141592653589793 rad @@ -203418,129 +200611,195 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 31326 + - uid: 31429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-61.5 + parent: 2 + - uid: 31430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 2 + - uid: 31431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-57.5 + parent: 2 + - uid: 31432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-61.5 + parent: 2 + - uid: 31433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-61.5 + parent: 2 + - uid: 31434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-59.5 + parent: 2 + - uid: 31435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-57.5 + parent: 2 + - uid: 31436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-59.5 + parent: 2 + - uid: 31437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-61.5 + parent: 2 + - uid: 31438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-57.5 + parent: 2 + - uid: 31439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 31440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-59.5 + parent: 2 + - uid: 31441 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 31327 + - uid: 31442 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 31328 + - uid: 31443 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 - - uid: 31329 + - uid: 31444 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 - - uid: 31330 + - uid: 31445 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 31331 + - uid: 31446 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 - - uid: 31332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 2 - - uid: 31333 + - uid: 31447 components: - type: Transform pos: 9.5,2.5 parent: 2 - - uid: 31334 + - uid: 31448 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 - - uid: 31335 + - uid: 31449 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 - - uid: 31336 + - uid: 31450 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 - - uid: 31337 + - uid: 31451 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 - - uid: 31338 + - uid: 31452 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 - - uid: 31339 + - uid: 31453 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 - - uid: 31340 + - uid: 31454 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 - - uid: 31341 + - uid: 31455 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 - - uid: 31342 + - uid: 31456 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 - - uid: 31343 + - uid: 31457 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 - - uid: 31344 + - uid: 31458 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 - - uid: 31345 + - uid: 31459 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 - - uid: 31346 + - uid: 31460 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 - - uid: 31347 + - uid: 31461 components: - type: Transform rot: 3.141592653589793 rad @@ -203548,1764 +200807,1991 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 31348 + - uid: 31462 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 - - uid: 31349 + - uid: 31463 components: - type: Transform pos: 16.5,-53.5 parent: 2 - - uid: 31350 + - uid: 31464 components: - type: Transform pos: -11.5,6.5 parent: 2 - - uid: 31351 + - uid: 31465 components: - type: Transform pos: 15.5,-53.5 parent: 2 - - uid: 31352 + - uid: 31466 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 - - uid: 31353 + - uid: 31467 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - uid: 31354 + - uid: 31468 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - uid: 31355 + - uid: 31469 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 - - uid: 31356 + - uid: 31470 components: - type: Transform pos: -28.5,-78.5 parent: 2 - - uid: 31357 + - uid: 31471 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 31358 + - uid: 31472 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 - - uid: 31359 + - uid: 31473 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 - - uid: 31360 + - uid: 31474 components: - type: Transform pos: -17.5,-76.5 parent: 2 - - uid: 31361 + - uid: 31475 components: - type: Transform pos: -30.5,-78.5 parent: 2 - - uid: 31362 + - uid: 31476 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 - - uid: 31363 + - uid: 31477 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 - - uid: 31364 + - uid: 31478 components: - type: Transform pos: -4.5,4.5 parent: 2 - - uid: 31365 + - uid: 31479 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 - - uid: 31366 + - uid: 31480 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 - - uid: 31367 + - uid: 31481 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 - - uid: 31368 + - uid: 31482 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 - - uid: 31369 + - uid: 31483 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 31370 + - uid: 31484 components: - type: Transform pos: 25.5,-23.5 parent: 2 - - uid: 31371 + - uid: 31485 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 - - uid: 31372 + - uid: 31486 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 - - uid: 31373 + - uid: 31487 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 - - uid: 31374 + - uid: 31488 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 - - uid: 31375 + - uid: 31489 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 - - uid: 31376 + - uid: 31490 components: - type: Transform pos: -11.5,-9.5 parent: 2 - - uid: 31377 + - uid: 31491 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 - - uid: 31378 + - uid: 31492 components: - type: Transform pos: 58.5,22.5 parent: 2 - - uid: 31379 + - uid: 31493 components: - type: Transform pos: 52.5,22.5 parent: 2 - - uid: 31380 + - uid: 31494 components: - type: Transform pos: 55.5,22.5 parent: 2 - - uid: 31381 + - uid: 31495 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 - - uid: 31382 + - uid: 31496 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 - - uid: 31383 + - uid: 31497 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 - - uid: 31384 + - uid: 31498 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 - - uid: 31385 + - uid: 31499 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 - - uid: 31386 + - uid: 31500 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 - - uid: 31387 + - uid: 31501 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 - - uid: 31388 + - uid: 31502 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 - - uid: 31389 + - uid: 31503 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 - - uid: 31390 + - uid: 31504 components: - type: Transform pos: 26.5,-23.5 parent: 2 - - uid: 31391 + - uid: 31505 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 - - uid: 31392 + - uid: 31506 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 - - uid: 31393 + - uid: 31507 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 - - uid: 31394 + - uid: 31508 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 - - uid: 31395 + - uid: 31509 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 31396 + - uid: 31510 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 - - uid: 31397 + - uid: 31511 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 - - uid: 31398 + - uid: 31512 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 - - uid: 31399 + - uid: 31513 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 - - uid: 31400 + - uid: 31514 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 - - uid: 31401 + - uid: 31515 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 - - uid: 31402 + - uid: 31516 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 - - uid: 31403 + - uid: 31517 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 - - uid: 31404 + - uid: 31518 components: - type: Transform pos: -29.5,-78.5 parent: 2 - - uid: 31405 + - uid: 31519 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 - - uid: 31406 + - uid: 31520 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 - - uid: 31407 + - uid: 31521 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 - - uid: 31408 + - uid: 31522 components: - type: Transform pos: -3.5,4.5 parent: 2 - - uid: 31409 + - uid: 31523 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 31410 + - uid: 31524 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 - - uid: 31411 + - uid: 31525 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 - - uid: 31412 + - uid: 31526 components: - type: Transform pos: 24.5,-23.5 parent: 2 - - uid: 31413 + - uid: 31527 components: - type: Transform pos: 18.5,-53.5 parent: 2 - - uid: 31414 + - uid: 31528 components: - type: Transform pos: -14.5,-9.5 parent: 2 - - uid: 31415 + - uid: 31529 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 - - uid: 31416 + - uid: 31530 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 - - uid: 31417 + - uid: 31531 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 - - uid: 31418 + - uid: 31532 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 - - uid: 31419 + - uid: 31533 components: - type: Transform pos: -10.5,29.5 parent: 2 - - uid: 31420 + - uid: 31534 components: - type: Transform pos: -9.5,29.5 parent: 2 - - uid: 31421 + - uid: 31535 components: - type: Transform pos: 46.5,22.5 parent: 2 - - uid: 31422 + - uid: 31536 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 - - uid: 31423 + - uid: 31537 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 - - uid: 31424 + - uid: 31538 components: - type: Transform pos: -10.5,-82.5 parent: 2 - - uid: 31425 + - uid: 31539 components: - type: Transform pos: 30.5,-52.5 parent: 2 - - uid: 31426 + - uid: 31540 components: - type: Transform pos: 29.5,-52.5 parent: 2 - - uid: 31427 + - uid: 31541 components: - type: Transform pos: 28.5,-52.5 parent: 2 - - uid: 31428 + - uid: 31542 components: - type: Transform pos: 32.5,-52.5 parent: 2 - - uid: 31429 + - uid: 31543 components: - type: Transform pos: 33.5,-52.5 parent: 2 - - uid: 31430 + - uid: 31544 components: - type: Transform pos: 34.5,-52.5 parent: 2 - - uid: 31431 + - uid: 31545 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 - - uid: 31432 + - uid: 31546 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 - - uid: 31433 + - uid: 31547 components: - type: Transform pos: 33.5,-48.5 parent: 2 - - uid: 31434 + - uid: 31548 components: - type: Transform pos: 34.5,-48.5 parent: 2 - - uid: 31435 + - uid: 31549 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 - - uid: 31436 + - uid: 31550 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 - - uid: 31437 + - uid: 31551 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 - - uid: 31438 + - uid: 31552 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 - - uid: 31439 + - uid: 31553 components: - type: Transform pos: 29.5,-48.5 parent: 2 - - uid: 31440 + - uid: 31554 components: - type: Transform pos: 28.5,-48.5 parent: 2 - - uid: 31441 + - uid: 31555 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 - - uid: 31442 + - uid: 31556 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 - - uid: 31443 + - uid: 31557 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 - - uid: 31444 + - uid: 31558 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 - - uid: 31445 + - uid: 31559 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 - - uid: 31446 + - uid: 31560 components: - type: Transform pos: 63.5,-45.5 parent: 2 - - uid: 31447 + - uid: 31561 components: - type: Transform pos: 62.5,-44.5 parent: 2 - - uid: 31448 + - uid: 31562 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 - - uid: 31449 + - uid: 31563 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 - - uid: 31450 + - uid: 31564 components: - type: Transform pos: 61.5,-45.5 parent: 2 - - uid: 31451 + - uid: 31565 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 - - uid: 31452 + - uid: 31566 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 - - uid: 31453 + - uid: 31567 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 - - uid: 31454 + - uid: 31568 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 - - uid: 31455 + - uid: 31569 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 - - uid: 31456 + - uid: 31570 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 - - uid: 31457 + - uid: 31571 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 - - uid: 31458 + - uid: 31572 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 - - uid: 31459 + - uid: 31573 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 - - uid: 31460 + - uid: 31574 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 - - uid: 31461 + - uid: 31575 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 - - uid: 31462 + - uid: 31576 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 - - uid: 31463 + - uid: 31577 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 - - uid: 31464 + - uid: 31578 components: - type: Transform pos: -12.5,-9.5 parent: 2 - - uid: 31465 + - uid: 31579 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 - - uid: 31466 + - uid: 31580 components: - type: Transform pos: -8.5,-81.5 parent: 2 - - uid: 31467 + - uid: 31581 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 - - uid: 31468 + - uid: 31582 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 31469 + - uid: 31583 components: - type: Transform pos: 45.5,38.5 parent: 2 - - uid: 31470 + - uid: 31584 components: - type: Transform pos: 46.5,38.5 parent: 2 - - uid: 31471 + - uid: 31585 components: - type: Transform pos: 47.5,38.5 parent: 2 - - uid: 31472 + - uid: 31586 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 - - uid: 31473 + - uid: 31587 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 - - uid: 31474 + - uid: 31588 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 - - uid: 31475 + - uid: 31589 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 - - uid: 31476 + - uid: 31590 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 - - uid: 31477 + - uid: 31591 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 - - uid: 31478 + - uid: 31592 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 - - uid: 31479 + - uid: 31593 components: - type: Transform pos: -2.5,71.5 parent: 2 - - uid: 31480 + - uid: 31594 components: - type: Transform pos: -1.5,71.5 parent: 2 - - uid: 31481 + - uid: 31595 components: - type: Transform pos: -0.5,71.5 parent: 2 - - uid: 31482 + - uid: 31596 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 - - uid: 31483 + - uid: 31597 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 - - uid: 31484 + - uid: 31598 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 - - uid: 31485 + - uid: 31599 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 - - uid: 31486 + - uid: 31600 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 - - uid: 31487 + - uid: 31601 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 - - uid: 31488 + - uid: 31602 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 - - uid: 31489 + - uid: 31603 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 - - uid: 31490 + - uid: 31604 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 - - uid: 31491 + - uid: 31605 components: - type: Transform pos: -10.5,24.5 parent: 2 - - uid: 31492 + - uid: 31606 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 - - uid: 31493 + - uid: 31607 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 - - uid: 31494 + - uid: 31608 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 - - uid: 31495 + - uid: 31609 components: - type: Transform pos: -11.5,28.5 parent: 2 - - uid: 31496 + - uid: 31610 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 - - uid: 31497 + - uid: 31611 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 - - uid: 31498 + - uid: 31612 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 - - uid: 31499 + - uid: 31613 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 31500 + - uid: 31614 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 - - uid: 31501 + - uid: 31615 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 - - uid: 31502 + - uid: 31616 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 - - uid: 31503 + - uid: 31617 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 - - uid: 31504 + - uid: 31618 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 - - uid: 31505 + - uid: 31619 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 - - uid: 31506 + - uid: 31620 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 - - uid: 31507 + - uid: 31621 components: - type: Transform pos: -11.5,-81.5 parent: 2 - - uid: 31508 + - uid: 31622 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 - - uid: 31509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-84.5 - parent: 2 - - uid: 31510 + - uid: 31623 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 - - uid: 31511 + - uid: 31624 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 - - uid: 31512 + - uid: 31625 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 - - uid: 31513 + - uid: 31626 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 - - uid: 31514 + - uid: 31627 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 - - uid: 31515 + - uid: 31628 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 - - uid: 31516 + - uid: 31629 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 - - uid: 31517 + - uid: 31630 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 - - uid: 31518 + - uid: 31631 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 - - uid: 31519 + - uid: 31632 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 - - uid: 31520 + - uid: 31633 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 - - uid: 31521 + - uid: 31634 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 - - uid: 31522 + - uid: 31635 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 - - uid: 31523 + - uid: 31636 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 - - uid: 31524 + - uid: 31637 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 - - uid: 31525 + - uid: 31638 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 - - uid: 31526 + - uid: 31639 components: - type: Transform pos: -8.5,-80.5 parent: 2 - - uid: 31527 + - uid: 31640 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 - - uid: 31528 + - uid: 31641 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 - - uid: 31529 + - uid: 31642 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 - - uid: 31530 + - uid: 31643 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 - - uid: 31531 + - uid: 31644 components: - type: Transform pos: -7.5,-81.5 parent: 2 - - uid: 31532 + - uid: 31645 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 - - uid: 31533 + - uid: 31646 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 - - uid: 31534 + - uid: 31647 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 - - uid: 31535 + - uid: 31648 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 - - uid: 31536 + - uid: 31649 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 - - uid: 31537 + - uid: 31650 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 - - uid: 31538 + - uid: 31651 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 - - uid: 31539 + - uid: 31652 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 - - uid: 31540 + - uid: 31653 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 - - uid: 31541 + - uid: 31654 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 - - uid: 31542 + - uid: 31655 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 - - uid: 31543 + - uid: 31656 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 - - uid: 31544 + - uid: 31657 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 - - uid: 31545 + - uid: 31658 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 - - uid: 31546 + - uid: 31659 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 - - uid: 31547 + - uid: 31660 components: - type: Transform pos: -6.5,-79.5 parent: 2 - - uid: 31548 + - uid: 31661 components: - type: Transform pos: -5.5,-79.5 parent: 2 - - uid: 31549 + - uid: 31662 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 - - uid: 31550 + - uid: 31663 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 - - uid: 31551 + - uid: 31664 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 - - uid: 31552 + - uid: 31665 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 - - uid: 31553 + - uid: 31666 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 - - uid: 31554 + - uid: 31667 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 - - uid: 31555 + - uid: 31668 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 - - uid: 31556 + - uid: 31669 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 - - uid: 31557 + - uid: 31670 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 - - uid: 31558 + - uid: 31671 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 - - uid: 31559 + - uid: 31672 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 - - uid: 31560 + - uid: 31673 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 - - uid: 31561 + - uid: 31674 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 - - uid: 31562 + - uid: 31675 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 - - uid: 31563 + - uid: 31676 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 - - uid: 31564 + - uid: 31677 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 - - uid: 31565 + - uid: 31678 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 - - uid: 31566 + - uid: 31679 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 - - uid: 31567 + - uid: 31680 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 - - uid: 31568 + - uid: 31681 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 - - uid: 31569 + - uid: 31682 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 - - uid: 31570 + - uid: 31683 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 - - uid: 31571 + - uid: 31684 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 - - uid: 31572 + - uid: 31685 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 - - uid: 31573 + - uid: 31686 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 - - uid: 31574 + - uid: 31687 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 - - uid: 31575 + - uid: 31688 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 - - uid: 31576 + - uid: 31689 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 - - uid: 31577 + - uid: 31690 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 - - uid: 31578 + - uid: 31691 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 - - uid: 31579 + - uid: 31692 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 - - uid: 31580 + - uid: 31693 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 - - uid: 31581 + - uid: 31694 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 - - uid: 31582 + - uid: 31695 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 - - uid: 31583 + - uid: 31696 components: - type: Transform pos: -15.5,-83.5 parent: 2 - - uid: 31584 + - uid: 31697 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 - - uid: 31585 + - uid: 31698 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 - - uid: 31586 + - uid: 31699 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 - - uid: 31587 + - uid: 31700 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 - - uid: 31588 + - uid: 31701 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 - - uid: 31589 + - uid: 31702 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 - - uid: 31590 + - uid: 31703 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 - - uid: 31591 + - uid: 31704 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 - - uid: 31592 + - uid: 31705 components: - type: Transform pos: -6.5,-87.5 parent: 2 - - uid: 31593 + - uid: 31706 components: - type: Transform pos: -5.5,-87.5 parent: 2 - - uid: 31594 + - uid: 31707 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 - - uid: 31595 + - uid: 31708 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 - - uid: 31596 + - uid: 31709 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 - - uid: 31597 + - uid: 31710 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 - - uid: 31598 + - uid: 31711 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 - - uid: 31599 + - uid: 31712 components: - type: Transform pos: -15.5,-85.5 parent: 2 - - uid: 31600 + - uid: 31713 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 - - uid: 31601 + - uid: 31714 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 - - uid: 31602 + - uid: 31715 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 31603 + - uid: 31716 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 31604 + - uid: 31717 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 - - uid: 31605 + - uid: 31718 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 - - uid: 31606 + - uid: 31719 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 - - uid: 31607 + - uid: 31720 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 - - uid: 31608 + - uid: 31721 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 - - uid: 31609 + - uid: 31722 components: - type: Transform pos: 16.5,37.5 parent: 2 - - uid: 31610 + - uid: 31723 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 - - uid: 31611 + - uid: 31724 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 - - uid: 31612 + - uid: 31725 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 - - uid: 31613 + - uid: 31726 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 - - uid: 31614 + - uid: 31727 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 - - uid: 31615 + - uid: 31728 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 - - uid: 31616 + - uid: 31729 components: - type: Transform pos: -6.5,-47.5 parent: 2 - - uid: 31617 + - uid: 31730 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 31618 + - uid: 31731 components: - type: Transform pos: -2.5,-47.5 parent: 2 - - uid: 31619 + - uid: 31732 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-49.5 parent: 2 - - uid: 31620 + - uid: 31733 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-48.5 parent: 2 - - uid: 31621 + - uid: 31734 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-49.5 parent: 2 + - uid: 31735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 - proto: WoodblockInstrument entities: - - uid: 31622 + - uid: 31736 components: - type: Transform pos: -47.491924,-64.51194 parent: 2 - proto: WoodDoor entities: - - uid: 31623 + - uid: 31737 components: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 31624 + - uid: 31738 components: - type: Transform pos: -31.5,-7.5 parent: 2 - - uid: 31625 + - uid: 31739 components: - type: Transform pos: -38.5,7.5 parent: 2 - - uid: 31626 + - uid: 31740 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,7.5 parent: 2 - - uid: 31627 + - uid: 31741 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 - - uid: 31628 + - uid: 31742 components: - type: Transform pos: 41.5,49.5 parent: 2 - - uid: 31629 + - uid: 31743 components: - type: Transform pos: 40.5,51.5 parent: 2 - - uid: 31630 + - uid: 31744 components: - type: Transform pos: -39.5,-95.5 parent: 2 - - uid: 31631 + - uid: 31745 components: - type: Transform pos: -39.5,-96.5 parent: 2 - - uid: 31632 + - uid: 31746 components: - type: Transform pos: 61.5,23.5 parent: 2 - - uid: 31633 + - uid: 31747 components: - type: Transform pos: 63.5,23.5 parent: 2 - - uid: 31634 + - uid: 31748 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-7.5 parent: 2 -- proto: Wrench +- proto: WoodenBench entities: - - uid: 31635 + - uid: 31749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.451823,-46.425587 + rot: 3.141592653589793 rad + pos: 34.5,-53.5 parent: 2 - - uid: 31636 + - uid: 31750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-53.5 + parent: 2 + - uid: 31751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-53.5 + parent: 2 + - uid: 31752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-54.5 + parent: 2 + - uid: 31753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-54.5 + parent: 2 + - uid: 31754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-54.5 + parent: 2 + - uid: 31755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-54.5 + parent: 2 + - uid: 31756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-54.5 + parent: 2 + - uid: 31757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-54.5 + parent: 2 + - uid: 31758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-53.5 + parent: 2 + - uid: 31759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-53.5 + parent: 2 + - uid: 31760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-53.5 + parent: 2 + - uid: 31761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-55.5 + parent: 2 + - uid: 31762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-55.5 + parent: 2 + - uid: 31763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-55.5 + parent: 2 + - uid: 31764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-55.5 + parent: 2 + - uid: 31765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-55.5 + parent: 2 + - uid: 31766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 2 + - uid: 31767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 2 + - uid: 31768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,11.5 + parent: 2 + - uid: 31769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 2 + - uid: 31770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,10.5 + parent: 2 + - uid: 31771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 2 + - uid: 31772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,9.5 + parent: 2 + - uid: 31773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - uid: 31774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,9.5 + parent: 2 + - uid: 31775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 2 + - uid: 31776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 2 + - uid: 31777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 2 + - uid: 31778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 2 + - uid: 31779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,12.5 + parent: 2 + - uid: 31780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,12.5 + parent: 2 + - uid: 31781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 2 + - uid: 31782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,40.5 + parent: 2 + - uid: 31783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,40.5 + parent: 2 + - uid: 31784 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 31785 + components: + - type: Transform + pos: -17.5,43.5 + parent: 2 + - uid: 31786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-55.5 + parent: 2 + - uid: 31787 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 +- proto: Wrench + entities: + - uid: 31788 components: - type: Transform pos: -65.606735,-34.373695 parent: 2 - - uid: 31637 + - uid: 31789 components: - type: Transform pos: 19.497053,-52.46946 parent: 2 - - uid: 31638 + - uid: 31790 components: - type: Transform pos: 43.41047,-49.384262 parent: 2 - - uid: 31639 + - uid: 31791 components: - type: Transform pos: 40.515266,-53.36736 parent: 2 - - uid: 31640 + - uid: 31792 components: - type: Transform pos: 53.570477,-52.25876 parent: 2 - - uid: 31641 + - uid: 31793 components: - type: Transform pos: -52.48202,-14.116064 parent: 2 - - uid: 31642 + - uid: 31794 components: - type: Transform pos: -43.931065,-77.41935 parent: 2 - - uid: 31643 + - uid: 31795 components: - type: Transform pos: -3.6165767,31.44955 parent: 2 - - uid: 31644 + - uid: 31796 components: - type: Transform pos: -52.52865,13.566981 parent: 2 - - uid: 31645 + - uid: 31797 components: - type: Transform pos: -56.484455,-4.5012527 parent: 2 - - uid: 31646 + - uid: 31798 components: - type: Transform pos: -31.403458,-56.573048 parent: 2 - - uid: 31647 + - uid: 31799 components: - type: Transform pos: 56.276398,42.55694 parent: 2 - - uid: 31648 + - uid: 31800 components: - type: Transform pos: 30.53096,47.374912 parent: 2 - - uid: 31649 + - uid: 31801 components: - type: Transform pos: 63.43439,-33.411366 parent: 2 - - uid: 31650 + - uid: 31802 components: - type: Transform pos: 73.54562,-44.324593 parent: 2 - - uid: 31651 + - uid: 31803 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 - - uid: 31652 + - uid: 31804 components: - type: Transform pos: -8.112096,-15.394987 parent: 2 - - uid: 31653 + - uid: 31805 components: - type: Transform pos: -66.48501,-43.492954 parent: 2 - proto: Zipties entities: - - uid: 31656 + - uid: 31806 components: - type: Transform pos: 22.565756,-47.432816 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index e3cbf69695ef58..5e533af961dfde 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -7,32 +7,31 @@ tilemap: 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit - 23: FloorCarpetOffice - 31: FloorDark - 36: FloorDarkMono - 43: FloorEighties - 46: FloorFreezer - 49: FloorGrass - 56: FloorGreenCircuit - 60: FloorHydro - 63: FloorLaundry - 64: FloorLino - 78: FloorRGlass - 79: FloorReinforced - 81: FloorRockVault - 82: FloorShowroom - 93: FloorSteel - 100: FloorSteelDirty - 102: FloorSteelLime - 103: FloorSteelMini - 108: FloorTechMaint - 109: FloorTechMaint2 - 112: FloorWhite - 116: FloorWhiteMini - 122: FloorWood - 1: FloorWoodTile - 125: Lattice - 126: Plating + 21: FloorCarpetOffice + 29: FloorDark + 34: FloorDarkMono + 41: FloorEighties + 44: FloorFreezer + 47: FloorGrass + 54: FloorGreenCircuit + 58: FloorHydro + 61: FloorLaundry + 62: FloorLino + 76: FloorRGlass + 77: FloorReinforced + 79: FloorRockVault + 80: FloorShowroom + 91: FloorSteel + 98: FloorSteelDirty + 100: FloorSteelLime + 101: FloorSteelMini + 106: FloorTechMaint + 107: FloorTechMaint2 + 110: FloorWhite + 114: FloorWhiteMini + 120: FloorWood + 122: Lattice + 123: Plating entities: - proto: "" entities: @@ -46,227 +45,227 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAACegAAAAADegAAAAABegAAAAABegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAC + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAIgAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 0,0: ind: 0,0 - tiles: XQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAABegAAAAABegAAAAADbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAALgAAAAAAUgAAAAAALgAAAAAAUgAAAAAALgAAAAAAfgAAAAAAegAAAAADegAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAALgAAAAAAUgAAAAAALgAAAAAALgAAAAAAUgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAegAAAAAAegAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAegAAAAADegAAAAAA + tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAXQAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAB + tiles: ewAAAAAAewAAAAAAawAAAAAATQAAAAAATQAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAATgAAAAAAfQAAAAAATgAAAAADAAAAAAAATgAAAAADfQAAAAAATgAAAAABfQAAAAAATgAAAAADfQAAAAAATgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATgAAAAACfQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAADAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAACegAAAAAATAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAANgAAAAAANgAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAANgAAAAAANgAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAANgAAAAAANgAAAAAANgAAAAAA version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAA version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAPwAAAAAAcAAAAAADcAAAAAABPwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAPwAAAAAAcAAAAAACcAAAAAACPwAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAPwAAAAAAcAAAAAADcAAAAAADPwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAPwAAAAAAcAAAAAADcAAAAAABPwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAegAAAAADegAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAB + tiles: WwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABewAAAAAAPQAAAAAAbgAAAAADbgAAAAABPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAPQAAAAAAbgAAAAACbgAAAAACPQAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAADPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAABPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACDgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAHQAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAAADgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABeAAAAAADewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: fgAAAAAAfgAAAAAAbQAAAAAAcAAAAAABXQAAAAADXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABHwAAAAADHwAAAAADHwAAAAAAXQAAAAAAXQAAAAADXQAAAAABHwAAAAABLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAADgAAAAACHwAAAAADHwAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAADgAAAAAAHwAAAAACHwAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAADgAAAAAADgAAAAAADgAAAAAAHwAAAAACHwAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAADgAAAAACDgAAAAADDgAAAAADXQAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAADgAAAAABDgAAAAADDgAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAB + tiles: ewAAAAAAewAAAAAAawAAAAAAbgAAAAABWwAAAAADWwAAAAACWwAAAAAAHQAAAAADewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADHQAAAAACHQAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAADHQAAAAAAHQAAAAADHQAAAAAAWwAAAAAAWwAAAAACWwAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAABHQAAAAADHQAAAAADHQAAAAAAWwAAAAAAWwAAAAADWwAAAAABHQAAAAABLAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAADHQAAAAABHQAAAAACewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAPgAAAAAAPgAAAAAADgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAPgAAAAAAPgAAAAAADgAAAAACHQAAAAADHQAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAADgAAAAAAHQAAAAACHQAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAACHQAAAAABeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAADgAAAAACDgAAAAADDgAAAAADWwAAAAABewAAAAAAeAAAAAABeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAADgAAAAABDgAAAAADDgAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAXQAAAAABXQAAAAADfgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAbQAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAACHwAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADOAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAA + tiles: ewAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAANgAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADNgAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: fQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADHwAAAAABfgAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAA + tiles: egAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAADewAAAAAAWwAAAAABHQAAAAAAewAAAAAAHQAAAAADWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAACHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAWwAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADHQAAAAABewAAAAAAHQAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA + tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAUQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAUQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: ewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,1: ind: 1,1 - tiles: egAAAAAAfgAAAAAAZwAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAegAAAAABegAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAegAAAAAAegAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABegAAAAABegAAAAACegAAAAADegAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,0: ind: 2,0 - tiles: XQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAACHwAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAACfgAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAADXQAAAAABXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAADOAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAADOAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAB + tiles: WwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAACHQAAAAAAewAAAAAAHQAAAAACWwAAAAAAHQAAAAACewAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADWwAAAAABWwAAAAACWwAAAAADawAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAWwAAAAADWwAAAAADNgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADewAAAAAANgAAAAAANgAAAAAANgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAWwAAAAACWwAAAAADNgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAWwAAAAACWwAAAAAAewAAAAAAbgAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAAB version: 6 2,-1: ind: 2,-1 - tiles: XQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACegAAAAAAegAAAAACegAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAXQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAXQAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADPAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAPAAAAAAAXQAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAPAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAPAAAAAAAXQAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADXQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAXQAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAA + tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADHQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACeAAAAAAAeAAAAAACeAAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAABeAAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABeAAAAAAAeAAAAAACeAAAAAACewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATgAAAAABfQAAAAAATgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAACfQAAAAAATgAAAAADAAAAAAAATgAAAAABfQAAAAAATgAAAAADAAAAAAAATgAAAAABfQAAAAAATgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAABfQAAAAAATgAAAAABfQAAAAAATgAAAAAAfQAAAAAATgAAAAADAAAAAAAATgAAAAAAfQAAAAAATgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAADfQAAAAAATgAAAAABfQAAAAAATgAAAAAAfQAAAAAATgAAAAADfQAAAAAATgAAAAAAfQAAAAAATgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAATgAAAAABfQAAAAAATgAAAAACfQAAAAAATgAAAAADfQAAAAAATgAAAAACfQAAAAAATgAAAAAAfQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAADfQAAAAAATgAAAAAAfQAAAAAATgAAAAABfQAAAAAATgAAAAABAAAAAAAATgAAAAACfQAAAAAATgAAAAADAAAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAADAAAAAAAATAAAAAABegAAAAAATAAAAAADAAAAAAAATAAAAAABegAAAAAATAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAATAAAAAADAAAAAAAATAAAAAAAegAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAATAAAAAADegAAAAAATAAAAAAAegAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAegAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAABAAAAAAAATAAAAAACegAAAAAATAAAAAADAAAAAAAAewAAAAAAewAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: fgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAABUgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAABcAAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABcAAAAAACfgAAAAAA + tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABbgAAAAACewAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAegAAAAAA + tiles: ewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,2: ind: 1,2 - tiles: fgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAACfgAAAAAAegAAAAAAegAAAAABXQAAAAACXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAABegAAAAADfgAAAAAAegAAAAADegAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABegAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAegAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAABegAAAAACfgAAAAAAfgAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADegAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAC + tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAATwAAAAAAHwAAAAACHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADZAAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAHwAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAABWwAAAAABYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAADYgAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAABWwAAAAADYgAAAAAAUAAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: HwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: fgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAcAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAcAAAAAABbAAAAAAAfgAAAAAA + tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA version: 6 3,0: ind: 3,0 - tiles: cAAAAAABcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAcAAAAAABcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAADHwAAAAAAHwAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAcAAAAAACXQAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAABXQAAAAADfgAAAAAAcAAAAAACXQAAAAADfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAABfgAAAAAAcAAAAAACXQAAAAADfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAADXQAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAD + tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD version: 6 4,0: ind: 4,0 - tiles: cAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACXQAAAAACZwAAAAADZwAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAZwAAAAACZwAAAAACXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZwAAAAACZwAAAAACXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACZQAAAAADZQAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAZQAAAAACZQAAAAACWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAZQAAAAACZQAAAAACWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAcgAAAAADcgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAegAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAADEQAAAAAAHwAAAAADEQAAAAAAcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABcAAAAAACcAAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAcAAAAAABcAAAAAACcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABEQAAAAAAHQAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 4,1: ind: 4,1 - tiles: cAAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAABfQAAAAAATgAAAAACAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAfQAAAAAATgAAAAACAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAADfQAAAAAATgAAAAACAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAfQAAAAAATgAAAAAA + tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA version: 6 4,3: ind: 4,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAABfQAAAAAATgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAfQAAAAAATgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAACfQAAAAAATgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAADfQAAAAAATgAAAAACAAAAAAAATgAAAAABfQAAAAAATgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAABfQAAAAAATgAAAAADfQAAAAAATgAAAAACfQAAAAAATgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAADfQAAAAAATgAAAAABfQAAAAAATgAAAAADfQAAAAAATgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAADfQAAAAAATgAAAAABAAAAAAAATgAAAAABfQAAAAAATgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: fQAAAAAATgAAAAABfQAAAAAATgAAAAACfQAAAAAATgAAAAADfQAAAAAATgAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAAAfQAAAAAATgAAAAABAAAAAAAATgAAAAABfQAAAAAATgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATgAAAAABfQAAAAAATgAAAAADfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAATAAAAAADegAAAAAATAAAAAADAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAAAegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: TwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATgAAAAABTgAAAAACTgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAATgAAAAABTgAAAAAATgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAADcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAATAAAAAABTAAAAAACTAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAATAAAAAABTAAAAAAATAAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAWwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 - tiles: fgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAHQAAAAADHQAAAAADHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,1: ind: 5,1 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -286,1340 +285,1371 @@ entities: version: 2 data: tiles: - -4,-4: - 0: 65520 - -4,-5: - 1: 63626 - -5,-4: - 0: 65520 - -4,-3: - 0: 136 - -3,-4: - 0: 65520 - -3,-5: - 1: 61442 + -4,-2: + 0: 65280 + -3,-2: + 0: 65535 + -3,-3: + 0: 65535 + -3,-1: + 0: 65535 -2,-4: - 0: 30580 - -2,-5: - 1: 4096 - 0: 17472 + 0: 65535 -2,-3: - 0: 26214 + 0: 65535 -2,-2: - 0: 26222 + 0: 65535 -2,-1: - 0: 61030 - -2,0: - 0: 2190 + 0: 65535 -1,-4: - 1: 17 - 0: 28672 + 0: 65433 -1,-3: - 0: 30711 + 0: 65535 -1,-2: - 0: 65295 + 0: 65535 -1,-1: - 0: 65455 - -1,-5: - 1: 28944 + 0: 65535 + -3,0: + 0: 65535 + -2,0: + 0: 65535 -1,0: - 0: 558 - 0,-4: - 0: 47935 - 0,-3: - 0: 28479 - 0,-2: - 0: 48802 - 0,-1: - 0: 65322 - -4,3: - 1: 61440 - -5,3: - 1: 57344 - -3,3: - 1: 61440 - -2,3: - 1: 61440 + 0: 65535 -1,3: - 1: 61440 + 0: 65532 + -1,1: + 0: 65535 + -1,2: + 0: 53247 0,0: - 0: 34959 - 0,3: - 1: 61440 - 0: 136 + 0: 65535 0,1: - 0: 34952 + 0: 65535 0,2: - 0: 34952 + 0: 65535 + 0,3: + 0: 65535 1,0: - 0: 30719 + 0: 65535 1,1: - 0: 30583 + 0: 65535 1,2: - 0: 32759 + 0: 65535 1,3: - 0: 32887 - 1,-1: - 0: 65303 - 1,4: - 0: 43775 + 0: 65535 2,0: - 0: 61695 + 0: 65535 2,1: 0: 65535 2,2: - 0: 36858 + 0: 65535 2,3: - 0: 45311 - 2,-1: - 0: 65467 - 2,4: - 0: 64443 + 0: 65535 3,0: - 0: 45311 + 0: 65535 3,1: - 0: 55803 + 0: 65535 3,2: - 0: 4080 + 0: 65535 3,3: - 0: 64989 - 3,-1: - 0: 65311 - 3,4: - 0: 20253 - 4,0: - 0: 62719 - 4,2: - 0: 53246 - 4,3: - 0: 65021 - 0,-5: - 0: 45056 - 1: 70 + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 1,-4: - 0: 65295 + 0: 65535 1,-3: - 0: 30479 + 0: 65535 1,-2: - 0: 30576 - 1,-5: - 0: 53248 - 1: 170 + 0: 65535 + 1,-1: + 0: 65535 2,-4: - 0: 7399 + 0: 65535 2,-3: - 0: 62379 + 0: 65535 2,-2: - 0: 16383 - 2,-5: - 0: 30310 + 0: 65535 + 2,-1: + 0: 65535 3,-4: - 0: 11008 + 0: 65535 3,-3: - 0: 40174 + 0: 65535 3,-2: - 0: 52573 - 3,-5: - 0: 61152 - 4,-4: - 0: 37332 - 4,-3: - 0: 10923 - 4,-2: - 0: 65295 - 4,-1: - 0: 61919 + 0: 65535 + 3,-1: + 0: 65535 + -6,-2: + 0: 3584 + -5,-2: + 0: 52992 + -5,-1: + 0: 65534 + -5,0: + 0: 65535 -4,-8: - 1: 61688 - 0: 4 - -5,-8: - 1: 34944 - -5,-5: - 1: 61713 - -4,-6: - 1: 57344 - -4,-9: - 0: 17408 - 1: 35807 + 0: 61692 -3,-8: - 0: 69 - 1: 61624 - -3,-6: - 1: 12288 - -3,-9: - 0: 21760 - 1: 43759 + 0: 61693 -2,-8: - 0: 21 - 1: 61674 - -2,-9: - 0: 21760 - 1: 35471 + 0: 61695 -1,-8: - 0: 34953 - 1: 12848 - -1,-9: - 0: 4360 - 1: 119 + 0: 65277 -1,-7: - 1: 35904 - 0: 128 + 0: 36044 + -1,-5: + 0: 63760 0,-8: 0: 65535 0,-7: - 1: 30576 - -1,-6: - 1: 2184 + 0: 65535 + 0,-5: + 0: 65350 0,-6: - 1: 17477 - 0,-9: - 0: 57551 + 0: 17613 1,-8: - 0: 13107 - 1: 34952 + 0: 65535 1,-7: - 0: 62259 - 1: 136 + 0: 65535 1,-6: - 0: 15 - 1: 43520 - 1,-9: - 0: 4369 - 1: 35840 + 0: 43775 + 1,-5: + 0: 65450 + 2,-8: + 0: 65535 2,-7: - 0: 7406 + 0: 63487 + 1: 2048 2,-6: - 0: 60655 - 2,-8: - 0: 61166 + 0: 65535 + 2,-5: + 0: 65535 3,-8: - 0: 57599 + 0: 65535 3,-7: - 0: 61183 + 0: 65535 3,-6: - 0: 3886 - 4,-8: - 0: 63078 - 4,-7: 0: 65535 - 4,-6: - 0: 3855 - 4,-5: - 0: 22288 + 3,-5: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 15 + 1,4: + 0: 65535 + 1,5: + 0: 65487 1,6: - 0: 36751 + 0: 65535 1,7: - 0: 52232 - 1,5: - 0: 34944 - 1,8: - 0: 12 - 1: 8704 + 0: 61167 + 2,4: + 0: 65535 2,5: - 0: 65523 + 0: 65535 2,6: 0: 65535 2,7: - 0: 47935 - 2,8: - 0: 34947 + 0: 65535 + 3,4: + 0: 65535 3,5: - 0: 65534 + 0: 65535 3,6: - 0: 46079 + 0: 65535 3,7: - 0: 48031 - 4,4: - 0: 3845 - 4,5: - 0: 61423 - 4,6: - 0: 65038 - 3,8: - 0: 49656 + 0: 65535 + 4,0: + 0: 65535 4,1: - 0: 61152 + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 5,0: - 0: 61695 + 0: 65535 5,1: - 0: 57308 + 0: 65535 5,2: - 0: 3549 + 0: 65535 5,3: 0: 65535 - 5,-1: - 0: 62677 - 5,4: - 0: 1906 6,0: - 0: 61183 + 0: 65535 + 6,1: + 0: 65535 6,2: - 0: 20302 + 0: 65535 6,3: - 0: 61438 - 6,-1: - 0: 65262 - 6,1: - 0: 61156 - 6,4: - 0: 61438 + 0: 65535 7,0: - 0: 3839 + 0: 65535 + 7,1: + 0: 65535 7,2: - 0: 58286 + 0: 65535 7,3: - 0: 65520 - 7,-1: - 0: 61678 - 7,1: - 0: 61166 - 8,0: - 0: 49663 - 8,1: - 0: 57297 - 8,2: - 0: 63709 - 8,3: - 0: 65520 + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 5,-4: - 0: 61695 + 0: 65535 5,-3: - 0: 8191 + 0: 65535 5,-2: - 0: 21839 - 5,-5: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: 0: 65535 6,-3: - 0: 61183 + 0: 65535 6,-2: - 0: 65518 - 6,-4: - 0: 61166 - 6,-5: - 0: 61422 + 0: 65535 + 6,-1: + 0: 65535 7,-4: - 0: 239 + 0: 8191 2: 57344 7,-3: - 0: 16 + 0: 61713 2: 3822 - 7,-5: - 0: 65038 7,-2: - 0: 61166 - 8,-4: - 0: 57531 - 8,-3: - 0: 61182 - 8,-2: 0: 65535 - 8,-1: - 0: 64255 - 4,-9: - 0: 26623 + 7,-1: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 5,-8: - 0: 62207 + 0: 65535 5,-7: - 0: 30719 + 0: 65535 5,-6: - 0: 3847 - 5,-9: - 0: 62079 + 0: 65535 + 5,-5: + 0: 65535 6,-8: - 0: 65263 + 0: 65535 6,-7: - 0: 65102 + 0: 65535 6,-6: - 0: 61423 - 6,-9: - 0: 65359 + 0: 65535 + 6,-5: + 0: 65535 7,-8: - 0: 63727 + 0: 65535 7,-7: - 0: 56558 + 0: 65535 7,-6: - 0: 59149 - 7,-9: - 0: 63951 - 8,-8: - 0: 4317 - 1: 49152 - 8,-7: - 0: 65297 - 1: 12 - 8,-6: - 0: 61695 - 8,-5: - 0: 64287 + 0: 65535 + 7,-5: + 0: 65535 0,-11: - 1: 14080 - -1,-11: - 1: 14896 + 0: 14080 0,-10: - 1: 243 - 0: 49152 + 0: 65523 + 0,-9: + 0: 65535 1,-10: - 1: 3312 - 0: 4096 + 0: 16368 + 1,-9: + 0: 65331 2,-10: - 1: 4592 - 0: 49152 + 0: 65535 2,-9: - 1: 273 - 0: 3276 - 2,-11: - 0: 61152 + 0: 65535 + 2,-12: + 0: 2188 3,-12: - 0: 61047 - 1: 136 + 0: 65535 + 3,-11: + 0: 65535 3,-10: - 1: 118 - 0: 45056 + 0: 65535 3,-9: - 0: 3067 - 3,-13: - 0: 30583 - 1: 34952 - 3,-11: - 0: 3682 + 0: 65535 4,-12: - 1: 253 - 0: 16130 + 0: 65535 4,-11: - 0: 48056 + 0: 65535 4,-10: - 0: 61631 - 4,-13: - 1: 13117 - 0: 2 + 0: 65535 + 4,-9: + 0: 65535 5,-12: - 1: 253 - 0: 3842 + 0: 65535 5,-11: 0: 65535 5,-10: - 0: 62207 - 5,-13: - 1: 8751 + 0: 65535 + 5,-9: + 0: 65535 6,-12: - 1: 253 - 0: 26370 - 6,-10: - 0: 61543 + 0: 65535 6,-11: - 0: 26208 - 6,-13: - 1: 61165 - 0: 2 + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 7,-12: - 0: 61627 + 0: 65535 7,-11: 0: 65535 7,-10: - 0: 63743 - 7,-13: - 0: 45875 - 1: 136 - 8,-12: - 0: 56543 - 8,-11: - 0: 55773 - 8,-10: - 0: 6623 - 1: 49152 - 8,-9: - 0: 53265 - 1: 204 + 0: 65535 + 7,-9: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 9,-8: - 0: 52445 - 1: 4096 + 0: 65535 9,-7: - 1: 1 - 0: 65484 + 0: 65535 9,-6: - 0: 7423 + 0: 65535 9,-5: - 0: 30479 - 9,-9: - 0: 56524 - 1: 17 - 9,-4: - 0: 61559 + 0: 65535 10,-8: - 0: 4369 - 1: 52428 + 0: 65535 10,-7: - 0: 4369 - 1: 52428 + 0: 65535 10,-6: - 0: 4369 - 1: 204 + 0: 65535 10,-5: - 0: 12543 - 10,-9: - 0: 4369 - 1: 52428 - 10,-4: - 0: 61491 - 11,-5: - 0: 35071 + 0: 32767 11,-8: + 0: 61937 3: 14 4: 3584 11,-7: + 0: 61937 4: 14 5: 3584 11,-6: + 0: 65521 6: 14 - 12,-5: - 0: 43263 - 11,-4: - 0: 63624 - 8,-13: - 0: 53519 - 1: 240 + 11,-5: + 0: 53247 + 8,-12: + 0: 65535 + 8,-11: + 0: 65535 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 9,-12: 0: 65535 9,-11: - 0: 53503 + 0: 65535 9,-10: - 0: 52447 - 1: 4096 - 9,-13: - 0: 61444 - 1: 248 + 0: 65535 + 9,-9: + 0: 65535 10,-12: 0: 65535 10,-11: - 0: 61695 + 0: 65535 10,-10: - 0: 7679 - 10,-13: - 0: 61440 - 1: 255 + 0: 65535 + 10,-9: + 0: 65535 11,-12: - 0: 56797 + 0: 65535 11,-11: - 0: 28689 - 1: 192 + 0: 65535 11,-10: - 0: 1911 + 0: 65535 11,-9: - 1: 15 + 0: 61951 4: 3584 - 11,-13: - 0: 53248 - 1: 249 - 12,-12: - 0: 13107 - 1: 34952 - 12,-11: - 1: 62968 - 12,-10: - 1: 4369 - 12,-9: - 1: 1 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 4,7: - 0: 61152 - 4,8: - 0: 57582 + 0: 65535 + 5,4: + 0: 65535 5,5: - 0: 57343 + 0: 65535 5,6: - 0: 61901 + 0: 65535 5,7: - 0: 64432 - 5,8: - 0: 61627 + 0: 65535 + 6,4: + 0: 65535 6,5: 0: 65535 6,6: - 0: 65279 + 0: 65535 6,7: - 0: 65534 - 6,8: - 0: 65279 + 0: 65535 + 7,4: + 0: 65535 7,5: - 0: 61550 + 0: 65535 7,6: - 0: 3839 - 7,4: - 0: 3680 + 0: 65535 7,7: - 0: 3822 - 7,8: - 0: 56591 - 8,4: - 0: 65520 - 8,5: 0: 65535 - 8,6: + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: 0: 65535 - 8,7: - 0: 12159 9,0: - 0: 20735 + 0: 65535 9,1: - 0: 63348 + 0: 65535 9,2: - 0: 61559 + 0: 65535 9,3: - 0: 65520 - 9,-1: - 0: 61663 + 0: 65535 10,0: - 0: 30591 + 0: 65535 10,1: - 0: 63351 + 0: 65535 10,2: - 0: 30583 + 0: 65535 10,3: - 0: 65527 - 10,-1: - 0: 65167 - 10,4: - 0: 61412 + 0: 65535 11,0: - 0: 65327 + 0: 65535 11,1: - 0: 65295 + 0: 65535 11,2: - 0: 65520 + 0: 65535 11,3: - 0: 65522 - 11,-1: - 0: 65375 - 11,4: - 0: 61166 - 12,0: - 0: 65263 - 12,1: - 0: 3854 - 12,2: - 0: 65534 - 12,3: - 0: 61408 + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 9,-3: - 0: 57343 + 0: 65535 9,-2: 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 65399 10,-3: - 0: 19925 + 0: 65535 10,-2: - 0: 61183 + 0: 65535 + 10,-1: + 0: 65535 + 11,-4: + 0: 65484 11,-3: - 0: 52688 + 0: 65535 11,-2: 0: 65535 - 12,-4: - 0: 65418 - 12,-2: - 0: 61167 - 12,-1: - 0: 65380 + 11,-1: + 0: 65535 4,-15: - 0: 4095 - 1: 61440 - 3,-15: - 0: 65526 + 0: 65535 4,-14: - 1: 13117 - 0: 2 - 3,-14: - 1: 34952 - 0: 30583 + 0: 13119 + 4,-13: + 0: 13311 5,-15: - 0: 4088 - 1: 61440 + 0: 65535 + 5,-13: + 0: 8959 5,-14: - 1: 8749 - 0: 2 - 5,-16: - 1: 28672 + 0: 8751 6,-15: - 0: 36859 - 1: 28672 + 0: 65535 + 6,-13: + 0: 61183 6,-14: - 1: 61165 - 0: 2 + 0: 61167 7,-15: - 0: 13105 - 1: 34816 + 0: 63479 + 4: 2048 7,-14: - 0: 13107 - 1: 34952 - 7,-16: - 1: 28160 - 8,-16: - 1: 3840 - 8,-15: - 0: 14336 - 1: 224 - 8,-14: + 0: 65527 + 4: 8 + 7,-13: 0: 65535 - 9,-16: - 1: 3840 + 8,-15: + 0: 61680 + 4: 2048 9,-15: - 1: 36080 - 0: 25344 - 9,-14: - 0: 20756 - 1: 35976 - 10,-16: - 1: 61696 + 0: 64752 + 4: 768 10,-15: - 1: 13105 + 0: 13105 10,-14: - 1: 65309 - 0: 34 - 11,-16: - 1: 61440 - 11,-14: - 1: 39311 - 11,-15: - 1: 34952 - 12,-14: - 1: 1 - 12,-13: - 1: 35056 - 0: 12288 - 2,-16: - 1: 51200 - 3,-16: - 1: 4096 - -4,-11: - 1: 62448 - -5,-11: - 1: 34944 + 0: 13119 + 4: 52224 + 10,-13: + 0: 62271 + 4: 3264 + 2,-14: + 0: 51340 + 2,-13: + 0: 52428 + 3,-15: + 0: 65535 + 3,-14: + 0: 65535 + 3,-13: + 0: 65535 -4,-10: - 1: 48008 - 0: 1092 - -5,-10: - 1: 44768 - -5,-9: - 1: 60074 + 0: 49100 + -4,-9: + 0: 53215 + -4,-11: + 0: 62448 -3,-11: - 1: 45296 - 0: 16384 + 0: 61680 -3,-10: - 0: 1365 - 1: 64168 + 0: 65533 + -3,-9: + 0: 65519 -2,-11: - 1: 57584 - 0: 4096 + 0: 61680 -2,-10: - 0: 1365 - 1: 47752 + 0: 49117 + -2,-9: + 0: 57231 + -1,-11: + 0: 14896 -1,-10: - 0: 273 - 1: 28672 + 0: 61713 + -1,-9: + 0: 53759 + -5,-10: + 0: 44768 + -5,-9: + 0: 60074 + 12,-4: + 0: 65535 12,-3: - 0: 58470 + 0: 65535 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 13,-4: - 0: 7645 + 0: 65535 13,-3: - 0: 7389 + 0: 65535 13,-2: - 0: 65531 + 0: 65535 13,-1: - 0: 57227 - 13,-5: - 0: 40959 - 13,0: - 0: 65487 + 0: 65535 14,-4: - 0: 827 + 0: 63487 14,-3: - 0: 6007 + 0: 65535 14,-2: - 0: 49147 + 0: 65535 14,-1: - 0: 65531 - 14,0: 0: 65535 - 14,-5: - 0: 36671 15,-4: - 0: 15 + 0: 61695 15,-3: - 0: 12287 + 0: 65535 15,-2: - 0: 32631 + 0: 65535 15,-1: - 0: 30583 - 15,-5: - 0: 65487 - 15,0: 0: 65535 - 16,-4: - 0: 3823 - 16,-2: - 0: 65524 - 16,-1: - 0: 12047 + 12,-8: + 0: 65535 + 12,-7: + 0: 65535 12,-6: - 0: 49152 + 0: 65535 + 12,-5: + 0: 65535 + 13,-8: + 0: 65535 + 13,-7: + 0: 65535 13,-6: - 0: 28672 - 14,-8: - 1: 17476 - 14,-9: - 1: 17520 - 14,-7: - 1: 52292 - 15,-7: - 1: 64256 - 16,-7: - 1: 65280 - 16,-5: - 0: 65295 + 0: 65535 + 13,-5: + 0: 65535 + 14,-6: + 0: 61440 + 14,-5: + 0: 65535 + 15,-6: + 0: 61440 + 15,-5: + 0: 65535 + 1,8: + 0: 8942 1,9: - 1: 58094 + 0: 58094 1,10: - 1: 11810 + 0: 11810 1,11: - 1: 57890 + 0: 57890 + 2,8: + 0: 52479 2,9: - 1: 65075 - 0: 136 + 0: 65279 2,10: - 1: 3840 + 0: 3840 2,11: - 1: 61440 - 3,11: - 1: 61440 + 0: 61440 + 3,8: + 0: 65535 3,9: - 0: 61166 + 0: 65535 3,10: - 0: 238 + 0: 4095 + 4,8: + 0: 65535 4,9: - 0: 57583 - 4,11: - 1: 12288 - 0: 2184 + 0: 65535 4,10: - 0: 1262 + 0: 61439 + 4,11: + 0: 64716 + 5,8: + 0: 65535 5,9: - 0: 57599 - 5,11: - 0: 53247 + 0: 65535 5,10: - 0: 52974 - 5,12: - 0: 12 - 1: 57856 + 0: 65535 + 5,11: + 0: 65535 + 6,8: + 0: 65535 6,9: - 0: 54527 + 0: 65535 6,10: - 0: 19965 + 0: 65535 6,11: 0: 65535 - 6,12: - 0: 15 - 1: 61440 + 7,8: + 0: 65535 7,9: - 0: 53727 + 0: 65535 7,10: - 0: 7645 + 0: 65535 7,11: - 0: 65527 - 7,12: - 0: 15 - 1: 61440 - 8,8: - 0: 21831 - 8,9: - 0: 14549 - 8,10: - 0: 30591 - 8,11: - 0: 8177 + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 65535 9,4: - 0: 65520 + 0: 65535 9,5: - 0: 57297 + 0: 65535 9,6: - 0: 56733 + 0: 65535 9,7: - 0: 48909 + 0: 65535 + 10,4: + 0: 65535 10,5: - 0: 64270 + 0: 65535 10,6: - 0: 45979 + 0: 65407 + 7: 128 10,7: - 0: 13067 - 1: 34816 - 9,8: - 0: 65528 - 10,8: - 0: 13107 - 1: 34952 + 8: 1 + 0: 65532 + 9: 2 + 11,4: + 0: 65535 11,5: - 0: 48010 + 0: 65535 11,6: - 0: 59579 + 0: 65535 11,7: - 0: 26215 - 11,8: - 0: 26214 - 12,4: - 0: 61408 - 12,5: - 0: 57598 - 12,6: - 0: 28910 - 8,12: - 0: 1 - 1: 12800 + 0: 65535 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 8,11: + 0: 65535 + 9,8: + 0: 65535 9,9: - 0: 36622 + 0: 65535 9,10: - 0: 15291 + 0: 65535 9,11: - 0: 36584 - 9,12: - 1: 2 - 0: 8 + 0: 61719 + 10,8: + 0: 65535 + 10,9: + 0: 40959 10,10: - 0: 45040 + 0: 65535 10,11: - 0: 3003 - 10,9: - 0: 34 - 1: 136 - 10,12: - 1: 2 + 0: 64989 + 11,8: + 0: 65535 11,9: - 0: 30310 + 0: 65535 11,10: - 0: 4915 + 0: 30591 11,11: - 0: 53009 - 12,11: - 0: 13056 - 5,13: - 1: 3298 - 6,13: - 1: 65520 - 6,14: - 1: 35022 - 7,13: - 1: 32752 - 7,14: - 1: 19 - 6,15: - 1: 8 - 8,13: - 1: 306 + 0: 65523 + 5,12: + 0: 58094 + 6,12: + 0: 61695 + 7,12: + 0: 61695 + 8,12: + 0: 12851 + 11,12: + 0: 61454 + 16,-4: + 0: 65535 16,-3: - 0: 61166 - 16,0: 0: 65535 - 17,-3: - 0: 61422 - 17,-5: - 0: 65263 + 16,-2: + 0: 65535 + 16,-1: + 0: 65535 17,-4: - 0: 36494 + 0: 65535 + 17,-3: + 0: 65535 17,-2: - 0: 36590 + 0: 65535 17,-1: - 0: 36590 - 17,0: - 0: 40947 + 0: 65535 18,-4: - 0: 26191 + 0: 65535 18,-3: - 0: 4368 + 0: 47935 18,-2: - 0: 1361 + 0: 65535 18,-1: - 0: 65399 - 18,-5: - 0: 61440 - 18,0: - 0: 4081 + 0: 65535 19,-4: - 0: 47887 + 0: 65535 19,-3: - 0: 12288 - 1: 2048 + 0: 65295 19,-2: 0: 65535 19,-1: - 0: 26159 - 19,-5: + 0: 65535 + 16,-6: 0: 61440 - 19,0: - 0: 32754 - 20,-4: - 0: 65359 - 20,-2: - 0: 30583 - 20,-1: - 0: 47927 - 17,-7: - 1: 65024 - 18,-7: - 1: 63232 - 19,-7: - 1: 63488 - 20,-7: - 1: 7936 - 20,-5: + 16,-5: + 0: 65535 + 17,-6: 0: 61440 + 17,-5: + 0: 65535 + 18,-6: + 0: 4096 + 18,-5: + 0: 65297 + 19,-5: + 0: 65280 + 12,0: + 0: 65535 + 12,1: + 0: 65535 + 12,2: + 0: 65535 + 12,3: + 0: 65535 + 13,0: + 0: 65535 13,1: - 0: 12163 + 0: 65535 13,2: 0: 65535 13,3: - 0: 61412 + 0: 65535 + 14,0: + 0: 65535 14,1: - 0: 12089 - 14,3: - 0: 65526 + 0: 65535 14,2: - 0: 26214 - 14,4: - 0: 57308 + 0: 65535 + 14,3: + 0: 65535 + 15,0: + 0: 65535 15,1: - 0: 3855 - 15,2: 0: 65535 + 15,2: + 0: 57343 + 7: 8192 15,3: - 0: 65524 - 15,4: - 0: 21789 + 0: 65535 + 16,0: + 0: 65535 16,1: - 0: 26383 - 16,3: - 0: 64976 + 0: 65535 16,2: - 0: 61166 - 16,4: - 0: 65293 + 0: 65535 + 16,3: + 0: 65535 + 17,0: + 0: 65535 17,1: - 0: 56797 + 0: 65535 17,2: - 0: 65309 + 0: 65535 17,3: - 0: 65520 - 17,4: - 0: 3855 + 0: 65535 + 18,0: + 0: 65535 18,1: - 0: 63351 + 0: 65535 18,2: - 0: 65423 + 0: 65535 18,3: - 0: 26222 - 18,4: - 0: 1894 + 0: 65535 + 19,0: + 0: 65535 19,1: - 0: 28791 - 19,3: - 0: 15 - 1: 16128 + 0: 65535 19,2: - 0: 1638 - 19,4: - 1: 16025 + 0: 65535 + 19,3: + 0: 16383 20,0: - 0: 48056 + 0: 65535 20,1: - 0: 46011 + 0: 65535 20,2: - 0: 48955 + 0: 65535 20,3: - 0: 11 - 1: 61440 - 20,4: - 1: 19 + 0: 61695 21,0: - 0: 20985 + 0: 65535 21,1: - 0: 12639 + 0: 32767 21,2: - 0: 30499 + 0: 65527 21,3: - 0: 7 - 1: 7936 - 21,-1: - 0: 48127 + 0: 8191 22,0: - 0: 51 - 22,3: - 1: 3874 - 22,-1: - 0: 12919 - 1: 32768 + 0: 1911 22,1: - 1: 8192 - 22,2: - 1: 8738 - 23,3: - 1: 273 - 23,0: - 1: 4369 - 23,-1: - 1: 4352 - 23,1: - 1: 4369 - 23,2: - 1: 4369 + 0: 9984 + 12,4: + 0: 65535 + 12,5: + 0: 65535 + 12,6: + 0: 65535 + 12,7: + 0: 34959 13,4: - 0: 65520 + 0: 65535 13,5: - 0: 60447 + 0: 65535 13,6: - 0: 239 - 1: 16384 + 0: 53247 13,7: - 0: 65520 + 0: 65535 + 14,4: + 0: 65535 14,5: - 0: 65485 + 0: 65535 14,6: - 0: 4607 - 1: 16384 + 0: 32767 14,7: - 0: 65520 + 0: 65535 + 15,4: + 0: 65535 15,5: - 0: 64789 + 0: 65535 15,6: - 0: 50399 + 0: 61439 15,7: - 0: 4380 - 16,5: - 0: 56783 - 16,6: - 0: 56541 - 16,7: - 0: 50381 + 0: 13311 12,12: - 0: 14 + 0: 13055 13,12: - 0: 15 + 0: 35071 14,12: - 0: 4383 + 0: 13311 15,12: - 0: 15 - 15,11: - 0: 34816 + 0: 255 + 12,11: + 0: 63344 + 12,8: + 0: 52428 + 12,9: + 0: 52428 + 12,10: + 0: 8 13,8: - 0: 32752 + 0: 65535 13,9: - 0: 3183 + 0: 65535 + 13,10: + 0: 239 + 13,11: + 0: 61440 14,8: - 0: 57328 + 0: 65535 14,9: - 0: 1998 + 0: 65535 + 14,10: + 0: 255 + 14,11: + 0: 61440 15,8: - 0: 4368 + 0: 30583 15,9: - 0: 1 - 16,11: - 0: 32652 - 16,8: - 0: 52428 + 0: 30583 + 15,10: + 0: 3 + 15,11: + 0: 64704 + 16,4: + 0: 65535 + 16,5: + 0: 65535 + 16,6: + 0: 65535 + 16,7: + 0: 61183 + 17,4: + 0: 65535 17,5: - 0: 63726 - 17,7: - 0: 61167 + 0: 65535 17,6: - 1: 224 - 0: 57344 - 17,8: - 0: 3823 + 0: 65535 + 17,7: + 0: 65535 + 18,4: + 0: 65535 18,5: - 0: 4113 - 1: 1100 + 0: 14207 18,6: - 1: 8828 - 18,7: - 1: 8738 - 18,8: - 1: 8738 - 19,5: - 1: 4369 - 19,6: - 1: 15 + 0: 13183 + 16,11: + 0: 65534 + 16,8: + 0: 61166 16,9: - 0: 52428 + 0: 61166 16,10: - 0: 52428 + 0: 61166 + 17,8: + 0: 65535 17,9: - 0: 61679 + 0: 65535 17,10: - 0: 9998 + 0: 65535 17,11: - 0: 3822 - 18,11: - 0: 112 - 1: 2176 + 0: 65535 + 18,8: + 0: 13107 18,9: - 1: 11810 + 0: 16179 18,10: - 1: 14 - 18,12: - 1: 61713 - 19,9: - 1: 3840 + 0: 4127 + 18,11: + 0: 8183 19,10: - 1: 17487 - 0: 43680 + 0: 61167 19,11: - 1: 20468 - 0: 40960 + 0: 61428 + 16,12: + 0: 31 19,12: - 0: 170 - 1: 65092 - 20,9: - 1: 3840 - 20,11: - 1: 19964 - 0: 40960 - 20,12: - 1: 62805 - 0: 2730 + 0: 65262 + 20,-4: + 0: 65535 + 20,-3: + 0: 61455 + 20,-2: + 0: 65535 + 20,-1: + 0: 65535 21,-4: - 0: 54479 - 21,-2: - 0: 52672 - 21,-5: - 0: 61440 + 0: 65535 21,-3: - 0: 52428 + 0: 61167 + 21,-2: + 0: 65534 + 21,-1: + 0: 65535 22,-4: - 0: 8243 + 0: 30583 22,-3: - 0: 26224 - 22,-5: - 0: 12671 + 0: 65535 22,-2: - 0: 26150 - 21,-7: - 1: 36608 + 0: 65535 + 22,-1: + 0: 65535 + 20,-5: + 0: 65280 21,-6: - 0: 61440 - 1: 12 + 0: 65420 + 21,-5: + 0: 65423 22,-6: - 0: 63232 - 23,-6: - 0: 63488 - 23,-5: - 0: 143 - 24,-6: - 0: 63232 - 24,-5: - 0: 127 + 0: 65520 + 22,-5: + 0: 32767 + 20,11: + 0: 60924 20,10: - 0: 43690 - 1: 17476 - 21,9: - 1: 3840 + 0: 61166 21,10: - 1: 21831 - 0: 43680 + 0: 65511 21,11: - 1: 18429 - 0: 40960 - 21,12: - 0: 170 - 1: 64325 - 22,9: - 1: 30464 + 0: 59389 22,10: - 1: 65126 + 0: 65126 22,11: - 1: 39611 - 22,12: - 1: 14190 - 13,-11: - 1: 4096 - 13,-10: - 1: 4369 - 13,-9: - 1: 159 + 0: 39611 + 20,12: + 0: 65535 + 21,12: + 0: 64495 + 5,13: + 0: 3298 + 6,13: + 0: 65520 + 6,14: + 0: 35022 + 6,15: + 0: 8 + 7,13: + 0: 32752 + 7,14: + 0: 19 + 8,13: + 0: 318 + 18,7: + 0: 13107 + 2,-11: + 0: 65535 + 8,-13: + 0: 65328 + 4: 207 + 9,-13: + 0: 65280 + 4: 252 + 11,-13: + 0: 63631 + 4: 1904 + 12,-11: + 0: 62532 + 4: 443 + 12,-10: + 0: 4369 + 12,-9: + 0: 13105 + 23,-6: + 0: 65520 + 23,-5: + 0: 4095 + 24,-6: + 0: 65520 + 24,-5: + 0: 4095 25,-6: - 0: 61440 + 0: 65328 25,-5: - 0: 52431 - 25,-4: - 0: 52236 - 26,-5: - 0: 65535 + 0: 61439 26,-7: - 0: 57344 + 0: 65280 26,-6: - 0: 20206 - 26,-4: - 0: 65103 - 27,-5: - 0: 57309 - 27,-4: - 0: 34829 - 1: 17408 + 0: 65535 + 26,-5: + 0: 65535 27,-7: - 1: 19456 - 0: 32768 + 0: 56576 27,-6: - 1: 1092 - 0: 2184 - 28,-7: - 1: 24320 - 0: 40960 - 28,-6: - 1: 1365 - 0: 2730 - 28,-5: + 0: 64989 + 27,-5: 0: 65535 25,-3: - 1: 240 + 0: 254 + 25,-4: + 0: 61166 + 26,-4: + 0: 65535 26,-3: - 0: 238 + 0: 4095 + 27,-4: + 0: 56831 27,-3: - 1: 3140 - 0: 136 - 28,-4: - 0: 43535 - 1: 21760 - 28,-3: - 1: 3925 - 0: 170 + 0: 3549 + 28,-7: + 0: 65280 + 28,-6: + 0: 65535 + 28,-5: + 0: 65535 29,-7: - 1: 4352 + 0: 4352 29,-6: - 1: 57617 + 0: 61713 29,-5: - 0: 3598 - 1: 57568 - 29,-4: - 0: 14 - 1: 4576 + 0: 65535 30,-6: - 1: 12288 + 0: 12288 30,-5: - 0: 257 - 1: 12850 + 0: 13107 + 28,-4: + 0: 65535 + 28,-3: + 0: 4095 + 29,-4: + 0: 4607 + 29,-3: + 0: 273 30,-4: + 0: 51 + 2,-15: + 0: 34952 + 3,11: + 0: 61440 + 5,-16: + 0: 28672 + 7,-16: + 0: 28160 + 8,-16: + 0: 3840 + 9,-16: + 0: 3840 + 10,-16: + 0: 61696 + 11,-16: + 0: 61440 + 11,-14: + 0: 34959 + 4: 4352 + 11,-15: + 0: 34952 + 2,-16: + 0: 51200 + 3,-16: + 0: 4096 + -5,-11: + 0: 34944 + 14,-8: + 0: 17476 + 14,-7: + 0: 52292 + 15,-7: + 0: 64256 + 9,13: + 0: 15 + 10,13: + 0: 7 + 10,12: + 0: 50244 + 16,-7: + 0: 65280 + 17,-7: + 0: 65024 + 18,-7: + 0: 63232 + 19,-7: + 0: 63488 + 22,3: + 0: 3874 + 22,2: + 0: 8738 + 23,0: + 0: 4369 + 23,1: + 0: 4369 + 23,2: + 0: 4369 + 23,3: + 0: 273 + 19,4: + 0: 16025 + 19,5: + 0: 4369 + 19,6: + 0: 15 + 19,9: + 0: 3840 + 18,12: + 0: 61713 + 23,-1: + 0: 4352 + 20,-7: + 0: 7936 + 21,-7: + 0: 36608 + 20,9: + 0: 3840 + 21,9: + 0: 3840 + 22,9: + 0: 30464 + 22,12: + 0: 14190 + 12,-12: + 0: 17476 + 4: 48059 + 13,-11: + 0: 4096 + 13,-10: + 0: 4369 + 13,-9: + 0: 159 + 14,-9: + 0: 17520 + 20,4: + 0: 19 + 12,-14: 0: 1 - 1: 50 - 29,-3: - 1: 273 + 12,-13: + 0: 17479 + 4: 48048 + -5,-8: + 0: 34944 + -3,-4: + 0: 65535 + -4,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,3: + 0: 65280 + -4,4: + 0: 65535 + -4,5: + 0: 255 + -3,4: + 0: 65535 + -3,5: + 0: 15 + -2,4: + 0: 65535 + -2,5: + 0: 15 + 0,4: + 0: 65535 + 0,5: + 0: 15 + -5,3: + 0: 60928 + -5,4: + 0: 52974 + -5,5: + 0: 204 + -3,1: + 0: 52431 + -3,2: + 0: 3276 + -2,1: + 0: 65535 + -2,2: + 0: 4095 + -1,-6: + 0: 2184 + 9,-14: + 0: 136 + 4: 56596 + -4,-4: + 0: 65535 + -4,-3: + 0: 207 + -4,1: + 0: 15 + -4,-5: + 0: 63626 + -4,-6: + 0: 57344 + -3,-6: + 0: 12288 + -3,-5: + 0: 61442 + -2,-5: + 0: 65248 -6,-6: - 1: 19456 - -5,-6: - 1: 22272 + 0: 19456 -6,-5: - 1: 32768 + 0: 32768 + -5,-6: + 0: 22272 + -5,-5: + 0: 61713 -7,-4: - 1: 24400 + 0: 24400 -6,-4: - 1: 4368 - 0: 52416 + 0: 65534 + -6,-3: + 0: 142 + -6,-1: + 0: 32768 + -5,-4: + 0: 65535 -5,-3: - 0: 17 - -5,4: - 1: 3822 + 0: 63 + -7,0: + 0: 24400 + -6,0: + 0: 65534 + -6,1: + 0: 14 + -5,1: + 0: 15 + -3,3: + 0: 65280 + -2,3: + 0: 65280 + 8,-14: + 4: 65535 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1636,27 +1666,11 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 - immutable: True + temperature: 293.14996 moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - 20.078888 + - 75.53487 - 0 - 0 - 0 @@ -1682,14 +1696,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -1705,14 +1711,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -1728,6 +1726,13 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -1739,6 +1744,7 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 0 - 6666.982 - 0 - 0 @@ -1750,6 +1756,12 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 - 0 - 0 - 0 @@ -1760,10 +1772,11 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14975 moles: + - 21.824879 + - 82.10312 - 0 - - 6666.982 - 0 - 0 - 0 @@ -1773,6 +1786,12 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 - 0 - 0 - 0 @@ -7068,6 +7087,20 @@ entities: - type: Transform pos: 29.5,36.5 parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 2004 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 2131 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 - proto: AirlockEngineering entities: - uid: 3550 @@ -7408,14 +7441,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,4.5 parent: 2 -- proto: AirlockExternalGlassShuttlePilot - entities: - - uid: 11697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,48.5 - parent: 2 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -8234,21 +8259,6 @@ entities: - type: Transform pos: 37.5,22.5 parent: 2 - - uid: 2460 - components: - - type: Transform - pos: 42.5,16.5 - parent: 2 - - uid: 2461 - components: - - type: Transform - pos: 40.5,18.5 - parent: 2 - - uid: 9478 - components: - - type: Transform - pos: 41.5,43.5 - parent: 2 - proto: AirlockSecurityLocked entities: - uid: 7736 @@ -9182,11 +9192,6 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 13272 - components: - - type: Transform - pos: 40.5,47.5 - parent: 2 - proto: APCElectronics entities: - uid: 6656 @@ -9299,11 +9304,6 @@ entities: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 11698 - components: - - type: Transform - pos: 39.5,48.5 - parent: 2 - uid: 12295 components: - type: Transform @@ -9668,11 +9668,6 @@ entities: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 12088 - components: - - type: Transform - pos: 41.5,46.5 - parent: 2 - uid: 12245 components: - type: Transform @@ -9750,6 +9745,14 @@ entities: - type: Transform pos: 36.5,42.5 parent: 2 +- proto: BedsheetCE + entities: + - uid: 227 + components: + - type: Transform + parent: 5414 + - type: Physics + canCollide: False - proto: BedsheetClown entities: - uid: 5148 @@ -9757,6 +9760,14 @@ entities: - type: Transform pos: 27.5,5.5 parent: 2 +- proto: BedsheetCMO + entities: + - uid: 542 + components: + - type: Transform + parent: 1179 + - type: Physics + canCollide: False - proto: BedsheetGreen entities: - uid: 5252 @@ -9779,13 +9790,23 @@ entities: - type: Transform pos: 76.5,-6.5 parent: 2 +- proto: BedsheetHOP + entities: + - uid: 544 + components: + - type: Transform + parent: 9438 + - type: Physics + canCollide: False - proto: BedsheetHOS entities: - - uid: 12220 + - uid: 545 components: - type: Transform - pos: 41.5,46.5 - parent: 2 + parent: 6422 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BedsheetMedical entities: - uid: 5197 @@ -9871,6 +9892,14 @@ entities: - type: Transform pos: 107.5,-22.5 parent: 2 +- proto: BedsheetRD + entities: + - uid: 4300 + components: + - type: Transform + parent: 565 + - type: Physics + canCollide: False - proto: BedsheetSpawner entities: - uid: 5447 @@ -10321,40 +10350,6 @@ entities: - type: Transform pos: 65.52434,11.667425 parent: 2 -- proto: BoxMagazineRifle - entities: - - uid: 6872 - components: - - type: Transform - parent: 6871 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6874 - components: - - type: Transform - parent: 6871 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRiflePractice - entities: - - uid: 6876 - components: - - type: Transform - parent: 6871 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRifleRubber - entities: - - uid: 6875 - components: - - type: Transform - parent: 6871 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BoxMouthSwab entities: - uid: 2091 @@ -18723,46 +18718,6 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 - - uid: 13273 - components: - - type: Transform - pos: 40.5,47.5 - parent: 2 - - uid: 13274 - components: - - type: Transform - pos: 40.5,46.5 - parent: 2 - - uid: 13275 - components: - - type: Transform - pos: 40.5,45.5 - parent: 2 - - uid: 13276 - components: - - type: Transform - pos: 40.5,44.5 - parent: 2 - - uid: 13277 - components: - - type: Transform - pos: 41.5,44.5 - parent: 2 - - uid: 13278 - components: - - type: Transform - pos: 39.5,46.5 - parent: 2 - - uid: 13279 - components: - - type: Transform - pos: 38.5,46.5 - parent: 2 - - uid: 13293 - components: - - type: Transform - pos: 41.5,43.5 - parent: 2 - proto: CableApcStack entities: - uid: 5386 @@ -25969,6 +25924,16 @@ entities: - type: Transform pos: 35.5,45.5 parent: 2 + - uid: 9129 + components: + - type: Transform + pos: 36.5,45.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: 36.5,46.5 + parent: 2 - uid: 9253 components: - type: Transform @@ -28034,141 +27999,6 @@ entities: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 13245 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 13246 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 13247 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 13248 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 13249 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 13250 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 13251 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 13252 - components: - - type: Transform - pos: 45.5,33.5 - parent: 2 - - uid: 13253 - components: - - type: Transform - pos: 45.5,34.5 - parent: 2 - - uid: 13254 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 13255 - components: - - type: Transform - pos: 45.5,36.5 - parent: 2 - - uid: 13256 - components: - - type: Transform - pos: 45.5,37.5 - parent: 2 - - uid: 13257 - components: - - type: Transform - pos: 45.5,38.5 - parent: 2 - - uid: 13258 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 13259 - components: - - type: Transform - pos: 44.5,39.5 - parent: 2 - - uid: 13260 - components: - - type: Transform - pos: 44.5,40.5 - parent: 2 - - uid: 13261 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 13262 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 13263 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 13264 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 13265 - components: - - type: Transform - pos: 41.5,42.5 - parent: 2 - - uid: 13266 - components: - - type: Transform - pos: 41.5,43.5 - parent: 2 - - uid: 13267 - components: - - type: Transform - pos: 41.5,44.5 - parent: 2 - - uid: 13268 - components: - - type: Transform - pos: 41.5,45.5 - parent: 2 - - uid: 13269 - components: - - type: Transform - pos: 41.5,46.5 - parent: 2 - - uid: 13270 - components: - - type: Transform - pos: 40.5,46.5 - parent: 2 - - uid: 13271 - components: - - type: Transform - pos: 40.5,47.5 - parent: 2 - proto: CableMVStack entities: - uid: 5628 @@ -28678,30 +28508,6 @@ entities: - type: Transform pos: 14.5,15.5 parent: 2 - - uid: 13289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,46.5 - parent: 2 - - uid: 13290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,45.5 - parent: 2 - - uid: 13291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,46.5 - parent: 2 - - uid: 13292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,45.5 - parent: 2 - proto: CarpetBlack entities: - uid: 5459 @@ -31782,11 +31588,6 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 - - uid: 13244 - components: - - type: Transform - pos: 39.5,45.5 - parent: 2 - proto: CheapLighter entities: - uid: 6631 @@ -32389,11 +32190,6 @@ entities: - type: Transform pos: 45.471096,27.566444 parent: 2 - - uid: 13298 - components: - - type: Transform - pos: 40.52162,46.478626 - parent: 2 - proto: ClothingEyesGlassesSunglasses entities: - uid: 5522 @@ -33093,6 +32889,11 @@ entities: - type: Transform pos: 74.43015,-5.8248997 parent: 2 + - uid: 12220 + components: + - type: Transform + pos: 30.472458,40.268566 + parent: 2 - proto: ClothingShoeSlippersDuck entities: - uid: 5405 @@ -33416,12 +33217,6 @@ entities: linkedPorts: 8666: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - - uid: 10667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 - parent: 2 - proto: computerBodyScanner entities: - uid: 31 @@ -33659,6 +33454,14 @@ entities: rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 5652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 - proto: ComputerSalvageExpedition entities: - uid: 12820 @@ -34359,14 +34162,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -34535,13 +34330,6 @@ entities: - type: Transform pos: 64.5,-3.5 parent: 2 -- proto: CrateMindShieldImplants - entities: - - uid: 2004 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - proto: CrateMousetrapBoxes entities: - uid: 8819 @@ -34570,6 +34358,13 @@ entities: - type: Transform pos: 29.5,47.5 parent: 2 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 2153 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 - proto: CrateTrashCart entities: - uid: 13117 @@ -34654,14 +34449,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrewMonitoringServer entities: - uid: 8231 @@ -34907,6 +34694,13 @@ entities: - type: Transform pos: 59.5,-1.5 parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 6937 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - uid: 12851 @@ -38042,38 +37836,103 @@ entities: - type: Transform pos: 64.522316,20.63157 parent: 2 -- proto: Dresser +- proto: DresserCaptainFilled entities: - - uid: 386 + - uid: 10279 components: - type: Transform - pos: 45.5,22.5 + pos: 37.5,40.5 parent: 2 - - uid: 941 +- proto: DresserChiefEngineerFilled + entities: + - uid: 5414 components: - type: Transform - pos: 13.5,30.5 + pos: 10.5,-36.5 parent: 2 + - type: Storage + storedItems: + 227: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 227 +- proto: DresserChiefMedicalOfficerFilled + entities: - uid: 1179 components: - type: Transform pos: 58.5,-10.5 parent: 2 - - uid: 5414 + - type: Storage + storedItems: + 542: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 542 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 9438 components: - type: Transform - pos: 10.5,-36.5 + pos: 18.5,-5.5 parent: 2 - - uid: 9438 + - type: Storage + storedItems: + 544: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 544 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 386 components: - type: Transform - pos: 18.5,-5.5 + pos: 45.5,22.5 parent: 2 - - uid: 10279 +- proto: DresserQuarterMasterFilled + entities: + - uid: 941 components: - type: Transform - pos: 37.5,40.5 + pos: 13.5,30.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 565 + components: + - type: Transform + pos: 60.5,11.5 parent: 2 + - type: Storage + storedItems: + 4300: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 4300 - proto: DrinkFlask entities: - uid: 9223 @@ -54302,6 +54161,16 @@ entities: - type: Transform pos: 32.5,49.5 parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 36.5,45.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 36.5,46.5 + parent: 2 - uid: 2808 components: - type: Transform @@ -57142,6 +57011,26 @@ entities: - type: Transform pos: 5.5,43.5 parent: 2 + - uid: 11695 + components: + - type: Transform + pos: 41.5,52.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: 40.5,52.5 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: 38.5,52.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: 39.5,52.5 + parent: 2 - uid: 11886 components: - type: Transform @@ -57277,9 +57166,9 @@ entities: - type: Transform pos: 41.5,27.5 parent: 2 -- proto: GunSafePistolMk58 +- proto: GunSafeRifleLecter entities: - - uid: 2131 + - uid: 2460 components: - type: Transform pos: 38.5,26.5 @@ -57291,22 +57180,20 @@ entities: - type: Transform pos: 41.5,26.5 parent: 2 -- proto: Handcuffs +- proto: GunSafeSubMachineGunDrozd entities: - - uid: 9397 + - uid: 2461 components: - type: Transform - pos: 25.512451,48.501656 + pos: 38.5,27.5 parent: 2 -- proto: HandheldGPSBasic +- proto: Handcuffs entities: - - uid: 9129 + - uid: 9397 components: - type: Transform - parent: 6944 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 25.512451,48.501656 + parent: 2 - proto: HandheldHealthAnalyzer entities: - uid: 12160 @@ -57780,15 +57667,6 @@ entities: - type: Transform pos: 8.484015,-9.496899 parent: 2 -- proto: JetpackSecurityFilled - entities: - - uid: 3087 - components: - - type: Transform - parent: 3086 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: KitchenElectricGrill entities: - uid: 13167 @@ -57951,13 +57829,6 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 2 -- proto: LockerBlueShieldFilled - entities: - - uid: 6937 - components: - - type: Transform - pos: 30.5,40.5 - parent: 2 - proto: LockerBoozeFilled entities: - uid: 2901 @@ -57977,13 +57848,6 @@ entities: - type: Transform pos: 44.5,-10.5 parent: 2 -- proto: LockerBrigmedicFilledHardsuit - entities: - - uid: 6939 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - proto: LockerCaptainFilledHardsuit entities: - uid: 5158 @@ -57991,13 +57855,6 @@ entities: - type: Transform pos: 37.5,41.5 parent: 2 -- proto: LockerCentcomConsultantFilledHardsuit - entities: - - uid: 6942 - components: - - type: Transform - pos: 34.5,42.5 - parent: 2 - proto: LockerChemistryFilled entities: - uid: 9714 @@ -58115,6 +57972,35 @@ entities: - type: Transform pos: 43.5,25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 545 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerMedical entities: - uid: 10911 @@ -58194,6 +58080,24 @@ entities: - type: Transform pos: 61.5,11.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 7962 @@ -58247,73 +58151,6 @@ entities: - type: Transform pos: 39.5,17.5 parent: 2 -- proto: LockerShuttlePilotFilled - entities: - - uid: 6944 - components: - - type: Transform - pos: 37.5,45.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8446 - - 8447 - - 9129 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSyndicatePersonal - entities: - - uid: 6871 - components: - - type: Transform - pos: 41.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6876 - - 6875 - - 6874 - - 6872 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerWallMedicalFilled entities: - uid: 8323 @@ -59100,7 +58937,7 @@ entities: - uid: 11980 components: - type: Transform - pos: 60.396873,11.712045 + pos: 63.3999,10.027362 parent: 2 - proto: PersonalAI entities: @@ -59993,13 +59830,6 @@ entities: - type: Transform pos: 16.4019,-23.383022 parent: 2 - - uid: 8446 - components: - - type: Transform - parent: 6944 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PowerCellRecharger entities: - uid: 2829 @@ -60124,16 +59954,6 @@ entities: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 13282 - components: - - type: Transform - pos: 36.5,21.5 - parent: 2 - - uid: 13283 - components: - - type: Transform - pos: 40.5,44.5 - parent: 2 - proto: PowerCellSmall entities: - uid: 5313 @@ -62283,44 +62103,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-47.5 parent: 2 - - uid: 13284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,48.5 - parent: 2 - - uid: 13285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,48.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - pos: 40.5,46.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - pos: 38.5,46.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,45.5 - parent: 2 - - uid: 13294 - components: - - type: Transform - pos: 40.5,42.5 - parent: 2 - - uid: 13295 - components: - - type: Transform - pos: 35.5,38.5 - parent: 2 - proto: Protolathe entities: - uid: 5305 @@ -62402,11 +62184,6 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 2153 - components: - - type: Transform - pos: 38.5,27.5 - parent: 2 - uid: 5342 components: - type: Transform @@ -62564,11 +62341,6 @@ entities: - type: Transform pos: 32.5,-46.5 parent: 2 - - uid: 13297 - components: - - type: Transform - pos: 40.5,46.5 - parent: 2 - proto: RadioHandheld entities: - uid: 1325 @@ -64135,6 +63907,16 @@ entities: - type: Transform pos: 41.5,40.5 parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 36.5,46.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 36.5,45.5 + parent: 2 - uid: 3088 components: - type: Transform @@ -67807,15 +67589,6 @@ entities: - type: Transform pos: 120.5,-17.5 parent: 2 -- proto: SpaceMedipen - entities: - - uid: 8447 - components: - - type: Transform - parent: 6944 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: SpaceVillainArcadeFilled entities: - uid: 1 @@ -67981,13 +67754,6 @@ entities: - type: Transform pos: 38.5,-10.5 parent: 2 -- proto: SpawnPointBlueShield - entities: - - uid: 6940 - components: - - type: Transform - pos: 31.5,40.5 - parent: 2 - proto: SpawnPointBorg entities: - uid: 13142 @@ -68007,13 +67773,6 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 -- proto: SpawnPointBrigmedic - entities: - - uid: 6938 - components: - - type: Transform - pos: 34.5,17.5 - parent: 2 - proto: SpawnPointCaptain entities: - uid: 8682 @@ -68038,13 +67797,6 @@ entities: - type: Transform pos: 11.5,22.5 parent: 2 -- proto: SpawnPointCentcomConsultant - entities: - - uid: 6941 - components: - - type: Transform - pos: 33.5,43.5 - parent: 2 - proto: SpawnPointChaplain entities: - uid: 10638 @@ -68356,13 +68108,6 @@ entities: - type: Transform pos: 34.5,-4.5 parent: 2 -- proto: SpawnPointShuttlePilot - entities: - - uid: 3073 - components: - - type: Transform - pos: 38.5,45.5 - parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 4579 @@ -68861,20 +68606,6 @@ entities: - type: Transform pos: 49.5,-15.5 parent: 2 -- proto: SuitStoragePilot - entities: - - uid: 3086 - components: - - type: Transform - pos: 37.5,46.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3087 - proto: SuitStorageRD entities: - uid: 10661 @@ -68884,6 +68615,11 @@ entities: parent: 2 - proto: SuitStorageSec entities: + - uid: 2311 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 - uid: 7946 components: - type: Transform @@ -70499,11 +70235,6 @@ entities: - type: Transform pos: 16.5,-5.5 parent: 2 - - uid: 10663 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - uid: 10664 components: - type: Transform @@ -70647,11 +70378,6 @@ entities: - type: Transform pos: 48.5,11.5 parent: 2 - - uid: 13281 - components: - - type: Transform - pos: 36.5,21.5 - parent: 2 - proto: TableCarpet entities: - uid: 5501 @@ -71229,16 +70955,6 @@ entities: - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 12910 - components: - - type: Transform - pos: 40.5,44.5 - parent: 2 - - uid: 13181 - components: - - type: Transform - pos: 39.5,44.5 - parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -71568,11 +71284,6 @@ entities: - type: Transform pos: 36.482082,-14.3137665 parent: 2 - - uid: 13296 - components: - - type: Transform - pos: 40.49037,46.64541 - parent: 2 - proto: ToolboxEmergencyFilled entities: - uid: 4997 @@ -74879,16 +74590,6 @@ entities: - type: Transform pos: 36.5,47.5 parent: 2 - - uid: 2806 - components: - - type: Transform - pos: 36.5,46.5 - parent: 2 - - uid: 2807 - components: - - type: Transform - pos: 36.5,45.5 - parent: 2 - uid: 2810 components: - type: Transform @@ -75189,6 +74890,11 @@ entities: - type: Transform pos: 40.5,43.5 parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 - uid: 3074 components: - type: Transform @@ -77408,11 +77114,6 @@ entities: - type: Transform pos: 50.5,-47.5 parent: 2 - - uid: 4300 - components: - - type: Transform - pos: 40.5,47.5 - parent: 2 - uid: 4329 components: - type: Transform @@ -77653,16 +77354,6 @@ entities: - type: Transform pos: 69.5,26.5 parent: 2 - - uid: 5652 - components: - - type: Transform - pos: 40.5,48.5 - parent: 2 - - uid: 5653 - components: - - type: Transform - pos: 38.5,47.5 - parent: 2 - uid: 5724 components: - type: Transform @@ -77858,11 +77549,6 @@ entities: - type: Transform pos: 14.5,30.5 parent: 2 - - uid: 6943 - components: - - type: Transform - pos: 38.5,48.5 - parent: 2 - uid: 7466 components: - type: Transform @@ -78616,16 +78302,6 @@ entities: - type: Transform pos: 87.5,3.5 parent: 2 - - uid: 11695 - components: - - type: Transform - pos: 41.5,47.5 - parent: 2 - - uid: 11696 - components: - - type: Transform - pos: 37.5,47.5 - parent: 2 - uid: 11756 components: - type: Transform @@ -82093,14 +81769,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13063 components: - type: Transform @@ -82124,14 +81792,6 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobePrison entities: - uid: 2308 @@ -82367,11 +82027,6 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 13280 - components: - - type: Transform - pos: 39.5,44.5 - parent: 2 - proto: WeaponDisabler entities: - uid: 10135 @@ -82384,23 +82039,6 @@ entities: - type: Transform pos: 41.567085,22.558064 parent: 2 -- proto: WeaponRifleLecter - entities: - - uid: 2311 - components: - - type: Transform - pos: 38.53101,27.682423 - parent: 2 - - uid: 7781 - components: - - type: Transform - pos: 38.546635,27.573048 - parent: 2 - - uid: 7782 - components: - - type: Transform - pos: 38.56226,27.338673 - parent: 2 - proto: WeaponSubMachineGunWt550 entities: - uid: 7940 @@ -82536,23 +82174,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 -- proto: WindoorBarKitchenLocked - entities: - - uid: 544 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 2 - - uid: 545 - components: - - type: Transform - pos: 36.5,-8.5 - parent: 2 - - uid: 565 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 2 - proto: WindoorChapelLocked entities: - uid: 9730 @@ -82632,11 +82253,6 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-19.5 parent: 2 - - uid: 9130 - components: - - type: Transform - pos: 39.5,47.5 - parent: 2 - uid: 10121 components: - type: Transform @@ -83265,24 +82881,12 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 2 - - uid: 227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 2 - uid: 358 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-12.5 parent: 2 - - uid: 542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 2 - uid: 673 components: - type: Transform diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index c9d3218c45fbc3..048b0a2e5ce4b8 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -3401,14 +3401,6 @@ entities: - type: Transform pos: -11.470391,11.486723 parent: 31 -- proto: ActionToggleLight - entities: - - uid: 7544 - components: - - type: Transform - parent: 9761 - - type: InstantAction - container: 9761 - proto: AirAlarm entities: - uid: 5107 @@ -48902,20 +48894,6 @@ entities: - type: Transform pos: -16.721703,-38.96948 parent: 31 - - type: HandheldLight - toggleActionEntity: 7544 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 7544 - - type: ActionsContainer - proto: LargeBeaker entities: - uid: 5074 diff --git a/Resources/Maps/tehtra.yml b/Resources/Maps/tehtra.yml index 71be732c5945f9..ededd3111b3003 100644 --- a/Resources/Maps/tehtra.yml +++ b/Resources/Maps/tehtra.yml @@ -127,11 +127,11 @@ entities: version: 6 2,1: ind: 2,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: dgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: dgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -1145,7 +1145,8 @@ entities: -5,5: 0: 65280 -4,6: - 0: 65520 + 0: 65392 + 3: 128 -5,6: 0: 65531 -4,7: @@ -1206,7 +1207,8 @@ entities: 0: 57599 -8,1: 1: 546 - 0: 34952 + 0: 32904 + 3: 2048 -9,1: 0: 52991 -8,2: @@ -1230,7 +1232,7 @@ entities: 1: 3810 -7,4: 0: 52700 - 3: 4096 + 4: 4096 -6,0: 1: 15 -6,1: @@ -1269,7 +1271,8 @@ entities: -7,6: 0: 65524 -7,7: - 0: 17487 + 0: 16463 + 3: 1024 -7,8: 0: 4 1: 61152 @@ -1286,7 +1289,8 @@ entities: -11,6: 0: 52428 -11,7: - 0: 236 + 0: 108 + 3: 128 -11,3: 0: 36093 -10,4: @@ -1332,7 +1336,8 @@ entities: 5,2: 0: 44984 5,3: - 0: 36747 + 0: 36491 + 3: 256 5,4: 0: 49083 6,0: @@ -1396,7 +1401,8 @@ entities: 8,6: 0: 65262 8,7: - 0: 31 + 0: 29 + 3: 2 9,5: 0: 3958 9,4: @@ -1512,6 +1518,29 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.1498 moles: @@ -1701,9 +1730,9 @@ entities: parent: 2 - type: DeviceList devices: - - 2812 - - 3566 - - 3594 + - 2820 + - 3574 + - 3602 - 185 - uid: 46 components: @@ -1713,12 +1742,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2833 - - 2832 - - 2830 - - 2831 - - 2835 - - 2834 + - 2841 + - 2840 + - 2838 + - 2839 + - 2843 + - 2842 - 191 - uid: 47 components: @@ -1733,8 +1762,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2817 - - 3571 + - 2825 + - 3579 - 195 - uid: 49 components: @@ -1744,11 +1773,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2821 - - 3551 - - 3598 - - 2820 - - 2819 + - 2829 + - 3559 + - 3606 + - 2828 + - 2827 - 197 - uid: 50 components: @@ -1758,11 +1787,11 @@ entities: parent: 2 - type: DeviceList devices: - - 3568 - - 3597 - - 2836 - - 2821 - - 2837 + - 3576 + - 3605 + - 2844 + - 2829 + - 2845 - 194 - uid: 51 components: @@ -1773,12 +1802,12 @@ entities: - type: DeviceList devices: - 193 - - 2822 - - 2823 - - 2825 - - 2824 - - 2839 - - 2840 + - 2830 + - 2831 + - 2833 + - 2832 + - 2847 + - 2848 - uid: 52 components: - type: Transform @@ -1787,14 +1816,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2825 - - 2824 - - 2837 - - 3555 - - 2826 - - 2827 - - 2867 - - 2868 + - 2833 + - 2832 + - 2845 + - 3563 + - 2834 + - 2835 + - 2875 + - 2876 - 192 - uid: 53 components: @@ -1804,10 +1833,10 @@ entities: parent: 2 - type: DeviceList devices: - - 2838 - - 2871 - - 2872 - - 3599 + - 2846 + - 2879 + - 2880 + - 3607 - 196 - uid: 54 components: @@ -1823,10 +1852,10 @@ entities: parent: 2 - type: DeviceList devices: - - 2864 - - 3601 - - 3565 - - 2802 + - 2872 + - 3609 + - 3573 + - 2810 - 200 - uid: 56 components: @@ -1836,12 +1865,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2887 - - 2886 - - 2885 - - 3572 - - 2876 - - 2875 + - 2895 + - 2894 + - 2893 + - 3580 + - 2884 + - 2883 - 217 - uid: 57 components: @@ -1851,12 +1880,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2874 - - 2877 - - 3573 - - 2899 - - 2898 - - 2900 + - 2882 + - 2885 + - 3581 + - 2907 + - 2906 + - 2908 - 212 - uid: 58 components: @@ -1866,11 +1895,11 @@ entities: parent: 2 - type: DeviceList devices: - - 3574 - - 2878 - - 2879 - - 2896 - - 2897 + - 3582 + - 2886 + - 2887 + - 2904 + - 2905 - 224 - uid: 59 components: @@ -1879,12 +1908,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2797 - - 2908 - - 2907 - - 2902 - - 3577 - - 2796 + - 2805 + - 2916 + - 2915 + - 2910 + - 3585 + - 2804 - 226 - uid: 60 components: @@ -1894,11 +1923,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2880 - - 2881 - 2888 - 2889 - - 3575 + - 2896 + - 2897 + - 3583 - 227 - uid: 61 components: @@ -1907,16 +1936,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2808 - - 2809 - - 2806 - - 2807 - - 2786 - - 2803 - - 2804 - - 2805 - - 3610 - - 3576 + - 2816 + - 2817 + - 2814 + - 2815 + - 2794 + - 2811 + - 2812 + - 2813 + - 3618 + - 3584 - 216 - uid: 62 components: @@ -1926,14 +1955,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2843 - - 2844 - - 2841 - - 2842 - - 2866 - - 2865 - - 2801 - - 3563 + - 2851 + - 2852 + - 2849 + - 2850 + - 2874 + - 2873 + - 2809 + - 3571 - 198 - uid: 63 components: @@ -1943,15 +1972,15 @@ entities: parent: 2 - type: DeviceList devices: - - 3582 - 3590 - - 2798 - - 2799 - - 2793 - - 2794 - - 2834 - - 2835 - - 2800 + - 3598 + - 2806 + - 2807 + - 2801 + - 2802 + - 2842 + - 2843 + - 2808 - 189 - uid: 64 components: @@ -1961,14 +1990,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2862 - - 2861 - - 2863 - - 2811 - - 2810 - - 2850 - - 2846 - - 2847 + - 2870 + - 2869 + - 2871 + - 2819 + - 2818 + - 2858 + - 2854 + - 2855 - uid: 65 components: - type: Transform @@ -1977,10 +2006,10 @@ entities: parent: 2 - type: DeviceList devices: - - 2853 - - 2852 - - 3570 - - 3602 + - 2861 + - 2860 + - 3578 + - 3610 - 205 - uid: 66 components: @@ -1990,9 +2019,9 @@ entities: parent: 2 - type: DeviceList devices: - - 2854 - - 2851 - - 3584 + - 2862 + - 2859 + - 3592 - 207 - uid: 67 components: @@ -2001,9 +2030,9 @@ entities: parent: 2 - type: DeviceList devices: - - 2850 - - 2851 - - 2849 + - 2858 + - 2859 + - 2857 - 183 - uid: 68 components: @@ -2012,10 +2041,10 @@ entities: parent: 2 - type: DeviceList devices: - - 3560 - - 3559 - - 2857 - - 2858 + - 3568 + - 3567 + - 2865 + - 2866 - 184 - uid: 69 components: @@ -2025,9 +2054,9 @@ entities: parent: 2 - type: DeviceList devices: - - 3585 - - 2849 - - 2854 + - 3593 + - 2857 + - 2862 - 206 - uid: 70 components: @@ -2036,10 +2065,10 @@ entities: parent: 2 - type: DeviceList devices: - - 2841 - - 2842 - - 2861 - - 2862 + - 2849 + - 2850 + - 2869 + - 2870 - 201 - uid: 71 components: @@ -2049,14 +2078,14 @@ entities: parent: 2 - type: DeviceList devices: + - 2831 + - 2830 + - 2827 - 2823 - - 2822 - - 2819 - - 2815 - - 2816 - - 3552 - - 2818 - - 2817 + - 2824 + - 3560 + - 2826 + - 2825 - 186 - uid: 72 components: @@ -2066,13 +2095,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2814 - - 2813 - - 3553 - - 2832 - - 2833 - - 2869 - - 2820 + - 2822 + - 2821 + - 3561 + - 2840 + - 2841 + - 2877 + - 2828 - uid: 73 components: - type: Transform @@ -2081,11 +2110,11 @@ entities: parent: 2 - type: DeviceList devices: - - 3569 - - 2788 - - 3600 - - 2840 - - 2839 + - 3577 + - 2796 + - 3608 + - 2848 + - 2847 - 202 - 203 - uid: 74 @@ -2096,10 +2125,10 @@ entities: parent: 2 - type: DeviceList devices: - - 2867 - - 2868 - - 2843 - - 2844 + - 2875 + - 2876 + - 2851 + - 2852 - 202 - uid: 75 components: @@ -2109,12 +2138,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2787 - - 2855 - - 2856 - - 3591 - - 3558 - - 2857 + - 2795 + - 2863 + - 2864 + - 3599 + - 3566 + - 2865 - 210 - uid: 76 components: @@ -2124,13 +2153,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2830 - - 2831 - - 3554 - - 2828 - - 2829 - - 2870 + - 2838 + - 2839 + - 3562 - 2836 + - 2837 + - 2878 + - 2844 - uid: 77 components: - type: Transform @@ -2139,13 +2168,13 @@ entities: parent: 2 - type: DeviceList devices: - - 3561 + - 3569 + - 2863 + - 2864 - 2855 + - 2854 - 2856 - - 2847 - - 2846 - - 2848 - - 2845 + - 2853 - 208 - uid: 78 components: @@ -2156,9 +2185,9 @@ entities: - type: DeviceList devices: - 211 - - 3556 - - 2859 - - 2860 + - 3564 + - 2867 + - 2868 - uid: 79 components: - type: Transform @@ -2166,12 +2195,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2884 - - 2883 - - 2886 - - 2885 - - 2888 - - 2889 + - 2892 + - 2891 + - 2894 + - 2893 + - 2896 + - 2897 - 215 - uid: 80 components: @@ -2181,11 +2210,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2795 - - 2876 - - 2875 - - 2877 - - 2874 + - 2803 + - 2884 + - 2883 + - 2885 + - 2882 - 218 - uid: 81 components: @@ -2194,14 +2223,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2899 + - 2907 + - 2906 - 2898 - - 2890 - - 2891 - - 2892 - - 2893 - - 2896 - - 2897 + - 2899 + - 2900 + - 2901 + - 2904 + - 2905 - 219 - uid: 82 components: @@ -2210,14 +2239,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2895 - - 2894 - - 2892 - - 2893 - - 3581 - - 3611 - - 2906 - - 2910 + - 2903 + - 2902 + - 2900 + - 2901 + - 3589 + - 3619 + - 2914 + - 2918 - 220 - uid: 83 components: @@ -2233,11 +2262,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2881 - - 2880 - - 2879 - - 2878 - - 2901 + - 2889 + - 2888 + - 2887 + - 2886 + - 2909 - 223 - uid: 85 components: @@ -2247,11 +2276,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2905 - - 2904 - - 2909 - - 3579 - - 3607 + - 2913 + - 2912 + - 2917 + - 3587 + - 3615 - 214 - uid: 86 components: @@ -2261,12 +2290,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2904 - - 2905 - - 3606 - - 3580 - - 2891 - - 2890 + - 2912 + - 2913 + - 3614 + - 3588 + - 2899 + - 2898 - 213 - uid: 87 components: @@ -2276,11 +2305,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2866 - - 2865 - - 2801 - - 3583 - - 3613 + - 2874 + - 2873 + - 2809 + - 3591 + - 3621 - 199 - proto: AirCanister entities: @@ -2464,6 +2493,16 @@ entities: - type: Transform pos: 11.5,3.5 parent: 2 + - uid: 130 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 - proto: AirlockExternalCargoLocked entities: - uid: 117 @@ -2520,7 +2559,7 @@ entities: rot: 3.141592653589793 rad pos: 30.5,29.5 parent: 2 - - uid: 3803 + - uid: 126 components: - type: Transform rot: 3.141592653589793 rad @@ -2546,18 +2585,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,29.5 parent: 2 -- proto: AirlockExternalLocked - entities: - - uid: 130 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - - uid: 131 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2 - proto: AirlockGlass entities: - uid: 132 @@ -2611,7 +2638,7 @@ entities: pos: 25.5,21.5 parent: 2 - type: Door - secondsUntilStateChange: -106869.51 + secondsUntilStateChange: -107743.94 state: Opening - type: DeviceLinkSource lastSignals: @@ -2846,7 +2873,7 @@ entities: pos: 42.5,14.5 parent: 2 - type: Door - secondsUntilStateChange: -43177.938 + secondsUntilStateChange: -44052.37 state: Opening - type: DeviceLinkSource lastSignals: @@ -2909,7 +2936,7 @@ entities: - type: DeviceNetwork deviceLists: - 68 - - 2742 + - 2750 - uid: 185 components: - type: Transform @@ -2917,7 +2944,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2744 + - 2752 - 45 - uid: 186 components: @@ -2926,7 +2953,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - uid: 187 components: @@ -2935,7 +2962,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - uid: 188 components: - type: Transform @@ -2948,7 +2975,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - uid: 190 components: @@ -2957,7 +2984,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - uid: 191 components: - type: Transform @@ -2966,7 +2993,7 @@ entities: - type: DeviceNetwork deviceLists: - 46 - - 2769 + - 2777 - uid: 192 components: - type: Transform @@ -2974,7 +3001,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - uid: 193 components: @@ -2984,7 +3011,7 @@ entities: - type: DeviceNetwork deviceLists: - 51 - - 2768 + - 2776 - uid: 194 components: - type: Transform @@ -2993,7 +3020,7 @@ entities: - type: DeviceNetwork deviceLists: - 50 - - 2749 + - 2757 - uid: 195 components: - type: Transform @@ -3002,7 +3029,7 @@ entities: - type: DeviceNetwork deviceLists: - 48 - - 2747 + - 2755 - uid: 196 components: - type: Transform @@ -3010,7 +3037,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2753 + - 2761 - 53 - uid: 197 components: @@ -3019,7 +3046,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2746 + - 2754 - 49 - uid: 198 components: @@ -3029,7 +3056,7 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 + - 2751 - uid: 199 components: - type: Transform @@ -3037,7 +3064,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2783 + - 2791 - 87 - uid: 200 components: @@ -3046,7 +3073,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2771 + - 2779 - 55 - uid: 201 components: @@ -3055,7 +3082,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2765 + - 2773 - 70 - uid: 202 components: @@ -3064,9 +3091,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2770 + - 2778 - 74 - - 2751 + - 2759 - 73 - uid: 203 components: @@ -3075,7 +3102,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2751 + - 2759 - 73 - uid: 204 components: @@ -3084,7 +3111,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2774 + - 2782 - uid: 205 components: - type: Transform @@ -3092,7 +3119,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2772 + - 2780 - 65 - uid: 206 components: @@ -3101,7 +3128,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2776 + - 2784 - 69 - uid: 207 components: @@ -3110,7 +3137,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2741 + - 2749 - 66 - uid: 208 components: @@ -3119,7 +3146,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2767 + - 2775 - 77 - uid: 209 components: @@ -3128,7 +3155,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2742 + - 2750 - uid: 210 components: - type: Transform @@ -3136,7 +3163,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2773 + - 2781 - 75 - uid: 211 components: @@ -3146,7 +3173,7 @@ entities: - type: DeviceNetwork deviceLists: - 78 - - 2775 + - 2783 - uid: 212 components: - type: Transform @@ -3155,7 +3182,7 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 + - 2767 - uid: 213 components: - type: Transform @@ -3163,7 +3190,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2758 + - 2766 - 86 - uid: 214 components: @@ -3172,7 +3199,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2761 + - 2769 - 85 - uid: 215 components: @@ -3190,7 +3217,7 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 + - 2790 - uid: 217 components: - type: Transform @@ -3199,7 +3226,7 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 + - 2768 - uid: 218 components: - type: Transform @@ -3208,7 +3235,7 @@ entities: - type: DeviceNetwork deviceLists: - 80 - - 2777 + - 2785 - uid: 219 components: - type: Transform @@ -3217,7 +3244,7 @@ entities: - type: DeviceNetwork deviceLists: - 81 - - 2764 + - 2772 - uid: 220 components: - type: Transform @@ -3225,7 +3252,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2740 + - 2748 - 82 - uid: 221 components: @@ -3245,7 +3272,7 @@ entities: - type: DeviceNetwork deviceLists: - 84 - - 2779 + - 2787 - uid: 224 components: - type: Transform @@ -3253,7 +3280,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2778 + - 2786 - 58 - uid: 225 components: @@ -3262,7 +3289,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2763 + - 2771 - uid: 226 components: - type: Transform @@ -3270,7 +3297,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2780 + - 2788 - 59 - uid: 227 components: @@ -3279,7 +3306,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2762 + - 2770 - 60 - uid: 228 components: @@ -3648,25 +3675,25 @@ entities: parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 126 + - uid: 288 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,29.5 parent: 2 - - uid: 288 + - uid: 289 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,22.5 parent: 2 - - uid: 289 + - uid: 290 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,29.5 parent: 2 - - uid: 290 + - uid: 291 components: - type: Transform rot: -1.5707963267948966 rad @@ -3877,7 +3904,7 @@ entities: - type: DeviceLinkSink invokeCounter: 3 links: - - 4576 + - 4582 - uid: 322 components: - type: Transform @@ -3886,7 +3913,7 @@ entities: - type: DeviceLinkSink invokeCounter: 3 links: - - 4576 + - 4582 - proto: BlastDoorExterior1 entities: - uid: 323 @@ -3896,7 +3923,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 324 components: - type: Transform @@ -3904,7 +3931,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 325 components: - type: Transform @@ -3912,7 +3939,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 326 components: - type: Transform @@ -3920,7 +3947,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 327 components: - type: Transform @@ -3928,7 +3955,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 328 components: - type: Transform @@ -3936,7 +3963,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 329 components: - type: Transform @@ -3944,7 +3971,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - uid: 330 components: - type: Transform @@ -3952,7 +3979,7 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 3996 + - 4003 - proto: BlinkBook entities: - uid: 331 @@ -13337,40 +13364,289 @@ entities: - 0 - 0 - 0 -- proto: ClosetWallEmergencyFilledRandom +- proto: ClosetWallEmergency entities: - - uid: 2162 + - uid: 2163 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,29.5 + pos: -29.5,6.5 parent: 2 - - uid: 2163 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2164 + - 2165 + - 2166 + - 2167 + - uid: 2169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,6.5 + pos: -14.5,15.5 parent: 2 - - uid: 2164 + - uid: 2170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2171 + - 2172 + - 2173 + - 2174 + - uid: 5855 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5856 + - 5857 + - 5858 + - 5859 + - uid: 5860 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5861 + - 5862 + - 5863 + - 5864 + - uid: 5870 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,30.5 parent: 2 - - uid: 2165 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5871 + - 5872 + - 5873 + - 5874 + - uid: 5881 components: - type: Transform - pos: -14.5,15.5 + rot: -1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - - uid: 2166 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5882 + - 5883 + - 5884 + - 5885 + - uid: 5896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 + pos: 33.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5897 + - 5898 + - 5899 + - 5900 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 2162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,29.5 parent: 2 - proto: ClosetWallFireFilledRandom entities: - - uid: 2167 + - uid: 2175 components: - type: Transform rot: -1.5707963267948966 rad @@ -13378,55 +13654,55 @@ entities: parent: 2 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 2168 + - uid: 2176 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 2169 + - uid: 2177 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 - - uid: 2170 + - uid: 2178 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,25.5 parent: 2 - - uid: 2171 + - uid: 2179 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,17.5 parent: 2 - - uid: 2172 + - uid: 2180 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,9.5 parent: 2 - - uid: 2173 + - uid: 2181 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,4.5 parent: 2 - - uid: 2174 + - uid: 2182 components: - type: Transform pos: 21.5,20.5 parent: 2 - proto: ClosetWallOrange entities: - - uid: 2175 + - uid: 2183 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,8.5 parent: 2 - - uid: 2176 + - uid: 2184 components: - type: Transform rot: 3.141592653589793 rad @@ -13434,71 +13710,71 @@ entities: parent: 2 - proto: ClothingBackpackDuffel entities: - - uid: 2177 + - uid: 2185 components: - type: Transform pos: -3.5721626,0.80423737 parent: 2 - type: Storage storedItems: - 2194: + 2202: position: 0,0 _rotation: South - 2195: + 2203: position: 1,0 _rotation: South - 2196: + 2204: position: 2,0 _rotation: South - 2197: + 2205: position: 3,0 _rotation: South - 2178: + 2186: position: 4,0 _rotation: South - 2179: + 2187: position: 5,0 _rotation: South - 2180: + 2188: position: 6,0 _rotation: South - 2181: + 2189: position: 7,0 _rotation: South - 2190: + 2198: position: 0,2 _rotation: South - 2191: + 2199: position: 1,2 _rotation: South - 2192: + 2200: position: 2,2 _rotation: South - 2193: + 2201: position: 3,2 _rotation: South - 2182: + 2190: position: 4,2 _rotation: South - 2183: + 2191: position: 5,2 _rotation: South - 2184: + 2192: position: 6,2 _rotation: South - 2185: + 2193: position: 7,2 _rotation: South - 2186: + 2194: position: 0,4 _rotation: East - 2187: + 2195: position: 2,4 _rotation: East - 2188: + 2196: position: 4,4 _rotation: East - 2189: + 2197: position: 6,4 _rotation: East - type: ContainerContainer @@ -13507,27 +13783,27 @@ entities: showEnts: False occludes: True ents: - - 2194 - - 2195 - - 2196 - - 2197 - - 2178 - - 2179 - - 2180 - - 2181 - - 2190 - - 2191 - - 2192 - - 2193 - - 2182 - - 2183 - - 2184 - - 2185 + - 2202 + - 2203 + - 2204 + - 2205 - 2186 - 2187 - 2188 - 2189 - - uid: 2198 + - 2198 + - 2199 + - 2200 + - 2201 + - 2190 + - 2191 + - 2192 + - 2193 + - 2194 + - 2195 + - 2196 + - 2197 + - uid: 2206 components: - type: MetaData desc: Вещмешок который покрыт свинцовыми пластинами что блокирует радиацию и взрывы, для хранения предметов которые издают звук "пип, пип". @@ -13575,26 +13851,26 @@ entities: - type: InsideEntityStorage - proto: ClothingBackpackDuffelMime entities: - - uid: 2200 + - uid: 2208 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 2209 + - uid: 2217 components: - type: Transform pos: -41.339695,12.3319025 parent: 2 - proto: ClothingBackpackMime entities: - - uid: 2201 + - uid: 2209 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage @@ -13621,26 +13897,26 @@ entities: - type: InsideEntityStorage - proto: ClothingBeltPlantFilled entities: - - uid: 2210 + - uid: 2218 components: - type: Transform pos: -0.5346898,17.578716 parent: 2 - proto: ClothingBeltSecurityFilled entities: - - uid: 2211 + - uid: 2219 components: - type: Transform pos: 11.5223465,17.22828 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 2212 + - uid: 2220 components: - type: Transform pos: 27.442451,9.606867 parent: 2 - - uid: 2213 + - uid: 2221 components: - type: Transform pos: -29.397188,9.60021 @@ -13656,31 +13932,31 @@ entities: - type: InsideEntityStorage - proto: ClothingEyesGlassesGarMed entities: - - uid: 2214 + - uid: 2222 components: - type: Transform pos: -40.178482,11.815842 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 2215 + - uid: 2223 components: - type: Transform pos: -8.520653,4.6357884 parent: 2 - - uid: 2216 + - uid: 2224 components: - type: Transform pos: -9.484095,8.316605 parent: 2 - - uid: 2217 + - uid: 2225 components: - type: Transform pos: -30.303135,9.623723 parent: 2 - proto: ClothingHeadHatCentcomcap entities: - - uid: 2218 + - uid: 2226 components: - type: Transform pos: -1.5581398,25.816765 @@ -13705,14 +13981,14 @@ entities: - type: InsideEntityStorage - proto: ClothingHeadHatWelding entities: - - uid: 2219 + - uid: 2227 components: - type: Transform pos: -9.552132,20.626087 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 2220 + - uid: 2228 components: - type: Transform pos: -30.678438,9.397085 @@ -13737,23 +14013,131 @@ entities: - type: InsideEntityStorage - proto: ClothingHeadHelmetEVA entities: - - uid: 2221 + - uid: 2165 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2174 + components: + - type: Transform + parent: 2170 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2229 components: - type: Transform pos: 9.271591,29.862797 parent: 2 + - uid: 5857 + components: + - type: Transform + parent: 5855 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5862 + components: + - type: Transform + parent: 5860 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5871 + components: + - type: Transform + parent: 5870 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5885 + components: + - type: Transform + parent: 5881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5893 + components: + - type: Transform + pos: -14.43775,14.499795 + parent: 2 + - uid: 5900 + components: + - type: Transform + parent: 5896 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 2222 + - uid: 2164 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2173 + components: + - type: Transform + parent: 2170 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2230 components: - type: Transform pos: -23.33583,20.463642 parent: 2 - - uid: 2223 + - uid: 2231 components: - type: Transform pos: -23.17958,20.43236 parent: 2 + - uid: 5856 + components: + - type: Transform + parent: 5855 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5861 + components: + - type: Transform + parent: 5860 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5874 + components: + - type: Transform + parent: 5870 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5884 + components: + - type: Transform + parent: 5881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5892 + components: + - type: Transform + pos: -14.645897,14.782851 + parent: 2 + - uid: 5897 + components: + - type: Transform + parent: 5896 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingMaskClown entities: - uid: 1208 @@ -13765,35 +14149,35 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskGasExplorer entities: - - uid: 2224 + - uid: 2232 components: - type: Transform pos: -10.235814,20.493385 parent: 2 - proto: ClothingMaskMime entities: - - uid: 2202 + - uid: 2210 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSadMime entities: - - uid: 2203 + - uid: 2211 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskScaredMime entities: - - uid: 2204 + - uid: 2212 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage @@ -13808,19 +14192,19 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskSexyMime entities: - - uid: 2205 + - uid: 2213 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckBlueShieldMedal entities: - - uid: 2226 + - uid: 2234 components: - type: Transform - parent: 2225 + parent: 2233 - type: Physics canCollide: False - type: InsideEntityStorage @@ -13835,16 +14219,16 @@ entities: - type: InsideEntityStorage - proto: ClothingNeckGoldAutismPin entities: - - uid: 2228 + - uid: 2236 components: - type: Transform - parent: 2227 + parent: 2235 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckGoldmedal entities: - - uid: 2230 + - uid: 2238 components: - type: MetaData desc: Великая медаль создана на 20 смену техтры, так держать! НТ благодарны что за все 20 смен эта станция не была распилена на части. Удачной вам смены! @@ -13854,58 +14238,112 @@ entities: parent: 2 - proto: ClothingOuterCoatLabChemOpened entities: - - uid: 2232 + - uid: 2240 components: - type: Transform - parent: 2231 + parent: 2239 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2234 + - uid: 2242 components: - type: Transform - parent: 2233 + parent: 2241 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatLabCmoOpened entities: - - uid: 2236 + - uid: 2244 components: - type: Transform - parent: 2235 + parent: 2243 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitEVA entities: - - uid: 2237 + - uid: 2167 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2171 + components: + - type: Transform + parent: 2170 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2245 components: - type: Transform pos: 9.177841,29.456547 parent: 2 + - uid: 5858 + components: + - type: Transform + parent: 5855 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5863 + components: + - type: Transform + parent: 5860 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5866 + components: + - type: Transform + pos: -14.6231,14.571005 + parent: 2 + - uid: 5873 + components: + - type: Transform + parent: 5870 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5882 + components: + - type: Transform + parent: 5881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5899 + components: + - type: Transform + parent: 5896 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHardsuitSecurity entities: - - uid: 2239 + - uid: 2247 components: - type: Transform - parent: 2238 + parent: 2246 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2243 + - uid: 2251 components: - type: Transform - parent: 2242 + parent: 2250 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterMime entities: - - uid: 2206 + - uid: 2214 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage @@ -13968,32 +14406,32 @@ entities: - type: InsideEntityStorage - proto: ComfyChair entities: - - uid: 2246 + - uid: 2254 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,12.5 parent: 2 - - uid: 2247 + - uid: 2255 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 - - uid: 2248 + - uid: 2256 components: - type: Transform pos: 31.5,-0.5 parent: 2 - proto: ComputerAlert entities: - - uid: 2249 + - uid: 2257 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,1.5 parent: 2 - - uid: 2250 + - uid: 2258 components: - type: Transform rot: 3.141592653589793 rad @@ -14001,13 +14439,13 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 2251 + - uid: 2259 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,9.5 parent: 2 - - uid: 2252 + - uid: 2260 components: - type: Transform rot: 1.5707963267948966 rad @@ -14015,7 +14453,7 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 2253 + - uid: 2261 components: - type: Transform rot: 3.141592653589793 rad @@ -14023,7 +14461,7 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: - - uid: 2254 + - uid: 2262 components: - type: Transform rot: 1.5707963267948966 rad @@ -14031,23 +14469,23 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: - - uid: 2255 + - uid: 2263 components: - type: Transform pos: 4.5,27.5 parent: 2 - - uid: 2256 + - uid: 2264 components: - type: Transform pos: -16.5,24.5 parent: 2 - - uid: 2257 + - uid: 2265 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,26.5 parent: 2 - - uid: 2258 + - uid: 2266 components: - type: Transform rot: 1.5707963267948966 rad @@ -14055,13 +14493,13 @@ entities: parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 2259 + - uid: 2267 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,27.5 parent: 2 - - uid: 2260 + - uid: 2268 components: - type: Transform rot: 1.5707963267948966 rad @@ -14069,56 +14507,56 @@ entities: parent: 2 - proto: ComputerCloningConsole entities: - - uid: 2261 + - uid: 2269 components: - type: Transform pos: -44.5,13.5 parent: 2 - proto: ComputerComms entities: - - uid: 2262 + - uid: 2270 components: - type: Transform pos: 0.5,31.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 2263 + - uid: 2271 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 - - uid: 2264 + - uid: 2272 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 2265 + - uid: 2273 components: - type: Transform pos: -37.5,20.5 parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 2266 + - uid: 2274 components: - type: Transform pos: -3.5,27.5 parent: 2 - - uid: 2267 + - uid: 2275 components: - type: Transform pos: 12.5,13.5 parent: 2 - proto: ComputerId entities: - - uid: 2268 + - uid: 2276 components: - type: Transform pos: 1.5,31.5 parent: 2 - - uid: 2269 + - uid: 2277 components: - type: Transform rot: 3.141592653589793 rad @@ -14126,24 +14564,24 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 2270 + - uid: 2278 components: - type: Transform pos: -41.5,14.5 parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 2271 + - uid: 2279 components: - type: Transform pos: 4.5,30.5 parent: 2 - - uid: 2272 + - uid: 2280 components: - type: Transform pos: -12.5,18.5 parent: 2 - - uid: 2273 + - uid: 2281 components: - type: Transform rot: 1.5707963267948966 rad @@ -14151,7 +14589,7 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 2274 + - uid: 2282 components: - type: Transform rot: 1.5707963267948966 rad @@ -14159,12 +14597,12 @@ entities: parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 2275 + - uid: 2283 components: - type: Transform pos: 27.5,18.5 parent: 2 - - uid: 2276 + - uid: 2284 components: - type: Transform rot: 1.5707963267948966 rad @@ -14172,34 +14610,34 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 2277 + - uid: 2285 components: - type: Transform pos: -27.5,28.5 parent: 2 - proto: ComputerShuttleCargo entities: - - uid: 2278 + - uid: 2286 components: - type: Transform pos: -16.5,28.5 parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 2279 + - uid: 2287 components: - type: Transform pos: -23.5,28.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 2280 + - uid: 2288 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,10.5 parent: 2 - - uid: 2281 + - uid: 2289 components: - type: Transform rot: 1.5707963267948966 rad @@ -14207,20 +14645,20 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 2282 + - uid: 2290 components: - type: Transform pos: -0.5,31.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 2283 + - uid: 2291 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,16.5 parent: 2 - - uid: 2284 + - uid: 2292 components: - type: Transform rot: -1.5707963267948966 rad @@ -14228,7 +14666,7 @@ entities: parent: 2 - proto: CrateCommandSecure entities: - - uid: 2285 + - uid: 2293 components: - type: MetaData desc: Ящик в который вмонтирована технология блюспейса, может уместить очень много предметов, Также можно продать за хорошие деньги. @@ -14270,7 +14708,7 @@ entities: price: 10000 - proto: CrateElectrical entities: - - uid: 2286 + - uid: 2294 components: - type: Transform pos: -14.5,25.5 @@ -14320,14 +14758,14 @@ entities: showEnts: False occludes: True ent: null - - uid: 2287 + - uid: 2295 components: - type: Transform pos: -10.5,4.5 parent: 2 - proto: CrateEmptySpawner entities: - - uid: 2288 + - uid: 2296 components: - type: Transform pos: -13.5,25.5 @@ -14351,28 +14789,28 @@ entities: ent: 36 - proto: CrateEngineeringAMEJar entities: - - uid: 2289 + - uid: 2297 components: - type: Transform pos: -8.5,17.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 2290 + - uid: 2298 components: - type: Transform pos: -8.5,18.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 2291 + - uid: 2299 components: - type: Transform pos: -12.5,28.5 parent: 2 - proto: CrateFunLizardPlushieBulk entities: - - uid: 2292 + - uid: 2300 components: - type: Transform pos: 6.5,1.5 @@ -14449,7 +14887,7 @@ entities: showEnts: False occludes: True ent: null - - uid: 2293 + - uid: 2301 components: - type: Transform pos: 20.5,10.5 @@ -14480,7 +14918,7 @@ entities: - 0 - 0 - 0 - - uid: 2294 + - uid: 2302 components: - type: Transform pos: 41.5,22.5 @@ -14517,41 +14955,41 @@ entities: showEnts: False occludes: True ents: - - 2296 - - 2295 + - 2304 + - 2303 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 2297 + - uid: 2305 components: - type: Transform pos: -13.5,28.5 parent: 2 - proto: CrateHydroponicsSeedsExotic entities: - - uid: 2298 + - uid: 2306 components: - type: Transform pos: -14.5,28.5 parent: 2 - proto: CrateNPCHamlet entities: - - uid: 2299 + - uid: 2307 components: - type: Transform pos: -3.5,28.5 parent: 2 - proto: CrateSalvageEquipment entities: - - uid: 2300 + - uid: 2308 components: - type: Transform pos: -23.50446,25.578499 parent: 2 - proto: CrateTrashCartJani entities: - - uid: 2301 + - uid: 2309 components: - type: Transform pos: 20.5,19.5 @@ -14614,7 +15052,7 @@ entities: ent: null - proto: CrewMonitoringServer entities: - - uid: 2302 + - uid: 2310 components: - type: Transform pos: 35.5,12.5 @@ -14624,44 +15062,44 @@ entities: available: False - proto: CriminalRecordsComputerCircuitboard entities: - - uid: 2303 + - uid: 2311 components: - type: Transform pos: 26.599035,3.035328 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 2304 + - uid: 2312 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 2 - - uid: 2305 + - uid: 2313 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 2 - - uid: 2306 + - uid: 2314 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 2 - - uid: 2307 + - uid: 2315 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 2 - - uid: 2308 + - uid: 2316 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - - uid: 2309 + - uid: 2317 components: - type: Transform rot: 3.141592653589793 rad @@ -14669,19 +15107,19 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 2310 + - uid: 2318 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 2 - - uid: 2311 + - uid: 2319 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 2 - - uid: 2312 + - uid: 2320 components: - type: Transform rot: 3.141592653589793 rad @@ -14689,234 +15127,234 @@ entities: parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 2313 + - uid: 2321 components: - type: Transform pos: 43.5,18.5 parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 2314 + - uid: 2322 components: - type: Transform pos: 12.5,19.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 2315 + - uid: 2323 components: - type: Transform pos: 43.5,10.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 2316 + - uid: 2324 components: - type: Transform pos: -37.5,-2.5 parent: 2 - proto: DefaultStationBeaconBotany entities: - - uid: 2317 + - uid: 2325 components: - type: Transform pos: 0.5,16.5 parent: 2 - proto: DefaultStationBeaconBridge entities: - - uid: 2318 + - uid: 2326 components: - type: Transform pos: 1.5,29.5 parent: 2 - proto: DefaultStationBeaconBrig entities: - - uid: 2319 + - uid: 2327 components: - type: Transform pos: 10.5,13.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 2320 + - uid: 2328 components: - type: Transform pos: 6.5,26.5 parent: 2 - proto: DefaultStationBeaconChemistry entities: - - uid: 2321 + - uid: 2329 components: - type: Transform pos: -40.5,19.5 parent: 2 - proto: DefaultStationBeaconCMORoom entities: - - uid: 2322 + - uid: 2330 components: - type: Transform pos: -44.5,12.5 parent: 2 - proto: DefaultStationBeaconCryosleep entities: - - uid: 2323 + - uid: 2331 components: - type: Transform pos: -0.5,0.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: - - uid: 2324 + - uid: 2332 components: - type: Transform pos: 20.5,17.5 parent: 2 - proto: DefaultStationBeaconEngineering entities: - - uid: 2325 + - uid: 2333 components: - type: Transform pos: -29.5,11.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - - uid: 2326 + - uid: 2334 components: - type: Transform pos: 31.5,28.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 2327 + - uid: 2335 components: - type: Transform pos: -33.5,29.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 2328 + - uid: 2336 components: - type: Transform pos: 20.5,17.5 parent: 2 - proto: DefaultStationBeaconKitchen entities: - - uid: 2329 + - uid: 2337 components: - type: Transform pos: 0.5,10.5 parent: 2 - proto: DefaultStationBeaconMedical entities: - - uid: 2330 + - uid: 2338 components: - type: Transform pos: -39.5,12.5 parent: 2 - proto: DefaultStationBeaconPowerBank entities: - - uid: 2331 + - uid: 2339 components: - type: Transform pos: -9.5,15.5 parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 2332 + - uid: 2340 components: - type: Transform pos: -9.5,27.5 parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 2333 + - uid: 2341 components: - type: Transform pos: 35.5,9.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: - - uid: 2334 + - uid: 2342 components: - type: Transform pos: -26.5,27.5 parent: 2 - proto: DefaultStationBeaconScience entities: - - uid: 2335 + - uid: 2343 components: - type: Transform pos: 31.5,16.5 parent: 2 - proto: DefaultStationBeaconSolars entities: - - uid: 2336 + - uid: 2344 components: - type: Transform pos: -19.5,-4.5 parent: 2 - proto: DefaultStationBeaconSupply entities: - - uid: 2337 + - uid: 2345 components: - type: Transform pos: -17.5,27.5 parent: 2 - proto: DefaultStationBeaconTechVault entities: - - uid: 2338 + - uid: 2346 components: - type: Transform pos: -28.5,18.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 2339 + - uid: 2347 components: - type: Transform pos: 21.5,3.5 parent: 2 - proto: DefaultStationBeaconTheater entities: - - uid: 2340 + - uid: 2348 components: - type: Transform pos: -5.5,2.5 parent: 2 - proto: DefaultStationBeaconVault entities: - - uid: 2341 + - uid: 2349 components: - type: Transform pos: 31.5,1.5 parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 2342 + - uid: 2350 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,12.5 parent: 2 - - uid: 2343 + - uid: 2351 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,28.5 parent: 2 - - uid: 2344 + - uid: 2352 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,26.5 parent: 2 - - uid: 2345 + - uid: 2353 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,15.5 parent: 2 - - uid: 2346 + - uid: 2354 components: - type: Transform rot: 3.141592653589793 rad @@ -14924,164 +15362,164 @@ entities: parent: 2 - proto: DiskCase entities: - - uid: 2347 + - uid: 2355 components: - type: Transform pos: 4.7701254,0.76419353 parent: 2 - proto: DisposalBend entities: - - uid: 2348 + - uid: 2356 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,14.5 parent: 2 - - uid: 2349 + - uid: 2357 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 2 - - uid: 2350 + - uid: 2358 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 - - uid: 2351 + - uid: 2359 components: - type: Transform pos: 0.5,30.5 parent: 2 - - uid: 2352 + - uid: 2360 components: - type: Transform pos: 6.5,22.5 parent: 2 - - uid: 2353 + - uid: 2361 components: - type: Transform pos: -8.5,18.5 parent: 2 - - uid: 2354 + - uid: 2362 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,15.5 parent: 2 - - uid: 2355 + - uid: 2363 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 2 - - uid: 2356 + - uid: 2364 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 2 - - uid: 2357 + - uid: 2365 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 parent: 2 - - uid: 2358 + - uid: 2366 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 2 - - uid: 2359 + - uid: 2367 components: - type: Transform pos: -3.5,18.5 parent: 2 - - uid: 2360 + - uid: 2368 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 2 - - uid: 2361 + - uid: 2369 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,22.5 parent: 2 - - uid: 2362 + - uid: 2370 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,18.5 parent: 2 - - uid: 2363 + - uid: 2371 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,5.5 parent: 2 - - uid: 2364 + - uid: 2372 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,5.5 parent: 2 - - uid: 2365 + - uid: 2373 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,15.5 parent: 2 - - uid: 2366 + - uid: 2374 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,15.5 parent: 2 - - uid: 2367 + - uid: 2375 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 - - uid: 2368 + - uid: 2376 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,21.5 parent: 2 - - uid: 2369 + - uid: 2377 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,18.5 parent: 2 - - uid: 2370 + - uid: 2378 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 2371 + - uid: 2379 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,14.5 parent: 2 - - uid: 2372 + - uid: 2380 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,14.5 parent: 2 - - uid: 2373 + - uid: 2381 components: - type: Transform pos: 37.5,22.5 parent: 2 - - uid: 2374 + - uid: 2382 components: - type: Transform rot: 1.5707963267948966 rad @@ -15089,23 +15527,23 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 2375 + - uid: 2383 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 2376 + - uid: 2384 components: - type: Transform pos: -5.5,15.5 parent: 2 - - uid: 2377 + - uid: 2385 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,6.5 parent: 2 - - uid: 2378 + - uid: 2386 components: - type: Transform rot: 1.5707963267948966 rad @@ -15113,1349 +15551,1349 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 2379 + - uid: 2387 components: - type: Transform pos: 0.5,24.5 parent: 2 - - uid: 2380 + - uid: 2388 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,22.5 parent: 2 - - uid: 2381 + - uid: 2389 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,22.5 parent: 2 - - uid: 2382 + - uid: 2390 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,10.5 parent: 2 - - uid: 2383 + - uid: 2391 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,18.5 parent: 2 - - uid: 2384 + - uid: 2392 components: - type: Transform pos: 30.5,22.5 parent: 2 - proto: DisposalPipe entities: - - uid: 2385 + - uid: 2393 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,22.5 parent: 2 - - uid: 2386 + - uid: 2394 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,22.5 parent: 2 - - uid: 2387 + - uid: 2395 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,22.5 parent: 2 - - uid: 2388 + - uid: 2396 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,22.5 parent: 2 - - uid: 2389 + - uid: 2397 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,22.5 parent: 2 - - uid: 2390 + - uid: 2398 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,22.5 parent: 2 - - uid: 2391 + - uid: 2399 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,22.5 parent: 2 - - uid: 2392 + - uid: 2400 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,22.5 parent: 2 - - uid: 2393 + - uid: 2401 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 - - uid: 2394 + - uid: 2402 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,6.5 parent: 2 - - uid: 2395 + - uid: 2403 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,6.5 parent: 2 - - uid: 2396 + - uid: 2404 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,6.5 parent: 2 - - uid: 2397 + - uid: 2405 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 parent: 2 - - uid: 2398 + - uid: 2406 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 - - uid: 2399 + - uid: 2407 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 2 - - uid: 2400 + - uid: 2408 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,6.5 parent: 2 - - uid: 2401 + - uid: 2409 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 2 - - uid: 2402 + - uid: 2410 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,6.5 parent: 2 - - uid: 2403 + - uid: 2411 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 - - uid: 2404 + - uid: 2412 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,21.5 parent: 2 - - uid: 2405 + - uid: 2413 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,17.5 parent: 2 - - uid: 2406 + - uid: 2414 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,18.5 parent: 2 - - uid: 2407 + - uid: 2415 components: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 2408 + - uid: 2416 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 2409 + - uid: 2417 components: - type: Transform pos: 23.5,15.5 parent: 2 - - uid: 2410 + - uid: 2418 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,14.5 parent: 2 - - uid: 2411 + - uid: 2419 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,14.5 parent: 2 - - uid: 2412 + - uid: 2420 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,14.5 parent: 2 - - uid: 2413 + - uid: 2421 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 - - uid: 2414 + - uid: 2422 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,14.5 parent: 2 - - uid: 2415 + - uid: 2423 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,14.5 parent: 2 - - uid: 2416 + - uid: 2424 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,14.5 parent: 2 - - uid: 2417 + - uid: 2425 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 - - uid: 2418 + - uid: 2426 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,14.5 parent: 2 - - uid: 2419 + - uid: 2427 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,14.5 parent: 2 - - uid: 2420 + - uid: 2428 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,14.5 parent: 2 - - uid: 2421 + - uid: 2429 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,14.5 parent: 2 - - uid: 2422 + - uid: 2430 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 - - uid: 2423 + - uid: 2431 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,14.5 parent: 2 - - uid: 2424 + - uid: 2432 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 - - uid: 2425 + - uid: 2433 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,30.5 parent: 2 - - uid: 2426 + - uid: 2434 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,29.5 parent: 2 - - uid: 2427 + - uid: 2435 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,28.5 parent: 2 - - uid: 2428 + - uid: 2436 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,26.5 parent: 2 - - uid: 2429 + - uid: 2437 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,25.5 parent: 2 - - uid: 2430 + - uid: 2438 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 2 - - uid: 2431 + - uid: 2439 components: - type: Transform pos: 6.5,15.5 parent: 2 - - uid: 2432 + - uid: 2440 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 2433 + - uid: 2441 components: - type: Transform pos: 6.5,17.5 parent: 2 - - uid: 2434 + - uid: 2442 components: - type: Transform pos: 6.5,18.5 parent: 2 - - uid: 2435 + - uid: 2443 components: - type: Transform pos: 6.5,19.5 parent: 2 - - uid: 2436 + - uid: 2444 components: - type: Transform pos: 6.5,20.5 parent: 2 - - uid: 2437 + - uid: 2445 components: - type: Transform pos: 6.5,21.5 parent: 2 - - uid: 2438 + - uid: 2446 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,22.5 parent: 2 - - uid: 2439 + - uid: 2447 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,22.5 parent: 2 - - uid: 2440 + - uid: 2448 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 2 - - uid: 2441 + - uid: 2449 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,22.5 parent: 2 - - uid: 2442 + - uid: 2450 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,22.5 parent: 2 - - uid: 2443 + - uid: 2451 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,22.5 parent: 2 - - uid: 2444 + - uid: 2452 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 2 - - uid: 2445 + - uid: 2453 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,22.5 parent: 2 - - uid: 2446 + - uid: 2454 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,22.5 parent: 2 - - uid: 2447 + - uid: 2455 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 2 - - uid: 2448 + - uid: 2456 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 2 - - uid: 2449 + - uid: 2457 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,22.5 parent: 2 - - uid: 2450 + - uid: 2458 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 2 - - uid: 2451 + - uid: 2459 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,22.5 parent: 2 - - uid: 2452 + - uid: 2460 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,22.5 parent: 2 - - uid: 2453 + - uid: 2461 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,22.5 parent: 2 - - uid: 2454 + - uid: 2462 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,22.5 parent: 2 - - uid: 2455 + - uid: 2463 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,22.5 parent: 2 - - uid: 2456 + - uid: 2464 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 - - uid: 2457 + - uid: 2465 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,22.5 parent: 2 - - uid: 2458 + - uid: 2466 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,22.5 parent: 2 - - uid: 2459 + - uid: 2467 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,22.5 parent: 2 - - uid: 2460 + - uid: 2468 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,22.5 parent: 2 - - uid: 2461 + - uid: 2469 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,18.5 parent: 2 - - uid: 2462 + - uid: 2470 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,18.5 parent: 2 - - uid: 2463 + - uid: 2471 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 2464 + - uid: 2472 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 2465 + - uid: 2473 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,15.5 parent: 2 - - uid: 2466 + - uid: 2474 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,15.5 parent: 2 - - uid: 2467 + - uid: 2475 components: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 2468 + - uid: 2476 components: - type: Transform pos: -5.5,13.5 parent: 2 - - uid: 2469 + - uid: 2477 components: - type: Transform pos: -5.5,12.5 parent: 2 - - uid: 2470 + - uid: 2478 components: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 2471 + - uid: 2479 components: - type: Transform pos: -5.5,10.5 parent: 2 - - uid: 2472 + - uid: 2480 components: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 2473 + - uid: 2481 components: - type: Transform pos: -5.5,8.5 parent: 2 - - uid: 2474 + - uid: 2482 components: - type: Transform pos: -5.5,7.5 parent: 2 - - uid: 2475 + - uid: 2483 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,6.5 parent: 2 - - uid: 2476 + - uid: 2484 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 2 - - uid: 2477 + - uid: 2485 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 2 - - uid: 2478 + - uid: 2486 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,6.5 parent: 2 - - uid: 2479 + - uid: 2487 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 2 - - uid: 2480 + - uid: 2488 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 2 - - uid: 2481 + - uid: 2489 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 - - uid: 2482 + - uid: 2490 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 - - uid: 2483 + - uid: 2491 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 2484 + - uid: 2492 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 2485 + - uid: 2493 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 2486 + - uid: 2494 components: - type: Transform pos: 0.5,5.5 parent: 2 - - uid: 2487 + - uid: 2495 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 2 - - uid: 2488 + - uid: 2496 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 - - uid: 2489 + - uid: 2497 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 - - uid: 2490 + - uid: 2498 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 - - uid: 2491 + - uid: 2499 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 2 - - uid: 2492 + - uid: 2500 components: - type: Transform pos: 4.5,12.5 parent: 2 - - uid: 2493 + - uid: 2501 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 2494 + - uid: 2502 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 2 - - uid: 2495 + - uid: 2503 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 2 - - uid: 2496 + - uid: 2504 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 2 - - uid: 2497 + - uid: 2505 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,9.5 parent: 2 - - uid: 2498 + - uid: 2506 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 - - uid: 2499 + - uid: 2507 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,12.5 parent: 2 - - uid: 2500 + - uid: 2508 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,13.5 parent: 2 - - uid: 2501 + - uid: 2509 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,16.5 parent: 2 - - uid: 2502 + - uid: 2510 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,17.5 parent: 2 - - uid: 2503 + - uid: 2511 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,18.5 parent: 2 - - uid: 2504 + - uid: 2512 components: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 2505 + - uid: 2513 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 2506 + - uid: 2514 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 2507 + - uid: 2515 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 2508 + - uid: 2516 components: - type: Transform pos: -18.5,25.5 parent: 2 - - uid: 2509 + - uid: 2517 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 2510 + - uid: 2518 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 2511 + - uid: 2519 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,22.5 parent: 2 - - uid: 2512 + - uid: 2520 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,22.5 parent: 2 - - uid: 2513 + - uid: 2521 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,22.5 parent: 2 - - uid: 2514 + - uid: 2522 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,22.5 parent: 2 - - uid: 2515 + - uid: 2523 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,22.5 parent: 2 - - uid: 2516 + - uid: 2524 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,22.5 parent: 2 - - uid: 2517 + - uid: 2525 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,22.5 parent: 2 - - uid: 2518 + - uid: 2526 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,22.5 parent: 2 - - uid: 2519 + - uid: 2527 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,22.5 parent: 2 - - uid: 2520 + - uid: 2528 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,22.5 parent: 2 - - uid: 2521 + - uid: 2529 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,22.5 parent: 2 - - uid: 2522 + - uid: 2530 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,22.5 parent: 2 - - uid: 2523 + - uid: 2531 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,22.5 parent: 2 - - uid: 2524 + - uid: 2532 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,23.5 parent: 2 - - uid: 2525 + - uid: 2533 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,22.5 parent: 2 - - uid: 2526 + - uid: 2534 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,22.5 parent: 2 - - uid: 2527 + - uid: 2535 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,22.5 parent: 2 - - uid: 2528 + - uid: 2536 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,22.5 parent: 2 - - uid: 2529 + - uid: 2537 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,22.5 parent: 2 - - uid: 2530 + - uid: 2538 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,22.5 parent: 2 - - uid: 2531 + - uid: 2539 components: - type: Transform pos: -32.5,21.5 parent: 2 - - uid: 2532 + - uid: 2540 components: - type: Transform pos: -32.5,20.5 parent: 2 - - uid: 2533 + - uid: 2541 components: - type: Transform pos: -32.5,19.5 parent: 2 - - uid: 2534 + - uid: 2542 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 2535 + - uid: 2543 components: - type: Transform pos: -32.5,16.5 parent: 2 - - uid: 2536 + - uid: 2544 components: - type: Transform pos: -32.5,15.5 parent: 2 - - uid: 2537 + - uid: 2545 components: - type: Transform pos: -32.5,14.5 parent: 2 - - uid: 2538 + - uid: 2546 components: - type: Transform pos: -32.5,13.5 parent: 2 - - uid: 2539 + - uid: 2547 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,18.5 parent: 2 - - uid: 2540 + - uid: 2548 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,18.5 parent: 2 - - uid: 2541 + - uid: 2549 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 2542 + - uid: 2550 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,4.5 parent: 2 - - uid: 2543 + - uid: 2551 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,5.5 parent: 2 - - uid: 2544 + - uid: 2552 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,6.5 parent: 2 - - uid: 2545 + - uid: 2553 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,7.5 parent: 2 - - uid: 2546 + - uid: 2554 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,8.5 parent: 2 - - uid: 2547 + - uid: 2555 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,9.5 parent: 2 - - uid: 2548 + - uid: 2556 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,10.5 parent: 2 - - uid: 2549 + - uid: 2557 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,11.5 parent: 2 - - uid: 2550 + - uid: 2558 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,12.5 parent: 2 - - uid: 2551 + - uid: 2559 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,16.5 parent: 2 - - uid: 2552 + - uid: 2560 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,17.5 parent: 2 - - uid: 2553 + - uid: 2561 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,18.5 parent: 2 - - uid: 2554 + - uid: 2562 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,19.5 parent: 2 - - uid: 2555 + - uid: 2563 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,20.5 parent: 2 - - uid: 2556 + - uid: 2564 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,27.5 parent: 2 - - uid: 2557 + - uid: 2565 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,27.5 parent: 2 - - uid: 2558 + - uid: 2566 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,27.5 parent: 2 - - uid: 2559 + - uid: 2567 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,27.5 parent: 2 - - uid: 2560 + - uid: 2568 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,26.5 parent: 2 - - uid: 2561 + - uid: 2569 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,25.5 parent: 2 - - uid: 2562 + - uid: 2570 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,24.5 parent: 2 - - uid: 2563 + - uid: 2571 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,23.5 parent: 2 - - uid: 2564 + - uid: 2572 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,21.5 parent: 2 - - uid: 2565 + - uid: 2573 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,21.5 parent: 2 - - uid: 2566 + - uid: 2574 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,21.5 parent: 2 - - uid: 2567 + - uid: 2575 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,21.5 parent: 2 - - uid: 2568 + - uid: 2576 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,21.5 parent: 2 - - uid: 2569 + - uid: 2577 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 2570 + - uid: 2578 components: - type: Transform pos: 23.5,19.5 parent: 2 - - uid: 2571 + - uid: 2579 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,18.5 parent: 2 - - uid: 2572 + - uid: 2580 components: - type: Transform pos: 43.5,17.5 parent: 2 - - uid: 2573 + - uid: 2581 components: - type: Transform pos: 43.5,16.5 parent: 2 - - uid: 2574 + - uid: 2582 components: - type: Transform pos: 43.5,15.5 parent: 2 - - uid: 2575 + - uid: 2583 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,14.5 parent: 2 - - uid: 2576 + - uid: 2584 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,14.5 parent: 2 - - uid: 2577 + - uid: 2585 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,14.5 parent: 2 - - uid: 2578 + - uid: 2586 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,14.5 parent: 2 - - uid: 2579 + - uid: 2587 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,14.5 parent: 2 - - uid: 2580 + - uid: 2588 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,15.5 parent: 2 - - uid: 2581 + - uid: 2589 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,16.5 parent: 2 - - uid: 2582 + - uid: 2590 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,17.5 parent: 2 - - uid: 2583 + - uid: 2591 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,18.5 parent: 2 - - uid: 2584 + - uid: 2592 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,19.5 parent: 2 - - uid: 2585 + - uid: 2593 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,20.5 parent: 2 - - uid: 2586 + - uid: 2594 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,21.5 parent: 2 - - uid: 2587 + - uid: 2595 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,22.5 parent: 2 - - uid: 2588 + - uid: 2596 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,22.5 parent: 2 - - uid: 2589 + - uid: 2597 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,22.5 parent: 2 - - uid: 2590 + - uid: 2598 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,22.5 parent: 2 - - uid: 2591 + - uid: 2599 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,22.5 parent: 2 - - uid: 2592 + - uid: 2600 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,22.5 parent: 2 - - uid: 2593 + - uid: 2601 components: - type: Transform pos: -39.5,24.5 parent: 2 - proto: DisposalTrunk entities: - - uid: 2594 + - uid: 2602 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,27.5 parent: 2 - - uid: 2595 + - uid: 2603 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,22.5 parent: 2 - - uid: 2596 + - uid: 2604 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,22.5 parent: 2 - - uid: 2597 + - uid: 2605 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,6.5 parent: 2 - - uid: 2598 + - uid: 2606 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,6.5 parent: 2 - - uid: 2599 + - uid: 2607 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 - - uid: 2600 + - uid: 2608 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 2601 + - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,18.5 parent: 2 - - uid: 2602 + - uid: 2610 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 2 - - uid: 2603 + - uid: 2611 components: - type: Transform pos: 4.5,13.5 parent: 2 - - uid: 2604 + - uid: 2612 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,15.5 parent: 2 - - uid: 2605 + - uid: 2613 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 2606 + - uid: 2614 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 2607 + - uid: 2615 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,3.5 parent: 2 - - uid: 2608 + - uid: 2616 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,14.5 parent: 2 - - uid: 2609 + - uid: 2617 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 - - uid: 2610 + - uid: 2618 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 2 - - uid: 2611 + - uid: 2619 components: - type: Transform rot: -1.5707963267948966 rad @@ -16463,106 +16901,106 @@ entities: parent: 2 - proto: DisposalUnit entities: - - uid: 2612 + - uid: 2620 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 2613 + - uid: 2621 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 2614 + - uid: 2622 components: - type: Transform pos: 4.5,1.5 parent: 2 - - uid: 2615 + - uid: 2623 components: - type: Transform pos: 4.5,13.5 parent: 2 - - uid: 2616 + - uid: 2624 components: - type: Transform pos: -3.5,15.5 parent: 2 - - uid: 2617 + - uid: 2625 components: - type: Transform pos: 10.5,6.5 parent: 2 - - uid: 2618 + - uid: 2626 components: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 2619 + - uid: 2627 components: - type: Transform pos: -34.5,3.5 parent: 2 - - uid: 2620 + - uid: 2628 components: - type: Transform pos: 20.5,22.5 parent: 2 - - uid: 2621 + - uid: 2629 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 2622 + - uid: 2630 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 2623 + - uid: 2631 components: - type: Transform pos: 29.5,14.5 parent: 2 - - uid: 2624 + - uid: 2632 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 2625 + - uid: 2633 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 2626 + - uid: 2634 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 2627 + - uid: 2635 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 2628 + - uid: 2636 components: - type: Transform pos: -38.5,25.5 parent: 2 - proto: DisposalYJunction entities: - - uid: 2629 + - uid: 2637 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 2 - - uid: 2630 + - uid: 2638 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,21.5 parent: 2 - - uid: 2631 + - uid: 2639 components: - type: Transform rot: -1.5707963267948966 rad @@ -16570,12 +17008,12 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 2632 + - uid: 2640 components: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 2633 + - uid: 2641 components: - type: Transform pos: -25.5,9.5 @@ -16603,174 +17041,174 @@ entities: ents: - 10 - 8 - - uid: 2634 + - uid: 2642 components: - type: Transform pos: 35.5,8.5 parent: 2 - - uid: 2635 + - uid: 2643 components: - type: Transform pos: -44.5,11.5 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 2636 + - uid: 2644 components: - type: Transform pos: -9.460055,-3.4719825 parent: 2 - proto: DrinkCafeLatte entities: - - uid: 2637 + - uid: 2645 components: - type: Transform pos: -23.195206,17.487003 parent: 2 - proto: DrinkCanPack entities: - - uid: 2638 + - uid: 2646 components: - type: Transform pos: 26.820454,10.0980425 parent: 2 - proto: DrinkGlass entities: - - uid: 2639 + - uid: 2647 components: - type: Transform pos: -1.0299525,9.490278 parent: 2 - - uid: 2640 + - uid: 2648 components: - type: Transform pos: -9.738642,-3.6929512 parent: 2 - - uid: 2641 + - uid: 2649 components: - type: Transform pos: -0.85807747,9.615278 parent: 2 - - uid: 2642 + - uid: 2650 components: - type: Transform pos: -0.79557747,9.474653 parent: 2 - proto: DrinkIcedTeaGlass entities: - - uid: 2643 + - uid: 2651 components: - type: Transform pos: -45.397423,13.537559 parent: 2 - proto: DrinkJarWhat entities: - - uid: 2644 + - uid: 2652 components: - type: Transform pos: 40.751755,18.50206 parent: 2 - proto: DrinkJuiceAppleCarton entities: - - uid: 2645 + - uid: 2653 components: - type: Transform pos: 1.1955667,17.61889 parent: 2 - proto: DrinkJuiceBananaCarton entities: - - uid: 2646 + - uid: 2654 components: - type: Transform pos: -28.334826,13.13699 parent: 2 - proto: DrinkJuiceCarrotCarton entities: - - uid: 2647 + - uid: 2655 components: - type: Transform pos: -0.042227745,28.645096 parent: 2 - proto: DrinkJuiceLemonCarton entities: - - uid: 2648 + - uid: 2656 components: - type: Transform pos: 27.605883,10.073112 parent: 2 - proto: DrinkJuiceMoffCarton entities: - - uid: 2649 + - uid: 2657 components: - type: Transform pos: 0.5522069,9.598651 parent: 2 - proto: DrinkJuicePineappleCarton entities: - - uid: 2650 + - uid: 2658 components: - type: Transform pos: -3.4231582,-0.33965182 parent: 2 - proto: DrinkJuiceSecCarton entities: - - uid: 2229 + - uid: 2237 components: - type: Transform - parent: 2227 + parent: 2235 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2240 + - uid: 2248 components: - type: Transform - parent: 2238 + parent: 2246 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2244 + - uid: 2252 components: - type: Transform - parent: 2242 + parent: 2250 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkJuiceSyndicateCarton entities: - - uid: 2651 + - uid: 2659 components: - type: Transform pos: 9.709839,0.9225414 parent: 2 - proto: DrinkJuiceTomatoCarton entities: - - uid: 2652 + - uid: 2660 components: - type: Transform pos: -38.25891,14.857136 parent: 2 - - uid: 2653 + - uid: 2661 components: - type: Transform pos: -38.44641,14.857136 parent: 2 - proto: DrinkJuiceWatermelonCarton entities: - - uid: 2654 + - uid: 2662 components: - type: Transform pos: -17.750036,26.084454 parent: 2 - proto: DrinkJuiceWehCarton entities: - - uid: 2655 + - uid: 2663 components: - type: Transform pos: 0.17720687,9.645576 parent: 2 - proto: DrinkManlyDorfGlass entities: - - uid: 2656 + - uid: 2664 components: - type: Transform rot: -1.5707963267948966 rad @@ -16778,286 +17216,286 @@ entities: parent: 2 - proto: DrinkTeapot entities: - - uid: 2657 + - uid: 2665 components: - type: Transform pos: -45.834923,13.553184 parent: 2 - proto: EggySeeds entities: - - uid: 2658 + - uid: 2666 components: - type: Transform pos: 1.4809352,17.656923 parent: 2 - - uid: 2659 + - uid: 2667 components: - type: Transform pos: 1.6215602,17.98539 parent: 2 - proto: ElectrolysisUnitMachineCircuitboard entities: - - uid: 2660 + - uid: 2668 components: - type: Transform pos: 26.587809,-0.05288036 parent: 2 - proto: EmergencyLight entities: - - uid: 2661 + - uid: 2669 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,5.5 parent: 2 - - uid: 2662 + - uid: 2670 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - - uid: 2663 + - uid: 2671 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 2 - - uid: 2664 + - uid: 2672 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,6.5 parent: 2 - - uid: 2665 + - uid: 2673 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 2 - - uid: 2666 + - uid: 2674 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 2 - - uid: 2667 + - uid: 2675 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 2 - - uid: 2668 + - uid: 2676 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 2 - - uid: 2669 + - uid: 2677 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 2670 + - uid: 2678 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,21.5 parent: 2 - - uid: 2671 + - uid: 2679 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,21.5 parent: 2 - - uid: 2672 + - uid: 2680 components: - type: Transform pos: 6.5,23.5 parent: 2 - - uid: 2673 + - uid: 2681 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 2674 + - uid: 2682 components: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 2675 + - uid: 2683 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 2 - - uid: 2676 + - uid: 2684 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,13.5 parent: 2 - - uid: 2677 + - uid: 2685 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,28.5 parent: 2 - - uid: 2678 + - uid: 2686 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,27.5 parent: 2 - - uid: 2679 + - uid: 2687 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,27.5 parent: 2 - - uid: 2680 + - uid: 2688 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,26.5 parent: 2 - - uid: 2681 + - uid: 2689 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,13.5 parent: 2 - - uid: 2682 + - uid: 2690 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,8.5 parent: 2 - - uid: 2683 + - uid: 2691 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,17.5 parent: 2 - - uid: 2684 + - uid: 2692 components: - type: Transform pos: -38.5,14.5 parent: 2 - - uid: 2685 + - uid: 2693 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-2.5 parent: 2 - - uid: 2686 + - uid: 2694 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,26.5 parent: 2 - - uid: 2687 + - uid: 2695 components: - type: Transform pos: -41.5,29.5 parent: 2 - - uid: 2688 + - uid: 2696 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 2689 + - uid: 2697 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,22.5 parent: 2 - - uid: 2690 + - uid: 2698 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 2691 + - uid: 2699 components: - type: Transform pos: 28.5,3.5 parent: 2 - - uid: 2692 + - uid: 2700 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,11.5 parent: 2 - - uid: 2693 + - uid: 2701 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,15.5 parent: 2 - - uid: 2694 + - uid: 2702 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 2 - - uid: 2695 + - uid: 2703 components: - type: Transform pos: 9.5,23.5 parent: 2 - - uid: 2696 + - uid: 2704 components: - type: Transform pos: 21.5,23.5 parent: 2 - - uid: 2697 + - uid: 2705 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,5.5 parent: 2 - - uid: 2698 + - uid: 2706 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,5.5 parent: 2 - - uid: 2699 + - uid: 2707 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,21.5 parent: 2 - - uid: 2700 + - uid: 2708 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,21.5 parent: 2 - - uid: 2701 + - uid: 2709 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,27.5 parent: 2 - - uid: 2702 + - uid: 2710 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,24.5 parent: 2 - - uid: 2703 + - uid: 2711 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,14.5 parent: 2 - - uid: 2704 + - uid: 2712 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,14.5 parent: 2 - - uid: 2705 + - uid: 2713 components: - type: Transform rot: 1.5707963267948966 rad @@ -17078,31 +17516,80 @@ entities: actions: !type:Container ents: - 42 - - uid: 2706 + - uid: 2166 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2172 + components: + - type: Transform + parent: 2170 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2714 components: - type: Transform pos: -23.257706,20.291588 parent: 2 - - uid: 2707 + - uid: 2715 components: - type: Transform pos: -23.42958,20.494925 parent: 2 + - uid: 5859 + components: + - type: Transform + parent: 5855 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5864 + components: + - type: Transform + parent: 5860 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5872 + components: + - type: Transform + parent: 5870 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5883 + components: + - type: Transform + parent: 5881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5898 + components: + - type: Transform + parent: 5896 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Emitter entities: - - uid: 2708 + - uid: 2716 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,18.5 parent: 2 - - uid: 2709 + - uid: 2717 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,18.5 parent: 2 - - uid: 2710 + - uid: 2718 components: - type: Transform rot: -1.5707963267948966 rad @@ -17110,21 +17597,21 @@ entities: parent: 2 - proto: ExosuitFabricator entities: - - uid: 2711 + - uid: 2719 components: - type: Transform pos: 33.5,18.5 parent: 2 - proto: ExosuitFabricatorMachineCircuitboard entities: - - uid: 2712 + - uid: 2720 components: - type: Transform pos: 35.724056,-0.13100536 parent: 2 - proto: ExtinguisherCabinet entities: - - uid: 2713 + - uid: 2721 components: - type: Transform rot: 1.5707963267948966 rad @@ -17132,108 +17619,108 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 2714 + - uid: 2722 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 2 - - uid: 2715 + - uid: 2723 components: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 2716 + - uid: 2724 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 - - uid: 2717 + - uid: 2725 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 2 - - uid: 2718 + - uid: 2726 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 parent: 2 - - uid: 2719 + - uid: 2727 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,10.5 parent: 2 - - uid: 2720 + - uid: 2728 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,15.5 parent: 2 - - uid: 2721 + - uid: 2729 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,6.5 parent: 2 - - uid: 2722 + - uid: 2730 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,2.5 parent: 2 - - uid: 2723 + - uid: 2731 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,30.5 parent: 2 - - uid: 2724 + - uid: 2732 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-3.5 parent: 2 - - uid: 2725 + - uid: 2733 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,4.5 parent: 2 - - uid: 2726 + - uid: 2734 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,21.5 parent: 2 - - uid: 2727 + - uid: 2735 components: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 2728 + - uid: 2736 components: - type: Transform pos: -4.5,20.5 parent: 2 - proto: ExtinguisherCabinetFilledOpen entities: - - uid: 2729 + - uid: 2737 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,20.5 parent: 2 - - uid: 2730 + - uid: 2738 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-3.5 parent: 2 - - uid: 2731 + - uid: 2739 components: - type: Transform rot: 1.5707963267948966 rad @@ -17241,42 +17728,42 @@ entities: parent: 2 - proto: FaxMachineBase entities: - - uid: 2732 + - uid: 2740 components: - type: Transform pos: 4.5,12.5 parent: 2 - type: FaxMachine name: Сервис - - uid: 2733 + - uid: 2741 components: - type: Transform pos: -28.5,12.5 parent: 2 - type: FaxMachine name: Инженерный одел - - uid: 2734 + - uid: 2742 components: - type: Transform pos: 27.5,10.5 parent: 2 - type: FaxMachine name: Научный одел - - uid: 2735 + - uid: 2743 components: - type: Transform pos: -36.5,18.5 parent: 2 - type: FaxMachine name: Медицинский одел - - uid: 2736 + - uid: 2744 components: - type: Transform pos: -17.5,26.5 parent: 2 - type: FaxMachine name: Карго - - uid: 2737 + - uid: 2745 components: - type: Transform pos: 12.5,16.5 @@ -17285,21 +17772,21 @@ entities: name: Бриг - proto: FaxMachineCaptain entities: - - uid: 2738 + - uid: 2746 components: - type: Transform pos: 0.5,28.5 parent: 2 - proto: filingCabinetRandom entities: - - uid: 2739 + - uid: 2747 components: - type: Transform pos: 41.5,19.5 parent: 2 - proto: FireAlarm entities: - - uid: 2740 + - uid: 2748 components: - type: Transform rot: -1.5707963267948966 rad @@ -17307,16 +17794,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2895 - - 2894 - - 2892 - - 2893 - - 3581 - - 3611 - - 2906 - - 2910 + - 2903 + - 2902 + - 2900 + - 2901 + - 3589 + - 3619 + - 2914 + - 2918 - 220 - - uid: 2741 + - uid: 2749 components: - type: Transform rot: 1.5707963267948966 rad @@ -17324,11 +17811,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2854 - - 2851 - - 3584 + - 2862 + - 2859 + - 3592 - 207 - - uid: 2742 + - uid: 2750 components: - type: Transform rot: -1.5707963267948966 rad @@ -17336,40 +17823,40 @@ entities: parent: 2 - type: DeviceList devices: - - 3560 - - 2858 - - 2857 - - 3559 + - 3568 + - 2866 + - 2865 + - 3567 - 184 - 209 - - uid: 2743 + - uid: 2751 components: - type: Transform pos: -21.5,24.5 parent: 2 - type: DeviceList devices: - - 2843 - - 2844 - - 2841 - - 2842 - - 2866 - - 2865 - - 2801 - - 3563 + - 2851 + - 2852 + - 2849 + - 2850 + - 2874 + - 2873 + - 2809 + - 3571 - 198 - - uid: 2744 + - uid: 2752 components: - type: Transform pos: 3.5,4.5 parent: 2 - type: DeviceList devices: - - 2812 - - 3566 - - 3594 + - 2820 + - 3574 + - 3602 - 185 - - uid: 2745 + - uid: 2753 components: - type: Transform rot: 1.5707963267948966 rad @@ -17377,8 +17864,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2818 - - uid: 2746 + - 2826 + - uid: 2754 components: - type: Transform rot: 3.141592653589793 rad @@ -17386,23 +17873,23 @@ entities: parent: 2 - type: DeviceList devices: - - 2821 - - 3551 - - 3598 - - 2820 - - 2819 + - 2829 + - 3559 + - 3606 + - 2828 + - 2827 - 197 - - uid: 2747 + - uid: 2755 components: - type: Transform pos: -6.5,4.5 parent: 2 - type: DeviceList devices: - - 2817 - - 3571 + - 2825 + - 3579 - 195 - - uid: 2748 + - uid: 2756 components: - type: Transform rot: -1.5707963267948966 rad @@ -17410,28 +17897,28 @@ entities: parent: 2 - type: DeviceList devices: - - 2814 - - 2813 - - 3553 - - 2832 - - 2833 - - 2869 - - 2820 + - 2822 + - 2821 + - 3561 + - 2840 + - 2841 + - 2877 + - 2828 - 187 - - uid: 2749 + - uid: 2757 components: - type: Transform pos: -3.5,20.5 parent: 2 - type: DeviceList devices: - - 3568 - - 3597 - - 2836 - - 2821 - - 2837 + - 3576 + - 3605 + - 2844 + - 2829 + - 2845 - 194 - - uid: 2750 + - uid: 2758 components: - type: Transform rot: 1.5707963267948966 rad @@ -17439,16 +17926,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2825 - - 2824 - - 2837 - - 3555 - - 2826 - - 2827 - - 2867 - - 2868 + - 2833 + - 2832 + - 2845 + - 3563 + - 2834 + - 2835 + - 2875 + - 2876 - 192 - - uid: 2751 + - uid: 2759 components: - type: Transform rot: -1.5707963267948966 rad @@ -17456,14 +17943,14 @@ entities: parent: 2 - type: DeviceList devices: - - 3569 - - 2788 - - 3600 - - 2840 - - 2839 + - 3577 + - 2796 + - 3608 + - 2848 + - 2847 - 202 - 203 - - uid: 2752 + - uid: 2760 components: - type: Transform rot: 1.5707963267948966 rad @@ -17471,16 +17958,16 @@ entities: parent: 2 - type: DeviceList devices: + - 2831 + - 2830 + - 2827 - 2823 - - 2822 - - 2819 - - 2815 - - 2816 - - 3552 - - 2818 - - 2817 + - 2824 + - 3560 + - 2826 + - 2825 - 186 - - uid: 2753 + - uid: 2761 components: - type: Transform rot: 3.141592653589793 rad @@ -17488,12 +17975,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2838 - - 2871 - - 2872 - - 3599 + - 2846 + - 2879 + - 2880 + - 3607 - 196 - - uid: 2754 + - uid: 2762 components: - type: Transform rot: 1.5707963267948966 rad @@ -17501,29 +17988,29 @@ entities: parent: 2 - type: DeviceList devices: - - 2793 - - 2794 - - 2799 - - 2798 - - 2903 - - 2800 - - 3582 + - 2801 + - 2802 + - 2807 + - 2806 + - 2911 + - 2808 - 3590 - - 2834 - - 2835 + - 3598 + - 2842 + - 2843 - 189 - - uid: 2755 + - uid: 2763 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 - - uid: 2756 + - uid: 2764 components: - type: Transform pos: -26.5,29.5 parent: 2 - - uid: 2757 + - uid: 2765 components: - type: Transform rot: -1.5707963267948966 rad @@ -17531,29 +18018,29 @@ entities: parent: 2 - type: DeviceList devices: - - 2870 - - 3554 - - 2829 - - 2828 + - 2878 + - 3562 + - 2837 - 2836 - - 2831 - - 2830 + - 2844 + - 2839 + - 2838 - 190 - - uid: 2758 + - uid: 2766 components: - type: Transform pos: 28.5,20.5 parent: 2 - type: DeviceList devices: - - 2904 - - 2905 - - 3606 - - 3580 - - 2891 - - 2890 + - 2912 + - 2913 + - 3614 + - 3588 + - 2899 + - 2898 - 213 - - uid: 2759 + - uid: 2767 components: - type: Transform rot: -1.5707963267948966 rad @@ -17561,14 +18048,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2874 - - 2877 - - 3573 - - 2899 - - 2898 - - 2900 + - 2882 + - 2885 + - 3581 + - 2907 + - 2906 + - 2908 - 212 - - uid: 2760 + - uid: 2768 components: - type: Transform rot: -1.5707963267948966 rad @@ -17576,14 +18063,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2887 - - 2886 - - 2885 - - 3572 - - 2876 - - 2875 + - 2895 + - 2894 + - 2893 + - 3580 + - 2884 + - 2883 - 217 - - uid: 2761 + - uid: 2769 components: - type: Transform rot: 3.141592653589793 rad @@ -17591,13 +18078,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2905 - - 2904 - - 2909 - - 3579 - - 3607 + - 2913 + - 2912 + - 2917 + - 3587 + - 3615 - 214 - - uid: 2762 + - uid: 2770 components: - type: Transform rot: 1.5707963267948966 rad @@ -17606,12 +18093,12 @@ entities: - type: DeviceList devices: - 227 + - 2897 + - 2896 - 2889 - 2888 - - 2881 - - 2880 - - 3575 - - uid: 2763 + - 3583 + - uid: 2771 components: - type: Transform rot: 3.141592653589793 rad @@ -17620,44 +18107,44 @@ entities: - type: DeviceList devices: - 225 - - 3609 - - 2901 - - 2902 - - uid: 2764 + - 3617 + - 2909 + - 2910 + - uid: 2772 components: - type: Transform pos: 34.5,23.5 parent: 2 - type: DeviceList devices: - - 2899 + - 2907 + - 2906 - 2898 - - 2890 - - 2891 - - 2892 - - 2893 - - 2896 - - 2897 + - 2899 + - 2900 + - 2901 + - 2904 + - 2905 - 219 - - uid: 2765 + - uid: 2773 components: - type: Transform pos: -28.5,24.5 parent: 2 - type: DeviceList devices: - - 2841 - - 2842 - - 2861 - - 2862 + - 2849 + - 2850 + - 2869 + - 2870 - 201 - - uid: 2766 + - uid: 2774 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,7.5 parent: 2 - - uid: 2767 + - uid: 2775 components: - type: Transform rot: 1.5707963267948966 rad @@ -17665,15 +18152,15 @@ entities: parent: 2 - type: DeviceList devices: - - 3561 + - 3569 + - 2863 + - 2864 - 2855 + - 2854 - 2856 - - 2847 - - 2846 - - 2848 - - 2845 + - 2853 - 208 - - uid: 2768 + - uid: 2776 components: - type: Transform rot: -1.5707963267948966 rad @@ -17681,14 +18168,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2822 - - 2823 - - 2824 - - 2825 - - 2840 - - 2839 + - 2830 + - 2831 + - 2832 + - 2833 + - 2848 + - 2847 - 193 - - uid: 2769 + - uid: 2777 components: - type: Transform rot: 1.5707963267948966 rad @@ -17696,14 +18183,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2833 - - 2832 - - 2830 - - 2831 - - 2835 - - 2834 + - 2841 + - 2840 + - 2838 + - 2839 + - 2843 + - 2842 - 191 - - uid: 2770 + - uid: 2778 components: - type: Transform rot: 3.141592653589793 rad @@ -17711,12 +18198,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2867 - - 2868 - - 2843 - - 2844 + - 2875 + - 2876 + - 2851 + - 2852 - 202 - - uid: 2771 + - uid: 2779 components: - type: Transform rot: -1.5707963267948966 rad @@ -17724,12 +18211,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2864 - - 3601 - - 3565 - - 2802 + - 2872 + - 3609 + - 3573 + - 2810 - 200 - - uid: 2772 + - uid: 2780 components: - type: Transform rot: -1.5707963267948966 rad @@ -17737,12 +18224,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2853 - - 2852 - - 3570 - - 3602 + - 2861 + - 2860 + - 3578 + - 3610 - 205 - - uid: 2773 + - uid: 2781 components: - type: Transform rot: -1.5707963267948966 rad @@ -17750,14 +18237,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2787 - - 2855 - - 2856 - - 3591 - - 3558 - - 2857 + - 2795 + - 2863 + - 2864 + - 3599 + - 3566 + - 2865 - 210 - - uid: 2774 + - uid: 2782 components: - type: Transform rot: -1.5707963267948966 rad @@ -17765,16 +18252,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2862 - - 2861 - - 2863 - - 2811 - - 2810 - - 2850 - - 2846 - - 2847 + - 2870 + - 2869 + - 2871 + - 2819 + - 2818 + - 2858 + - 2854 + - 2855 - 204 - - uid: 2775 + - uid: 2783 components: - type: Transform rot: 1.5707963267948966 rad @@ -17782,11 +18269,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2860 - - 2859 - - 3556 + - 2868 + - 2867 + - 3564 - 211 - - uid: 2776 + - uid: 2784 components: - type: Transform rot: -1.5707963267948966 rad @@ -17794,11 +18281,11 @@ entities: parent: 2 - type: DeviceList devices: - - 3585 - - 2849 - - 2854 + - 3593 + - 2857 + - 2862 - 206 - - uid: 2777 + - uid: 2785 components: - type: Transform rot: 1.5707963267948966 rad @@ -17806,13 +18293,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2795 - - 2876 - - 2875 - - 2877 - - 2874 + - 2803 + - 2884 + - 2883 + - 2885 + - 2882 - 218 - - uid: 2778 + - uid: 2786 components: - type: Transform rot: -1.5707963267948966 rad @@ -17820,13 +18307,13 @@ entities: parent: 2 - type: DeviceList devices: - - 3574 - - 2878 - - 2879 - - 2896 - - 2897 + - 3582 + - 2886 + - 2887 + - 2904 + - 2905 - 224 - - uid: 2779 + - uid: 2787 components: - type: Transform rot: -1.5707963267948966 rad @@ -17834,13 +18321,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2881 - - 2880 - - 2879 - - 2878 - - 2901 + - 2889 + - 2888 + - 2887 + - 2886 + - 2909 - 223 - - uid: 2780 + - uid: 2788 components: - type: Transform rot: -1.5707963267948966 rad @@ -17848,14 +18335,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2797 - - 2908 - - 2907 - - 2902 - - 3577 - - 2796 + - 2805 + - 2916 + - 2915 + - 2910 + - 3585 + - 2804 - 226 - - uid: 2781 + - uid: 2789 components: - type: Transform rot: 3.141592653589793 rad @@ -17863,13 +18350,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2884 - - 2883 - - 2886 - - 2885 - - 2888 - - 2889 - - uid: 2782 + - 2892 + - 2891 + - 2894 + - 2893 + - 2896 + - 2897 + - uid: 2790 components: - type: Transform rot: 3.141592653589793 rad @@ -17877,18 +18364,18 @@ entities: parent: 2 - type: DeviceList devices: - - 2808 - - 2809 - - 2806 - - 2807 - - 2786 - - 2803 - - 2804 - - 2805 - - 3610 - - 3576 + - 2816 + - 2817 + - 2814 + - 2815 + - 2794 + - 2811 + - 2812 + - 2813 + - 3618 + - 3584 - 216 - - uid: 2783 + - uid: 2791 components: - type: Transform rot: -1.5707963267948966 rad @@ -17896,21 +18383,21 @@ entities: parent: 2 - type: DeviceList devices: - - 2866 - - 2865 - - 2801 - - 3583 - - 3613 + - 2874 + - 2873 + - 2809 + - 3591 + - 3621 - 199 - proto: FireAxeCabinetFilled entities: - - uid: 2784 + - uid: 2792 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 2 - - uid: 2785 + - uid: 2793 components: - type: Transform rot: 1.5707963267948966 rad @@ -17918,7 +18405,7 @@ entities: parent: 2 - proto: FirelockEdge entities: - - uid: 2786 + - uid: 2794 components: - type: Transform rot: -1.5707963267948966 rad @@ -17927,8 +18414,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2787 + - 2790 + - uid: 2795 components: - type: Transform rot: 1.5707963267948966 rad @@ -17936,9 +18423,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2773 + - 2781 - 75 - - uid: 2788 + - uid: 2796 components: - type: Transform rot: -1.5707963267948966 rad @@ -17946,47 +18433,47 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2751 + - 2759 - 73 - - uid: 2789 + - uid: 2797 components: - type: Transform pos: 32.5,-0.5 parent: 2 - - uid: 2790 + - uid: 2798 components: - type: Transform pos: 31.5,-0.5 parent: 2 - - uid: 2791 + - uid: 2799 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 2792 + - uid: 2800 components: - type: Transform pos: 29.5,-0.5 parent: 2 - - uid: 2793 + - uid: 2801 components: - type: Transform pos: 9.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - - uid: 2794 + - uid: 2802 components: - type: Transform pos: 10.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - - uid: 2795 + - uid: 2803 components: - type: Transform rot: -1.5707963267948966 rad @@ -17994,9 +18481,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2777 + - 2785 - 80 - - uid: 2796 + - uid: 2804 components: - type: Transform rot: 1.5707963267948966 rad @@ -18004,9 +18491,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2780 + - 2788 - 59 - - uid: 2797 + - uid: 2805 components: - type: Transform rot: 1.5707963267948966 rad @@ -18014,30 +18501,30 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2780 + - 2788 - 59 - - uid: 2798 + - uid: 2806 components: - type: Transform pos: 13.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - - uid: 2799 + - uid: 2807 components: - type: Transform pos: 12.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -7086.2915 + secondsUntilStateChange: -7960.7246 state: Closing - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - - uid: 2800 + - uid: 2808 components: - type: Transform rot: 1.5707963267948966 rad @@ -18045,9 +18532,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - - uid: 2801 + - uid: 2809 components: - type: Transform rot: 3.141592653589793 rad @@ -18056,10 +18543,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 - - 2783 + - 2751 + - 2791 - 87 - - uid: 2802 + - uid: 2810 components: - type: Transform rot: 3.141592653589793 rad @@ -18068,8 +18555,8 @@ entities: - type: DeviceNetwork deviceLists: - 55 - - 2771 - - uid: 2803 + - 2779 + - uid: 2811 components: - type: Transform rot: -1.5707963267948966 rad @@ -18078,8 +18565,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2804 + - 2790 + - uid: 2812 components: - type: Transform rot: -1.5707963267948966 rad @@ -18088,8 +18575,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2805 + - 2790 + - uid: 2813 components: - type: Transform rot: -1.5707963267948966 rad @@ -18098,8 +18585,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2806 + - 2790 + - uid: 2814 components: - type: Transform rot: 1.5707963267948966 rad @@ -18108,8 +18595,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2807 + - 2790 + - uid: 2815 components: - type: Transform rot: 1.5707963267948966 rad @@ -18118,8 +18605,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2808 + - 2790 + - uid: 2816 components: - type: Transform rot: 1.5707963267948966 rad @@ -18128,8 +18615,8 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 - - uid: 2809 + - 2790 + - uid: 2817 components: - type: Transform rot: 1.5707963267948966 rad @@ -18138,10 +18625,10 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 + - 2790 - proto: FirelockGlass entities: - - uid: 2810 + - uid: 2818 components: - type: Transform rot: 3.141592653589793 rad @@ -18149,9 +18636,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2774 + - 2782 - 64 - - uid: 2811 + - uid: 2819 components: - type: Transform rot: 3.141592653589793 rad @@ -18159,75 +18646,75 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2774 + - 2782 - 64 - - uid: 2812 + - uid: 2820 components: - type: Transform pos: 0.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2744 + - 2752 - 45 - - uid: 2813 + - uid: 2821 components: - type: Transform pos: 4.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - - uid: 2814 + - uid: 2822 components: - type: Transform pos: 4.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - - uid: 2815 + - uid: 2823 components: - type: Transform pos: -3.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - - uid: 2816 + - uid: 2824 components: - type: Transform pos: -3.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - - uid: 2817 + - uid: 2825 components: - type: Transform pos: -5.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2747 + - 2755 - 48 - - 2752 + - 2760 - 71 - - uid: 2818 + - uid: 2826 components: - type: Transform pos: -7.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2745 - - 2752 + - 2753 + - 2760 - 71 - - uid: 2819 + - uid: 2827 components: - type: Transform rot: 1.5707963267948966 rad @@ -18235,11 +18722,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - 49 - - 2746 - - uid: 2820 + - 2754 + - uid: 2828 components: - type: Transform rot: 1.5707963267948966 rad @@ -18247,11 +18734,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - 49 - - 2746 - - uid: 2821 + - 2754 + - uid: 2829 components: - type: Transform rot: 1.5707963267948966 rad @@ -18260,10 +18747,10 @@ entities: - type: DeviceNetwork deviceLists: - 49 - - 2746 - - 2749 + - 2754 + - 2757 - 50 - - uid: 2822 + - uid: 2830 components: - type: Transform rot: -1.5707963267948966 rad @@ -18271,11 +18758,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - - 2768 + - 2776 - 51 - - uid: 2823 + - uid: 2831 components: - type: Transform rot: -1.5707963267948966 rad @@ -18283,11 +18770,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - - 2768 + - 2776 - 51 - - uid: 2824 + - uid: 2832 components: - type: Transform rot: -1.5707963267948966 rad @@ -18295,11 +18782,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - - 2768 + - 2776 - 51 - - uid: 2825 + - uid: 2833 components: - type: Transform rot: -1.5707963267948966 rad @@ -18307,26 +18794,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - - 2768 + - 2776 - 51 - - uid: 2826 + - uid: 2834 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,22.5 parent: 2 - type: Door - secondsUntilStateChange: -12851.651 + secondsUntilStateChange: -13726.085 state: Closing - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - type: Firelock emergencyCloseCooldown: 688.7139198 - - uid: 2827 + - uid: 2835 components: - type: Transform rot: -1.5707963267948966 rad @@ -18334,9 +18821,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - - uid: 2828 + - uid: 2836 components: - type: Transform rot: -1.5707963267948966 rad @@ -18344,9 +18831,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - 76 - - uid: 2829 + - uid: 2837 components: - type: Transform rot: -1.5707963267948966 rad @@ -18354,9 +18841,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - 76 - - uid: 2830 + - uid: 2838 components: - type: Transform rot: -1.5707963267948966 rad @@ -18364,11 +18851,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - 46 - - 2769 + - 2777 - 76 - - uid: 2831 + - uid: 2839 components: - type: Transform rot: -1.5707963267948966 rad @@ -18376,11 +18863,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - 46 - - 2769 + - 2777 - 76 - - uid: 2832 + - uid: 2840 components: - type: Transform rot: -1.5707963267948966 rad @@ -18388,11 +18875,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - 46 - - 2769 - - uid: 2833 + - 2777 + - uid: 2841 components: - type: Transform rot: -1.5707963267948966 rad @@ -18400,11 +18887,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - 46 - - 2769 - - uid: 2834 + - 2777 + - uid: 2842 components: - type: Transform rot: -1.5707963267948966 rad @@ -18413,10 +18900,10 @@ entities: - type: DeviceNetwork deviceLists: - 46 - - 2769 - - 2754 + - 2777 + - 2762 - 63 - - uid: 2835 + - uid: 2843 components: - type: Transform rot: -1.5707963267948966 rad @@ -18425,10 +18912,10 @@ entities: - type: DeviceNetwork deviceLists: - 46 - - 2769 - - 2754 + - 2777 + - 2762 - 63 - - uid: 2836 + - uid: 2844 components: - type: Transform rot: -1.5707963267948966 rad @@ -18436,11 +18923,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2749 - - 50 - 2757 + - 50 + - 2765 - 76 - - uid: 2837 + - uid: 2845 components: - type: Transform rot: -1.5707963267948966 rad @@ -18448,11 +18935,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2749 + - 2757 - 50 - - 2750 + - 2758 - 52 - - uid: 2838 + - uid: 2846 components: - type: Transform rot: -1.5707963267948966 rad @@ -18460,9 +18947,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2753 + - 2761 - 53 - - uid: 2839 + - uid: 2847 components: - type: Transform rot: -1.5707963267948966 rad @@ -18470,11 +18957,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2751 + - 2759 - 73 - - 2768 + - 2776 - 51 - - uid: 2840 + - uid: 2848 components: - type: Transform rot: -1.5707963267948966 rad @@ -18482,11 +18969,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2751 + - 2759 - 73 - - 2768 + - 2776 - 51 - - uid: 2841 + - uid: 2849 components: - type: Transform pos: -23.5,22.5 @@ -18494,10 +18981,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 + - 2751 - 70 - - 2765 - - uid: 2842 + - 2773 + - uid: 2850 components: - type: Transform pos: -23.5,23.5 @@ -18505,10 +18992,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 + - 2751 - 70 - - 2765 - - uid: 2843 + - 2773 + - uid: 2851 components: - type: Transform pos: -14.5,22.5 @@ -18516,10 +19003,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 - - 2770 + - 2751 + - 2778 - 74 - - uid: 2844 + - uid: 2852 components: - type: Transform pos: -14.5,23.5 @@ -18527,10 +19014,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 - - 2770 + - 2751 + - 2778 - 74 - - uid: 2845 + - uid: 2853 components: - type: Transform pos: -32.5,7.5 @@ -18538,8 +19025,8 @@ entities: - type: DeviceNetwork deviceLists: - 77 - - 2767 - - uid: 2846 + - 2775 + - uid: 2854 components: - type: Transform pos: -33.5,16.5 @@ -18547,10 +19034,10 @@ entities: - type: DeviceNetwork deviceLists: - 64 - - 2774 + - 2782 - 77 - - 2767 - - uid: 2847 + - 2775 + - uid: 2855 components: - type: Transform pos: -32.5,16.5 @@ -18558,10 +19045,10 @@ entities: - type: DeviceNetwork deviceLists: - 64 - - 2774 + - 2782 - 77 - - 2767 - - uid: 2848 + - 2775 + - uid: 2856 components: - type: Transform pos: -33.5,7.5 @@ -18569,8 +19056,8 @@ entities: - type: DeviceNetwork deviceLists: - 77 - - 2767 - - uid: 2849 + - 2775 + - uid: 2857 components: - type: Transform rot: 1.5707963267948966 rad @@ -18578,10 +19065,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2776 + - 2784 - 69 - 67 - - uid: 2850 + - uid: 2858 components: - type: Transform rot: 1.5707963267948966 rad @@ -18590,9 +19077,9 @@ entities: - type: DeviceNetwork deviceLists: - 64 - - 2774 + - 2782 - 67 - - uid: 2851 + - uid: 2859 components: - type: Transform rot: 1.5707963267948966 rad @@ -18602,8 +19089,8 @@ entities: deviceLists: - 67 - 66 - - 2741 - - uid: 2852 + - 2749 + - uid: 2860 components: - type: Transform rot: 1.5707963267948966 rad @@ -18611,9 +19098,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2772 + - 2780 - 65 - - uid: 2853 + - uid: 2861 components: - type: Transform rot: 1.5707963267948966 rad @@ -18621,9 +19108,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2772 + - 2780 - 65 - - uid: 2854 + - uid: 2862 components: - type: Transform rot: 1.5707963267948966 rad @@ -18631,11 +19118,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2776 + - 2784 - 69 - 66 - - 2741 - - uid: 2855 + - 2749 + - uid: 2863 components: - type: Transform rot: 1.5707963267948966 rad @@ -18644,10 +19131,10 @@ entities: - type: DeviceNetwork deviceLists: - 77 - - 2767 - - 2773 + - 2775 + - 2781 - 75 - - uid: 2856 + - uid: 2864 components: - type: Transform rot: 1.5707963267948966 rad @@ -18656,10 +19143,10 @@ entities: - type: DeviceNetwork deviceLists: - 77 - - 2767 - - 2773 + - 2775 + - 2781 - 75 - - uid: 2857 + - uid: 2865 components: - type: Transform rot: 1.5707963267948966 rad @@ -18667,11 +19154,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2773 + - 2781 - 75 - 68 - - 2742 - - uid: 2858 + - 2750 + - uid: 2866 components: - type: Transform rot: 1.5707963267948966 rad @@ -18680,8 +19167,8 @@ entities: - type: DeviceNetwork deviceLists: - 68 - - 2742 - - uid: 2859 + - 2750 + - uid: 2867 components: - type: Transform rot: 1.5707963267948966 rad @@ -18689,9 +19176,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2775 + - 2783 - 78 - - uid: 2860 + - uid: 2868 components: - type: Transform rot: 1.5707963267948966 rad @@ -18699,9 +19186,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2775 + - 2783 - 78 - - uid: 2861 + - uid: 2869 components: - type: Transform rot: 1.5707963267948966 rad @@ -18710,10 +19197,10 @@ entities: - type: DeviceNetwork deviceLists: - 70 - - 2765 - - 2774 + - 2773 + - 2782 - 64 - - uid: 2862 + - uid: 2870 components: - type: Transform rot: 1.5707963267948966 rad @@ -18722,10 +19209,10 @@ entities: - type: DeviceNetwork deviceLists: - 70 - - 2765 - - 2774 + - 2773 + - 2782 - 64 - - uid: 2863 + - uid: 2871 components: - type: Transform rot: 1.5707963267948966 rad @@ -18733,9 +19220,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2774 + - 2782 - 64 - - uid: 2864 + - uid: 2872 components: - type: Transform rot: 1.5707963267948966 rad @@ -18744,8 +19231,8 @@ entities: - type: DeviceNetwork deviceLists: - 55 - - 2771 - - uid: 2865 + - 2779 + - uid: 2873 components: - type: Transform rot: 1.5707963267948966 rad @@ -18754,10 +19241,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 - - 2783 + - 2751 + - 2791 - 87 - - uid: 2866 + - uid: 2874 components: - type: Transform rot: 1.5707963267948966 rad @@ -18766,10 +19253,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 - - 2783 + - 2751 + - 2791 - 87 - - uid: 2867 + - uid: 2875 components: - type: Transform rot: 1.5707963267948966 rad @@ -18777,11 +19264,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - - 2770 + - 2778 - 74 - - uid: 2868 + - uid: 2876 components: - type: Transform rot: 1.5707963267948966 rad @@ -18789,11 +19276,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - - 2770 + - 2778 - 74 - - uid: 2869 + - uid: 2877 components: - type: Transform rot: 1.5707963267948966 rad @@ -18801,9 +19288,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - - uid: 2870 + - uid: 2878 components: - type: Transform rot: 1.5707963267948966 rad @@ -18811,9 +19298,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - 76 - - uid: 2871 + - uid: 2879 components: - type: Transform rot: 1.5707963267948966 rad @@ -18821,9 +19308,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2753 + - 2761 - 53 - - uid: 2872 + - uid: 2880 components: - type: Transform rot: 1.5707963267948966 rad @@ -18831,15 +19318,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2753 + - 2761 - 53 - - uid: 2873 + - uid: 2881 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 - - uid: 2874 + - uid: 2882 components: - type: Transform rot: -1.5707963267948966 rad @@ -18848,10 +19335,10 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 - - 2777 + - 2767 + - 2785 - 80 - - uid: 2875 + - uid: 2883 components: - type: Transform rot: -1.5707963267948966 rad @@ -18860,10 +19347,10 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 - - 2777 + - 2768 + - 2785 - 80 - - uid: 2876 + - uid: 2884 components: - type: Transform rot: -1.5707963267948966 rad @@ -18872,10 +19359,10 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 - - 2777 + - 2768 + - 2785 - 80 - - uid: 2877 + - uid: 2885 components: - type: Transform rot: -1.5707963267948966 rad @@ -18884,10 +19371,10 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 - - 2777 + - 2767 + - 2785 - 80 - - uid: 2878 + - uid: 2886 components: - type: Transform rot: -1.5707963267948966 rad @@ -18896,10 +19383,10 @@ entities: - type: DeviceNetwork deviceLists: - 58 - - 2778 + - 2786 - 84 - - 2779 - - uid: 2879 + - 2787 + - uid: 2887 components: - type: Transform rot: -1.5707963267948966 rad @@ -18908,25 +19395,25 @@ entities: - type: DeviceNetwork deviceLists: - 58 - - 2778 + - 2786 - 84 - - 2779 - - uid: 2880 + - 2787 + - uid: 2888 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -6388.598 + secondsUntilStateChange: -7263.0312 state: Closing - type: DeviceNetwork deviceLists: - 84 - - 2779 + - 2787 - 60 - - 2762 - - uid: 2881 + - 2770 + - uid: 2889 components: - type: Transform rot: -1.5707963267948966 rad @@ -18935,16 +19422,16 @@ entities: - type: DeviceNetwork deviceLists: - 84 - - 2779 + - 2787 - 60 - - 2762 - - uid: 2882 + - 2770 + - uid: 2890 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 - - uid: 2883 + - uid: 2891 components: - type: Transform rot: -1.5707963267948966 rad @@ -18952,9 +19439,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2781 + - 2789 - 79 - - uid: 2884 + - uid: 2892 components: - type: Transform rot: -1.5707963267948966 rad @@ -18962,9 +19449,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2781 + - 2789 - 79 - - uid: 2885 + - uid: 2893 components: - type: Transform rot: -1.5707963267948966 rad @@ -18973,10 +19460,10 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 - - 2781 + - 2768 + - 2789 - 79 - - uid: 2886 + - uid: 2894 components: - type: Transform rot: -1.5707963267948966 rad @@ -18985,10 +19472,10 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 - - 2781 + - 2768 + - 2789 - 79 - - uid: 2887 + - uid: 2895 components: - type: Transform rot: -1.5707963267948966 rad @@ -18997,8 +19484,8 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 - - uid: 2888 + - 2768 + - uid: 2896 components: - type: Transform rot: -1.5707963267948966 rad @@ -19007,10 +19494,10 @@ entities: - type: DeviceNetwork deviceLists: - 60 - - 2762 - - 2781 + - 2770 + - 2789 - 79 - - uid: 2889 + - uid: 2897 components: - type: Transform rot: -1.5707963267948966 rad @@ -19019,10 +19506,10 @@ entities: - type: DeviceNetwork deviceLists: - 60 - - 2762 - - 2781 + - 2770 + - 2789 - 79 - - uid: 2890 + - uid: 2898 components: - type: Transform rot: -1.5707963267948966 rad @@ -19030,11 +19517,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2764 + - 2772 - 81 - - 2758 + - 2766 - 86 - - uid: 2891 + - uid: 2899 components: - type: Transform rot: -1.5707963267948966 rad @@ -19042,11 +19529,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2764 + - 2772 - 81 - - 2758 + - 2766 - 86 - - uid: 2892 + - uid: 2900 components: - type: Transform rot: -1.5707963267948966 rad @@ -19054,11 +19541,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2764 + - 2772 - 81 - 82 - - 2740 - - uid: 2893 + - 2748 + - uid: 2901 components: - type: Transform rot: -1.5707963267948966 rad @@ -19066,11 +19553,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2764 + - 2772 - 81 - 82 - - 2740 - - uid: 2894 + - 2748 + - uid: 2902 components: - type: Transform rot: -1.5707963267948966 rad @@ -19079,8 +19566,8 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - 2740 - - uid: 2895 + - 2748 + - uid: 2903 components: - type: Transform rot: -1.5707963267948966 rad @@ -19089,8 +19576,8 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - 2740 - - uid: 2896 + - 2748 + - uid: 2904 components: - type: Transform rot: -1.5707963267948966 rad @@ -19098,11 +19585,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2764 + - 2772 - 81 - 58 - - 2778 - - uid: 2897 + - 2786 + - uid: 2905 components: - type: Transform rot: -1.5707963267948966 rad @@ -19110,11 +19597,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2764 + - 2772 - 81 - 58 - - 2778 - - uid: 2898 + - 2786 + - uid: 2906 components: - type: Transform rot: -1.5707963267948966 rad @@ -19123,10 +19610,10 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 - - 2764 + - 2767 + - 2772 - 81 - - uid: 2899 + - uid: 2907 components: - type: Transform rot: -1.5707963267948966 rad @@ -19135,10 +19622,10 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 - - 2764 + - 2767 + - 2772 - 81 - - uid: 2900 + - uid: 2908 components: - type: Transform rot: -1.5707963267948966 rad @@ -19147,8 +19634,8 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 - - uid: 2901 + - 2767 + - uid: 2909 components: - type: Transform rot: -1.5707963267948966 rad @@ -19157,9 +19644,9 @@ entities: - type: DeviceNetwork deviceLists: - 84 - - 2779 - - 2763 - - uid: 2902 + - 2787 + - 2771 + - uid: 2910 components: - type: Transform rot: -1.5707963267948966 rad @@ -19167,18 +19654,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2780 + - 2788 - 59 - - 2763 - - uid: 2903 + - 2771 + - uid: 2911 components: - type: Transform pos: 13.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2754 - - uid: 2904 + - 2762 + - uid: 2912 components: - type: Transform rot: 1.5707963267948966 rad @@ -19186,11 +19673,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2761 + - 2769 - 85 - - 2758 + - 2766 - 86 - - uid: 2905 + - uid: 2913 components: - type: Transform rot: 1.5707963267948966 rad @@ -19198,11 +19685,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2761 + - 2769 - 85 - - 2758 + - 2766 - 86 - - uid: 2906 + - uid: 2914 components: - type: Transform pos: 28.5,25.5 @@ -19210,8 +19697,8 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - 2740 - - uid: 2907 + - 2748 + - uid: 2915 components: - type: Transform rot: -1.5707963267948966 rad @@ -19219,9 +19706,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2780 + - 2788 - 59 - - uid: 2908 + - uid: 2916 components: - type: Transform rot: -1.5707963267948966 rad @@ -19229,9 +19716,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2780 + - 2788 - 59 - - uid: 2909 + - uid: 2917 components: - type: Transform rot: 3.141592653589793 rad @@ -19239,9 +19726,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2761 + - 2769 - 85 - - uid: 2910 + - uid: 2918 components: - type: Transform rot: -1.5707963267948966 rad @@ -19250,24 +19737,24 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - 2740 + - 2748 - proto: FlippoEngravedLighter entities: - - uid: 2911 + - uid: 2919 components: - type: Transform pos: -0.524003,30.490822 parent: 2 - proto: Floodlight entities: - - uid: 2912 + - uid: 2920 components: - type: Transform pos: -19.480026,-2.4832091 parent: 2 - proto: FloorDrain entities: - - uid: 2913 + - uid: 2921 components: - type: Transform pos: -2.5,13.5 @@ -19285,7 +19772,7 @@ entities: - type: InsideEntityStorage - proto: FoodCakeBirthday entities: - - uid: 2914 + - uid: 2922 components: - type: Transform pos: 7.4958515,2.5820873 @@ -19325,52 +19812,52 @@ entities: - type: InsideEntityStorage - proto: FoodPieBananaCream entities: - - uid: 2915 + - uid: 2923 components: - type: Transform pos: -6.4230986,3.6745133 parent: 2 - - uid: 2916 + - uid: 2924 components: - type: Transform pos: -6.7355986,3.6745133 parent: 2 - - uid: 2917 + - uid: 2925 components: - type: Transform pos: -6.6887236,3.4868178 parent: 2 - proto: FoodShakerPepper entities: - - uid: 2918 + - uid: 2926 components: - type: Transform pos: 1.975472,12.586457 parent: 2 - proto: FoodShakerSalt entities: - - uid: 2919 + - uid: 2927 components: - type: Transform pos: 2.0283093,12.758332 parent: 2 - proto: ForensicScanner entities: - - uid: 2920 + - uid: 2928 components: - type: Transform pos: 11.53411,13.164915 parent: 2 - proto: GarlicSeeds entities: - - uid: 2921 + - uid: 2929 components: - type: Transform pos: 1.4340602,18.501553 parent: 2 - proto: GasMinerNitrogenStation entities: - - uid: 2922 + - uid: 2930 components: - type: Transform rot: -1.5707963267948966 rad @@ -19378,7 +19865,7 @@ entities: parent: 2 - proto: GasMinerOxygenStation entities: - - uid: 2923 + - uid: 2931 components: - type: Transform rot: -1.5707963267948966 rad @@ -19386,7 +19873,7 @@ entities: parent: 2 - proto: GasMixer entities: - - uid: 2924 + - uid: 2932 components: - type: Transform rot: 3.141592653589793 rad @@ -19399,13 +19886,13 @@ entities: color: '#0000FFFF' - proto: GasOutletInjector entities: - - uid: 2925 + - uid: 2933 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,1.5 parent: 2 - - uid: 2926 + - uid: 2934 components: - type: Transform rot: -1.5707963267948966 rad @@ -19413,19 +19900,19 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 2927 + - uid: 2935 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-1.5 parent: 2 - - uid: 2928 + - uid: 2936 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,0.5 parent: 2 - - uid: 2929 + - uid: 2937 components: - type: Transform rot: -1.5707963267948966 rad @@ -19433,13 +19920,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2930 + - uid: 2938 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,10.5 parent: 2 - - uid: 2931 + - uid: 2939 components: - type: Transform rot: 1.5707963267948966 rad @@ -19447,7 +19934,7 @@ entities: parent: 2 - proto: GasPipeBend entities: - - uid: 2932 + - uid: 2940 components: - type: Transform rot: 3.141592653589793 rad @@ -19455,7 +19942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 2933 + - uid: 2941 components: - type: Transform rot: 1.5707963267948966 rad @@ -19463,7 +19950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2934 + - uid: 2942 components: - type: Transform rot: 3.141592653589793 rad @@ -19471,7 +19958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2935 + - uid: 2943 components: - type: Transform rot: 1.5707963267948966 rad @@ -19479,7 +19966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2936 + - uid: 2944 components: - type: Transform rot: -1.5707963267948966 rad @@ -19487,14 +19974,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2937 + - uid: 2945 components: - type: Transform pos: -33.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2938 + - uid: 2946 components: - type: Transform rot: -1.5707963267948966 rad @@ -19502,7 +19989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2939 + - uid: 2947 components: - type: Transform rot: 1.5707963267948966 rad @@ -19510,28 +19997,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2940 + - uid: 2948 components: - type: Transform pos: -24.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2941 + - uid: 2949 components: - type: Transform pos: -25.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2942 + - uid: 2950 components: - type: Transform pos: 6.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2943 + - uid: 2951 components: - type: Transform rot: 1.5707963267948966 rad @@ -19539,14 +20026,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2944 + - uid: 2952 components: - type: Transform pos: 6.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2945 + - uid: 2953 components: - type: Transform rot: -1.5707963267948966 rad @@ -19554,7 +20041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2946 + - uid: 2954 components: - type: Transform rot: 3.141592653589793 rad @@ -19562,14 +20049,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2947 + - uid: 2955 components: - type: Transform pos: -8.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2948 + - uid: 2956 components: - type: Transform rot: -1.5707963267948966 rad @@ -19577,14 +20064,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2949 + - uid: 2957 components: - type: Transform pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2950 + - uid: 2958 components: - type: Transform rot: -1.5707963267948966 rad @@ -19592,7 +20079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2951 + - uid: 2959 components: - type: Transform rot: 3.141592653589793 rad @@ -19600,7 +20087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2952 + - uid: 2960 components: - type: Transform rot: 3.141592653589793 rad @@ -19608,7 +20095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2953 + - uid: 2961 components: - type: Transform rot: 1.5707963267948966 rad @@ -19616,7 +20103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2954 + - uid: 2962 components: - type: Transform rot: 3.141592653589793 rad @@ -19624,7 +20111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2955 + - uid: 2963 components: - type: Transform rot: 3.141592653589793 rad @@ -19632,7 +20119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2956 + - uid: 2964 components: - type: Transform rot: -1.5707963267948966 rad @@ -19640,14 +20127,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2957 + - uid: 2965 components: - type: Transform pos: 37.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2958 + - uid: 2966 components: - type: Transform rot: 1.5707963267948966 rad @@ -19655,14 +20142,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2959 + - uid: 2967 components: - type: Transform pos: 32.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2960 + - uid: 2968 components: - type: Transform rot: 3.141592653589793 rad @@ -19670,14 +20157,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2961 + - uid: 2969 components: - type: Transform pos: 30.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2962 + - uid: 2970 components: - type: Transform rot: -1.5707963267948966 rad @@ -19685,14 +20172,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2963 + - uid: 2971 components: - type: Transform pos: 43.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2964 + - uid: 2972 components: - type: Transform rot: 1.5707963267948966 rad @@ -19700,21 +20187,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2965 + - uid: 2973 components: - type: Transform pos: 35.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2966 + - uid: 2974 components: - type: Transform pos: 38.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2967 + - uid: 2975 components: - type: Transform rot: -1.5707963267948966 rad @@ -19722,7 +20209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2968 + - uid: 2976 components: - type: Transform rot: 3.141592653589793 rad @@ -19730,7 +20217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2969 + - uid: 2977 components: - type: Transform rot: -1.5707963267948966 rad @@ -19738,7 +20225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2970 + - uid: 2978 components: - type: Transform rot: 1.5707963267948966 rad @@ -19746,14 +20233,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2971 + - uid: 2979 components: - type: Transform pos: 30.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2972 + - uid: 2980 components: - type: Transform rot: -1.5707963267948966 rad @@ -19761,7 +20248,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2973 + - uid: 2981 components: - type: Transform rot: 3.141592653589793 rad @@ -19769,21 +20256,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2974 + - uid: 2982 components: - type: Transform pos: 10.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2975 + - uid: 2983 components: - type: Transform pos: 9.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2976 + - uid: 2984 components: - type: Transform rot: 1.5707963267948966 rad @@ -19791,7 +20278,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2977 + - uid: 2985 components: - type: Transform rot: 1.5707963267948966 rad @@ -19799,7 +20286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2978 + - uid: 2986 components: - type: Transform rot: -1.5707963267948966 rad @@ -19807,7 +20294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2979 + - uid: 2987 components: - type: Transform rot: 3.141592653589793 rad @@ -19817,49 +20304,49 @@ entities: color: '#0000FFFF' - proto: GasPipeFourway entities: - - uid: 2980 + - uid: 2988 components: - type: Transform pos: 24.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2981 + - uid: 2989 components: - type: Transform pos: -33.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2982 + - uid: 2990 components: - type: Transform pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2983 + - uid: 2991 components: - type: Transform pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2984 + - uid: 2992 components: - type: Transform pos: -0.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2985 + - uid: 2993 components: - type: Transform pos: 31.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2986 + - uid: 2994 components: - type: Transform pos: 38.5,15.5 @@ -19868,7 +20355,7 @@ entities: color: '#FF0000FF' - proto: GasPipeStraight entities: - - uid: 2987 + - uid: 2995 components: - type: Transform rot: 3.141592653589793 rad @@ -19876,7 +20363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2988 + - uid: 2996 components: - type: Transform rot: 3.141592653589793 rad @@ -19884,7 +20371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2989 + - uid: 2997 components: - type: Transform rot: 3.141592653589793 rad @@ -19892,7 +20379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2990 + - uid: 2998 components: - type: Transform rot: 3.141592653589793 rad @@ -19900,7 +20387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2991 + - uid: 2999 components: - type: Transform rot: 3.141592653589793 rad @@ -19908,7 +20395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2992 + - uid: 3000 components: - type: Transform rot: 3.141592653589793 rad @@ -19916,7 +20403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2993 + - uid: 3001 components: - type: Transform rot: 1.5707963267948966 rad @@ -19924,14 +20411,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2994 + - uid: 3002 components: - type: Transform pos: 7.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2995 + - uid: 3003 components: - type: Transform rot: -1.5707963267948966 rad @@ -19939,7 +20426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2996 + - uid: 3004 components: - type: Transform rot: -1.5707963267948966 rad @@ -19947,7 +20434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2997 + - uid: 3005 components: - type: Transform rot: -1.5707963267948966 rad @@ -19955,7 +20442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2998 + - uid: 3006 components: - type: Transform rot: -1.5707963267948966 rad @@ -19963,7 +20450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2999 + - uid: 3007 components: - type: Transform rot: 3.141592653589793 rad @@ -19971,7 +20458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3000 + - uid: 3008 components: - type: Transform rot: 1.5707963267948966 rad @@ -19979,7 +20466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3001 + - uid: 3009 components: - type: Transform rot: 1.5707963267948966 rad @@ -19987,28 +20474,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3002 + - uid: 3010 components: - type: Transform pos: -36.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3003 + - uid: 3011 components: - type: Transform pos: -36.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3004 + - uid: 3012 components: - type: Transform pos: -36.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3005 + - uid: 3013 components: - type: Transform rot: 1.5707963267948966 rad @@ -20016,7 +20503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3006 + - uid: 3014 components: - type: Transform rot: 1.5707963267948966 rad @@ -20024,7 +20511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3007 + - uid: 3015 components: - type: Transform rot: 3.141592653589793 rad @@ -20032,7 +20519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3008 + - uid: 3016 components: - type: Transform rot: 3.141592653589793 rad @@ -20040,7 +20527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3009 + - uid: 3017 components: - type: Transform rot: 3.141592653589793 rad @@ -20048,7 +20535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3010 + - uid: 3018 components: - type: Transform rot: 1.5707963267948966 rad @@ -20056,7 +20543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3011 + - uid: 3019 components: - type: Transform rot: 1.5707963267948966 rad @@ -20064,7 +20551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3012 + - uid: 3020 components: - type: Transform rot: 1.5707963267948966 rad @@ -20072,7 +20559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3013 + - uid: 3021 components: - type: Transform rot: 3.141592653589793 rad @@ -20080,7 +20567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3014 + - uid: 3022 components: - type: Transform rot: 3.141592653589793 rad @@ -20088,7 +20575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3015 + - uid: 3023 components: - type: Transform rot: 3.141592653589793 rad @@ -20096,7 +20583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3016 + - uid: 3024 components: - type: Transform rot: 3.141592653589793 rad @@ -20104,7 +20591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3017 + - uid: 3025 components: - type: Transform rot: 3.141592653589793 rad @@ -20112,7 +20599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3018 + - uid: 3026 components: - type: Transform rot: 3.141592653589793 rad @@ -20120,7 +20607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3019 + - uid: 3027 components: - type: Transform rot: 3.141592653589793 rad @@ -20128,7 +20615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3020 + - uid: 3028 components: - type: Transform rot: 3.141592653589793 rad @@ -20136,7 +20623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3021 + - uid: 3029 components: - type: Transform rot: 3.141592653589793 rad @@ -20144,7 +20631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3022 + - uid: 3030 components: - type: Transform rot: 3.141592653589793 rad @@ -20152,7 +20639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3023 + - uid: 3031 components: - type: Transform rot: 3.141592653589793 rad @@ -20160,14 +20647,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3024 + - uid: 3032 components: - type: Transform pos: -33.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3025 + - uid: 3033 components: - type: Transform rot: 3.141592653589793 rad @@ -20175,7 +20662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3026 + - uid: 3034 components: - type: Transform rot: 3.141592653589793 rad @@ -20183,7 +20670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3027 + - uid: 3035 components: - type: Transform rot: 3.141592653589793 rad @@ -20191,7 +20678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3028 + - uid: 3036 components: - type: Transform rot: 3.141592653589793 rad @@ -20199,7 +20686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3029 + - uid: 3037 components: - type: Transform rot: 3.141592653589793 rad @@ -20207,7 +20694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3030 + - uid: 3038 components: - type: Transform rot: -1.5707963267948966 rad @@ -20215,7 +20702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3031 + - uid: 3039 components: - type: Transform rot: -1.5707963267948966 rad @@ -20223,7 +20710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3032 + - uid: 3040 components: - type: Transform rot: -1.5707963267948966 rad @@ -20231,7 +20718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3033 + - uid: 3041 components: - type: Transform rot: -1.5707963267948966 rad @@ -20239,7 +20726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3034 + - uid: 3042 components: - type: Transform rot: -1.5707963267948966 rad @@ -20247,7 +20734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3035 + - uid: 3043 components: - type: Transform rot: 3.141592653589793 rad @@ -20255,7 +20742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3036 + - uid: 3044 components: - type: Transform rot: 3.141592653589793 rad @@ -20263,7 +20750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3037 + - uid: 3045 components: - type: Transform rot: 3.141592653589793 rad @@ -20271,7 +20758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3038 + - uid: 3046 components: - type: Transform rot: 3.141592653589793 rad @@ -20279,7 +20766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3039 + - uid: 3047 components: - type: Transform rot: 1.5707963267948966 rad @@ -20287,7 +20774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3040 + - uid: 3048 components: - type: Transform rot: 1.5707963267948966 rad @@ -20295,7 +20782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3041 + - uid: 3049 components: - type: Transform rot: 1.5707963267948966 rad @@ -20303,7 +20790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3042 + - uid: 3050 components: - type: Transform rot: 1.5707963267948966 rad @@ -20311,7 +20798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3043 + - uid: 3051 components: - type: Transform rot: 1.5707963267948966 rad @@ -20319,35 +20806,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3044 + - uid: 3052 components: - type: Transform pos: -24.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3045 + - uid: 3053 components: - type: Transform pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3046 + - uid: 3054 components: - type: Transform pos: -24.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3047 + - uid: 3055 components: - type: Transform pos: -24.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3048 + - uid: 3056 components: - type: Transform rot: 1.5707963267948966 rad @@ -20355,7 +20842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3049 + - uid: 3057 components: - type: Transform rot: 1.5707963267948966 rad @@ -20363,7 +20850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3050 + - uid: 3058 components: - type: Transform rot: 1.5707963267948966 rad @@ -20371,7 +20858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3051 + - uid: 3059 components: - type: Transform rot: 1.5707963267948966 rad @@ -20379,7 +20866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3052 + - uid: 3060 components: - type: Transform rot: 1.5707963267948966 rad @@ -20387,7 +20874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3053 + - uid: 3061 components: - type: Transform rot: 1.5707963267948966 rad @@ -20395,7 +20882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3054 + - uid: 3062 components: - type: Transform rot: 1.5707963267948966 rad @@ -20403,7 +20890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3055 + - uid: 3063 components: - type: Transform rot: 1.5707963267948966 rad @@ -20411,7 +20898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3056 + - uid: 3064 components: - type: Transform rot: 1.5707963267948966 rad @@ -20419,7 +20906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3057 + - uid: 3065 components: - type: Transform rot: 1.5707963267948966 rad @@ -20427,7 +20914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3058 + - uid: 3066 components: - type: Transform rot: 3.141592653589793 rad @@ -20435,7 +20922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3059 + - uid: 3067 components: - type: Transform rot: 3.141592653589793 rad @@ -20443,7 +20930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3060 + - uid: 3068 components: - type: Transform rot: 3.141592653589793 rad @@ -20451,7 +20938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3061 + - uid: 3069 components: - type: Transform rot: -1.5707963267948966 rad @@ -20459,7 +20946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3062 + - uid: 3070 components: - type: Transform rot: -1.5707963267948966 rad @@ -20467,7 +20954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3063 + - uid: 3071 components: - type: Transform rot: -1.5707963267948966 rad @@ -20475,7 +20962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3064 + - uid: 3072 components: - type: Transform rot: -1.5707963267948966 rad @@ -20483,7 +20970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3065 + - uid: 3073 components: - type: Transform rot: -1.5707963267948966 rad @@ -20491,7 +20978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3066 + - uid: 3074 components: - type: Transform rot: -1.5707963267948966 rad @@ -20499,7 +20986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3067 + - uid: 3075 components: - type: Transform rot: -1.5707963267948966 rad @@ -20507,7 +20994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3068 + - uid: 3076 components: - type: Transform rot: -1.5707963267948966 rad @@ -20515,7 +21002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3069 + - uid: 3077 components: - type: Transform rot: -1.5707963267948966 rad @@ -20523,7 +21010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3070 + - uid: 3078 components: - type: Transform rot: -1.5707963267948966 rad @@ -20531,7 +21018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3071 + - uid: 3079 components: - type: Transform rot: -1.5707963267948966 rad @@ -20539,7 +21026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3072 + - uid: 3080 components: - type: Transform rot: -1.5707963267948966 rad @@ -20547,7 +21034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3073 + - uid: 3081 components: - type: Transform rot: -1.5707963267948966 rad @@ -20555,7 +21042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3074 + - uid: 3082 components: - type: Transform rot: -1.5707963267948966 rad @@ -20563,77 +21050,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3075 + - uid: 3083 components: - type: Transform pos: -5.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3076 + - uid: 3084 components: - type: Transform pos: -5.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3077 + - uid: 3085 components: - type: Transform pos: -5.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3078 + - uid: 3086 components: - type: Transform pos: -5.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3079 + - uid: 3087 components: - type: Transform pos: -5.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3080 + - uid: 3088 components: - type: Transform pos: -5.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3081 + - uid: 3089 components: - type: Transform pos: -5.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3082 + - uid: 3090 components: - type: Transform pos: -5.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3083 + - uid: 3091 components: - type: Transform pos: -5.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3084 + - uid: 3092 components: - type: Transform pos: -5.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3085 + - uid: 3093 components: - type: Transform rot: 3.141592653589793 rad @@ -20641,7 +21128,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3086 + - uid: 3094 components: - type: Transform rot: 3.141592653589793 rad @@ -20649,7 +21136,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3087 + - uid: 3095 components: - type: Transform rot: 1.5707963267948966 rad @@ -20657,7 +21144,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3088 + - uid: 3096 components: - type: Transform rot: 1.5707963267948966 rad @@ -20665,7 +21152,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3089 + - uid: 3097 components: - type: Transform rot: 1.5707963267948966 rad @@ -20673,7 +21160,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3090 + - uid: 3098 components: - type: Transform rot: 1.5707963267948966 rad @@ -20681,7 +21168,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3091 + - uid: 3099 components: - type: Transform rot: 1.5707963267948966 rad @@ -20689,7 +21176,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3092 + - uid: 3100 components: - type: Transform rot: 1.5707963267948966 rad @@ -20697,7 +21184,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3093 + - uid: 3101 components: - type: Transform rot: 1.5707963267948966 rad @@ -20705,7 +21192,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3094 + - uid: 3102 components: - type: Transform rot: 1.5707963267948966 rad @@ -20713,7 +21200,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3095 + - uid: 3103 components: - type: Transform rot: 1.5707963267948966 rad @@ -20721,7 +21208,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3096 + - uid: 3104 components: - type: Transform rot: 1.5707963267948966 rad @@ -20729,7 +21216,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3097 + - uid: 3105 components: - type: Transform rot: 3.141592653589793 rad @@ -20737,7 +21224,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3098 + - uid: 3106 components: - type: Transform rot: 3.141592653589793 rad @@ -20745,7 +21232,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3099 + - uid: 3107 components: - type: Transform rot: 3.141592653589793 rad @@ -20753,7 +21240,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3100 + - uid: 3108 components: - type: Transform rot: 3.141592653589793 rad @@ -20761,7 +21248,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3101 + - uid: 3109 components: - type: Transform rot: 3.141592653589793 rad @@ -20769,7 +21256,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3102 + - uid: 3110 components: - type: Transform rot: 3.141592653589793 rad @@ -20777,7 +21264,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3103 + - uid: 3111 components: - type: Transform rot: 3.141592653589793 rad @@ -20785,7 +21272,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3104 + - uid: 3112 components: - type: Transform rot: 3.141592653589793 rad @@ -20793,7 +21280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3105 + - uid: 3113 components: - type: Transform rot: 3.141592653589793 rad @@ -20801,7 +21288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3106 + - uid: 3114 components: - type: Transform rot: 3.141592653589793 rad @@ -20809,7 +21296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3107 + - uid: 3115 components: - type: Transform rot: 3.141592653589793 rad @@ -20817,7 +21304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3108 + - uid: 3116 components: - type: Transform rot: 3.141592653589793 rad @@ -20825,7 +21312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3109 + - uid: 3117 components: - type: Transform rot: -1.5707963267948966 rad @@ -20833,7 +21320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3110 + - uid: 3118 components: - type: Transform rot: -1.5707963267948966 rad @@ -20841,7 +21328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3111 + - uid: 3119 components: - type: Transform rot: -1.5707963267948966 rad @@ -20849,7 +21336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3112 + - uid: 3120 components: - type: Transform rot: -1.5707963267948966 rad @@ -20857,7 +21344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3113 + - uid: 3121 components: - type: Transform rot: -1.5707963267948966 rad @@ -20865,7 +21352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3114 + - uid: 3122 components: - type: Transform rot: -1.5707963267948966 rad @@ -20873,7 +21360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3115 + - uid: 3123 components: - type: Transform rot: -1.5707963267948966 rad @@ -20881,7 +21368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3116 + - uid: 3124 components: - type: Transform rot: -1.5707963267948966 rad @@ -20889,7 +21376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3117 + - uid: 3125 components: - type: Transform rot: -1.5707963267948966 rad @@ -20897,7 +21384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3118 + - uid: 3126 components: - type: Transform rot: -1.5707963267948966 rad @@ -20905,49 +21392,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3119 + - uid: 3127 components: - type: Transform pos: 0.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3120 + - uid: 3128 components: - type: Transform pos: 0.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3121 + - uid: 3129 components: - type: Transform pos: 0.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3122 + - uid: 3130 components: - type: Transform pos: 0.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3123 + - uid: 3131 components: - type: Transform pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3124 + - uid: 3132 components: - type: Transform pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3125 + - uid: 3133 components: - type: Transform rot: 1.5707963267948966 rad @@ -20955,42 +21442,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3126 + - uid: 3134 components: - type: Transform pos: 0.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3127 + - uid: 3135 components: - type: Transform pos: 0.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3128 + - uid: 3136 components: - type: Transform pos: 0.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3129 + - uid: 3137 components: - type: Transform pos: 0.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3130 + - uid: 3138 components: - type: Transform pos: 0.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3131 + - uid: 3139 components: - type: Transform rot: -1.5707963267948966 rad @@ -20998,7 +21485,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3132 + - uid: 3140 components: - type: Transform rot: -1.5707963267948966 rad @@ -21006,7 +21493,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3133 + - uid: 3141 components: - type: Transform rot: -1.5707963267948966 rad @@ -21014,7 +21501,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3134 + - uid: 3142 components: - type: Transform rot: -1.5707963267948966 rad @@ -21022,7 +21509,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3135 + - uid: 3143 components: - type: Transform rot: -1.5707963267948966 rad @@ -21030,7 +21517,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3136 + - uid: 3144 components: - type: Transform rot: 1.5707963267948966 rad @@ -21038,7 +21525,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3137 + - uid: 3145 components: - type: Transform rot: 1.5707963267948966 rad @@ -21046,7 +21533,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3138 + - uid: 3146 components: - type: Transform rot: 1.5707963267948966 rad @@ -21054,7 +21541,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3139 + - uid: 3147 components: - type: Transform rot: -1.5707963267948966 rad @@ -21062,7 +21549,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3140 + - uid: 3148 components: - type: Transform rot: -1.5707963267948966 rad @@ -21070,35 +21557,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3141 + - uid: 3149 components: - type: Transform pos: -8.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3142 + - uid: 3150 components: - type: Transform pos: -27.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3143 + - uid: 3151 components: - type: Transform pos: -27.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3144 + - uid: 3152 components: - type: Transform pos: -27.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3145 + - uid: 3153 components: - type: Transform rot: 1.5707963267948966 rad @@ -21106,7 +21593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3146 + - uid: 3154 components: - type: Transform rot: 1.5707963267948966 rad @@ -21114,7 +21601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3147 + - uid: 3155 components: - type: Transform rot: 1.5707963267948966 rad @@ -21122,7 +21609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3148 + - uid: 3156 components: - type: Transform rot: 1.5707963267948966 rad @@ -21130,7 +21617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3149 + - uid: 3157 components: - type: Transform rot: 3.141592653589793 rad @@ -21138,7 +21625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3150 + - uid: 3158 components: - type: Transform rot: 3.141592653589793 rad @@ -21146,7 +21633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3151 + - uid: 3159 components: - type: Transform rot: 3.141592653589793 rad @@ -21154,7 +21641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3152 + - uid: 3160 components: - type: Transform rot: 3.141592653589793 rad @@ -21162,7 +21649,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3153 + - uid: 3161 components: - type: Transform rot: 3.141592653589793 rad @@ -21170,7 +21657,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3154 + - uid: 3162 components: - type: Transform rot: 3.141592653589793 rad @@ -21178,7 +21665,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3155 + - uid: 3163 components: - type: Transform rot: 3.141592653589793 rad @@ -21186,7 +21673,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3156 + - uid: 3164 components: - type: Transform rot: 3.141592653589793 rad @@ -21194,7 +21681,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3157 + - uid: 3165 components: - type: Transform rot: 3.141592653589793 rad @@ -21202,7 +21689,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3158 + - uid: 3166 components: - type: Transform rot: 3.141592653589793 rad @@ -21210,7 +21697,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3159 + - uid: 3167 components: - type: Transform rot: 3.141592653589793 rad @@ -21218,7 +21705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3160 + - uid: 3168 components: - type: Transform rot: 1.5707963267948966 rad @@ -21226,7 +21713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3161 + - uid: 3169 components: - type: Transform rot: 1.5707963267948966 rad @@ -21234,7 +21721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3162 + - uid: 3170 components: - type: Transform rot: 1.5707963267948966 rad @@ -21242,7 +21729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3163 + - uid: 3171 components: - type: Transform rot: 1.5707963267948966 rad @@ -21250,7 +21737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3164 + - uid: 3172 components: - type: Transform rot: 1.5707963267948966 rad @@ -21258,7 +21745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3165 + - uid: 3173 components: - type: Transform rot: 1.5707963267948966 rad @@ -21266,7 +21753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3166 + - uid: 3174 components: - type: Transform rot: 3.141592653589793 rad @@ -21274,7 +21761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3167 + - uid: 3175 components: - type: Transform rot: 3.141592653589793 rad @@ -21282,7 +21769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3168 + - uid: 3176 components: - type: Transform rot: 1.5707963267948966 rad @@ -21290,7 +21777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3169 + - uid: 3177 components: - type: Transform rot: 1.5707963267948966 rad @@ -21298,7 +21785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3170 + - uid: 3178 components: - type: Transform rot: 1.5707963267948966 rad @@ -21306,7 +21793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3171 + - uid: 3179 components: - type: Transform rot: 1.5707963267948966 rad @@ -21314,7 +21801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3172 + - uid: 3180 components: - type: Transform rot: 1.5707963267948966 rad @@ -21322,7 +21809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3173 + - uid: 3181 components: - type: Transform rot: 1.5707963267948966 rad @@ -21330,7 +21817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3174 + - uid: 3182 components: - type: Transform rot: 1.5707963267948966 rad @@ -21338,7 +21825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3175 + - uid: 3183 components: - type: Transform rot: 1.5707963267948966 rad @@ -21346,7 +21833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3176 + - uid: 3184 components: - type: Transform rot: 1.5707963267948966 rad @@ -21354,7 +21841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3177 + - uid: 3185 components: - type: Transform rot: 1.5707963267948966 rad @@ -21362,7 +21849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3178 + - uid: 3186 components: - type: Transform rot: 1.5707963267948966 rad @@ -21370,7 +21857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3179 + - uid: 3187 components: - type: Transform rot: 1.5707963267948966 rad @@ -21378,7 +21865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3180 + - uid: 3188 components: - type: Transform rot: 1.5707963267948966 rad @@ -21386,7 +21873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3181 + - uid: 3189 components: - type: Transform rot: 1.5707963267948966 rad @@ -21394,7 +21881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3182 + - uid: 3190 components: - type: Transform rot: 1.5707963267948966 rad @@ -21402,7 +21889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3183 + - uid: 3191 components: - type: Transform rot: 1.5707963267948966 rad @@ -21410,7 +21897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3184 + - uid: 3192 components: - type: Transform rot: 1.5707963267948966 rad @@ -21418,7 +21905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3185 + - uid: 3193 components: - type: Transform rot: 1.5707963267948966 rad @@ -21426,7 +21913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3186 + - uid: 3194 components: - type: Transform rot: 1.5707963267948966 rad @@ -21434,7 +21921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3187 + - uid: 3195 components: - type: Transform rot: 3.141592653589793 rad @@ -21442,7 +21929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3188 + - uid: 3196 components: - type: Transform rot: 3.141592653589793 rad @@ -21450,7 +21937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3189 + - uid: 3197 components: - type: Transform rot: 3.141592653589793 rad @@ -21458,7 +21945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3190 + - uid: 3198 components: - type: Transform rot: 3.141592653589793 rad @@ -21466,7 +21953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3191 + - uid: 3199 components: - type: Transform rot: 1.5707963267948966 rad @@ -21474,7 +21961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3192 + - uid: 3200 components: - type: Transform rot: 1.5707963267948966 rad @@ -21482,7 +21969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3193 + - uid: 3201 components: - type: Transform rot: 1.5707963267948966 rad @@ -21490,7 +21977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3194 + - uid: 3202 components: - type: Transform rot: 1.5707963267948966 rad @@ -21498,7 +21985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3195 + - uid: 3203 components: - type: Transform rot: 1.5707963267948966 rad @@ -21506,7 +21993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3196 + - uid: 3204 components: - type: Transform rot: 1.5707963267948966 rad @@ -21514,7 +22001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3197 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad @@ -21522,7 +22009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3198 + - uid: 3206 components: - type: Transform rot: 1.5707963267948966 rad @@ -21530,28 +22017,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3199 + - uid: 3207 components: - type: Transform pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3200 + - uid: 3208 components: - type: Transform pos: 7.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3201 + - uid: 3209 components: - type: Transform pos: 7.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3202 + - uid: 3210 components: - type: Transform rot: -1.5707963267948966 rad @@ -21559,7 +22046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3203 + - uid: 3211 components: - type: Transform rot: -1.5707963267948966 rad @@ -21567,7 +22054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3204 + - uid: 3212 components: - type: Transform rot: -1.5707963267948966 rad @@ -21575,7 +22062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3205 + - uid: 3213 components: - type: Transform rot: -1.5707963267948966 rad @@ -21583,7 +22070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3206 + - uid: 3214 components: - type: Transform rot: 3.141592653589793 rad @@ -21591,7 +22078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3207 + - uid: 3215 components: - type: Transform rot: 3.141592653589793 rad @@ -21599,7 +22086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3208 + - uid: 3216 components: - type: Transform rot: 3.141592653589793 rad @@ -21607,7 +22094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3209 + - uid: 3217 components: - type: Transform rot: 3.141592653589793 rad @@ -21615,7 +22102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3210 + - uid: 3218 components: - type: Transform rot: -1.5707963267948966 rad @@ -21623,7 +22110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3211 + - uid: 3219 components: - type: Transform rot: -1.5707963267948966 rad @@ -21631,7 +22118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3212 + - uid: 3220 components: - type: Transform rot: -1.5707963267948966 rad @@ -21639,7 +22126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3213 + - uid: 3221 components: - type: Transform rot: 3.141592653589793 rad @@ -21647,7 +22134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3214 + - uid: 3222 components: - type: Transform rot: 3.141592653589793 rad @@ -21655,7 +22142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3215 + - uid: 3223 components: - type: Transform rot: 3.141592653589793 rad @@ -21663,7 +22150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3216 + - uid: 3224 components: - type: Transform rot: -1.5707963267948966 rad @@ -21671,7 +22158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3217 + - uid: 3225 components: - type: Transform rot: -1.5707963267948966 rad @@ -21679,7 +22166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3218 + - uid: 3226 components: - type: Transform rot: -1.5707963267948966 rad @@ -21687,7 +22174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3219 + - uid: 3227 components: - type: Transform rot: -1.5707963267948966 rad @@ -21695,7 +22182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3220 + - uid: 3228 components: - type: Transform rot: -1.5707963267948966 rad @@ -21703,7 +22190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3221 + - uid: 3229 components: - type: Transform rot: -1.5707963267948966 rad @@ -21711,7 +22198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3222 + - uid: 3230 components: - type: Transform rot: -1.5707963267948966 rad @@ -21719,7 +22206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3223 + - uid: 3231 components: - type: Transform rot: -1.5707963267948966 rad @@ -21727,7 +22214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3224 + - uid: 3232 components: - type: Transform rot: -1.5707963267948966 rad @@ -21735,7 +22222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3225 + - uid: 3233 components: - type: Transform rot: -1.5707963267948966 rad @@ -21743,7 +22230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3226 + - uid: 3234 components: - type: Transform rot: -1.5707963267948966 rad @@ -21751,7 +22238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3227 + - uid: 3235 components: - type: Transform rot: -1.5707963267948966 rad @@ -21759,28 +22246,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3228 + - uid: 3236 components: - type: Transform pos: -0.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3229 + - uid: 3237 components: - type: Transform pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3230 + - uid: 3238 components: - type: Transform pos: -0.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3231 + - uid: 3239 components: - type: Transform rot: 3.141592653589793 rad @@ -21788,7 +22275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3232 + - uid: 3240 components: - type: Transform rot: 3.141592653589793 rad @@ -21796,7 +22283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3233 + - uid: 3241 components: - type: Transform rot: 3.141592653589793 rad @@ -21804,7 +22291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3234 + - uid: 3242 components: - type: Transform rot: 3.141592653589793 rad @@ -21812,7 +22299,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3235 + - uid: 3243 components: - type: Transform rot: 3.141592653589793 rad @@ -21820,7 +22307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3236 + - uid: 3244 components: - type: Transform rot: 3.141592653589793 rad @@ -21828,7 +22315,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3237 + - uid: 3245 components: - type: Transform rot: 3.141592653589793 rad @@ -21836,7 +22323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3238 + - uid: 3246 components: - type: Transform rot: 3.141592653589793 rad @@ -21844,7 +22331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3239 + - uid: 3247 components: - type: Transform rot: 3.141592653589793 rad @@ -21852,7 +22339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3240 + - uid: 3248 components: - type: Transform rot: 3.141592653589793 rad @@ -21860,7 +22347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3241 + - uid: 3249 components: - type: Transform rot: 3.141592653589793 rad @@ -21868,7 +22355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3242 + - uid: 3250 components: - type: Transform rot: 3.141592653589793 rad @@ -21876,7 +22363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3243 + - uid: 3251 components: - type: Transform rot: 3.141592653589793 rad @@ -21884,7 +22371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3244 + - uid: 3252 components: - type: Transform rot: 3.141592653589793 rad @@ -21892,7 +22379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3245 + - uid: 3253 components: - type: Transform rot: 3.141592653589793 rad @@ -21900,14 +22387,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3246 + - uid: 3254 components: - type: Transform pos: -9.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3247 + - uid: 3255 components: - type: Transform rot: 1.5707963267948966 rad @@ -21915,7 +22402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3248 + - uid: 3256 components: - type: Transform rot: 1.5707963267948966 rad @@ -21923,7 +22410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3249 + - uid: 3257 components: - type: Transform rot: 1.5707963267948966 rad @@ -21931,7 +22418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3250 + - uid: 3258 components: - type: Transform rot: -1.5707963267948966 rad @@ -21939,7 +22426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3251 + - uid: 3259 components: - type: Transform rot: -1.5707963267948966 rad @@ -21947,7 +22434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3252 + - uid: 3260 components: - type: Transform rot: -1.5707963267948966 rad @@ -21955,7 +22442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3253 + - uid: 3261 components: - type: Transform rot: -1.5707963267948966 rad @@ -21963,7 +22450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3254 + - uid: 3262 components: - type: Transform rot: -1.5707963267948966 rad @@ -21971,7 +22458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3255 + - uid: 3263 components: - type: Transform rot: -1.5707963267948966 rad @@ -21979,7 +22466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3256 + - uid: 3264 components: - type: Transform rot: -1.5707963267948966 rad @@ -21987,7 +22474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3257 + - uid: 3265 components: - type: Transform rot: -1.5707963267948966 rad @@ -21995,7 +22482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3258 + - uid: 3266 components: - type: Transform rot: -1.5707963267948966 rad @@ -22003,7 +22490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3259 + - uid: 3267 components: - type: Transform rot: 3.141592653589793 rad @@ -22011,7 +22498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3260 + - uid: 3268 components: - type: Transform rot: -1.5707963267948966 rad @@ -22019,7 +22506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3261 + - uid: 3269 components: - type: Transform rot: 3.141592653589793 rad @@ -22027,7 +22514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3262 + - uid: 3270 components: - type: Transform rot: 3.141592653589793 rad @@ -22035,7 +22522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3263 + - uid: 3271 components: - type: Transform rot: 1.5707963267948966 rad @@ -22043,7 +22530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3264 + - uid: 3272 components: - type: Transform rot: 1.5707963267948966 rad @@ -22051,7 +22538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3265 + - uid: 3273 components: - type: Transform rot: 1.5707963267948966 rad @@ -22059,7 +22546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3266 + - uid: 3274 components: - type: Transform rot: 1.5707963267948966 rad @@ -22067,7 +22554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3267 + - uid: 3275 components: - type: Transform rot: 1.5707963267948966 rad @@ -22075,7 +22562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3268 + - uid: 3276 components: - type: Transform rot: 1.5707963267948966 rad @@ -22083,7 +22570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3269 + - uid: 3277 components: - type: Transform rot: 1.5707963267948966 rad @@ -22091,7 +22578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3270 + - uid: 3278 components: - type: Transform rot: 1.5707963267948966 rad @@ -22099,7 +22586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3271 + - uid: 3279 components: - type: Transform rot: 1.5707963267948966 rad @@ -22107,7 +22594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3272 + - uid: 3280 components: - type: Transform rot: 1.5707963267948966 rad @@ -22115,7 +22602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3273 + - uid: 3281 components: - type: Transform rot: 1.5707963267948966 rad @@ -22123,7 +22610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3274 + - uid: 3282 components: - type: Transform rot: 1.5707963267948966 rad @@ -22131,7 +22618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3275 + - uid: 3283 components: - type: Transform rot: 1.5707963267948966 rad @@ -22139,7 +22626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3276 + - uid: 3284 components: - type: Transform rot: 1.5707963267948966 rad @@ -22147,7 +22634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3277 + - uid: 3285 components: - type: Transform rot: 1.5707963267948966 rad @@ -22155,7 +22642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3278 + - uid: 3286 components: - type: Transform rot: 1.5707963267948966 rad @@ -22163,7 +22650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3279 + - uid: 3287 components: - type: Transform rot: 1.5707963267948966 rad @@ -22171,7 +22658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3280 + - uid: 3288 components: - type: Transform rot: 1.5707963267948966 rad @@ -22179,7 +22666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3281 + - uid: 3289 components: - type: Transform rot: 1.5707963267948966 rad @@ -22187,7 +22674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3282 + - uid: 3290 components: - type: Transform rot: 1.5707963267948966 rad @@ -22195,7 +22682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3283 + - uid: 3291 components: - type: Transform rot: 1.5707963267948966 rad @@ -22203,7 +22690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3284 + - uid: 3292 components: - type: Transform rot: 1.5707963267948966 rad @@ -22211,7 +22698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3285 + - uid: 3293 components: - type: Transform rot: 1.5707963267948966 rad @@ -22219,7 +22706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3286 + - uid: 3294 components: - type: Transform rot: 1.5707963267948966 rad @@ -22227,7 +22714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3287 + - uid: 3295 components: - type: Transform rot: 1.5707963267948966 rad @@ -22235,7 +22722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3288 + - uid: 3296 components: - type: Transform rot: 1.5707963267948966 rad @@ -22243,7 +22730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3289 + - uid: 3297 components: - type: Transform rot: 1.5707963267948966 rad @@ -22251,7 +22738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3290 + - uid: 3298 components: - type: Transform rot: 1.5707963267948966 rad @@ -22259,7 +22746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3291 + - uid: 3299 components: - type: Transform rot: 1.5707963267948966 rad @@ -22267,7 +22754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3292 + - uid: 3300 components: - type: Transform rot: 1.5707963267948966 rad @@ -22275,7 +22762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3293 + - uid: 3301 components: - type: Transform rot: 1.5707963267948966 rad @@ -22283,7 +22770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3294 + - uid: 3302 components: - type: Transform rot: 1.5707963267948966 rad @@ -22291,7 +22778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3295 + - uid: 3303 components: - type: Transform rot: 1.5707963267948966 rad @@ -22299,7 +22786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3296 + - uid: 3304 components: - type: Transform rot: 1.5707963267948966 rad @@ -22307,7 +22794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3297 + - uid: 3305 components: - type: Transform rot: 1.5707963267948966 rad @@ -22315,7 +22802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3298 + - uid: 3306 components: - type: Transform rot: 1.5707963267948966 rad @@ -22323,7 +22810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3299 + - uid: 3307 components: - type: Transform rot: 1.5707963267948966 rad @@ -22331,7 +22818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3300 + - uid: 3308 components: - type: Transform rot: 1.5707963267948966 rad @@ -22339,7 +22826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3301 + - uid: 3309 components: - type: Transform rot: 1.5707963267948966 rad @@ -22347,7 +22834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3302 + - uid: 3310 components: - type: Transform rot: 1.5707963267948966 rad @@ -22355,7 +22842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3303 + - uid: 3311 components: - type: Transform rot: 1.5707963267948966 rad @@ -22363,7 +22850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3304 + - uid: 3312 components: - type: Transform rot: 1.5707963267948966 rad @@ -22371,7 +22858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3305 + - uid: 3313 components: - type: Transform rot: 3.141592653589793 rad @@ -22379,7 +22866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3306 + - uid: 3314 components: - type: Transform rot: 3.141592653589793 rad @@ -22387,7 +22874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3307 + - uid: 3315 components: - type: Transform rot: 3.141592653589793 rad @@ -22395,7 +22882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3308 + - uid: 3316 components: - type: Transform rot: 3.141592653589793 rad @@ -22403,7 +22890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3309 + - uid: 3317 components: - type: Transform rot: 3.141592653589793 rad @@ -22411,7 +22898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3310 + - uid: 3318 components: - type: Transform rot: 3.141592653589793 rad @@ -22419,7 +22906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3311 + - uid: 3319 components: - type: Transform rot: 3.141592653589793 rad @@ -22427,7 +22914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3312 + - uid: 3320 components: - type: Transform rot: 3.141592653589793 rad @@ -22435,7 +22922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3313 + - uid: 3321 components: - type: Transform rot: 3.141592653589793 rad @@ -22443,7 +22930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3314 + - uid: 3322 components: - type: Transform rot: 3.141592653589793 rad @@ -22451,7 +22938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3315 + - uid: 3323 components: - type: Transform rot: 3.141592653589793 rad @@ -22459,7 +22946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3316 + - uid: 3324 components: - type: Transform rot: -1.5707963267948966 rad @@ -22467,7 +22954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3317 + - uid: 3325 components: - type: Transform rot: -1.5707963267948966 rad @@ -22475,7 +22962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3318 + - uid: 3326 components: - type: Transform rot: -1.5707963267948966 rad @@ -22483,7 +22970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3319 + - uid: 3327 components: - type: Transform rot: -1.5707963267948966 rad @@ -22491,7 +22978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3320 + - uid: 3328 components: - type: Transform rot: -1.5707963267948966 rad @@ -22499,7 +22986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3321 + - uid: 3329 components: - type: Transform rot: -1.5707963267948966 rad @@ -22507,7 +22994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3322 + - uid: 3330 components: - type: Transform rot: -1.5707963267948966 rad @@ -22515,7 +23002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3323 + - uid: 3331 components: - type: Transform rot: -1.5707963267948966 rad @@ -22523,7 +23010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3324 + - uid: 3332 components: - type: Transform rot: -1.5707963267948966 rad @@ -22531,7 +23018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3325 + - uid: 3333 components: - type: Transform rot: -1.5707963267948966 rad @@ -22539,119 +23026,119 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3326 + - uid: 3334 components: - type: Transform pos: 24.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3327 + - uid: 3335 components: - type: Transform pos: 24.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3328 + - uid: 3336 components: - type: Transform pos: 24.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3329 + - uid: 3337 components: - type: Transform pos: 24.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3330 + - uid: 3338 components: - type: Transform pos: 24.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3331 + - uid: 3339 components: - type: Transform pos: 24.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3332 + - uid: 3340 components: - type: Transform pos: 24.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3333 + - uid: 3341 components: - type: Transform pos: 24.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3334 + - uid: 3342 components: - type: Transform pos: 24.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3335 + - uid: 3343 components: - type: Transform pos: 24.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3336 + - uid: 3344 components: - type: Transform pos: 24.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3337 + - uid: 3345 components: - type: Transform pos: 24.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3338 + - uid: 3346 components: - type: Transform pos: 31.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3339 + - uid: 3347 components: - type: Transform pos: 31.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3340 + - uid: 3348 components: - type: Transform pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3341 + - uid: 3349 components: - type: Transform pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3342 + - uid: 3350 components: - type: Transform rot: 3.141592653589793 rad @@ -22659,7 +23146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3343 + - uid: 3351 components: - type: Transform rot: 3.141592653589793 rad @@ -22667,7 +23154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3344 + - uid: 3352 components: - type: Transform rot: 3.141592653589793 rad @@ -22675,7 +23162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3345 + - uid: 3353 components: - type: Transform rot: 1.5707963267948966 rad @@ -22683,7 +23170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3346 + - uid: 3354 components: - type: Transform rot: 1.5707963267948966 rad @@ -22691,7 +23178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3347 + - uid: 3355 components: - type: Transform rot: -1.5707963267948966 rad @@ -22699,7 +23186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3348 + - uid: 3356 components: - type: Transform rot: 3.141592653589793 rad @@ -22707,7 +23194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3349 + - uid: 3357 components: - type: Transform rot: 3.141592653589793 rad @@ -22715,7 +23202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3350 + - uid: 3358 components: - type: Transform rot: 3.141592653589793 rad @@ -22723,7 +23210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3351 + - uid: 3359 components: - type: Transform rot: 3.141592653589793 rad @@ -22731,7 +23218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3352 + - uid: 3360 components: - type: Transform rot: 3.141592653589793 rad @@ -22739,7 +23226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3353 + - uid: 3361 components: - type: Transform rot: -1.5707963267948966 rad @@ -22747,7 +23234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3354 + - uid: 3362 components: - type: Transform rot: 3.141592653589793 rad @@ -22755,7 +23242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3355 + - uid: 3363 components: - type: Transform rot: 3.141592653589793 rad @@ -22763,7 +23250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3356 + - uid: 3364 components: - type: Transform rot: 3.141592653589793 rad @@ -22771,42 +23258,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3357 + - uid: 3365 components: - type: Transform pos: 30.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3358 + - uid: 3366 components: - type: Transform pos: 30.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3359 + - uid: 3367 components: - type: Transform pos: 30.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3360 + - uid: 3368 components: - type: Transform pos: 30.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3361 + - uid: 3369 components: - type: Transform pos: 30.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3362 + - uid: 3370 components: - type: Transform rot: 1.5707963267948966 rad @@ -22814,7 +23301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3363 + - uid: 3371 components: - type: Transform rot: 1.5707963267948966 rad @@ -22822,7 +23309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3364 + - uid: 3372 components: - type: Transform rot: 1.5707963267948966 rad @@ -22830,7 +23317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3365 + - uid: 3373 components: - type: Transform rot: 1.5707963267948966 rad @@ -22838,7 +23325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3366 + - uid: 3374 components: - type: Transform rot: 1.5707963267948966 rad @@ -22846,28 +23333,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3367 + - uid: 3375 components: - type: Transform pos: 43.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3368 + - uid: 3376 components: - type: Transform pos: 43.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3369 + - uid: 3377 components: - type: Transform pos: 43.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3370 + - uid: 3378 components: - type: Transform rot: -1.5707963267948966 rad @@ -22875,7 +23362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3371 + - uid: 3379 components: - type: Transform rot: -1.5707963267948966 rad @@ -22883,7 +23370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3372 + - uid: 3380 components: - type: Transform rot: -1.5707963267948966 rad @@ -22891,7 +23378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3373 + - uid: 3381 components: - type: Transform rot: -1.5707963267948966 rad @@ -22899,7 +23386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3374 + - uid: 3382 components: - type: Transform rot: -1.5707963267948966 rad @@ -22907,7 +23394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3375 + - uid: 3383 components: - type: Transform rot: -1.5707963267948966 rad @@ -22915,7 +23402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3376 + - uid: 3384 components: - type: Transform rot: -1.5707963267948966 rad @@ -22923,7 +23410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3377 + - uid: 3385 components: - type: Transform rot: 3.141592653589793 rad @@ -22931,7 +23418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3378 + - uid: 3386 components: - type: Transform rot: 3.141592653589793 rad @@ -22939,7 +23426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3379 + - uid: 3387 components: - type: Transform rot: 3.141592653589793 rad @@ -22947,7 +23434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3380 + - uid: 3388 components: - type: Transform rot: 3.141592653589793 rad @@ -22955,7 +23442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3381 + - uid: 3389 components: - type: Transform rot: -1.5707963267948966 rad @@ -22963,7 +23450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3382 + - uid: 3390 components: - type: Transform rot: -1.5707963267948966 rad @@ -22971,7 +23458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3383 + - uid: 3391 components: - type: Transform rot: -1.5707963267948966 rad @@ -22979,7 +23466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3384 + - uid: 3392 components: - type: Transform rot: -1.5707963267948966 rad @@ -22987,7 +23474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3385 + - uid: 3393 components: - type: Transform rot: -1.5707963267948966 rad @@ -22995,7 +23482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3386 + - uid: 3394 components: - type: Transform rot: -1.5707963267948966 rad @@ -23003,7 +23490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3387 + - uid: 3395 components: - type: Transform rot: -1.5707963267948966 rad @@ -23011,7 +23498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3388 + - uid: 3396 components: - type: Transform rot: -1.5707963267948966 rad @@ -23019,7 +23506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3389 + - uid: 3397 components: - type: Transform rot: -1.5707963267948966 rad @@ -23027,49 +23514,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3390 + - uid: 3398 components: - type: Transform pos: 38.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3391 + - uid: 3399 components: - type: Transform pos: 38.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3392 + - uid: 3400 components: - type: Transform pos: 38.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3393 + - uid: 3401 components: - type: Transform pos: 38.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3394 + - uid: 3402 components: - type: Transform pos: 38.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3395 + - uid: 3403 components: - type: Transform pos: 38.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3396 + - uid: 3404 components: - type: Transform rot: -1.5707963267948966 rad @@ -23077,7 +23564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3397 + - uid: 3405 components: - type: Transform rot: 3.141592653589793 rad @@ -23085,7 +23572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3398 + - uid: 3406 components: - type: Transform rot: 3.141592653589793 rad @@ -23093,7 +23580,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3399 + - uid: 3407 components: - type: Transform rot: 3.141592653589793 rad @@ -23101,7 +23588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3400 + - uid: 3408 components: - type: Transform rot: 3.141592653589793 rad @@ -23109,7 +23596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3401 + - uid: 3409 components: - type: Transform rot: 3.141592653589793 rad @@ -23117,7 +23604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3402 + - uid: 3410 components: - type: Transform rot: 3.141592653589793 rad @@ -23125,7 +23612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3403 + - uid: 3411 components: - type: Transform rot: 3.141592653589793 rad @@ -23133,7 +23620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3404 + - uid: 3412 components: - type: Transform rot: 3.141592653589793 rad @@ -23141,7 +23628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3405 + - uid: 3413 components: - type: Transform rot: 3.141592653589793 rad @@ -23149,7 +23636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3406 + - uid: 3414 components: - type: Transform rot: -1.5707963267948966 rad @@ -23157,7 +23644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3407 + - uid: 3415 components: - type: Transform rot: -1.5707963267948966 rad @@ -23165,7 +23652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3408 + - uid: 3416 components: - type: Transform rot: -1.5707963267948966 rad @@ -23173,7 +23660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3409 + - uid: 3417 components: - type: Transform rot: -1.5707963267948966 rad @@ -23181,7 +23668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3410 + - uid: 3418 components: - type: Transform rot: -1.5707963267948966 rad @@ -23189,7 +23676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3411 + - uid: 3419 components: - type: Transform rot: -1.5707963267948966 rad @@ -23197,7 +23684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3412 + - uid: 3420 components: - type: Transform rot: -1.5707963267948966 rad @@ -23205,7 +23692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3413 + - uid: 3421 components: - type: Transform rot: -1.5707963267948966 rad @@ -23213,7 +23700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3414 + - uid: 3422 components: - type: Transform rot: -1.5707963267948966 rad @@ -23221,7 +23708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3415 + - uid: 3423 components: - type: Transform rot: -1.5707963267948966 rad @@ -23229,7 +23716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3416 + - uid: 3424 components: - type: Transform rot: -1.5707963267948966 rad @@ -23237,7 +23724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3417 + - uid: 3425 components: - type: Transform rot: -1.5707963267948966 rad @@ -23245,7 +23732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3418 + - uid: 3426 components: - type: Transform rot: 3.141592653589793 rad @@ -23253,7 +23740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3419 + - uid: 3427 components: - type: Transform rot: 3.141592653589793 rad @@ -23261,7 +23748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3420 + - uid: 3428 components: - type: Transform rot: 3.141592653589793 rad @@ -23269,7 +23756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3421 + - uid: 3429 components: - type: Transform rot: 3.141592653589793 rad @@ -23277,7 +23764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3422 + - uid: 3430 components: - type: Transform rot: 3.141592653589793 rad @@ -23285,7 +23772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3423 + - uid: 3431 components: - type: Transform rot: 3.141592653589793 rad @@ -23293,7 +23780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3424 + - uid: 3432 components: - type: Transform rot: 3.141592653589793 rad @@ -23301,7 +23788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3425 + - uid: 3433 components: - type: Transform rot: 3.141592653589793 rad @@ -23309,7 +23796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3426 + - uid: 3434 components: - type: Transform rot: 3.141592653589793 rad @@ -23317,7 +23804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3427 + - uid: 3435 components: - type: Transform rot: 3.141592653589793 rad @@ -23325,7 +23812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3428 + - uid: 3436 components: - type: Transform rot: 3.141592653589793 rad @@ -23333,7 +23820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3429 + - uid: 3437 components: - type: Transform rot: 3.141592653589793 rad @@ -23341,7 +23828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3430 + - uid: 3438 components: - type: Transform rot: 3.141592653589793 rad @@ -23349,7 +23836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3431 + - uid: 3439 components: - type: Transform rot: 3.141592653589793 rad @@ -23357,7 +23844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3432 + - uid: 3440 components: - type: Transform rot: 3.141592653589793 rad @@ -23365,42 +23852,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3433 + - uid: 3441 components: - type: Transform pos: 30.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3434 + - uid: 3442 components: - type: Transform pos: 30.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3435 + - uid: 3443 components: - type: Transform pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3436 + - uid: 3444 components: - type: Transform pos: 30.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3437 + - uid: 3445 components: - type: Transform pos: 30.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3438 + - uid: 3446 components: - type: Transform rot: 3.141592653589793 rad @@ -23408,7 +23895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3439 + - uid: 3447 components: - type: Transform rot: 3.141592653589793 rad @@ -23416,7 +23903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3440 + - uid: 3448 components: - type: Transform rot: 3.141592653589793 rad @@ -23424,7 +23911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3441 + - uid: 3449 components: - type: Transform rot: 3.141592653589793 rad @@ -23432,7 +23919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3442 + - uid: 3450 components: - type: Transform rot: 3.141592653589793 rad @@ -23440,7 +23927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3443 + - uid: 3451 components: - type: Transform rot: 3.141592653589793 rad @@ -23448,7 +23935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3444 + - uid: 3452 components: - type: Transform rot: 3.141592653589793 rad @@ -23456,7 +23943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3445 + - uid: 3453 components: - type: Transform rot: 3.141592653589793 rad @@ -23464,7 +23951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3446 + - uid: 3454 components: - type: Transform rot: -1.5707963267948966 rad @@ -23472,7 +23959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3447 + - uid: 3455 components: - type: Transform rot: -1.5707963267948966 rad @@ -23480,7 +23967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3448 + - uid: 3456 components: - type: Transform rot: -1.5707963267948966 rad @@ -23488,7 +23975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3449 + - uid: 3457 components: - type: Transform rot: 3.141592653589793 rad @@ -23496,7 +23983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3450 + - uid: 3458 components: - type: Transform rot: 3.141592653589793 rad @@ -23504,7 +23991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3451 + - uid: 3459 components: - type: Transform rot: 3.141592653589793 rad @@ -23512,7 +23999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3452 + - uid: 3460 components: - type: Transform rot: -1.5707963267948966 rad @@ -23520,7 +24007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3453 + - uid: 3461 components: - type: Transform rot: -1.5707963267948966 rad @@ -23528,7 +24015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3454 + - uid: 3462 components: - type: Transform rot: 1.5707963267948966 rad @@ -23536,7 +24023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3455 + - uid: 3463 components: - type: Transform rot: 1.5707963267948966 rad @@ -23544,7 +24031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3456 + - uid: 3464 components: - type: Transform rot: 3.141592653589793 rad @@ -23552,7 +24039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3457 + - uid: 3465 components: - type: Transform rot: 1.5707963267948966 rad @@ -23560,7 +24047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3458 + - uid: 3466 components: - type: Transform rot: -1.5707963267948966 rad @@ -23568,7 +24055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3459 + - uid: 3467 components: - type: Transform rot: -1.5707963267948966 rad @@ -23576,28 +24063,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3460 + - uid: 3468 components: - type: Transform pos: -36.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3461 + - uid: 3469 components: - type: Transform pos: -36.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3462 + - uid: 3470 components: - type: Transform pos: -36.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3463 + - uid: 3471 components: - type: Transform rot: -1.5707963267948966 rad @@ -23605,7 +24092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3464 + - uid: 3472 components: - type: Transform rot: -1.5707963267948966 rad @@ -23613,7 +24100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3465 + - uid: 3473 components: - type: Transform rot: 3.141592653589793 rad @@ -23621,7 +24108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3466 + - uid: 3474 components: - type: Transform rot: 3.141592653589793 rad @@ -23629,7 +24116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3467 + - uid: 3475 components: - type: Transform rot: 3.141592653589793 rad @@ -23637,7 +24124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3468 + - uid: 3476 components: - type: Transform rot: 3.141592653589793 rad @@ -23645,14 +24132,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3469 + - uid: 3477 components: - type: Transform pos: 24.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3470 + - uid: 3478 components: - type: Transform rot: -1.5707963267948966 rad @@ -23660,13 +24147,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3471 + - uid: 3479 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,10.5 parent: 2 - - uid: 3472 + - uid: 3480 components: - type: Transform rot: -1.5707963267948966 rad @@ -23674,14 +24161,14 @@ entities: parent: 2 - proto: GasPipeTJunction entities: - - uid: 3473 + - uid: 3481 components: - type: Transform pos: -36.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3474 + - uid: 3482 components: - type: Transform rot: 1.5707963267948966 rad @@ -23689,14 +24176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3475 + - uid: 3483 components: - type: Transform pos: 2.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3476 + - uid: 3484 components: - type: Transform rot: -1.5707963267948966 rad @@ -23704,14 +24191,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3477 + - uid: 3485 components: - type: Transform pos: -17.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3478 + - uid: 3486 components: - type: Transform rot: -1.5707963267948966 rad @@ -23719,7 +24206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3479 + - uid: 3487 components: - type: Transform rot: 1.5707963267948966 rad @@ -23727,7 +24214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3480 + - uid: 3488 components: - type: Transform rot: 3.141592653589793 rad @@ -23735,7 +24222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3481 + - uid: 3489 components: - type: Transform rot: 1.5707963267948966 rad @@ -23743,7 +24230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3482 + - uid: 3490 components: - type: Transform rot: -1.5707963267948966 rad @@ -23751,7 +24238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3483 + - uid: 3491 components: - type: Transform rot: -1.5707963267948966 rad @@ -23759,7 +24246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3484 + - uid: 3492 components: - type: Transform rot: 3.141592653589793 rad @@ -23767,7 +24254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3485 + - uid: 3493 components: - type: Transform rot: 3.141592653589793 rad @@ -23775,7 +24262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3486 + - uid: 3494 components: - type: Transform rot: 1.5707963267948966 rad @@ -23783,7 +24270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3487 + - uid: 3495 components: - type: Transform rot: 1.5707963267948966 rad @@ -23791,7 +24278,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3488 + - uid: 3496 components: - type: Transform rot: 1.5707963267948966 rad @@ -23799,7 +24286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3489 + - uid: 3497 components: - type: Transform rot: 3.141592653589793 rad @@ -23807,14 +24294,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3490 + - uid: 3498 components: - type: Transform pos: -32.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3491 + - uid: 3499 components: - type: Transform rot: 1.5707963267948966 rad @@ -23822,14 +24309,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3492 + - uid: 3500 components: - type: Transform pos: -35.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3493 + - uid: 3501 components: - type: Transform rot: 3.141592653589793 rad @@ -23837,7 +24324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3494 + - uid: 3502 components: - type: Transform rot: -1.5707963267948966 rad @@ -23845,14 +24332,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3495 + - uid: 3503 components: - type: Transform pos: -33.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3496 + - uid: 3504 components: - type: Transform rot: -1.5707963267948966 rad @@ -23860,7 +24347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3497 + - uid: 3505 components: - type: Transform rot: 1.5707963267948966 rad @@ -23868,7 +24355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3498 + - uid: 3506 components: - type: Transform rot: 1.5707963267948966 rad @@ -23876,7 +24363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3499 + - uid: 3507 components: - type: Transform rot: 1.5707963267948966 rad @@ -23884,7 +24371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3500 + - uid: 3508 components: - type: Transform rot: -1.5707963267948966 rad @@ -23892,7 +24379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3501 + - uid: 3509 components: - type: Transform rot: 3.141592653589793 rad @@ -23900,7 +24387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3502 + - uid: 3510 components: - type: Transform rot: 3.141592653589793 rad @@ -23908,7 +24395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3503 + - uid: 3511 components: - type: Transform rot: 3.141592653589793 rad @@ -23916,7 +24403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3504 + - uid: 3512 components: - type: Transform rot: 3.141592653589793 rad @@ -23924,7 +24411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3505 + - uid: 3513 components: - type: Transform rot: 1.5707963267948966 rad @@ -23932,14 +24419,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3506 + - uid: 3514 components: - type: Transform pos: -5.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3507 + - uid: 3515 components: - type: Transform rot: 1.5707963267948966 rad @@ -23947,7 +24434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3508 + - uid: 3516 components: - type: Transform rot: -1.5707963267948966 rad @@ -23955,7 +24442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3509 + - uid: 3517 components: - type: Transform rot: 1.5707963267948966 rad @@ -23963,7 +24450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3510 + - uid: 3518 components: - type: Transform rot: 1.5707963267948966 rad @@ -23971,14 +24458,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3511 + - uid: 3519 components: - type: Transform pos: 0.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3512 + - uid: 3520 components: - type: Transform rot: -1.5707963267948966 rad @@ -23986,7 +24473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3513 + - uid: 3521 components: - type: Transform rot: -1.5707963267948966 rad @@ -23994,7 +24481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3514 + - uid: 3522 components: - type: Transform rot: 3.141592653589793 rad @@ -24002,7 +24489,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3515 + - uid: 3523 components: - type: Transform rot: 1.5707963267948966 rad @@ -24010,7 +24497,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3516 + - uid: 3524 components: - type: Transform rot: 3.141592653589793 rad @@ -24018,14 +24505,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3517 + - uid: 3525 components: - type: Transform pos: -6.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3518 + - uid: 3526 components: - type: Transform rot: 3.141592653589793 rad @@ -24033,7 +24520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3519 + - uid: 3527 components: - type: Transform rot: -1.5707963267948966 rad @@ -24041,7 +24528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3520 + - uid: 3528 components: - type: Transform rot: -1.5707963267948966 rad @@ -24049,7 +24536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3521 + - uid: 3529 components: - type: Transform rot: -1.5707963267948966 rad @@ -24057,7 +24544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3522 + - uid: 3530 components: - type: Transform rot: 1.5707963267948966 rad @@ -24065,7 +24552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3523 + - uid: 3531 components: - type: Transform rot: 1.5707963267948966 rad @@ -24073,7 +24560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3524 + - uid: 3532 components: - type: Transform rot: 1.5707963267948966 rad @@ -24081,14 +24568,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3525 + - uid: 3533 components: - type: Transform pos: 31.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3526 + - uid: 3534 components: - type: Transform rot: 3.141592653589793 rad @@ -24096,7 +24583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3527 + - uid: 3535 components: - type: Transform rot: -1.5707963267948966 rad @@ -24104,7 +24591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3528 + - uid: 3536 components: - type: Transform rot: -1.5707963267948966 rad @@ -24112,7 +24599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3529 + - uid: 3537 components: - type: Transform rot: 1.5707963267948966 rad @@ -24120,7 +24607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3530 + - uid: 3538 components: - type: Transform rot: -1.5707963267948966 rad @@ -24128,7 +24615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3531 + - uid: 3539 components: - type: Transform rot: 1.5707963267948966 rad @@ -24136,14 +24623,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3532 + - uid: 3540 components: - type: Transform pos: 23.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3533 + - uid: 3541 components: - type: Transform rot: -1.5707963267948966 rad @@ -24151,7 +24638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3534 + - uid: 3542 components: - type: Transform rot: -1.5707963267948966 rad @@ -24161,26 +24648,26 @@ entities: color: '#0000FFFF' - proto: GasPort entities: - - uid: 3535 + - uid: 3543 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-2.5 parent: 2 - - uid: 3536 + - uid: 3544 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,1.5 parent: 2 - - uid: 3537 + - uid: 3545 components: - type: Transform pos: -35.5,1.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3538 + - uid: 3546 components: - type: Transform rot: 3.141592653589793 rad @@ -24188,7 +24675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3539 + - uid: 3547 components: - type: Transform rot: 3.141592653589793 rad @@ -24196,7 +24683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3540 + - uid: 3548 components: - type: Transform rot: 3.141592653589793 rad @@ -24204,13 +24691,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3541 + - uid: 3549 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,12.5 parent: 2 - - uid: 3542 + - uid: 3550 components: - type: Transform rot: -1.5707963267948966 rad @@ -24218,14 +24705,14 @@ entities: parent: 2 - proto: GasPressurePump entities: - - uid: 3543 + - uid: 3551 components: - type: Transform pos: 24.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3544 + - uid: 3552 components: - type: Transform rot: 1.5707963267948966 rad @@ -24233,7 +24720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3545 + - uid: 3553 components: - type: Transform rot: -1.5707963267948966 rad @@ -24241,7 +24728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3546 + - uid: 3554 components: - type: Transform rot: -1.5707963267948966 rad @@ -24249,13 +24736,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 3547 + - uid: 3555 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,10.5 parent: 2 - - uid: 3548 + - uid: 3556 components: - type: Transform rot: -1.5707963267948966 rad @@ -24263,14 +24750,14 @@ entities: parent: 2 - proto: GasRecycler entities: - - uid: 3549 + - uid: 3557 components: - type: Transform pos: -37.5,-3.5 parent: 2 - proto: GasThermoMachineFreezer entities: - - uid: 3550 + - uid: 3558 components: - type: Transform rot: 3.141592653589793 rad @@ -24280,7 +24767,7 @@ entities: color: '#0000FFFF' - proto: GasVentPump entities: - - uid: 3551 + - uid: 3559 components: - type: Transform pos: -2.5,11.5 @@ -24288,10 +24775,10 @@ entities: - type: DeviceNetwork deviceLists: - 49 - - 2746 + - 2754 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3552 + - uid: 3560 components: - type: Transform rot: -1.5707963267948966 rad @@ -24299,11 +24786,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2752 + - 2760 - 71 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3553 + - uid: 3561 components: - type: Transform rot: 1.5707963267948966 rad @@ -24311,11 +24798,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2748 + - 2756 - 72 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3554 + - uid: 3562 components: - type: Transform rot: 1.5707963267948966 rad @@ -24323,11 +24810,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2757 + - 2765 - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3555 + - uid: 3563 components: - type: Transform rot: -1.5707963267948966 rad @@ -24335,11 +24822,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2750 + - 2758 - 52 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3556 + - uid: 3564 components: - type: Transform rot: 1.5707963267948966 rad @@ -24347,11 +24834,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2775 + - 2783 - 78 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3557 + - uid: 3565 components: - type: Transform rot: 1.5707963267948966 rad @@ -24359,18 +24846,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3558 + - uid: 3566 components: - type: Transform pos: -30.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2773 + - 2781 - 75 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3559 + - uid: 3567 components: - type: Transform pos: -25.5,14.5 @@ -24378,10 +24865,10 @@ entities: - type: DeviceNetwork deviceLists: - 68 - - 2742 + - 2750 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3560 + - uid: 3568 components: - type: Transform rot: 3.141592653589793 rad @@ -24390,10 +24877,10 @@ entities: - type: DeviceNetwork deviceLists: - 68 - - 2742 + - 2750 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3561 + - uid: 3569 components: - type: Transform rot: -1.5707963267948966 rad @@ -24402,10 +24889,10 @@ entities: - type: DeviceNetwork deviceLists: - 77 - - 2767 + - 2775 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3562 + - uid: 3570 components: - type: Transform rot: -1.5707963267948966 rad @@ -24413,7 +24900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3563 + - uid: 3571 components: - type: Transform pos: -21.5,23.5 @@ -24421,10 +24908,10 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - 2743 + - 2751 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3564 + - uid: 3572 components: - type: Transform rot: 1.5707963267948966 rad @@ -24432,7 +24919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3565 + - uid: 3573 components: - type: Transform rot: 1.5707963267948966 rad @@ -24441,10 +24928,10 @@ entities: - type: DeviceNetwork deviceLists: - 55 - - 2771 + - 2779 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3566 + - uid: 3574 components: - type: Transform rot: 3.141592653589793 rad @@ -24452,11 +24939,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2744 + - 2752 - 45 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3567 + - uid: 3575 components: - type: Transform rot: 3.141592653589793 rad @@ -24464,7 +24951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3568 + - uid: 3576 components: - type: Transform rot: -1.5707963267948966 rad @@ -24472,11 +24959,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2749 + - 2757 - 50 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3569 + - uid: 3577 components: - type: Transform rot: 1.5707963267948966 rad @@ -24484,11 +24971,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2751 + - 2759 - 73 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3570 + - uid: 3578 components: - type: Transform rot: 1.5707963267948966 rad @@ -24496,11 +24983,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2772 + - 2780 - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3571 + - uid: 3579 components: - type: Transform rot: 3.141592653589793 rad @@ -24508,11 +24995,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2747 + - 2755 - 48 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3572 + - uid: 3580 components: - type: Transform rot: 1.5707963267948966 rad @@ -24521,10 +25008,10 @@ entities: - type: DeviceNetwork deviceLists: - 56 - - 2760 + - 2768 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3573 + - uid: 3581 components: - type: Transform rot: 1.5707963267948966 rad @@ -24533,10 +25020,10 @@ entities: - type: DeviceNetwork deviceLists: - 57 - - 2759 + - 2767 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3574 + - uid: 3582 components: - type: Transform rot: -1.5707963267948966 rad @@ -24545,10 +25032,10 @@ entities: - type: DeviceNetwork deviceLists: - 58 - - 2778 + - 2786 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3575 + - uid: 3583 components: - type: Transform rot: -1.5707963267948966 rad @@ -24557,10 +25044,10 @@ entities: - type: DeviceNetwork deviceLists: - 60 - - 2762 + - 2770 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3576 + - uid: 3584 components: - type: Transform rot: 3.141592653589793 rad @@ -24569,10 +25056,10 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 + - 2790 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3577 + - uid: 3585 components: - type: Transform rot: 1.5707963267948966 rad @@ -24581,10 +25068,10 @@ entities: - type: DeviceNetwork deviceLists: - 59 - - 2780 + - 2788 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3578 + - uid: 3586 components: - type: Transform rot: -1.5707963267948966 rad @@ -24592,7 +25079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3579 + - uid: 3587 components: - type: Transform rot: 1.5707963267948966 rad @@ -24600,11 +25087,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2761 + - 2769 - 85 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3580 + - uid: 3588 components: - type: Transform rot: -1.5707963267948966 rad @@ -24612,11 +25099,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2758 + - 2766 - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3581 + - uid: 3589 components: - type: Transform rot: 1.5707963267948966 rad @@ -24625,10 +25112,10 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - 2740 + - 2748 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3582 + - uid: 3590 components: - type: Transform rot: 3.141592653589793 rad @@ -24636,11 +25123,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3583 + - uid: 3591 components: - type: Transform rot: -1.5707963267948966 rad @@ -24649,10 +25136,10 @@ entities: - type: DeviceNetwork deviceLists: - 87 - - 2783 + - 2791 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3584 + - uid: 3592 components: - type: Transform pos: -40.5,18.5 @@ -24660,10 +25147,10 @@ entities: - type: DeviceNetwork deviceLists: - 66 - - 2741 + - 2749 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3585 + - uid: 3593 components: - type: Transform rot: 3.141592653589793 rad @@ -24671,11 +25158,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2776 + - 2784 - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3586 + - uid: 3594 components: - type: Transform rot: 1.5707963267948966 rad @@ -24683,7 +25170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3587 + - uid: 3595 components: - type: Transform rot: 3.141592653589793 rad @@ -24691,7 +25178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3588 + - uid: 3596 components: - type: Transform rot: 1.5707963267948966 rad @@ -24701,7 +25188,7 @@ entities: color: '#0000FFFF' - proto: GasVentScrubber entities: - - uid: 3589 + - uid: 3597 components: - type: Transform rot: -1.5707963267948966 rad @@ -24709,29 +25196,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3590 + - uid: 3598 components: - type: Transform pos: 13.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2754 + - 2762 - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3591 + - uid: 3599 components: - type: Transform pos: -27.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2773 + - 2781 - 75 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3592 + - uid: 3600 components: - type: Transform rot: -1.5707963267948966 rad @@ -24739,7 +25226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3593 + - uid: 3601 components: - type: Transform rot: -1.5707963267948966 rad @@ -24747,7 +25234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3594 + - uid: 3602 components: - type: Transform rot: -1.5707963267948966 rad @@ -24755,11 +25242,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2744 + - 2752 - 45 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3595 + - uid: 3603 components: - type: Transform rot: 1.5707963267948966 rad @@ -24767,14 +25254,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3596 + - uid: 3604 components: - type: Transform pos: -0.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3597 + - uid: 3605 components: - type: Transform rot: 1.5707963267948966 rad @@ -24782,11 +25269,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2749 + - 2757 - 50 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3598 + - uid: 3606 components: - type: Transform pos: 2.5,11.5 @@ -24794,21 +25281,21 @@ entities: - type: DeviceNetwork deviceLists: - 49 - - 2746 + - 2754 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3599 + - uid: 3607 components: - type: Transform pos: -1.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2753 + - 2761 - 53 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3600 + - uid: 3608 components: - type: Transform rot: 3.141592653589793 rad @@ -24816,11 +25303,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2751 + - 2759 - 73 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3601 + - uid: 3609 components: - type: Transform pos: -24.5,26.5 @@ -24828,21 +25315,21 @@ entities: - type: DeviceNetwork deviceLists: - 55 - - 2771 + - 2779 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3602 + - uid: 3610 components: - type: Transform pos: -41.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2772 + - 2780 - 65 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3603 + - uid: 3611 components: - type: Transform rot: 1.5707963267948966 rad @@ -24850,14 +25337,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3604 + - uid: 3612 components: - type: Transform pos: 29.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3605 + - uid: 3613 components: - type: Transform rot: 3.141592653589793 rad @@ -24865,7 +25352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3606 + - uid: 3614 components: - type: Transform rot: 1.5707963267948966 rad @@ -24873,11 +25360,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2758 + - 2766 - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3607 + - uid: 3615 components: - type: Transform rot: 1.5707963267948966 rad @@ -24885,17 +25372,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2761 + - 2769 - 85 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3608 + - uid: 3616 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,8.5 parent: 2 - - uid: 3609 + - uid: 3617 components: - type: Transform rot: -1.5707963267948966 rad @@ -24903,10 +25390,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2763 + - 2771 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3610 + - uid: 3618 components: - type: Transform rot: 3.141592653589793 rad @@ -24915,10 +25402,10 @@ entities: - type: DeviceNetwork deviceLists: - 61 - - 2782 + - 2790 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3611 + - uid: 3619 components: - type: Transform rot: 3.141592653589793 rad @@ -24927,10 +25414,10 @@ entities: - type: DeviceNetwork deviceLists: - 82 - - 2740 + - 2748 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3612 + - uid: 3620 components: - type: Transform rot: 3.141592653589793 rad @@ -24938,7 +25425,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3613 + - uid: 3621 components: - type: Transform pos: -19.5,27.5 @@ -24946,10 +25433,10 @@ entities: - type: DeviceNetwork deviceLists: - 87 - - 2783 + - 2791 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3614 + - uid: 3622 components: - type: Transform rot: 1.5707963267948966 rad @@ -24959,160 +25446,160 @@ entities: color: '#FF0000FF' - proto: GeneratorRTG entities: - - uid: 3615 + - uid: 3623 components: - type: Transform pos: -15.5,11.5 parent: 2 - - uid: 3616 + - uid: 3624 components: - type: Transform pos: -16.5,11.5 parent: 2 - - uid: 3617 + - uid: 3625 components: - type: Transform pos: -17.5,11.5 parent: 2 - - uid: 3618 + - uid: 3626 components: - type: Transform pos: -18.5,11.5 parent: 2 - proto: GeneratorWallmountBasic entities: - - uid: 3619 + - uid: 3627 components: - type: Transform pos: 9.5,24.5 parent: 2 - - uid: 3620 + - uid: 3628 components: - type: Transform pos: 20.5,4.5 parent: 2 - - uid: 3621 + - uid: 3629 components: - type: Transform pos: 25.5,2.5 parent: 2 - - uid: 3622 + - uid: 3630 components: - type: Transform pos: 23.5,2.5 parent: 2 - proto: GlassBoxLaserFilled entities: - - uid: 3623 + - uid: 3631 components: - type: Transform pos: 6.5,25.5 parent: 2 - proto: GlowstickBase - entities: - - uid: 2178 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False - - uid: 2179 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False - - uid: 2180 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False - - uid: 2181 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False -- proto: GlowstickBlue - entities: - - uid: 2182 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False - - uid: 2183 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False - - uid: 2184 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False - - uid: 2185 - components: - - type: Transform - parent: 2177 - - type: Physics - canCollide: False -- proto: GlowstickPurple entities: - uid: 2186 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - uid: 2187 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - uid: 2188 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - uid: 2189 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False -- proto: GlowstickRed +- proto: GlowstickBlue entities: - uid: 2190 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - uid: 2191 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - uid: 2192 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - uid: 2193 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - - uid: 3624 +- proto: GlowstickPurple + entities: + - uid: 2194 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 2195 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 2196 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 2197 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False +- proto: GlowstickRed + entities: + - uid: 2198 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 2199 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 2200 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 2201 + components: + - type: Transform + parent: 2185 + - type: Physics + canCollide: False + - uid: 3632 components: - type: Transform rot: -1.5707963267948966 rad @@ -25120,1676 +25607,1906 @@ entities: parent: 2 - proto: GlowstickYellow entities: - - uid: 2194 + - uid: 2202 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - - uid: 2195 + - uid: 2203 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - - uid: 2196 + - uid: 2204 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - - uid: 2197 + - uid: 2205 components: - type: Transform - parent: 2177 + parent: 2185 - type: Physics canCollide: False - proto: GravityGenerator entities: - - uid: 3625 + - uid: 3633 components: - type: Transform pos: -33.5,31.5 parent: 2 - proto: GrenadeDummy entities: - - uid: 3626 + - uid: 3634 components: - type: Transform pos: 11.8222,13.515725 parent: 2 - proto: Grille entities: - - uid: 3627 + - uid: 3635 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,12.5 parent: 2 - - uid: 3628 + - uid: 3636 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 3629 + - uid: 3637 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 3630 + - uid: 3638 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 3631 + - uid: 3639 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 2 - - uid: 3632 + - uid: 3640 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 3633 + - uid: 3641 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 3634 + - uid: 3642 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 2 - - uid: 3635 + - uid: 3643 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - - uid: 3636 + - uid: 3644 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 2 - - uid: 3637 + - uid: 3645 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 2 - - uid: 3638 + - uid: 3646 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 2 - - uid: 3639 + - uid: 3647 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 2 - - uid: 3640 + - uid: 3648 components: - type: Transform pos: -2.5,7.5 parent: 2 - - uid: 3641 + - uid: 3649 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 3642 + - uid: 3650 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 3643 + - uid: 3651 components: - type: Transform pos: 0.5,7.5 parent: 2 - - uid: 3644 + - uid: 3652 components: - type: Transform pos: 1.5,7.5 parent: 2 - - uid: 3645 + - uid: 3653 components: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 3646 + - uid: 3654 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 3647 + - uid: 3655 components: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 3648 + - uid: 3656 components: - type: Transform pos: -4.5,11.5 parent: 2 - - uid: 3649 + - uid: 3657 components: - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 3650 + - uid: 3658 components: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 3651 + - uid: 3659 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 3652 + - uid: 3660 components: - type: Transform pos: 11.5,6.5 parent: 2 - - uid: 3653 + - uid: 3661 components: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 3654 + - uid: 3662 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,17.5 parent: 2 - - uid: 3655 + - uid: 3663 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,19.5 parent: 2 - - uid: 3656 + - uid: 3664 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 2 - - uid: 3657 + - uid: 3665 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 - - uid: 3658 + - uid: 3666 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,21.5 parent: 2 - - uid: 3659 + - uid: 3667 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,21.5 parent: 2 - - uid: 3660 + - uid: 3668 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,21.5 parent: 2 - - uid: 3661 + - uid: 3669 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,21.5 parent: 2 - - uid: 3662 + - uid: 3670 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 - - uid: 3663 + - uid: 3671 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 - - uid: 3664 + - uid: 3672 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,21.5 parent: 2 - - uid: 3665 + - uid: 3673 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 3666 + - uid: 3674 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,24.5 parent: 2 - - uid: 3667 + - uid: 3675 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,24.5 parent: 2 - - uid: 3668 + - uid: 3676 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,24.5 parent: 2 - - uid: 3669 + - uid: 3677 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,24.5 parent: 2 - - uid: 3670 + - uid: 3678 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 2 - - uid: 3671 + - uid: 3679 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 2 - - uid: 3672 + - uid: 3680 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,31.5 parent: 2 - - uid: 3673 + - uid: 3681 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,31.5 parent: 2 - - uid: 3674 + - uid: 3682 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,32.5 parent: 2 - - uid: 3675 + - uid: 3683 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,32.5 parent: 2 - - uid: 3676 + - uid: 3684 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,32.5 parent: 2 - - uid: 3677 + - uid: 3685 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,32.5 parent: 2 - - uid: 3678 + - uid: 3686 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,32.5 parent: 2 - - uid: 3679 + - uid: 3687 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,32.5 parent: 2 - - uid: 3680 + - uid: 3688 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 2 - - uid: 3681 + - uid: 3689 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,21.5 parent: 2 - - uid: 3682 + - uid: 3690 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 - - uid: 3683 + - uid: 3691 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,23.5 parent: 2 - - uid: 3684 + - uid: 3692 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 - - uid: 3685 + - uid: 3693 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,14.5 parent: 2 - - uid: 3686 + - uid: 3694 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 2 - - uid: 3687 + - uid: 3695 components: - type: Transform pos: -14.5,15.5 parent: 2 - - uid: 3688 + - uid: 3696 components: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 3689 + - uid: 3697 components: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 3690 + - uid: 3698 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 3691 + - uid: 3699 components: - type: Transform pos: -15.5,15.5 parent: 2 - - uid: 3692 + - uid: 3700 components: - type: Transform pos: -16.5,15.5 parent: 2 - - uid: 3693 + - uid: 3701 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 3694 + - uid: 3702 components: - type: Transform pos: -14.5,13.5 parent: 2 - - uid: 3695 + - uid: 3703 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 3696 + - uid: 3704 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 3697 + - uid: 3705 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 3698 + - uid: 3706 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 3699 + - uid: 3707 components: - type: Transform pos: -21.5,25.5 parent: 2 - - uid: 3700 + - uid: 3708 components: - type: Transform pos: -24.5,24.5 parent: 2 - - uid: 3701 + - uid: 3709 components: - type: Transform pos: -26.5,24.5 parent: 2 - - uid: 3702 + - uid: 3710 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,21.5 parent: 2 - - uid: 3703 + - uid: 3711 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,21.5 parent: 2 - - uid: 3704 + - uid: 3712 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,21.5 parent: 2 - - uid: 3705 + - uid: 3713 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,21.5 parent: 2 - - uid: 3706 + - uid: 3714 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,21.5 parent: 2 - - uid: 3707 + - uid: 3715 components: - type: Transform pos: -30.5,24.5 parent: 2 - - uid: 3708 + - uid: 3716 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,27.5 parent: 2 - - uid: 3709 + - uid: 3717 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,27.5 parent: 2 - - uid: 3710 + - uid: 3718 components: - type: Transform pos: -22.5,29.5 parent: 2 - - uid: 3711 + - uid: 3719 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 3712 + - uid: 3720 components: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 3713 + - uid: 3721 components: - type: Transform pos: -27.5,29.5 parent: 2 - - uid: 3714 + - uid: 3722 components: - type: Transform pos: -26.5,30.5 parent: 2 - - uid: 3715 + - uid: 3723 components: - type: Transform pos: -26.5,31.5 parent: 2 - - uid: 3716 + - uid: 3724 components: - type: Transform pos: -24.5,31.5 parent: 2 - - uid: 3717 + - uid: 3725 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 3718 + - uid: 3726 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,29.5 parent: 2 - - uid: 3719 + - uid: 3727 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 - - uid: 3720 + - uid: 3728 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,29.5 parent: 2 - - uid: 3721 + - uid: 3729 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,17.5 parent: 2 - - uid: 3722 + - uid: 3730 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,18.5 parent: 2 - - uid: 3723 + - uid: 3731 components: - type: Transform pos: -22.5,14.5 parent: 2 - - uid: 3724 + - uid: 3732 components: - type: Transform pos: -22.5,13.5 parent: 2 - - uid: 3725 + - uid: 3733 components: - type: Transform pos: -22.5,12.5 parent: 2 - - uid: 3726 + - uid: 3734 components: - type: Transform pos: -22.5,10.5 parent: 2 - - uid: 3727 + - uid: 3735 components: - type: Transform pos: -22.5,9.5 parent: 2 - - uid: 3728 + - uid: 3736 components: - type: Transform pos: -31.5,14.5 parent: 2 - - uid: 3729 + - uid: 3737 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 3730 + - uid: 3738 components: - type: Transform pos: -25.5,7.5 parent: 2 - - uid: 3731 + - uid: 3739 components: - type: Transform pos: -24.5,7.5 parent: 2 - - uid: 3732 + - uid: 3740 components: - type: Transform pos: -27.5,6.5 parent: 2 - - uid: 3733 + - uid: 3741 components: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 3734 + - uid: 3742 components: - type: Transform pos: -27.5,4.5 parent: 2 - - uid: 3735 + - uid: 3743 components: - type: Transform pos: -29.5,6.5 parent: 2 - - uid: 3736 + - uid: 3744 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 3737 + - uid: 3745 components: - type: Transform pos: -29.5,4.5 parent: 2 - - uid: 3738 + - uid: 3746 components: - type: Transform pos: -31.5,4.5 parent: 2 - - uid: 3739 + - uid: 3747 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 3740 + - uid: 3748 components: - type: Transform pos: -34.5,8.5 parent: 2 - - uid: 3741 + - uid: 3749 components: - type: Transform pos: -34.5,9.5 parent: 2 - - uid: 3742 + - uid: 3750 components: - type: Transform pos: -30.5,-2.5 parent: 2 - - uid: 3743 + - uid: 3751 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 3744 + - uid: 3752 components: - type: Transform pos: -30.5,0.5 parent: 2 - - uid: 3745 + - uid: 3753 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 3746 + - uid: 3754 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,17.5 parent: 2 - - uid: 3747 + - uid: 3755 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,19.5 parent: 2 - - uid: 3748 + - uid: 3756 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,10.5 parent: 2 - - uid: 3749 + - uid: 3757 components: - type: Transform pos: 14.5,8.5 parent: 2 - - uid: 3750 + - uid: 3758 components: - type: Transform pos: 13.5,8.5 parent: 2 - - uid: 3751 + - uid: 3759 components: - type: Transform pos: -26.5,12.5 parent: 2 - - uid: 3752 + - uid: 3760 components: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 3753 + - uid: 3761 components: - type: Transform pos: 19.5,21.5 parent: 2 - - uid: 3754 + - uid: 3762 components: - type: Transform pos: 19.5,22.5 parent: 2 - - uid: 3755 + - uid: 3763 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 3756 + - uid: 3764 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 3757 + - uid: 3765 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 3758 + - uid: 3766 components: - type: Transform pos: 19.5,10.5 parent: 2 - - uid: 3759 + - uid: 3767 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 3760 + - uid: 3768 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 3761 + - uid: 3769 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 3762 + - uid: 3770 components: - type: Transform pos: 23.5,23.5 parent: 2 - - uid: 3763 + - uid: 3771 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 3764 + - uid: 3772 components: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 3765 + - uid: 3773 components: - type: Transform pos: 37.5,23.5 parent: 2 - - uid: 3766 + - uid: 3774 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 3767 + - uid: 3775 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 3768 + - uid: 3776 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 - - uid: 3769 + - uid: 3777 components: - type: Transform pos: 25.5,9.5 parent: 2 - - uid: 3770 + - uid: 3778 components: - type: Transform pos: 25.5,10.5 parent: 2 - - uid: 3771 + - uid: 3779 components: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 3772 + - uid: 3780 components: - type: Transform pos: 25.5,18.5 parent: 2 - - uid: 3773 + - uid: 3781 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 3774 + - uid: 3782 components: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 3775 + - uid: 3783 components: - type: Transform pos: 26.5,13.5 parent: 2 - - uid: 3776 + - uid: 3784 components: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 3777 + - uid: 3785 components: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 3778 + - uid: 3786 components: - type: Transform pos: 29.5,13.5 parent: 2 - - uid: 3779 + - uid: 3787 components: - type: Transform pos: 1.5,25.5 parent: 2 - - uid: 3780 + - uid: 3788 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 3781 + - uid: 3789 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 3782 + - uid: 3790 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,20.5 parent: 2 - - uid: 3783 + - uid: 3791 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,20.5 parent: 2 - - uid: 3784 + - uid: 3792 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,20.5 parent: 2 - - uid: 3785 + - uid: 3793 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,19.5 parent: 2 - - uid: 3786 + - uid: 3794 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,18.5 parent: 2 - - uid: 3787 + - uid: 3795 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,8.5 parent: 2 - - uid: 3788 + - uid: 3796 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,8.5 parent: 2 - - uid: 3789 + - uid: 3797 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,8.5 parent: 2 - - uid: 3790 + - uid: 3798 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 2 - - uid: 3791 + - uid: 3799 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,10.5 parent: 2 - - uid: 3792 + - uid: 3800 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,14.5 parent: 2 - - uid: 3793 + - uid: 3801 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 3794 + - uid: 3802 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 3795 + - uid: 3803 components: - type: Transform pos: 31.5,-1.5 parent: 2 - - uid: 3796 + - uid: 3804 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 3797 + - uid: 3805 components: - type: Transform pos: 28.5,27.5 parent: 2 - - uid: 3798 + - uid: 3806 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,28.5 parent: 2 - - uid: 3799 + - uid: 3807 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,24.5 parent: 2 - - uid: 3800 + - uid: 3808 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,25.5 parent: 2 - - uid: 3801 + - uid: 3809 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - - uid: 3802 + - uid: 3810 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,15.5 parent: 2 - - uid: 3804 + - uid: 3811 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,27.5 parent: 2 - - uid: 3805 + - uid: 3812 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,26.5 parent: 2 - - uid: 3806 + - uid: 3813 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,25.5 parent: 2 - - uid: 3807 + - uid: 3814 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,24.5 parent: 2 - - uid: 3808 + - uid: 3815 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 - - uid: 3809 + - uid: 3816 components: - type: Transform pos: -13.5,29.5 parent: 2 - - uid: 3810 + - uid: 3817 components: - type: Transform pos: -12.5,29.5 parent: 2 - - uid: 3811 + - uid: 3818 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,11.5 parent: 2 - - uid: 3812 + - uid: 3819 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,13.5 parent: 2 - - uid: 3813 + - uid: 3820 components: - type: Transform pos: -9.5,24.5 parent: 2 - - uid: 3814 + - uid: 3821 components: - type: Transform pos: -10.5,24.5 parent: 2 - proto: GrilleSpawner entities: - - uid: 3815 + - uid: 2168 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 3822 components: - type: Transform pos: 25.5,-3.5 parent: 2 - - uid: 3816 + - uid: 3823 components: - type: Transform pos: 32.5,-4.5 parent: 2 - - uid: 3817 + - uid: 3824 components: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 3818 + - uid: 3825 components: - type: Transform pos: 25.5,-4.5 parent: 2 - - uid: 3819 + - uid: 3826 components: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 3820 + - uid: 3827 components: - type: Transform pos: 26.5,-4.5 parent: 2 - - uid: 3821 + - uid: 3828 components: - type: Transform pos: 27.5,-4.5 parent: 2 - - uid: 3822 + - uid: 3829 components: - type: Transform pos: 34.5,-4.5 parent: 2 - - uid: 3823 + - uid: 3830 components: - type: Transform pos: 28.5,-4.5 parent: 2 - - uid: 3824 + - uid: 3831 components: - type: Transform pos: 29.5,-4.5 parent: 2 - - uid: 3825 + - uid: 3832 components: - type: Transform pos: 30.5,-4.5 parent: 2 - - uid: 3826 + - uid: 3833 components: - type: Transform pos: 31.5,-4.5 parent: 2 - - uid: 3827 + - uid: 3834 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 3828 + - uid: 3835 components: - type: Transform pos: -48.5,14.5 parent: 2 - - uid: 3829 + - uid: 3836 components: - type: Transform pos: -48.5,13.5 parent: 2 - - uid: 3830 + - uid: 3837 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 3831 + - uid: 3838 components: - type: Transform pos: -48.5,11.5 parent: 2 - - uid: 3832 + - uid: 3839 components: - type: Transform pos: -48.5,10.5 parent: 2 - - uid: 3833 + - uid: 3840 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 3834 + - uid: 3841 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 3835 + - uid: 3842 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 3836 + - uid: 3843 components: - type: Transform pos: -46.5,8.5 parent: 2 - - uid: 3837 + - uid: 3844 components: - type: Transform pos: -45.5,8.5 parent: 2 - - uid: 3838 + - uid: 3845 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 3839 + - uid: 3846 components: - type: Transform pos: -43.5,8.5 parent: 2 - - uid: 3840 + - uid: 3847 components: - type: Transform pos: -42.5,8.5 parent: 2 - - uid: 3841 + - uid: 3848 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 3842 + - uid: 3849 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 3843 + - uid: 3850 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 3844 + - uid: 3851 components: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 3845 + - uid: 3852 components: - type: Transform pos: -41.5,3.5 parent: 2 - - uid: 3846 + - uid: 3853 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 3847 + - uid: 3854 components: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 3848 + - uid: 3855 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 3849 + - uid: 3856 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 3850 + - uid: 3857 components: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 3851 + - uid: 3858 components: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 3852 + - uid: 3859 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 3853 + - uid: 3860 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 3854 + - uid: 3861 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 3855 + - uid: 3862 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 3856 + - uid: 3863 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 3857 + - uid: 3864 components: - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 3858 + - uid: 3865 components: - type: Transform pos: -38.5,-6.5 parent: 2 - - uid: 3859 + - uid: 3866 components: - type: Transform pos: -37.5,-6.5 parent: 2 - - uid: 3860 + - uid: 3867 components: - type: Transform pos: -36.5,-6.5 parent: 2 - - uid: 3861 + - uid: 3868 components: - type: Transform pos: -35.5,-6.5 parent: 2 - - uid: 3862 + - uid: 3869 components: - type: Transform pos: -34.5,-6.5 parent: 2 - - uid: 3863 + - uid: 3870 components: - type: Transform pos: -33.5,-6.5 parent: 2 - - uid: 3864 + - uid: 3871 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 3865 + - uid: 3872 components: - type: Transform pos: -31.5,-6.5 parent: 2 - - uid: 3866 + - uid: 3873 components: - type: Transform pos: -30.5,-6.5 parent: 2 - - uid: 3867 + - uid: 3874 components: - type: Transform pos: -29.5,-6.5 parent: 2 - - uid: 3868 + - uid: 3875 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 3869 + - uid: 3876 components: - type: Transform pos: -29.5,-8.5 parent: 2 - - uid: 3870 + - uid: 3877 components: - type: Transform pos: -29.5,-9.5 parent: 2 - - uid: 3871 + - uid: 3878 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 3872 + - uid: 3879 components: - type: Transform pos: -27.5,-9.5 parent: 2 - - uid: 3873 + - uid: 3880 components: - type: Transform pos: -26.5,-9.5 parent: 2 - - uid: 3874 + - uid: 3881 components: - type: Transform pos: -25.5,-9.5 parent: 2 - - uid: 3875 + - uid: 3882 components: - type: Transform pos: -24.5,-9.5 parent: 2 - - uid: 3876 + - uid: 3883 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 3877 + - uid: 3884 components: - type: Transform pos: -22.5,-9.5 parent: 2 - - uid: 3878 + - uid: 3885 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 3879 + - uid: 3886 components: - type: Transform pos: -20.5,-9.5 parent: 2 - - uid: 3880 + - uid: 3887 components: - type: Transform pos: -19.5,-9.5 parent: 2 - - uid: 3881 + - uid: 3888 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 3882 + - uid: 3889 components: - type: Transform pos: -17.5,-9.5 parent: 2 - - uid: 3883 + - uid: 3890 components: - type: Transform pos: -16.5,-9.5 parent: 2 - - uid: 3884 + - uid: 3891 components: - type: Transform pos: -15.5,-9.5 parent: 2 - - uid: 3885 + - uid: 3892 components: - type: Transform pos: -14.5,-9.5 parent: 2 - - uid: 3886 + - uid: 3893 components: - type: Transform pos: -13.5,-9.5 parent: 2 - - uid: 3887 + - uid: 3894 components: - type: Transform pos: -12.5,-9.5 parent: 2 - - uid: 3888 + - uid: 3895 components: - type: Transform pos: -11.5,-9.5 parent: 2 - - uid: 3889 + - uid: 3896 components: - type: Transform pos: -10.5,-9.5 parent: 2 - - uid: 3890 + - uid: 3897 components: - type: Transform pos: -9.5,-9.5 parent: 2 - - uid: 3891 + - uid: 3898 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 3892 + - uid: 3899 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 3893 + - uid: 3900 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - uid: 3894 + - uid: 3901 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 3895 + - uid: 3902 components: - type: Transform pos: -8.5,-5.5 parent: 2 - - uid: 3896 + - uid: 3903 components: - type: Transform pos: -7.5,-5.5 parent: 2 - - uid: 3897 + - uid: 3904 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 3898 + - uid: 3905 components: - type: Transform pos: -5.5,-5.5 parent: 2 - - uid: 3899 + - uid: 3906 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 3900 + - uid: 3907 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 3901 + - uid: 3908 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 3902 + - uid: 3909 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 3903 + - uid: 3910 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 3904 + - uid: 3911 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 3905 + - uid: 3912 components: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 3906 + - uid: 3913 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 3907 + - uid: 3914 components: - type: Transform pos: 3.5,-5.5 parent: 2 - - uid: 3908 + - uid: 3915 components: - type: Transform pos: 4.5,-5.5 parent: 2 - - uid: 3909 + - uid: 3916 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 3910 + - uid: 3917 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 3911 + - uid: 3918 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 3912 + - uid: 3919 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 3913 + - uid: 3920 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 3914 + - uid: 3921 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 3915 + - uid: 3922 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 3916 + - uid: 3923 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 3917 + - uid: 3924 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 3918 + - uid: 3925 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 3919 + - uid: 3926 components: - type: Transform pos: 16.5,-2.5 parent: 2 - - uid: 3920 + - uid: 3927 components: - type: Transform pos: 17.5,-2.5 parent: 2 - - uid: 3921 + - uid: 3928 components: - type: Transform pos: 18.5,-2.5 parent: 2 - - uid: 3922 + - uid: 3929 components: - type: Transform pos: 19.5,-2.5 parent: 2 - - uid: 3923 + - uid: 3930 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 3924 + - uid: 3931 components: - type: Transform pos: 21.5,-2.5 parent: 2 - - uid: 3925 + - uid: 3932 components: - type: Transform pos: 11.5,29.5 parent: 2 - - uid: 3926 + - uid: 3933 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 3927 + - uid: 3934 components: - type: Transform pos: 12.5,29.5 parent: 2 - - uid: 3928 + - uid: 3935 components: - type: Transform pos: 13.5,29.5 parent: 2 - - uid: 3929 + - uid: 3936 components: - type: Transform pos: 14.5,29.5 parent: 2 - - uid: 3930 + - uid: 3937 components: - type: Transform pos: 36.5,-4.5 parent: 2 - - uid: 3931 + - uid: 3938 components: - type: Transform pos: 18.5,29.5 parent: 2 - - uid: 3932 + - uid: 3939 components: - type: Transform pos: 19.5,29.5 parent: 2 - - uid: 3933 + - uid: 3940 components: - type: Transform pos: 20.5,29.5 parent: 2 - - uid: 3934 + - uid: 3941 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 3935 + - uid: 3942 components: - type: Transform pos: 22.5,29.5 parent: 2 - - uid: 3936 + - uid: 3943 components: - type: Transform pos: 36.5,-3.5 parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 3937 + - uid: 3944 components: - type: Transform pos: 13.5,19.5 @@ -26822,157 +27539,157 @@ entities: - 0 - proto: HandheldGPSBasic entities: - - uid: 3938 + - uid: 3945 components: - type: Transform pos: -28.510199,28.316803 parent: 2 - - uid: 3939 + - uid: 3946 components: - type: Transform pos: -28.228949,28.394928 parent: 2 - proto: HandLabeler entities: - - uid: 3940 + - uid: 3947 components: - type: Transform pos: -41.29967,19.974966 parent: 2 - proto: HappyHonkNukieSnacks entities: - - uid: 3941 + - uid: 3948 components: - type: Transform pos: 12.691084,10.421373 parent: 2 - proto: HelicopterInstrument entities: - - uid: 3942 + - uid: 3949 components: - type: Transform pos: 0.484375,18.038832 parent: 2 - proto: HighSecArmoryLocked entities: - - uid: 3943 + - uid: 3950 components: - type: Transform pos: 12.5,18.5 parent: 2 - proto: HighSecCommandLocked entities: - - uid: 3944 + - uid: 3951 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 3945 + - uid: 3952 components: - type: Transform pos: 31.5,4.5 parent: 2 - - uid: 3946 + - uid: 3953 components: - type: Transform pos: 30.5,4.5 parent: 2 - - uid: 3947 + - uid: 3954 components: - type: Transform pos: 34.5,11.5 parent: 2 - - uid: 3948 + - uid: 3955 components: - type: Transform pos: 24.5,4.5 parent: 2 - proto: HoloFanTram entities: - - uid: 3949 + - uid: 3956 components: - type: Transform pos: 19.5,14.5 parent: 2 - - uid: 3950 + - uid: 3957 components: - type: Transform pos: 11.5,3.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 3951 + - uid: 3958 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,13.5 parent: 2 - - uid: 3952 + - uid: 3959 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,13.5 parent: 2 - - uid: 3953 + - uid: 3960 components: - type: Transform pos: -35.5,15.5 parent: 2 - - uid: 3954 + - uid: 3961 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 3955 + - uid: 3962 components: - type: Transform pos: -35.5,14.5 parent: 2 - proto: hydroponicsTray entities: - - uid: 3956 + - uid: 3963 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,15.5 parent: 2 - - uid: 3957 + - uid: 3964 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,15.5 parent: 2 - - uid: 3958 + - uid: 3965 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,15.5 parent: 2 - - uid: 3959 + - uid: 3966 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 2 - - uid: 3960 + - uid: 3967 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,20.5 parent: 2 - - uid: 3961 + - uid: 3968 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,20.5 parent: 2 - - uid: 3962 + - uid: 3969 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 - - uid: 3963 + - uid: 3970 components: - type: Transform rot: -1.5707963267948966 rad @@ -26980,7 +27697,7 @@ entities: parent: 2 - proto: Igniter entities: - - uid: 3964 + - uid: 3971 components: - type: Transform pos: 40.28647,5.7144175 @@ -26990,21 +27707,21 @@ entities: receiveFrequency: 1280 - proto: IngotGold entities: - - uid: 3965 + - uid: 3972 components: - type: Transform pos: 35.406853,0.6185373 parent: 2 - proto: IngotSilver entities: - - uid: 3966 + - uid: 3973 components: - type: Transform pos: 35.547478,0.3841623 parent: 2 - proto: JanitorialTrolley entities: - - uid: 3967 + - uid: 3974 components: - type: Transform rot: -1.5707963267948966 rad @@ -27012,68 +27729,68 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: - - uid: 2241 + - uid: 2249 components: - type: Transform - parent: 2238 + parent: 2246 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2245 + - uid: 2253 components: - type: Transform - parent: 2242 + parent: 2250 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Jukebox entities: - - uid: 3968 + - uid: 3975 components: - type: Transform pos: -3.5,9.5 parent: 2 - proto: KitchenElectricGrill entities: - - uid: 3969 + - uid: 3976 components: - type: Transform pos: 0.5,12.5 parent: 2 - proto: KitchenMicrowave entities: - - uid: 3970 + - uid: 3977 components: - type: Transform pos: 2.5,13.5 parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 3971 + - uid: 3978 components: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 3972 + - uid: 3979 components: - type: Transform pos: -39.5,19.5 parent: 2 - proto: KitchenSpike entities: - - uid: 3973 + - uid: 3980 components: - type: Transform pos: -2.5,13.5 parent: 2 - proto: Lamp entities: - - uid: 3974 + - uid: 3981 components: - type: Transform pos: -23.480856,8.977894 parent: 2 - - uid: 3975 + - uid: 3982 components: - type: Transform rot: -1.5707963267948966 rad @@ -27081,7 +27798,7 @@ entities: parent: 2 - proto: LampGold entities: - - uid: 3976 + - uid: 3983 components: - type: Transform rot: 3.141592653589793 rad @@ -27089,72 +27806,72 @@ entities: parent: 2 - proto: LightBulbBroken entities: - - uid: 3978 + - uid: 3985 components: - type: Transform - parent: 3977 + parent: 3984 - type: Physics canCollide: False - - uid: 3980 + - uid: 3987 components: - type: Transform - parent: 3979 + parent: 3986 - type: Physics canCollide: False - - uid: 3982 + - uid: 3989 components: - type: Transform - parent: 3981 + parent: 3988 - type: Physics canCollide: False - - uid: 3984 + - uid: 3991 components: - type: Transform - parent: 3983 + parent: 3990 - type: Physics canCollide: False - - uid: 3986 + - uid: 3993 components: - type: Transform - parent: 3985 + parent: 3992 - type: Physics canCollide: False - - uid: 3988 + - uid: 3995 components: - type: Transform - parent: 3987 + parent: 3994 - type: Physics canCollide: False - - uid: 3990 + - uid: 3997 components: - type: Transform - parent: 3989 + parent: 3996 - type: Physics canCollide: False - proto: LightReplacerEmpty entities: - - uid: 3991 + - uid: 3998 components: - type: Transform pos: -3.7284126,1.3986063 parent: 2 - proto: LightTubeBroken entities: - - uid: 3993 + - uid: 4000 components: - type: Transform - parent: 3992 + parent: 3999 - type: Physics canCollide: False - - uid: 3995 + - uid: 4002 components: - type: Transform - parent: 3994 + parent: 4001 - type: Physics canCollide: False - proto: LockableButtonCommand entities: - - uid: 3996 + - uid: 4003 components: - type: Transform rot: 3.141592653589793 rad @@ -27180,7 +27897,7 @@ entities: - Pressed: Toggle - proto: LockableButtonResearch entities: - - uid: 3997 + - uid: 4004 components: - type: Transform rot: -1.5707963267948966 rad @@ -27188,9 +27905,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 4558: + 4564: - Pressed: Toggle - - uid: 3998 + - uid: 4005 components: - type: Transform rot: -1.5707963267948966 rad @@ -27198,37 +27915,37 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 4557: + 4563: - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 3999 + - uid: 4006 components: - type: Transform pos: -36.5,6.5 parent: 2 - proto: LockerBoozeFilled entities: - - uid: 4000 + - uid: 4007 components: - type: Transform pos: 3.5,8.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 4001 + - uid: 4008 components: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 4002 + - uid: 4009 components: - type: Transform pos: 4.5,17.5 parent: 2 - proto: LockerCaptainFilledNoLaser entities: - - uid: 2225 + - uid: 2233 components: - type: Transform pos: 7.5,27.5 @@ -27265,14 +27982,14 @@ entities: showEnts: False occludes: True ents: - - 2226 + - 2234 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerChemistryFilled entities: - - uid: 2231 + - uid: 2239 components: - type: Transform pos: -41.5,17.5 @@ -27309,12 +28026,12 @@ entities: showEnts: False occludes: True ents: - - 2232 + - 2240 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 2233 + - uid: 2241 components: - type: Transform pos: -41.5,16.5 @@ -27351,21 +28068,21 @@ entities: showEnts: False occludes: True ents: - - 2234 + - 2242 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 4003 + - uid: 4010 components: - type: Transform pos: -25.5,10.5 parent: 2 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 2235 + - uid: 2243 components: - type: Transform pos: -45.5,11.5 @@ -27402,7 +28119,7 @@ entities: showEnts: False occludes: True ents: - - 2236 + - 2244 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -27435,43 +28152,43 @@ entities: ent: null - proto: LockerEngineerFilledHardsuit entities: - - uid: 4004 + - uid: 4011 components: - type: Transform pos: -23.5,13.5 parent: 2 - - uid: 4005 + - uid: 4012 components: - type: Transform pos: -24.5,14.5 parent: 2 - proto: LockerEvidence entities: - - uid: 4006 + - uid: 4013 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 4007 + - uid: 4014 components: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 4008 + - uid: 4015 components: - type: Transform pos: 12.5,9.5 parent: 2 - proto: LockerFreezer entities: - - uid: 4009 + - uid: 4016 components: - type: Transform pos: -1.5,13.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 2227 + - uid: 2235 components: - type: Transform pos: 12.5,15.5 @@ -27508,44 +28225,44 @@ entities: showEnts: False occludes: True ents: - - 2228 - - 2229 + - 2236 + - 2237 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedicalFilled entities: - - uid: 4010 + - uid: 4017 components: - type: Transform pos: -35.5,12.5 parent: 2 - - uid: 4011 + - uid: 4018 components: - type: Transform pos: -38.5,11.5 parent: 2 - - uid: 4012 + - uid: 4019 components: - type: Transform pos: -35.5,11.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 4013 + - uid: 4020 components: - type: Transform pos: -37.5,15.5 parent: 2 - - uid: 4014 + - uid: 4021 components: - type: Transform pos: -37.5,14.5 parent: 2 - proto: LockerMime entities: - - uid: 2199 + - uid: 2207 components: - type: Transform pos: -6.5,1.5 @@ -27556,72 +28273,72 @@ entities: showEnts: False occludes: True ents: - - 2204 - - 2207 - - 2203 - - 2206 + - 2212 + - 2215 + - 2211 + - 2214 + - 2216 + - 2210 + - 2213 - 2208 - - 2202 - - 2205 - - 2200 - - 2201 + - 2209 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerParamedicFilled entities: - - uid: 4015 + - uid: 4022 components: - type: Transform pos: -39.5,11.5 parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 4016 + - uid: 4023 components: - type: Transform pos: -8.5,28.5 parent: 2 - proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 4017 + - uid: 4024 components: - type: Transform pos: 35.5,10.5 parent: 2 - proto: LockerSalvageSpecialistFilled entities: - - uid: 4018 + - uid: 4025 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 4019 + - uid: 4026 components: - type: Transform pos: -28.5,26.5 parent: 2 - proto: LockerScienceFilled entities: - - uid: 4020 + - uid: 4027 components: - type: Transform pos: 26.5,12.5 parent: 2 - - uid: 4021 + - uid: 4028 components: - type: Transform pos: 27.5,12.5 parent: 2 - - uid: 4022 + - uid: 4029 components: - type: Transform pos: 28.5,12.5 parent: 2 - proto: LockerSecurityFilled entities: - - uid: 2238 + - uid: 2246 components: - type: Transform pos: 9.5,16.5 @@ -27658,14 +28375,14 @@ entities: showEnts: False occludes: True ents: - - 2239 - - 2241 - - 2240 + - 2247 + - 2249 + - 2248 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 2242 + - uid: 2250 components: - type: Transform pos: 9.498301,17.529608 @@ -27702,55 +28419,55 @@ entities: showEnts: False occludes: True ents: - - 2243 - - 2245 - - 2244 + - 2251 + - 2253 + - 2252 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LuxuryPen entities: - - uid: 4023 + - uid: 4030 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.260446,28.488953 parent: 2 - - uid: 4024 + - uid: 4031 components: - type: Transform pos: -2.1206398,25.48864 parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 4025 + - uid: 4032 components: - type: Transform pos: 43.5,19.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 4026 + - uid: 4033 components: - type: Transform pos: 42.5,17.5 parent: 2 - proto: MachineAPE entities: - - uid: 4027 + - uid: 4034 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,18.5 parent: 2 - - uid: 4028 + - uid: 4035 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,17.5 parent: 2 - - uid: 4029 + - uid: 4036 components: - type: Transform rot: -1.5707963267948966 rad @@ -27760,7 +28477,7 @@ entities: locked: True - proto: MachineArtifactAnalyzer entities: - - uid: 4030 + - uid: 4037 components: - type: Transform rot: -1.5707963267948966 rad @@ -27768,8 +28485,8 @@ entities: parent: 2 - type: ItemPlacer placedEntities: - - 4040 - - uid: 4031 + - 4047 + - uid: 4038 components: - type: Transform rot: -1.5707963267948966 rad @@ -27777,7 +28494,7 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 4032 + - uid: 4039 components: - type: Transform rot: 3.141592653589793 rad @@ -27785,168 +28502,168 @@ entities: parent: 2 - proto: MaterialDiamond1 entities: - - uid: 4033 + - uid: 4040 components: - type: Transform pos: 35.620193,-0.45770514 parent: 2 - - uid: 4034 + - uid: 4041 components: - type: Transform pos: 35.307693,-0.22333014 parent: 2 - proto: MedicalBed entities: - - uid: 4035 + - uid: 4042 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 4036 + - uid: 4043 components: - type: Transform pos: -35.5,14.5 parent: 2 - - uid: 4037 + - uid: 4044 components: - type: Transform pos: -35.5,15.5 parent: 2 - proto: MedicalRecordsComputerCircuitboard entities: - - uid: 4038 + - uid: 4045 components: - type: Transform pos: 26.650637,-0.46173322 parent: 2 - proto: MedicalTechFab entities: - - uid: 4039 + - uid: 4046 components: - type: Transform pos: -38.5,14.5 parent: 2 - proto: MediumXenoArtifact entities: - - uid: 4040 + - uid: 4047 components: - type: Transform pos: 40.5,12.5 parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 4041 + - uid: 4048 components: - type: Transform pos: -40.463894,11.519444 parent: 2 - proto: MedkitBruteFilled entities: - - uid: 4042 + - uid: 4049 components: - type: Transform pos: -41.713894,11.441238 parent: 2 - - uid: 4043 + - uid: 4050 components: - type: Transform pos: -25.37879,26.939749 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 4044 + - uid: 4051 components: - type: Transform pos: -41.182644,11.409955 parent: 2 - proto: MedkitCombat entities: - - uid: 4045 + - uid: 4052 components: - type: Transform pos: -40.44827,11.378673 parent: 2 - type: ActiveUserInterface - - uid: 4046 + - uid: 4053 components: - type: Transform pos: 11.522643,17.241434 parent: 2 - proto: MedkitCombatFilled entities: - - uid: 4047 + - uid: 4054 components: - type: Transform pos: -45.756798,13.615684 parent: 2 - proto: MedkitFilled entities: - - uid: 4048 + - uid: 4055 components: - type: Transform pos: -41.63577,12.7238245 parent: 2 - - uid: 4049 + - uid: 4056 components: - type: Transform pos: -36.507095,19.821655 parent: 2 - - uid: 4050 + - uid: 4057 components: - type: Transform pos: -2.5324898,30.5565 parent: 2 - - uid: 4051 + - uid: 4058 components: - type: Transform pos: -41.683445,12.1600275 parent: 2 - - uid: 4052 + - uid: 4059 components: - type: Transform pos: -17.375036,25.756329 parent: 2 - - uid: 4053 + - uid: 4060 components: - type: Transform pos: -25.610968,26.595999 parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 4054 + - uid: 4061 components: - type: Transform pos: -41.16702,11.519444 parent: 2 - - uid: 4055 + - uid: 4062 components: - type: Transform pos: -17.296911,25.381329 parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 4056 + - uid: 4063 components: - type: Transform pos: -41.72952,11.550727 parent: 2 - proto: MopBucket entities: - - uid: 4057 + - uid: 4064 components: - type: Transform pos: -24.42958,19.457806 parent: 2 - proto: MopItem entities: - - uid: 4058 + - uid: 4065 components: - type: Transform pos: -23.382706,20.416718 parent: 2 - proto: Morgue entities: - - uid: 4059 + - uid: 4066 components: - type: Transform rot: -1.5707963267948966 rad @@ -27954,48 +28671,48 @@ entities: parent: 2 - proto: MousetrapArmed entities: - - uid: 4060 + - uid: 4067 components: - type: Transform pos: -25.538956,18.566254 parent: 2 - proto: Multitool entities: - - uid: 4061 + - uid: 4068 components: - type: Transform pos: -9.661507,20.485315 parent: 2 - - uid: 4062 + - uid: 4069 components: - type: Transform pos: 27.242329,9.9105425 parent: 2 - - uid: 4063 + - uid: 4070 components: - type: Transform pos: -29.347761,9.357633 parent: 2 - - uid: 4064 + - uid: 4071 components: - type: Transform pos: -30.100313,9.63146 parent: 2 - - uid: 4065 + - uid: 4072 components: - type: Transform pos: 3.835372,30.428255 parent: 2 - proto: NitrogenCanister entities: - - uid: 4066 + - uid: 4073 components: - type: Transform pos: -31.5,-2.5 parent: 2 - proto: NTFlag entities: - - uid: 4067 + - uid: 4074 components: - type: Transform rot: -1.5707963267948966 rad @@ -28003,7 +28720,7 @@ entities: parent: 2 - proto: NuclearBombUnanchored entities: - - uid: 4068 + - uid: 4075 components: - type: Transform rot: 1.5707963267948966 rad @@ -28011,47 +28728,47 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 4069 + - uid: 4076 components: - type: Transform pos: 34.5,16.5 parent: 2 - proto: OreProcessor entities: - - uid: 4070 + - uid: 4077 components: - type: Transform pos: -27.5,25.5 parent: 2 - proto: OrganSlimeLungs entities: - - uid: 4071 + - uid: 4078 components: - type: Transform pos: 40.819386,17.558788 parent: 2 - proto: OxygenCanister entities: - - uid: 4072 + - uid: 4079 components: - type: Transform pos: -31.5,1.5 parent: 2 - proto: OxygenTankFilled entities: - - uid: 4073 + - uid: 4080 components: - type: Transform pos: -10.548314,20.602875 parent: 2 - - uid: 4074 + - uid: 4081 components: - type: Transform pos: -10.688939,20.681082 parent: 2 - proto: PaintingSadClown entities: - - uid: 4075 + - uid: 4082 components: - type: Transform pos: -7.5,2.5 @@ -28211,29 +28928,29 @@ entities: containers: solution@food: !type:ContainerSlot ent: 37 - - uid: 4076 + - uid: 4083 components: - type: Transform pos: 9.660971,10.539895 parent: 2 - - uid: 4077 + - uid: 4084 components: - type: Transform pos: 12.692221,10.524254 parent: 2 - - uid: 4078 + - uid: 4085 components: - type: Transform pos: 4.2273283,12.451281 parent: 2 - - uid: 4079 + - uid: 4086 components: - type: Transform pos: 4.2742033,12.420031 parent: 2 - proto: PaperCaptainsThoughts entities: - - uid: 4080 + - uid: 4087 components: - type: Transform pos: 7.444857,25.832703 @@ -28305,7 +29022,7 @@ entities: solution@food: !type:ContainerSlot ent: 18 - type: InsideEntityStorage - - uid: 4081 + - uid: 4088 components: - type: Transform pos: -10.77313,28.473328 @@ -28437,32 +29154,32 @@ entities: solution@food: !type:ContainerSlot ent: 13 - type: InsideEntityStorage - - uid: 4082 + - uid: 4089 components: - type: Transform pos: -10.601255,28.770203 parent: 2 - proto: Pen entities: - - uid: 4083 + - uid: 4090 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.723471,10.367842 parent: 2 - - uid: 4084 + - uid: 4091 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.739096,10.336558 parent: 2 - - uid: 4085 + - uid: 4092 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.543356,9.509144 parent: 2 - - uid: 4086 + - uid: 4093 components: - type: Transform rot: -1.5707963267948966 rad @@ -28470,7 +29187,7 @@ entities: parent: 2 - proto: PenCap entities: - - uid: 4087 + - uid: 4094 components: - type: Transform rot: -1.5707963267948966 rad @@ -28478,43 +29195,43 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 4088 + - uid: 4095 components: - type: Transform pos: -28.416449,28.676178 parent: 2 - - uid: 4089 + - uid: 4096 components: - type: Transform pos: -28.635199,28.676178 parent: 2 - proto: PillCanister entities: - - uid: 4090 + - uid: 4097 components: - type: Transform pos: -41.4799,20.212784 parent: 2 - proto: PillCanisterTricordrazine entities: - - uid: 4091 + - uid: 4098 components: - type: Transform pos: -41.82365,20.197159 parent: 2 - - uid: 4092 + - uid: 4099 components: - type: Transform pos: -41.651775,20.197159 parent: 2 - proto: PlasmaCanister entities: - - uid: 4093 + - uid: 4100 components: - type: Transform pos: -31.5,-0.5 parent: 2 - - uid: 4094 + - uid: 4101 components: - type: Transform pos: 44.5,15.5 @@ -28523,111 +29240,111 @@ entities: locked: False - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 4095 + - uid: 4102 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,15.5 parent: 2 - - uid: 4096 + - uid: 4103 components: - type: Transform pos: 12.5,15.5 parent: 2 - - uid: 4097 + - uid: 4104 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,0.5 parent: 2 - - uid: 4098 + - uid: 4105 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-1.5 parent: 2 - - uid: 4099 + - uid: 4106 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-1.5 parent: 2 - - uid: 4100 + - uid: 4107 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-1.5 parent: 2 - - uid: 4101 + - uid: 4108 components: - type: Transform pos: -31.5,0.5 parent: 2 - - uid: 4102 + - uid: 4109 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-2.5 parent: 2 - - uid: 4103 + - uid: 4110 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-1.5 parent: 2 - - uid: 4104 + - uid: 4111 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,1.5 parent: 2 - - uid: 4105 + - uid: 4112 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 4106 + - uid: 4113 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 4107 + - uid: 4114 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,3.5 parent: 2 - - uid: 4108 + - uid: 4115 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 - - uid: 4109 + - uid: 4116 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 - - uid: 4110 + - uid: 4117 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-0.5 parent: 2 - - uid: 4111 + - uid: 4118 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 - - uid: 4112 + - uid: 4119 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,1.5 parent: 2 - - uid: 4113 + - uid: 4120 components: - type: Transform rot: 3.141592653589793 rad @@ -28650,7 +29367,7 @@ entities: - 40 - proto: PlasmaWindoorSecureArmoryLocked entities: - - uid: 4114 + - uid: 4121 components: - type: Transform rot: 1.5707963267948966 rad @@ -28658,7 +29375,7 @@ entities: parent: 2 - proto: PlasmaWindoorSecureEngineeringLocked entities: - - uid: 4115 + - uid: 4122 components: - type: Transform rot: -1.5707963267948966 rad @@ -28666,7 +29383,7 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 4116 + - uid: 4123 components: - type: Transform rot: 3.141592653589793 rad @@ -28674,25 +29391,25 @@ entities: parent: 2 - proto: PlastitaniumWindow entities: - - uid: 4117 + - uid: 4124 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-1.5 parent: 2 - - uid: 4118 + - uid: 4125 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 - - uid: 4119 + - uid: 4126 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 - - uid: 4120 + - uid: 4127 components: - type: Transform rot: -1.5707963267948966 rad @@ -28700,77 +29417,76 @@ entities: parent: 2 - proto: PlushieArachind entities: - - uid: 4121 + - uid: 4128 components: - type: MetaData desc: Мофф сок или вех сок? Пить или не пить? вот в чём вопрос... - type: Transform pos: 0.46552664,10.649095 parent: 2 - - uid: 4122 + - uid: 4129 components: - type: Transform pos: -36.496044,20.509573 parent: 2 - proto: PlushieAtmosian entities: - - uid: 4123 + - uid: 4130 components: - type: Transform pos: -37.474594,-3.0732853 parent: 2 - - uid: 4124 + - uid: 4131 components: - type: MetaData desc: Очаровательная мягкая игрушка, которая строит станцию только он не знает что он не атмос, не говорите ему тссс! name: плюшевый космонавт в костюме атмоса - type: Transform - rot: -0.2918262779712677 rad - pos: 16.315596,4.761301 + pos: 24.638037,0.541433 parent: 2 - proto: PlushieBee entities: - - uid: 4125 + - uid: 4132 components: - type: Transform pos: -10.558015,6.720878 parent: 2 - proto: PlushieCarp entities: - - uid: 4126 + - uid: 4133 components: - type: Transform pos: -10.429109,12.881719 parent: 2 - - uid: 4127 + - uid: 4134 components: - type: Transform pos: -21.265024,19.87053 parent: 2 - proto: PlushieDiona entities: - - uid: 4128 + - uid: 4135 components: - type: Transform pos: 1.7920415,17.681065 parent: 2 - proto: PlushieGhost entities: - - uid: 4129 + - uid: 4136 components: - type: Transform pos: 26.443565,3.4236379 parent: 2 - proto: PlushieHampter entities: - - uid: 4130 + - uid: 4137 components: - type: Transform pos: 6.5581226,25.738266 parent: 2 - proto: PlushieHolocarp entities: - - uid: 4131 + - uid: 4138 components: - type: Transform pos: -20.827522,19.448654 @@ -28797,84 +29513,84 @@ entities: - type: Label originalName: Плюшевый Олег МЕТОфомин currentLabel: Made in Tenteratus - - uid: 4132 + - uid: 4139 components: - type: Transform pos: -3.581101,-0.20555347 parent: 2 - proto: PlushieLamp entities: - - uid: 4133 + - uid: 4140 components: - type: Transform pos: 6.1831226,25.878891 parent: 2 - - uid: 4134 + - uid: 4141 components: - type: Transform pos: 9.340236,10.476391 parent: 2 - - uid: 4135 + - uid: 4142 components: - type: Transform pos: 12.387111,10.445108 parent: 2 - proto: PlushieLizard entities: - - uid: 4136 + - uid: 4143 components: - type: Transform pos: -9.859943,22.460953 parent: 2 - - uid: 4137 + - uid: 4144 components: - type: Transform pos: 35.49455,24.67628 parent: 2 - proto: PlushieMagicarp entities: - - uid: 4138 + - uid: 4145 components: - type: Transform pos: -20.280647,19.229904 parent: 2 - proto: PlushieMoth entities: - - uid: 4139 + - uid: 4146 components: - type: Transform pos: 6.9345584,-0.4818719 parent: 2 - - uid: 4140 + - uid: 4147 components: - type: Transform pos: 6.721596,-0.60687196 parent: 2 - - uid: 4141 + - uid: 4148 components: - type: Transform pos: 6.4438176,-0.63002 parent: 2 - - uid: 4142 + - uid: 4149 components: - type: Transform pos: 6.119744,-0.5235386 parent: 2 - - uid: 4143 + - uid: 4150 components: - type: Transform pos: 3.4543824,25.577715 parent: 2 - proto: PlushieNar entities: - - uid: 4144 + - uid: 4151 components: - type: Transform pos: -23.543196,18.495705 parent: 2 - proto: PlushieNuke entities: - - uid: 4145 + - uid: 4152 components: - type: MetaData desc: ДАЙТЕ ЕМУ ПЛЬТ ОТ ЯДЕРКИ!!! @@ -28883,28 +29599,28 @@ entities: parent: 2 - proto: PlushieRainbowCarp entities: - - uid: 4146 + - uid: 4153 components: - type: Transform pos: -21.655647,19.448652 parent: 2 - proto: PlushieRatvar entities: - - uid: 4147 + - uid: 4154 components: - type: Transform pos: 35.73153,2.935828 parent: 2 - proto: PlushieRGBee entities: - - uid: 4148 + - uid: 4155 components: - type: Transform pos: 41.48701,-0.4575107 parent: 2 - proto: PlushieRouny entities: - - uid: 4149 + - uid: 4156 components: - type: MetaData desc: Всеми любимый плюшевый муни! Он точно поможет вам разобратся во всех проблемах @@ -28918,182 +29634,182 @@ entities: currentLabel: Made in MilenVolf™ - proto: PlushieSharkBlue entities: - - uid: 4150 + - uid: 4157 components: - type: Transform pos: -30.430431,4.6561785 parent: 2 - proto: PlushieSlime entities: - - uid: 4151 + - uid: 4158 components: - type: Transform pos: 35.45777,8.900831 parent: 2 - proto: PlushieSnake entities: - - uid: 4152 + - uid: 4159 components: - type: Transform pos: 4.476898,0.4516226 parent: 2 - proto: PlushieSpaceLizard entities: - - uid: 4153 + - uid: 4160 components: - type: Transform pos: -30.157072,27.540379 parent: 2 - - uid: 4154 + - uid: 4161 components: - type: Transform pos: 12.57362,6.581854 parent: 2 - proto: PlushieVox entities: - - uid: 4155 + - uid: 4162 components: - type: Transform pos: 26.867329,10.6917925 parent: 2 - proto: PlushieXeno entities: - - uid: 4156 + - uid: 4163 components: - type: Transform pos: 16.540258,0.65526295 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 4157 + - uid: 4164 components: - type: Transform pos: -9.5,4.5 parent: 2 - proto: PortableRecharger entities: - - uid: 4158 + - uid: 4165 components: - type: Transform pos: 9.215163,19.307213 parent: 2 - proto: PortableScrubber entities: - - uid: 4159 + - uid: 4166 components: - type: Transform pos: -6.5,25.5 parent: 2 - - uid: 4160 + - uid: 4167 components: - type: Transform pos: -23.5,19.5 parent: 2 - - uid: 4161 + - uid: 4168 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 4162 + - uid: 4169 components: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 4163 + - uid: 4170 components: - type: Transform pos: -38.5,-2.5 parent: 2 - - uid: 4164 + - uid: 4171 components: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 4165 + - uid: 4172 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 4166 + - uid: 4173 components: - type: Transform pos: 40.5,21.5 parent: 2 - proto: PositronicBrain entities: - - uid: 4167 + - uid: 4174 components: - type: Transform pos: 28.688494,14.403195 parent: 2 - proto: PosterContrabandBorgFancy entities: - - uid: 4168 + - uid: 4175 components: - type: Transform pos: 35.5,20.5 parent: 2 - proto: PosterContrabandBorgFancyv2 entities: - - uid: 4169 + - uid: 4176 components: - type: Transform pos: 36.5,19.5 parent: 2 - proto: PosterContrabandLamarr entities: - - uid: 4170 + - uid: 4177 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 4171 + - uid: 4178 components: - type: Transform pos: 40.5,20.5 parent: 2 - proto: PosterLegitBlessThisSpess entities: - - uid: 4172 + - uid: 4179 components: - type: Transform pos: 14.5,13.5 parent: 2 - proto: PosterLegitIonRifle entities: - - uid: 4173 + - uid: 4180 components: - type: Transform pos: 29.5,26.5 parent: 2 - proto: PosterLegitMime entities: - - uid: 4174 + - uid: 4181 components: - type: Transform pos: -6.5,0.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 4175 + - uid: 4182 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 2 - - uid: 4176 + - uid: 4183 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,32.5 parent: 2 - - uid: 4177 + - uid: 4184 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,24.5 parent: 2 - - uid: 4178 + - uid: 4185 components: - type: Transform rot: -1.5707963267948966 rad @@ -29101,14 +29817,14 @@ entities: parent: 2 - proto: PosterLegitNoERP entities: - - uid: 4179 + - uid: 4186 components: - type: MetaData - desc: Плакат был повешен специально от сильно влюбчивых фелинидов + desc: Никакого ЕРП возле мостика! - type: Transform pos: -3.5,24.5 parent: 2 - - uid: 4180 + - uid: 4187 components: - type: MetaData desc: Никакого ЕРП даже если вы ГСБ! @@ -29118,281 +29834,281 @@ entities: parent: 2 - proto: PottedPlantRandom entities: - - uid: 4181 + - uid: 4188 components: - type: Transform pos: 33.5,24.5 parent: 2 - - uid: 4182 + - uid: 4189 components: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 4183 + - uid: 4190 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 4184 + - uid: 4191 components: - type: Transform pos: 3.5,20.5 parent: 2 - - uid: 4185 + - uid: 4192 components: - type: Transform pos: 3.5,31.5 parent: 2 - - uid: 4186 + - uid: 4193 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 4187 + - uid: 4194 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 4188 + - uid: 4195 components: - type: Transform pos: 38.5,5.5 parent: 2 - - uid: 4189 + - uid: 4196 components: - type: Transform pos: -38.5,29.5 parent: 2 - - uid: 4190 + - uid: 4197 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 4191 + - uid: 4198 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 4192 + - uid: 4199 components: - type: Transform pos: 20.5,21.5 parent: 2 - - uid: 4193 + - uid: 4200 components: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 4194 + - uid: 4201 components: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 4195 + - uid: 4202 components: - type: Transform pos: 5.5,21.5 parent: 2 - - uid: 4196 + - uid: 4203 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 4197 + - uid: 4204 components: - type: Transform pos: 29.5,9.5 parent: 2 - proto: PowerCellHigh entities: - - uid: 4198 + - uid: 4205 components: - type: Transform pos: -9.15597,20.878263 parent: 2 - proto: PowerComputerCircuitboard entities: - - uid: 4199 + - uid: 4206 components: - type: Transform pos: 35.396217,2.646682 parent: 2 - proto: Poweredlight entities: - - uid: 4200 + - uid: 4207 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,12.5 parent: 2 - - uid: 4201 + - uid: 4208 components: - type: Transform pos: 12.5,19.5 parent: 2 - - uid: 4202 + - uid: 4209 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,26.5 parent: 2 - - uid: 4203 + - uid: 4210 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,29.5 parent: 2 - - uid: 4204 + - uid: 4211 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,29.5 parent: 2 - - uid: 4205 + - uid: 4212 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,26.5 parent: 2 - - uid: 4206 + - uid: 4213 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,22.5 parent: 2 - - uid: 4207 + - uid: 4214 components: - type: Transform pos: -28.5,23.5 parent: 2 - - uid: 4208 + - uid: 4215 components: - type: Transform pos: -22.5,23.5 parent: 2 - - uid: 4209 + - uid: 4216 components: - type: Transform pos: 28.5,6.5 parent: 2 - - uid: 4210 + - uid: 4217 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 4211 + - uid: 4218 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,8.5 parent: 2 - - uid: 4212 + - uid: 4219 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,19.5 parent: 2 - - uid: 4213 + - uid: 4220 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,19.5 parent: 2 - - uid: 4214 + - uid: 4221 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,21.5 parent: 2 - - uid: 4215 + - uid: 4222 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,21.5 parent: 2 - - uid: 4216 + - uid: 4223 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,9.5 parent: 2 - - uid: 4217 + - uid: 4224 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,8.5 parent: 2 - - uid: 4218 + - uid: 4225 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,8.5 parent: 2 - - uid: 4219 + - uid: 4226 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,17.5 parent: 2 - - uid: 4220 + - uid: 4227 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,17.5 parent: 2 - - uid: 4221 + - uid: 4228 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,11.5 parent: 2 - - uid: 4222 + - uid: 4229 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,18.5 parent: 2 - - uid: 4223 + - uid: 4230 components: - type: Transform pos: 29.5,3.5 parent: 2 - - uid: 4224 + - uid: 4231 components: - type: Transform pos: 32.5,3.5 parent: 2 - - uid: 4225 + - uid: 4232 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,16.5 parent: 2 - - uid: 4226 + - uid: 4233 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,16.5 parent: 2 - - uid: 4227 + - uid: 4234 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,12.5 parent: 2 - - uid: 4228 + - uid: 4235 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,8.5 parent: 2 - - uid: 4229 + - uid: 4236 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,8.5 parent: 2 - - uid: 4230 + - uid: 4237 components: - type: Transform rot: 3.141592653589793 rad @@ -29400,14 +30116,14 @@ entities: parent: 2 - proto: PoweredlightBlue entities: - - uid: 4231 + - uid: 4238 components: - type: Transform pos: 34.5,12.5 parent: 2 - proto: PoweredlightCyan entities: - - uid: 4232 + - uid: 4239 components: - type: Transform rot: 1.5707963267948966 rad @@ -29415,7 +30131,7 @@ entities: parent: 2 - proto: PoweredlightEmpty entities: - - uid: 3992 + - uid: 3999 components: - type: Transform rot: 1.5707963267948966 rad @@ -29426,10 +30142,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3993 + ent: 4000 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3994 + - uid: 4001 components: - type: Transform rot: -1.5707963267948966 rad @@ -29440,513 +30156,513 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3995 + ent: 4002 - type: ApcPowerReceiver powerLoad: 0 - proto: PoweredSmallLight entities: - - uid: 4233 + - uid: 4240 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,29.5 parent: 2 - - uid: 4234 + - uid: 4241 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,33.5 parent: 2 - - uid: 4235 + - uid: 4242 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,27.5 parent: 2 - - uid: 4236 + - uid: 4243 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,27.5 parent: 2 - - uid: 4237 + - uid: 4244 components: - type: Transform pos: -33.5,32.5 parent: 2 - - uid: 4238 + - uid: 4245 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,20.5 parent: 2 - - uid: 4239 + - uid: 4246 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,20.5 parent: 2 - - uid: 4240 + - uid: 4247 components: - type: Transform pos: 3.5,23.5 parent: 2 - - uid: 4241 + - uid: 4248 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 4242 + - uid: 4249 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,20.5 parent: 2 - - uid: 4243 + - uid: 4250 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,20.5 parent: 2 - - uid: 4244 + - uid: 4251 components: - type: Transform pos: 7.5,27.5 parent: 2 - - uid: 4245 + - uid: 4252 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,21.5 parent: 2 - - uid: 4246 + - uid: 4253 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,12.5 parent: 2 - - uid: 4247 + - uid: 4254 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,12.5 parent: 2 - - uid: 4248 + - uid: 4255 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,9.5 parent: 2 - - uid: 4249 + - uid: 4256 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 2 - - uid: 4250 + - uid: 4257 components: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 4251 + - uid: 4258 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 2 - - uid: 4252 + - uid: 4259 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - - uid: 4253 + - uid: 4260 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 4254 + - uid: 4261 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,15.5 parent: 2 - - uid: 4255 + - uid: 4262 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,15.5 parent: 2 - - uid: 4256 + - uid: 4263 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 - - uid: 4257 + - uid: 4264 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,10.5 parent: 2 - - uid: 4258 + - uid: 4265 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,12.5 parent: 2 - - uid: 4259 + - uid: 4266 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,16.5 parent: 2 - - uid: 4260 + - uid: 4267 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 4261 + - uid: 4268 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,28.5 parent: 2 - - uid: 4262 + - uid: 4269 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,28.5 parent: 2 - - uid: 4263 + - uid: 4270 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,25.5 parent: 2 - - uid: 4264 + - uid: 4271 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,28.5 parent: 2 - - uid: 4265 + - uid: 4272 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 parent: 2 - - uid: 4266 + - uid: 4273 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 2 - - uid: 4267 + - uid: 4274 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,8.5 parent: 2 - - uid: 4268 + - uid: 4275 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,14.5 parent: 2 - - uid: 4269 + - uid: 4276 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 - - uid: 4270 + - uid: 4277 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 2 - - uid: 4271 + - uid: 4278 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 2 - - uid: 4272 + - uid: 4279 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 4273 + - uid: 4280 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - - uid: 4274 + - uid: 4281 components: - type: Transform pos: -36.5,23.5 parent: 2 - - uid: 4275 + - uid: 4282 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,22.5 parent: 2 - - uid: 4276 + - uid: 4283 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 4277 + - uid: 4284 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,26.5 parent: 2 - - uid: 4278 + - uid: 4285 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,20.5 parent: 2 - - uid: 4279 + - uid: 4286 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,20.5 parent: 2 - - uid: 4280 + - uid: 4287 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,15.5 parent: 2 - - uid: 4281 + - uid: 4288 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 - - uid: 4282 + - uid: 4289 components: - type: Transform pos: -39.5,14.5 parent: 2 - - uid: 4283 + - uid: 4290 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,18.5 parent: 2 - - uid: 4284 + - uid: 4291 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,14.5 parent: 2 - - uid: 4285 + - uid: 4292 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,9.5 parent: 2 - - uid: 4286 + - uid: 4293 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,6.5 parent: 2 - - uid: 4287 + - uid: 4294 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-3.5 parent: 2 - - uid: 4288 + - uid: 4295 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-2.5 parent: 2 - - uid: 4289 + - uid: 4296 components: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 4290 + - uid: 4297 components: - type: Transform pos: -37.5,6.5 parent: 2 - - uid: 4291 + - uid: 4298 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,2.5 parent: 2 - - uid: 4292 + - uid: 4299 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,8.5 parent: 2 - - uid: 4293 + - uid: 4300 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,11.5 parent: 2 - - uid: 4294 + - uid: 4301 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 - - uid: 4295 + - uid: 4302 components: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 4296 + - uid: 4303 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,18.5 parent: 2 - - uid: 4297 + - uid: 4304 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 - - uid: 4298 + - uid: 4305 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,21.5 parent: 2 - - uid: 4299 + - uid: 4306 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 - - uid: 4300 + - uid: 4307 components: - type: Transform pos: 20.5,14.5 parent: 2 - - uid: 4301 + - uid: 4308 components: - type: Transform pos: 20.5,19.5 parent: 2 - - uid: 4302 + - uid: 4309 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,27.5 parent: 2 - - uid: 4303 + - uid: 4310 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,26.5 parent: 2 - - uid: 4304 + - uid: 4311 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,25.5 parent: 2 - - uid: 4305 + - uid: 4312 components: - type: Transform pos: 29.5,25.5 parent: 2 - - uid: 4306 + - uid: 4313 components: - type: Transform pos: 40.5,15.5 parent: 2 - - uid: 4307 + - uid: 4314 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 2 - - uid: 4308 + - uid: 4315 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 - - uid: 4309 + - uid: 4316 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,2.5 parent: 2 - - uid: 4310 + - uid: 4317 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,0.5 parent: 2 - - uid: 4311 + - uid: 4318 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2 - - uid: 4312 + - uid: 4319 components: - type: Transform pos: -14.5,28.5 parent: 2 - - uid: 4313 + - uid: 4320 components: - type: Transform pos: -45.5,13.5 parent: 2 - - uid: 4314 + - uid: 4321 components: - type: Transform pos: -10.5,28.5 parent: 2 - - uid: 4315 + - uid: 4322 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 - - uid: 4316 + - uid: 4323 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,31.5 parent: 2 - - uid: 4317 + - uid: 4324 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 4318 + - uid: 4325 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,15.5 parent: 2 - - uid: 4319 + - uid: 4326 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 2 - - uid: 4320 + - uid: 4327 components: - type: Transform rot: -1.5707963267948966 rad @@ -29954,7 +30670,7 @@ entities: parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 3977 + - uid: 3984 components: - type: Transform rot: 1.5707963267948966 rad @@ -29965,10 +30681,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3978 + ent: 3985 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3979 + - uid: 3986 components: - type: Transform rot: 3.141592653589793 rad @@ -29979,10 +30695,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3980 + ent: 3987 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3981 + - uid: 3988 components: - type: Transform rot: 1.5707963267948966 rad @@ -29993,10 +30709,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3982 + ent: 3989 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3983 + - uid: 3990 components: - type: Transform rot: -1.5707963267948966 rad @@ -30007,10 +30723,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3984 + ent: 3991 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3985 + - uid: 3992 components: - type: Transform rot: 1.5707963267948966 rad @@ -30021,10 +30737,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3986 + ent: 3993 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3987 + - uid: 3994 components: - type: Transform pos: 40.5,7.5 @@ -30034,10 +30750,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3988 + ent: 3995 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3989 + - uid: 3996 components: - type: Transform pos: 40.5,23.5 @@ -30047,58 +30763,58 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 3990 + ent: 3997 - type: ApcPowerReceiver powerLoad: 0 - proto: Protolathe entities: - - uid: 4321 + - uid: 4328 components: - type: Transform pos: 28.5,18.5 parent: 2 - - uid: 4322 + - uid: 4329 components: - type: Transform pos: -29.5,12.5 parent: 2 - proto: PuddleVomit entities: - - uid: 4323 + - uid: 4330 components: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 4324 + - uid: 4331 components: - type: Transform pos: -4.5,-3.5 parent: 2 - proto: Rack entities: - - uid: 4325 + - uid: 4332 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,8.5 parent: 2 - - uid: 4326 + - uid: 4333 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,8.5 parent: 2 - - uid: 4327 + - uid: 4334 components: - type: Transform pos: -23.5,20.5 parent: 2 - - uid: 4328 + - uid: 4335 components: - type: Transform pos: 11.5,19.5 parent: 2 - - uid: 4329 + - uid: 4336 components: - type: Transform pos: -28.5,28.5 @@ -30114,14 +30830,14 @@ entities: - type: InsideEntityStorage - proto: RagItem entities: - - uid: 4330 + - uid: 4337 components: - type: Transform pos: -24.476456,17.45572 parent: 2 - proto: RandomPosterAny entities: - - uid: 4331 + - uid: 4338 components: - type: Transform rot: -1.5707963267948966 rad @@ -30129,25 +30845,25 @@ entities: parent: 2 - proto: RandomPosterContraband entities: - - uid: 4332 + - uid: 4339 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,26.5 parent: 2 - - uid: 4333 + - uid: 4340 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,21.5 parent: 2 - - uid: 4334 + - uid: 4341 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,8.5 parent: 2 - - uid: 4335 + - uid: 4342 components: - type: Transform rot: 1.5707963267948966 rad @@ -30155,181 +30871,181 @@ entities: parent: 2 - proto: RandomPosterLegit entities: - - uid: 4336 + - uid: 4343 components: - type: Transform pos: 2.5,14.5 parent: 2 - - uid: 4337 + - uid: 4344 components: - type: Transform pos: -7.5,12.5 parent: 2 - - uid: 4338 + - uid: 4345 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 - - uid: 4339 + - uid: 4346 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 2 - - uid: 4340 + - uid: 4347 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 - - uid: 4341 + - uid: 4348 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 4342 + - uid: 4349 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,21.5 parent: 2 - - uid: 4343 + - uid: 4350 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,12.5 parent: 2 - - uid: 4344 + - uid: 4351 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 - - uid: 4345 + - uid: 4352 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,12.5 parent: 2 - - uid: 4346 + - uid: 4353 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,12.5 parent: 2 - - uid: 4347 + - uid: 4354 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,20.5 parent: 2 - - uid: 4348 + - uid: 4355 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,27.5 parent: 2 - - uid: 4349 + - uid: 4356 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,16.5 parent: 2 - - uid: 4350 + - uid: 4357 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,13.5 parent: 2 - - uid: 4351 + - uid: 4358 components: - type: Transform pos: -22.5,24.5 parent: 2 - proto: RandomVending entities: - - uid: 4352 + - uid: 4359 components: - type: Transform pos: -34.5,6.5 parent: 2 - - uid: 4353 + - uid: 4360 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 4354 + - uid: 4361 components: - type: Transform pos: 7.5,23.5 parent: 2 - proto: RandomVendingDrinks entities: - - uid: 4355 + - uid: 4362 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 4356 + - uid: 4363 components: - type: Transform pos: -38.5,27.5 parent: 2 - - uid: 4357 + - uid: 4364 components: - type: Transform pos: 10.5,23.5 parent: 2 - - uid: 4358 + - uid: 4365 components: - type: Transform pos: 34.5,28.5 parent: 2 - proto: RandomVendingSnacks entities: - - uid: 4359 + - uid: 4366 components: - type: Transform pos: -38.5,28.5 parent: 2 - - uid: 4360 + - uid: 4367 components: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 4361 + - uid: 4368 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 4362 + - uid: 4369 components: - type: Transform pos: 35.5,28.5 parent: 2 - proto: RCD entities: - - uid: 4363 + - uid: 4370 components: - type: Transform pos: -23.46523,10.727894 parent: 2 - proto: RCDAmmo entities: - - uid: 4364 + - uid: 4371 components: - type: Transform pos: -23.293356,10.337269 parent: 2 - - uid: 4365 + - uid: 4372 components: - type: Transform pos: -23.543356,10.415394 parent: 2 - proto: Recycler entities: - - uid: 4366 + - uid: 4373 components: - type: Transform rot: 1.5707963267948966 rad @@ -30337,40 +31053,40 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 4367 + - uid: 4374 components: - type: Transform pos: -30.5,0.5 parent: 2 - - uid: 4368 + - uid: 4375 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 4369 + - uid: 4376 components: - type: Transform pos: -30.5,-2.5 parent: 2 - - uid: 4370 + - uid: 4377 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 4371 + - uid: 4378 components: - type: Transform pos: 34.5,7.5 parent: 2 - proto: ReinforcedUraniumWindow entities: - - uid: 4372 + - uid: 4379 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,27.5 parent: 2 - - uid: 4373 + - uid: 4380 components: - type: Transform rot: -1.5707963267948966 rad @@ -30378,788 +31094,788 @@ entities: parent: 2 - proto: ReinforcedWindow entities: - - uid: 4374 + - uid: 4381 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,24.5 parent: 2 - - uid: 4375 + - uid: 4382 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,24.5 parent: 2 - - uid: 4376 + - uid: 4383 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 4377 + - uid: 4384 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 4378 + - uid: 4385 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 4379 + - uid: 4386 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 4380 + - uid: 4387 components: - type: Transform pos: 14.5,9.5 parent: 2 - - uid: 4381 + - uid: 4388 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 4382 + - uid: 4389 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 2 - - uid: 4383 + - uid: 4390 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - - uid: 4384 + - uid: 4391 components: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 4385 + - uid: 4392 components: - type: Transform pos: 11.5,6.5 parent: 2 - - uid: 4386 + - uid: 4393 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 4387 + - uid: 4394 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 4388 + - uid: 4395 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,24.5 parent: 2 - - uid: 4389 + - uid: 4396 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,24.5 parent: 2 - - uid: 4390 + - uid: 4397 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,24.5 parent: 2 - - uid: 4391 + - uid: 4398 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,24.5 parent: 2 - - uid: 4392 + - uid: 4399 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 2 - - uid: 4393 + - uid: 4400 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 2 - - uid: 4394 + - uid: 4401 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 2 - - uid: 4395 + - uid: 4402 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,32.5 parent: 2 - - uid: 4396 + - uid: 4403 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,32.5 parent: 2 - - uid: 4397 + - uid: 4404 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,32.5 parent: 2 - - uid: 4398 + - uid: 4405 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,32.5 parent: 2 - - uid: 4399 + - uid: 4406 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,32.5 parent: 2 - - uid: 4400 + - uid: 4407 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,32.5 parent: 2 - - uid: 4401 + - uid: 4408 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,31.5 parent: 2 - - uid: 4402 + - uid: 4409 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,31.5 parent: 2 - - uid: 4403 + - uid: 4410 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,21.5 parent: 2 - - uid: 4404 + - uid: 4411 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 - - uid: 4405 + - uid: 4412 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,23.5 parent: 2 - - uid: 4406 + - uid: 4413 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 - - uid: 4407 + - uid: 4414 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,14.5 parent: 2 - - uid: 4408 + - uid: 4415 components: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 4409 + - uid: 4416 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 4410 + - uid: 4417 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 4411 + - uid: 4418 components: - type: Transform pos: -14.5,13.5 parent: 2 - - uid: 4412 + - uid: 4419 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 4413 + - uid: 4420 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 4414 + - uid: 4421 components: - type: Transform pos: -16.5,15.5 parent: 2 - - uid: 4415 + - uid: 4422 components: - type: Transform pos: -15.5,15.5 parent: 2 - - uid: 4416 + - uid: 4423 components: - type: Transform pos: -14.5,15.5 parent: 2 - - uid: 4417 + - uid: 4424 components: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 4418 + - uid: 4425 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,24.5 parent: 2 - - uid: 4419 + - uid: 4426 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,24.5 parent: 2 - - uid: 4420 + - uid: 4427 components: - type: Transform pos: -26.5,24.5 parent: 2 - - uid: 4421 + - uid: 4428 components: - type: Transform pos: -24.5,24.5 parent: 2 - - uid: 4422 + - uid: 4429 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 4423 + - uid: 4430 components: - type: Transform pos: -30.5,24.5 parent: 2 - - uid: 4424 + - uid: 4431 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,21.5 parent: 2 - - uid: 4425 + - uid: 4432 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,21.5 parent: 2 - - uid: 4426 + - uid: 4433 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,21.5 parent: 2 - - uid: 4427 + - uid: 4434 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,21.5 parent: 2 - - uid: 4428 + - uid: 4435 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,21.5 parent: 2 - - uid: 4429 + - uid: 4436 components: - type: Transform pos: -21.5,25.5 parent: 2 - - uid: 4430 + - uid: 4437 components: - type: Transform pos: -22.5,29.5 parent: 2 - - uid: 4431 + - uid: 4438 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 4432 + - uid: 4439 components: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 4433 + - uid: 4440 components: - type: Transform pos: -27.5,29.5 parent: 2 - - uid: 4434 + - uid: 4441 components: - type: Transform pos: -26.5,30.5 parent: 2 - - uid: 4435 + - uid: 4442 components: - type: Transform pos: -26.5,31.5 parent: 2 - - uid: 4436 + - uid: 4443 components: - type: Transform pos: -24.5,31.5 parent: 2 - - uid: 4437 + - uid: 4444 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 4438 + - uid: 4445 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,29.5 parent: 2 - - uid: 4439 + - uid: 4446 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,29.5 parent: 2 - - uid: 4440 + - uid: 4447 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 - - uid: 4441 + - uid: 4448 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,18.5 parent: 2 - - uid: 4442 + - uid: 4449 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,17.5 parent: 2 - - uid: 4443 + - uid: 4450 components: - type: Transform pos: -22.5,14.5 parent: 2 - - uid: 4444 + - uid: 4451 components: - type: Transform pos: -22.5,13.5 parent: 2 - - uid: 4445 + - uid: 4452 components: - type: Transform pos: -22.5,12.5 parent: 2 - - uid: 4446 + - uid: 4453 components: - type: Transform pos: -22.5,10.5 parent: 2 - - uid: 4447 + - uid: 4454 components: - type: Transform pos: -22.5,9.5 parent: 2 - - uid: 4448 + - uid: 4455 components: - type: Transform pos: -24.5,7.5 parent: 2 - - uid: 4449 + - uid: 4456 components: - type: Transform pos: -25.5,7.5 parent: 2 - - uid: 4450 + - uid: 4457 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 4451 + - uid: 4458 components: - type: Transform pos: -31.5,14.5 parent: 2 - - uid: 4452 + - uid: 4459 components: - type: Transform pos: -27.5,6.5 parent: 2 - - uid: 4453 + - uid: 4460 components: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 4454 + - uid: 4461 components: - type: Transform pos: -27.5,4.5 parent: 2 - - uid: 4455 + - uid: 4462 components: - type: Transform pos: -29.5,6.5 parent: 2 - - uid: 4456 + - uid: 4463 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 4457 + - uid: 4464 components: - type: Transform pos: -29.5,4.5 parent: 2 - - uid: 4458 + - uid: 4465 components: - type: Transform pos: -31.5,4.5 parent: 2 - - uid: 4459 + - uid: 4466 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 4460 + - uid: 4467 components: - type: Transform pos: -34.5,8.5 parent: 2 - - uid: 4461 + - uid: 4468 components: - type: Transform pos: -34.5,9.5 parent: 2 - - uid: 4462 + - uid: 4469 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,10.5 parent: 2 - - uid: 4463 + - uid: 4470 components: - type: Transform pos: 14.5,8.5 parent: 2 - - uid: 4464 + - uid: 4471 components: - type: Transform pos: 13.5,8.5 parent: 2 - - uid: 4465 + - uid: 4472 components: - type: Transform pos: -26.5,12.5 parent: 2 - - uid: 4466 + - uid: 4473 components: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 4467 + - uid: 4474 components: - type: Transform pos: 19.5,21.5 parent: 2 - - uid: 4468 + - uid: 4475 components: - type: Transform pos: 19.5,22.5 parent: 2 - - uid: 4469 + - uid: 4476 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 4470 + - uid: 4477 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 4471 + - uid: 4478 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 4472 + - uid: 4479 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 4473 + - uid: 4480 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 4474 + - uid: 4481 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 4475 + - uid: 4482 components: - type: Transform pos: 19.5,10.5 parent: 2 - - uid: 4476 + - uid: 4483 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 4477 + - uid: 4484 components: - type: Transform pos: 23.5,23.5 parent: 2 - - uid: 4478 + - uid: 4485 components: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 4479 + - uid: 4486 components: - type: Transform pos: 37.5,23.5 parent: 2 - - uid: 4480 + - uid: 4487 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 4481 + - uid: 4488 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 4482 + - uid: 4489 components: - type: Transform pos: 25.5,9.5 parent: 2 - - uid: 4483 + - uid: 4490 components: - type: Transform pos: 25.5,10.5 parent: 2 - - uid: 4484 + - uid: 4491 components: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 4485 + - uid: 4492 components: - type: Transform pos: 25.5,18.5 parent: 2 - - uid: 4486 + - uid: 4493 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 4487 + - uid: 4494 components: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 4488 + - uid: 4495 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 4489 + - uid: 4496 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 4490 + - uid: 4497 components: - type: Transform pos: 1.5,25.5 parent: 2 - - uid: 4491 + - uid: 4498 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 4492 + - uid: 4499 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,8.5 parent: 2 - - uid: 4493 + - uid: 4500 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,8.5 parent: 2 - - uid: 4494 + - uid: 4501 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,8.5 parent: 2 - - uid: 4495 + - uid: 4502 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 2 - - uid: 4496 + - uid: 4503 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,10.5 parent: 2 - - uid: 4497 + - uid: 4504 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,14.5 parent: 2 - - uid: 4498 + - uid: 4505 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,18.5 parent: 2 - - uid: 4499 + - uid: 4506 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,19.5 parent: 2 - - uid: 4500 + - uid: 4507 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,20.5 parent: 2 - - uid: 4501 + - uid: 4508 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,20.5 parent: 2 - - uid: 4502 + - uid: 4509 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,20.5 parent: 2 - - uid: 4503 + - uid: 4510 components: - type: Transform pos: 28.5,27.5 parent: 2 - - uid: 4504 + - uid: 4511 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,28.5 parent: 2 - - uid: 4505 + - uid: 4512 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,24.5 parent: 2 - - uid: 4506 + - uid: 4513 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,25.5 parent: 2 - - uid: 4507 + - uid: 4514 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - - uid: 4508 + - uid: 4515 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,15.5 parent: 2 - - uid: 4510 + - uid: 4516 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,24.5 parent: 2 - - uid: 4511 + - uid: 4517 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,25.5 parent: 2 - - uid: 4512 + - uid: 4518 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,26.5 parent: 2 - - uid: 4513 + - uid: 4519 components: - type: Transform pos: -13.5,29.5 parent: 2 - - uid: 4514 + - uid: 4520 components: - type: Transform pos: -12.5,29.5 parent: 2 - - uid: 4515 + - uid: 4521 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,27.5 parent: 2 - - uid: 4516 + - uid: 4522 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 - - uid: 4517 + - uid: 4523 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,11.5 parent: 2 - - uid: 4518 + - uid: 4524 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,12.5 parent: 2 - - uid: 4519 + - uid: 4525 components: - type: Transform rot: 3.141592653589793 rad @@ -31167,43 +31883,43 @@ entities: parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 4520 + - uid: 4526 components: - type: Transform pos: 33.5,12.5 parent: 2 - proto: RevolverCapGun entities: - - uid: 4521 + - uid: 4527 components: - type: Transform pos: 6.2648163,-0.7117139 parent: 2 - - uid: 4522 + - uid: 4528 components: - type: Transform pos: 6.21852,-0.6144917 parent: 2 - - uid: 4523 + - uid: 4529 components: - type: Transform pos: 6.806483,-0.8043065 parent: 2 - - uid: 4524 + - uid: 4530 components: - type: Transform pos: 6.9500012,-0.60523236 parent: 2 - proto: RollingPin entities: - - uid: 4525 + - uid: 4531 components: - type: Transform pos: 1.1677796,12.602082 parent: 2 - proto: RubberStampTrader entities: - - uid: 4526 + - uid: 4532 components: - type: MetaData desc: Штемпель из резины для проставления печатей на не доработаных документах. @@ -31215,7 +31931,7 @@ entities: stampedName: Хуйня. Переделывай. - proto: SalvageMagnet entities: - - uid: 4527 + - uid: 4533 components: - type: Transform rot: -1.5707963267948966 rad @@ -31223,133 +31939,133 @@ entities: parent: 2 - proto: SalvageMaterialCrateSpawner entities: - - uid: 4528 + - uid: 4534 components: - type: Transform pos: -12.5,25.5 parent: 2 - proto: Screen entities: - - uid: 4529 + - uid: 4535 components: - type: Transform pos: 5.5,24.5 parent: 2 - - uid: 4530 + - uid: 4536 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 4531 + - uid: 4537 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 4532 + - uid: 4538 components: - type: Transform pos: 4.5,21.5 parent: 2 - - uid: 4533 + - uid: 4539 components: - type: Transform pos: -3.5,7.5 parent: 2 - - uid: 4534 + - uid: 4540 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 4535 + - uid: 4541 components: - type: Transform pos: 26.5,7.5 parent: 2 - - uid: 4536 + - uid: 4542 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 4537 + - uid: 4543 components: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 4538 + - uid: 4544 components: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 4539 + - uid: 4545 components: - type: Transform pos: 36.5,28.5 parent: 2 - - uid: 4540 + - uid: 4546 components: - type: Transform pos: -31.5,13.5 parent: 2 - - uid: 4541 + - uid: 4547 components: - type: Transform pos: -20.5,24.5 parent: 2 - proto: SeedExtractor entities: - - uid: 4542 + - uid: 4548 components: - type: Transform pos: 0.5,18.5 parent: 2 - proto: SheetBrass entities: - - uid: 4543 + - uid: 4549 components: - type: Transform pos: 35.871105,3.559405 parent: 2 - proto: SheetClockworkGlass entities: - - uid: 4544 + - uid: 4550 components: - type: Transform pos: 35.839855,3.715655 parent: 2 - proto: SheetGlass entities: - - uid: 2295 + - uid: 2303 components: - type: Transform - parent: 2294 + parent: 2302 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2296 + - uid: 2304 components: - type: Transform - parent: 2294 + parent: 2302 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 4545 + - uid: 4551 components: - type: Transform pos: -29.150229,13.54975 parent: 2 - - uid: 4546 + - uid: 4552 components: - type: Transform pos: 27.09976,14.45007 parent: 2 - - uid: 4547 + - uid: 4553 components: - type: Transform pos: 27.31851,14.38757 parent: 2 - proto: SheetPlasma1 entities: - - uid: 4548 + - uid: 4554 components: - type: Transform pos: -41.2299,20.415909 @@ -31358,19 +32074,19 @@ entities: count: 3 - proto: SheetPlastic entities: - - uid: 4549 + - uid: 4555 components: - type: Transform pos: 27.896635,14.41882 parent: 2 - - uid: 4550 + - uid: 4556 components: - type: Transform pos: 28.146635,14.371945 parent: 2 - proto: SheetRPGlass entities: - - uid: 4551 + - uid: 4557 components: - type: Transform pos: -28.682602,13.61225 @@ -31398,24 +32114,24 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 4552 + - uid: 4558 components: - type: Transform pos: -29.549849,13.50646 parent: 2 - - uid: 4553 + - uid: 4559 components: - type: Transform pos: 26.427885,14.434445 parent: 2 - - uid: 4554 + - uid: 4560 components: - type: Transform pos: 26.59976,14.403195 parent: 2 - proto: SheetUranium1 entities: - - uid: 4555 + - uid: 4561 components: - type: Transform pos: -8.755028,4.4168096 @@ -31424,151 +32140,151 @@ entities: count: 10 - proto: ShellShotgunUranium entities: - - uid: 4556 + - uid: 4562 components: - type: Transform pos: 11.536243,19.557693 parent: 2 - proto: ShuttersNormal entities: - - uid: 4557 + - uid: 4563 components: - type: Transform pos: 40.5,11.5 parent: 2 - type: DeviceLinkSink links: - - 3998 - - uid: 4558 + - 4005 + - uid: 4564 components: - type: Transform pos: 40.5,9.5 parent: 2 - type: DeviceLinkSink links: - - 3997 + - 4004 - proto: ShuttersNormalOpen entities: - - uid: 4559 + - uid: 4565 components: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 4560 + - uid: 4566 components: - type: Transform pos: 30.5,26.5 parent: 2 - type: DeviceLinkSink links: - - 4577 - - uid: 4561 + - 4583 + - uid: 4567 components: - type: Transform pos: 30.5,23.5 parent: 2 - type: DeviceLinkSink links: - - 4578 - - uid: 4562 + - 4584 + - uid: 4568 components: - type: Transform pos: 31.5,23.5 parent: 2 - type: DeviceLinkSink links: - - 4578 - - uid: 4563 + - 4584 + - uid: 4569 components: - type: Transform pos: 31.5,26.5 parent: 2 - type: DeviceLinkSink links: - - 4577 - - uid: 4564 + - 4583 + - uid: 4570 components: - type: Transform pos: -9.5,24.5 parent: 2 - type: DeviceLinkSink links: - - 4579 - - uid: 4565 + - 4585 + - uid: 4571 components: - type: Transform pos: -12.5,24.5 parent: 2 - type: DeviceLinkSink links: - - 4579 - - uid: 4566 + - 4585 + - uid: 4572 components: - type: Transform pos: -10.5,24.5 parent: 2 - type: DeviceLinkSink links: - - 4579 - - uid: 4567 + - 4585 + - uid: 4573 components: - type: Transform pos: -13.5,24.5 parent: 2 - type: DeviceLinkSink links: - - 4579 - - uid: 4568 + - 4585 + - uid: 4574 components: - type: Transform pos: -46.5,11.5 parent: 2 - type: DeviceLinkSink links: - - 4575 - - uid: 4569 + - 4581 + - uid: 4575 components: - type: Transform pos: -46.5,12.5 parent: 2 - type: DeviceLinkSink links: - - 4575 - - uid: 4570 + - 4581 + - uid: 4576 components: - type: Transform pos: -46.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 4575 + - 4581 - proto: ShuttleGunKineticCircuitboard entities: - - uid: 4571 + - uid: 4577 components: - type: Transform pos: 26.603762,3.7726417 parent: 2 - - uid: 4572 + - uid: 4578 components: - type: Transform pos: 26.572512,3.5695167 parent: 2 - proto: ShuttleGunSvalinnMachineGunCircuitboard entities: - - uid: 4573 + - uid: 4579 components: - type: Transform pos: 26.541262,2.5226417 parent: 2 - - uid: 4574 + - uid: 4580 components: - type: Transform pos: 26.635012,2.7257667 parent: 2 - proto: SignalButton entities: - - uid: 4575 + - uid: 4581 components: - type: Transform rot: -1.5707963267948966 rad @@ -31576,13 +32292,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 4568: + 4574: - Pressed: Toggle - 4569: + 4575: - Pressed: Toggle - 4570: + 4576: - Pressed: Toggle - - uid: 4576 + - uid: 4582 components: - type: MetaData name: Инженерное хранилище @@ -31597,7 +32313,7 @@ entities: - Pressed: Toggle 322: - Pressed: Toggle - - uid: 4577 + - uid: 4583 components: - type: Transform rot: -1.5707963267948966 rad @@ -31605,11 +32321,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 4560: + 4566: - Pressed: Toggle - 4563: + 4569: - Pressed: Toggle - - uid: 4578 + - uid: 4584 components: - type: Transform rot: -1.5707963267948966 rad @@ -31617,28 +32333,28 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 4561: + 4567: - Pressed: Toggle - 4562: + 4568: - Pressed: Toggle - - uid: 4579 + - uid: 4585 components: - type: Transform pos: -10.5,29.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 4567: + 4573: - Pressed: Toggle - 4565: + 4571: - Pressed: Toggle - 4566: + 4572: - Pressed: Toggle - 4564: + 4570: - Pressed: Toggle - proto: SignAnomaly entities: - - uid: 4580 + - uid: 4586 components: - type: Transform rot: -1.5707963267948966 rad @@ -31646,35 +32362,35 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 4581 + - uid: 4587 components: - type: Transform pos: 13.5,20.5 parent: 2 - proto: SignAtmos entities: - - uid: 4582 + - uid: 4588 components: - type: Transform pos: -35.5,-3.5 parent: 2 - proto: SignAtmosMinsky entities: - - uid: 4583 + - uid: 4589 components: - type: Transform pos: -35.5,6.5 parent: 2 - proto: SignBio entities: - - uid: 4584 + - uid: 4590 components: - type: Transform pos: 39.5,15.5 parent: 2 - proto: SignBridge entities: - - uid: 4585 + - uid: 4591 components: - type: Transform rot: 3.141592653589793 rad @@ -31682,25 +32398,25 @@ entities: parent: 2 - proto: SignCanisters entities: - - uid: 4586 + - uid: 4592 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,11.5 parent: 2 - - uid: 4587 + - uid: 4593 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,25.5 parent: 2 - - uid: 4588 + - uid: 4594 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,16.5 parent: 2 - - uid: 4589 + - uid: 4595 components: - type: Transform rot: 1.5707963267948966 rad @@ -31708,7 +32424,7 @@ entities: parent: 2 - proto: SignCargo entities: - - uid: 4590 + - uid: 4596 components: - type: Transform rot: -1.5707963267948966 rad @@ -31716,19 +32432,19 @@ entities: parent: 2 - proto: SignCargoDock entities: - - uid: 4591 + - uid: 4597 components: - type: Transform pos: -14.5,29.5 parent: 2 - - uid: 4592 + - uid: 4598 components: - type: Transform pos: -18.5,29.5 parent: 2 - proto: SignConference entities: - - uid: 4593 + - uid: 4599 components: - type: Transform rot: -1.5707963267948966 rad @@ -31736,20 +32452,20 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 4594 + - uid: 4600 components: - type: Transform pos: 4.5,-2.5 parent: 2 - proto: SignDirectionalBar entities: - - uid: 4595 + - uid: 4601 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 2 - - uid: 4596 + - uid: 4602 components: - type: Transform rot: 1.5707963267948966 rad @@ -31757,13 +32473,13 @@ entities: parent: 2 - proto: SignDirectionalBridge entities: - - uid: 4597 + - uid: 4603 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,24.5 parent: 2 - - uid: 4598 + - uid: 4604 components: - type: Transform rot: 3.141592653589793 rad @@ -31771,7 +32487,7 @@ entities: parent: 2 - proto: SignDirectionalBrig entities: - - uid: 4599 + - uid: 4605 components: - type: Transform rot: 1.5707963267948966 rad @@ -31779,7 +32495,7 @@ entities: parent: 2 - proto: SignDirectionalChemistry entities: - - uid: 4600 + - uid: 4606 components: - type: Transform rot: -1.5707963267948966 rad @@ -31787,19 +32503,19 @@ entities: parent: 2 - proto: SignDirectionalCryo entities: - - uid: 4601 + - uid: 4607 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 4602 + - uid: 4608 components: - type: Transform pos: 1.5,4.5 parent: 2 - proto: SignDirectionalEng entities: - - uid: 4603 + - uid: 4609 components: - type: Transform rot: 1.5707963267948966 rad @@ -31807,49 +32523,49 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 4604 + - uid: 4610 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 - - uid: 4605 + - uid: 4611 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,23.5 parent: 2 - - uid: 4606 + - uid: 4612 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.4764385,8.050757 parent: 2 - - uid: 4607 + - uid: 4613 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,23.5 parent: 2 - - uid: 4608 + - uid: 4614 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,8.5 parent: 2 - - uid: 4609 + - uid: 4615 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,20.5 parent: 2 - - uid: 4610 + - uid: 4616 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.494757,20.988533 parent: 2 - - uid: 4611 + - uid: 4617 components: - type: Transform rot: 1.5707963267948966 rad @@ -31857,13 +32573,13 @@ entities: parent: 2 - proto: SignDirectionalFood entities: - - uid: 4612 + - uid: 4618 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 2 - - uid: 4613 + - uid: 4619 components: - type: Transform rot: 1.5707963267948966 rad @@ -31871,7 +32587,7 @@ entities: parent: 2 - proto: SignDirectionalGravity entities: - - uid: 4614 + - uid: 4620 components: - type: Transform rot: 3.141592653589793 rad @@ -31879,13 +32595,13 @@ entities: parent: 2 - proto: SignDirectionalHydro entities: - - uid: 4615 + - uid: 4621 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 2 - - uid: 4616 + - uid: 4622 components: - type: Transform rot: -1.5707963267948966 rad @@ -31893,13 +32609,13 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 4617 + - uid: 4623 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,17.5 parent: 2 - - uid: 4618 + - uid: 4624 components: - type: Transform rot: -1.5707963267948966 rad @@ -31907,7 +32623,7 @@ entities: parent: 2 - proto: SignDirectionalSalvage entities: - - uid: 4619 + - uid: 4625 components: - type: Transform rot: 3.141592653589793 rad @@ -31915,49 +32631,49 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 4620 + - uid: 4626 components: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 4621 + - uid: 4627 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,7.5 parent: 2 - - uid: 4622 + - uid: 4628 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,23.5 parent: 2 - - uid: 4623 + - uid: 4629 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 2 - - uid: 4624 + - uid: 4630 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 - - uid: 4625 + - uid: 4631 components: - type: Transform pos: 32.5,20.5 parent: 2 - proto: SignDirectionalSolar entities: - - uid: 4626 + - uid: 4632 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,15.5 parent: 2 - - uid: 4627 + - uid: 4633 components: - type: Transform rot: -1.5707963267948966 rad @@ -31965,7 +32681,7 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: - - uid: 4628 + - uid: 4634 components: - type: Transform rot: 3.141592653589793 rad @@ -31973,20 +32689,20 @@ entities: parent: 2 - proto: SignDisposalSpace entities: - - uid: 4629 + - uid: 4635 components: - type: Transform pos: 22.5,17.5 parent: 2 - proto: SignDoors entities: - - uid: 4630 + - uid: 4636 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,21.5 parent: 2 - - uid: 4631 + - uid: 4637 components: - type: Transform rot: 3.141592653589793 rad @@ -31994,7 +32710,7 @@ entities: parent: 2 - proto: SignFlammableMed entities: - - uid: 4632 + - uid: 4638 components: - type: Transform rot: 1.5707963267948966 rad @@ -32002,19 +32718,19 @@ entities: parent: 2 - proto: SignGravity entities: - - uid: 4633 + - uid: 4639 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,26.5 parent: 2 - - uid: 4634 + - uid: 4640 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,24.5 parent: 2 - - uid: 4635 + - uid: 4641 components: - type: Transform rot: 3.141592653589793 rad @@ -32022,7 +32738,7 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 4636 + - uid: 4642 components: - type: Transform rot: -1.5707963267948966 rad @@ -32030,19 +32746,19 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 4637 + - uid: 4643 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 4638 + - uid: 4644 components: - type: Transform pos: -34.5,20.5 parent: 2 - proto: SignNTMine entities: - - uid: 4639 + - uid: 4645 components: - type: Transform rot: -1.5707963267948966 rad @@ -32050,21 +32766,21 @@ entities: parent: 2 - proto: SignRadiation entities: - - uid: 4640 + - uid: 4646 components: - type: Transform pos: -33.5,33.5 parent: 2 - proto: SignRND entities: - - uid: 4641 + - uid: 4647 components: - type: Transform pos: 39.5,13.5 parent: 2 - proto: SignRobo entities: - - uid: 4642 + - uid: 4648 components: - type: Transform rot: 3.141592653589793 rad @@ -32072,7 +32788,7 @@ entities: parent: 2 - proto: SignScience entities: - - uid: 4643 + - uid: 4649 components: - type: Transform rot: 1.5707963267948966 rad @@ -32080,88 +32796,88 @@ entities: parent: 2 - proto: SignScience1 entities: - - uid: 4644 + - uid: 4650 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 4645 + - uid: 4651 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 4646 + - uid: 4652 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 2 - - uid: 4647 + - uid: 4653 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 2 - - uid: 4648 + - uid: 4654 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 4649 + - uid: 4655 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 4650 + - uid: 4656 components: - type: Transform pos: 22.5,21.5 parent: 2 - - uid: 4651 + - uid: 4657 components: - type: Transform pos: 22.5,23.5 parent: 2 - proto: SignSecurearea entities: - - uid: 4652 + - uid: 4658 components: - type: Transform pos: 28.5,4.5 parent: 2 - proto: SignSecurity entities: - - uid: 4653 + - uid: 4659 components: - type: Transform pos: 13.5,18.5 parent: 2 - proto: SignShipDock entities: - - uid: 4509 + - uid: 4660 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,29.5 parent: 2 - - uid: 4654 + - uid: 4661 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,24.5 parent: 2 - - uid: 4655 + - uid: 4662 components: - type: Transform pos: 29.5,29.5 parent: 2 - - uid: 4657 + - uid: 4663 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,23.5 parent: 2 - - uid: 4658 + - uid: 4664 components: - type: Transform rot: -1.5707963267948966 rad @@ -32169,24 +32885,24 @@ entities: parent: 2 - proto: SignShock entities: - - uid: 4659 + - uid: 4665 components: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 4660 + - uid: 4666 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,19.5 parent: 2 - - uid: 4661 + - uid: 4667 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 parent: 2 - - uid: 4662 + - uid: 4668 components: - type: Transform rot: 3.141592653589793 rad @@ -32194,55 +32910,55 @@ entities: parent: 2 - proto: SignSmoking entities: - - uid: 4663 + - uid: 4669 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,15.5 parent: 2 - - uid: 4664 + - uid: 4670 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,7.5 parent: 2 - - uid: 4665 + - uid: 4671 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,20.5 parent: 2 - - uid: 4666 + - uid: 4672 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 2 - - uid: 4667 + - uid: 4673 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 2 - - uid: 4668 + - uid: 4674 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 - - uid: 4669 + - uid: 4675 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - uid: 4670 + - uid: 4676 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,20.5 parent: 2 - - uid: 4671 + - uid: 4677 components: - type: Transform rot: 1.5707963267948966 rad @@ -32250,20 +32966,20 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 4672 + - uid: 4678 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 2 - - uid: 4673 + - uid: 4679 components: - type: Transform pos: 10.5,2.5 parent: 2 - proto: SignSurvival entities: - - uid: 4674 + - uid: 4680 components: - type: Transform rot: 1.5707963267948966 rad @@ -32271,7 +32987,7 @@ entities: parent: 2 - proto: SignToolStorage entities: - - uid: 4675 + - uid: 4681 components: - type: Transform rot: 3.141592653589793 rad @@ -32279,20 +32995,20 @@ entities: parent: 2 - proto: SingularityGenerator entities: - - uid: 4676 + - uid: 4682 components: - type: Transform pos: -30.5,19.5 parent: 2 - proto: SinkWide entities: - - uid: 4677 + - uid: 4683 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 2 - - uid: 4678 + - uid: 4684 components: - type: Transform rot: -1.5707963267948966 rad @@ -32300,351 +33016,351 @@ entities: parent: 2 - proto: SmartFridge entities: - - uid: 4679 + - uid: 4685 components: - type: Transform pos: 1.5,14.5 parent: 2 - proto: SMESBasic entities: - - uid: 4680 + - uid: 4686 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 4681 + - uid: 4687 components: - type: Transform pos: -10.5,16.5 parent: 2 - - uid: 4682 + - uid: 4688 components: - type: Transform pos: -32.5,25.5 parent: 2 - - uid: 4683 + - uid: 4689 components: - type: Transform pos: -10.5,6.5 parent: 2 - proto: SmokeGrenade entities: - - uid: 4684 + - uid: 4690 components: - type: Transform pos: -23.226456,20.526207 parent: 2 - proto: SoapDeluxe entities: - - uid: 4685 + - uid: 4691 components: - type: Transform pos: -6.66426,2.6361823 parent: 2 - - uid: 4686 + - uid: 4692 components: - type: Transform pos: -6.60176,2.7143884 parent: 2 - proto: SodaDispenser entities: - - uid: 4687 + - uid: 4693 components: - type: Transform pos: -2.5,9.5 parent: 2 - proto: SolarControlComputerCircuitboard entities: - - uid: 4688 + - uid: 4694 components: - type: Transform pos: 35.427467,2.974807 parent: 2 - proto: SolarPanel entities: - - uid: 4689 + - uid: 4695 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-1.5 parent: 2 - - uid: 4690 + - uid: 4696 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 - - uid: 4691 + - uid: 4697 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-1.5 parent: 2 - - uid: 4692 + - uid: 4698 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-3.5 parent: 2 - - uid: 4693 + - uid: 4699 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-1.5 parent: 2 - - uid: 4694 + - uid: 4700 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 - - uid: 4695 + - uid: 4701 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 - - uid: 4696 + - uid: 4702 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-3.5 parent: 2 - - uid: 4697 + - uid: 4703 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-3.5 parent: 2 - - uid: 4698 + - uid: 4704 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-3.5 parent: 2 - - uid: 4699 + - uid: 4705 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 - - uid: 4700 + - uid: 4706 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-1.5 parent: 2 - - uid: 4701 + - uid: 4707 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-1.5 parent: 2 - - uid: 4702 + - uid: 4708 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-1.5 parent: 2 - - uid: 4703 + - uid: 4709 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 - - uid: 4704 + - uid: 4710 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 - - uid: 4705 + - uid: 4711 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-1.5 parent: 2 - - uid: 4706 + - uid: 4712 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-1.5 parent: 2 - - uid: 4707 + - uid: 4713 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-3.5 parent: 2 - - uid: 4708 + - uid: 4714 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-3.5 parent: 2 - - uid: 4709 + - uid: 4715 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 - - uid: 4710 + - uid: 4716 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-1.5 parent: 2 - - uid: 4711 + - uid: 4717 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-1.5 parent: 2 - - uid: 4712 + - uid: 4718 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 2 - - uid: 4713 + - uid: 4719 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 - - uid: 4714 + - uid: 4720 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 - - uid: 4715 + - uid: 4721 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 - - uid: 4716 + - uid: 4722 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-5.5 parent: 2 - - uid: 4717 + - uid: 4723 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-5.5 parent: 2 - - uid: 4718 + - uid: 4724 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 - - uid: 4719 + - uid: 4725 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 2 - - uid: 4720 + - uid: 4726 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 - - uid: 4721 + - uid: 4727 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-7.5 parent: 2 - - uid: 4722 + - uid: 4728 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-7.5 parent: 2 - - uid: 4723 + - uid: 4729 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-7.5 parent: 2 - - uid: 4724 + - uid: 4730 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-7.5 parent: 2 - - uid: 4725 + - uid: 4731 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-7.5 parent: 2 - - uid: 4726 + - uid: 4732 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 - - uid: 4727 + - uid: 4733 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-7.5 parent: 2 - - uid: 4728 + - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-7.5 parent: 2 - - uid: 4729 + - uid: 4735 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-7.5 parent: 2 - - uid: 4730 + - uid: 4736 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-7.5 parent: 2 - - uid: 4731 + - uid: 4737 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 2 - - uid: 4732 + - uid: 4738 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 2 - - uid: 4733 + - uid: 4739 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-5.5 parent: 2 - - uid: 4734 + - uid: 4740 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-5.5 parent: 2 - - uid: 4735 + - uid: 4741 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 - - uid: 4736 + - uid: 4742 components: - type: Transform rot: 1.5707963267948966 rad @@ -32652,14 +33368,14 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 4737 + - uid: 4743 components: - type: Transform pos: -19.5,-7.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 4738 + - uid: 4744 components: - type: Transform rot: 3.141592653589793 rad @@ -32667,12 +33383,12 @@ entities: parent: 2 - proto: SpaceCash1000 entities: - - uid: 4739 + - uid: 4745 components: - type: Transform pos: 35.657444,2.4946756 parent: 2 - - uid: 4740 + - uid: 4746 components: - type: Transform pos: 3.554122,27.714115 @@ -32688,588 +33404,588 @@ entities: - type: InsideEntityStorage - proto: SpaceHeaterAnchored entities: - - uid: 4741 + - uid: 4747 components: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 4742 + - uid: 4748 components: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 4743 + - uid: 4749 components: - type: Transform pos: 41.5,21.5 parent: 2 - proto: SpawnMobAlexander entities: - - uid: 4744 + - uid: 4750 components: - type: Transform pos: -0.5,13.5 parent: 2 - proto: SpawnMobBandito entities: - - uid: 4745 + - uid: 4751 components: - type: Transform pos: 34.5,9.5 parent: 2 - proto: SpawnMobCatBingus entities: - - uid: 4746 + - uid: 4752 components: - type: Transform pos: -2.5,0.5 parent: 2 - proto: SpawnMobCatException entities: - - uid: 4747 + - uid: 4753 components: - type: Transform pos: -37.5,13.5 parent: 2 - proto: SpawnMobCatFloppa entities: - - uid: 4748 + - uid: 4754 components: - type: Transform pos: -29.5,10.5 parent: 2 - proto: SpawnMobCatRuntime entities: - - uid: 4749 + - uid: 4755 components: - type: Transform pos: -43.5,12.5 parent: 2 - - uid: 4750 + - uid: 4756 components: - type: Transform pos: -43.5,12.5 parent: 2 - proto: SpawnMobCleanBot entities: - - uid: 4751 + - uid: 4757 components: - type: Transform pos: -33.5,4.5 parent: 2 - - uid: 4752 + - uid: 4758 components: - type: Transform pos: -4.5,22.5 parent: 2 - - uid: 4753 + - uid: 4759 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 4754 + - uid: 4760 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 4755 + - uid: 4761 components: - type: Transform pos: 24.5,6.5 parent: 2 - - uid: 4756 + - uid: 4762 components: - type: Transform pos: 31.5,15.5 parent: 2 - - uid: 4757 + - uid: 4763 components: - type: Transform pos: 44.5,11.5 parent: 2 - - uid: 4758 + - uid: 4764 components: - type: Transform pos: -36.5,23.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 4759 + - uid: 4765 components: - type: Transform pos: 2.5,31.5 parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 4760 + - uid: 4766 components: - type: Transform pos: -37.5,0.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 4761 + - uid: 4767 components: - type: Transform pos: 6.5,26.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 4762 + - uid: 4768 components: - type: Transform pos: 10.5,12.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 4763 + - uid: 4769 components: - type: Transform pos: -0.5,8.5 parent: 2 - proto: SpawnMobMothroach entities: - - uid: 4764 + - uid: 4770 components: - type: Transform pos: -5.5,27.5 parent: 2 - - uid: 4765 + - uid: 4771 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 4766 + - uid: 4772 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 4767 + - uid: 4773 components: - type: Transform pos: -1.5,30.5 parent: 2 - proto: SpawnMobParrot entities: - - uid: 4768 + - uid: 4774 components: - type: Transform pos: -25.5,9.5 parent: 2 - proto: SpawnMobRaccoonMorticia entities: - - uid: 4769 + - uid: 4775 components: - type: Transform pos: -15.5,27.5 parent: 2 - proto: SpawnMobShiva entities: - - uid: 4770 + - uid: 4776 components: - type: Transform pos: 12.5,17.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 4771 + - uid: 4777 components: - type: Transform pos: -1.5,18.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 4772 + - uid: 4778 components: - type: Transform pos: 28.5,11.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 4773 + - uid: 4779 components: - type: Transform pos: -36.5,2.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 4774 + - uid: 4780 components: - type: Transform pos: -1.5,8.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 4775 + - uid: 4781 components: - type: Transform pos: 35.5,15.5 parent: 2 - - uid: 4776 + - uid: 4782 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 4777 + - uid: 4783 components: - type: Transform pos: 35.5,16.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 4778 + - uid: 4784 components: - type: Transform pos: 2.5,17.5 parent: 2 - - uid: 4779 + - uid: 4785 components: - type: Transform pos: 2.5,18.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 4780 + - uid: 4786 components: - type: Transform pos: 7.5,26.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 4781 + - uid: 4787 components: - type: Transform pos: -19.5,27.5 parent: 2 - - uid: 4782 + - uid: 4788 components: - type: Transform pos: -19.5,28.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 4783 + - uid: 4789 components: - type: Transform pos: -0.5,12.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 4784 + - uid: 4790 components: - type: Transform pos: -40.5,18.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 4785 + - uid: 4791 components: - type: Transform pos: -24.5,9.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 4786 + - uid: 4792 components: - type: Transform pos: -44.5,12.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 4787 + - uid: 4793 components: - type: Transform pos: -5.5,3.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 4788 + - uid: 4794 components: - type: Transform pos: 12.5,12.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 4789 + - uid: 4795 components: - type: Transform pos: 13.5,17.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 4790 + - uid: 4796 components: - type: Transform pos: 20.5,17.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 4791 + - uid: 4797 components: - type: Transform pos: -41.5,24.5 parent: 2 - - uid: 4792 + - uid: 4798 components: - type: Transform pos: -41.5,26.5 parent: 2 - - uid: 4793 + - uid: 4799 components: - type: Transform pos: -39.5,29.5 parent: 2 - - uid: 4794 + - uid: 4800 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 4795 + - uid: 4801 components: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 4796 + - uid: 4802 components: - type: Transform pos: -41.5,27.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 4797 + - uid: 4803 components: - type: Transform pos: 9.5,15.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 4798 + - uid: 4804 components: - type: Transform pos: -36.5,12.5 parent: 2 - - uid: 4799 + - uid: 4805 components: - type: Transform pos: -36.5,11.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 4800 + - uid: 4806 components: - type: Transform pos: -37.5,19.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 4801 + - uid: 4807 components: - type: Transform pos: -5.5,2.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 4802 + - uid: 4808 components: - type: Transform pos: 0.5,0.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 4803 + - uid: 4809 components: - type: Transform pos: -37.5,12.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 4804 + - uid: 4810 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 4805 + - uid: 4811 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 4806 + - uid: 4812 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 4807 + - uid: 4813 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 4808 + - uid: 4814 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 4809 + - uid: 4815 components: - type: Transform pos: -1.5,-0.5 parent: 2 - - uid: 4810 + - uid: 4816 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 4811 + - uid: 4817 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 4812 + - uid: 4818 components: - type: Transform pos: 2.5,1.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 4813 + - uid: 4819 components: - type: Transform pos: -9.5,27.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 4814 + - uid: 4820 components: - type: Transform pos: 26.5,8.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 4815 + - uid: 4821 components: - type: Transform pos: 34.5,8.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 4816 + - uid: 4822 components: - type: Transform pos: -27.5,26.5 parent: 2 - - uid: 4817 + - uid: 4823 components: - type: Transform pos: -27.5,27.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 4818 + - uid: 4824 components: - type: Transform pos: 27.5,11.5 parent: 2 - - uid: 4819 + - uid: 4825 components: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 4820 + - uid: 4826 components: - type: Transform pos: 27.5,8.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 4821 + - uid: 4827 components: - type: Transform pos: 9.5,11.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 4822 + - uid: 4828 components: - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 4823 + - uid: 4829 components: - type: Transform pos: 10.5,17.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 4824 + - uid: 4830 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 4825 + - uid: 4831 components: - type: Transform pos: 3.5,13.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 4826 + - uid: 4832 components: - type: Transform pos: -30.5,8.5 parent: 2 - - uid: 4827 + - uid: 4833 components: - type: Transform pos: -28.5,14.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 4828 + - uid: 4834 components: - type: Transform pos: -29.5,11.5 parent: 2 - proto: StasisBed entities: - - uid: 4829 + - uid: 4835 components: - type: Transform pos: -39.5,14.5 parent: 2 - proto: StasisBedMachineCircuitboard entities: - - uid: 4830 + - uid: 4836 components: - type: Transform pos: 26.587809,0.25961962 parent: 2 - proto: StationBeaconPart entities: - - uid: 4831 + - uid: 4837 components: - type: Transform pos: -3.6053286,0.31989044 parent: 2 - proto: SteelBench entities: - - uid: 4832 + - uid: 4838 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,26.5 parent: 2 - - uid: 4833 + - uid: 4839 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,25.5 parent: 2 - - uid: 4834 + - uid: 4840 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,25.5 parent: 2 - - uid: 4835 + - uid: 4841 components: - type: Transform rot: 1.5707963267948966 rad @@ -33277,94 +33993,94 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 4836 + - uid: 4842 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 4837 + - uid: 4843 components: - type: Transform pos: 1.5,10.5 parent: 2 - - uid: 4838 + - uid: 4844 components: - type: Transform pos: 0.5,10.5 parent: 2 - proto: StorageCanister entities: - - uid: 4839 + - uid: 4845 components: - type: Transform pos: -37.5,-1.5 parent: 2 - - uid: 4840 + - uid: 4846 components: - type: Transform pos: 44.5,14.5 parent: 2 - proto: SubstationBasic entities: - - uid: 4841 + - uid: 4847 components: - type: Transform pos: 20.5,12.5 parent: 2 - - uid: 4842 + - uid: 4848 components: - type: Transform pos: -9.5,6.5 parent: 2 - - uid: 4843 + - uid: 4849 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 4844 + - uid: 4850 components: - type: Transform pos: -5.5,29.5 parent: 2 - - uid: 4845 + - uid: 4851 components: - type: Transform pos: -8.5,8.5 parent: 2 - - uid: 4846 + - uid: 4852 components: - type: Transform pos: -32.5,26.5 parent: 2 - - uid: 4847 + - uid: 4853 components: - type: Transform pos: -30.5,15.5 parent: 2 - - uid: 4848 + - uid: 4854 components: - type: Transform pos: -27.5,8.5 parent: 2 - - uid: 4849 + - uid: 4855 components: - type: Transform pos: 9.5,19.5 parent: 2 - proto: SubstationWallBasic entities: - - uid: 4850 + - uid: 4856 components: - type: Transform pos: 21.5,24.5 parent: 2 - - uid: 4851 + - uid: 4857 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 2 - - uid: 4852 + - uid: 4858 components: - type: Transform rot: -1.5707963267948966 rad @@ -33372,45 +34088,45 @@ entities: parent: 2 - proto: SugarcaneSeeds entities: - - uid: 4853 + - uid: 4859 components: - type: Transform pos: -0.39406478,18.157444 parent: 2 - - uid: 4854 + - uid: 4860 components: - type: Transform pos: -0.47218978,18.423347 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 4855 + - uid: 4861 components: - type: Transform pos: 6.5,29.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 4856 + - uid: 4862 components: - type: Transform pos: -8.5,20.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 4857 + - uid: 4863 components: - type: Transform pos: -22.5,27.5 parent: 2 - - uid: 4858 + - uid: 4864 components: - type: Transform pos: -22.5,26.5 parent: 2 - proto: SurveillanceCameraGeneral entities: - - uid: 4656 + - uid: 4865 components: - type: Transform rot: 3.141592653589793 rad @@ -33421,7 +34137,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Эвакуация - - uid: 4859 + - uid: 4866 components: - type: Transform rot: -1.5707963267948966 rad @@ -33432,7 +34148,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: крио - - uid: 4860 + - uid: 4867 components: - type: Transform rot: 3.141592653589793 rad @@ -33443,7 +34159,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: кухня - - uid: 4861 + - uid: 4868 components: - type: Transform rot: 3.141592653589793 rad @@ -33454,7 +34170,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: ботаника - - uid: 4862 + - uid: 4869 components: - type: Transform pos: -0.5,5.5 @@ -33464,7 +34180,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: главный коридор (низ) - - uid: 4863 + - uid: 4870 components: - type: Transform rot: -1.5707963267948966 rad @@ -33475,7 +34191,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Главный коридор (лево) - - uid: 4864 + - uid: 4871 components: - type: Transform rot: 1.5707963267948966 rad @@ -33486,7 +34202,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Главный коридор (право) - - uid: 4865 + - uid: 4872 components: - type: Transform rot: 3.141592653589793 rad @@ -33497,7 +34213,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Главный коридор (верх) - - uid: 4866 + - uid: 4873 components: - type: Transform rot: 3.141592653589793 rad @@ -33508,7 +34224,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (правый) - - uid: 4867 + - uid: 4874 components: - type: Transform pos: -13.5,22.5 @@ -33518,7 +34234,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (левый) - - uid: 4868 + - uid: 4875 components: - type: Transform rot: -1.5707963267948966 rad @@ -33529,7 +34245,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (вниз) - - uid: 4869 + - uid: 4876 components: - type: Transform rot: 1.5707963267948966 rad @@ -33540,7 +34256,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - - uid: 4870 + - uid: 4877 components: - type: Transform rot: -1.5707963267948966 rad @@ -33551,7 +34267,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (ещё ниже) - - uid: 4871 + - uid: 4878 components: - type: Transform rot: 1.5707963267948966 rad @@ -33562,7 +34278,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Мусорка - - uid: 4872 + - uid: 4879 components: - type: Transform pos: 29.5,5.5 @@ -33572,7 +34288,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор РНД (низ) - - uid: 4873 + - uid: 4880 components: - type: Transform rot: 1.5707963267948966 rad @@ -33583,7 +34299,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор РНД (право) - - uid: 4874 + - uid: 4881 components: - type: Transform rot: -1.5707963267948966 rad @@ -33594,7 +34310,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор РНД (лево) - - uid: 4875 + - uid: 4882 components: - type: Transform rot: 3.141592653589793 rad @@ -33607,21 +34323,21 @@ entities: id: Коридор РНД (верх) - proto: SurveillanceCameraRouterGeneral entities: - - uid: 4876 + - uid: 4883 components: - type: Transform pos: 22.5,2.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 4877 + - uid: 4884 components: - type: Transform pos: 21.5,2.5 parent: 2 - proto: SurveillanceCameraSecurity entities: - - uid: 4878 + - uid: 4885 components: - type: Transform rot: -1.5707963267948966 rad @@ -33632,7 +34348,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: театр - - uid: 4879 + - uid: 4886 components: - type: Transform rot: -1.5707963267948966 rad @@ -33643,7 +34359,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: СМЭСы - - uid: 4880 + - uid: 4887 components: - type: Transform rot: -1.5707963267948966 rad @@ -33654,7 +34370,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Мостик - - uid: 4881 + - uid: 4888 components: - type: Transform rot: -1.5707963267948966 rad @@ -33665,7 +34381,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КОКпитан - - uid: 4882 + - uid: 4889 components: - type: Transform rot: -1.5707963267948966 rad @@ -33676,7 +34392,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Утилизаторская - - uid: 4883 + - uid: 4890 components: - type: Transform rot: 1.5707963267948966 rad @@ -33687,7 +34403,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Карго - - uid: 4884 + - uid: 4891 components: - type: Transform rot: 3.141592653589793 rad @@ -33698,7 +34414,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КМ - - uid: 4885 + - uid: 4892 components: - type: Transform rot: -1.5707963267948966 rad @@ -33709,7 +34425,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Гравитация - - uid: 4886 + - uid: 4893 components: - type: Transform rot: -1.5707963267948966 rad @@ -33720,7 +34436,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Атмос - - uid: 4887 + - uid: 4894 components: - type: Transform rot: 1.5707963267948966 rad @@ -33731,7 +34447,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Инженерка - - uid: 4888 + - uid: 4895 components: - type: Transform rot: -1.5707963267948966 rad @@ -33742,7 +34458,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Химка - - uid: 4889 + - uid: 4896 components: - type: Transform pos: -44.5,11.5 @@ -33752,7 +34468,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: ГВ - - uid: 4890 + - uid: 4897 components: - type: Transform pos: -36.5,11.5 @@ -33762,7 +34478,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Мед - - uid: 4891 + - uid: 4898 components: - type: Transform rot: 1.5707963267948966 rad @@ -33773,7 +34489,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Оружейная - - uid: 4892 + - uid: 4899 components: - type: Transform rot: -1.5707963267948966 rad @@ -33784,7 +34500,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: РНД - - uid: 4893 + - uid: 4900 components: - type: Transform rot: 1.5707963267948966 rad @@ -33795,7 +34511,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: НР - - uid: 4894 + - uid: 4901 components: - type: Transform rot: 3.141592653589793 rad @@ -33806,7 +34522,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Хранилище - - uid: 4895 + - uid: 4902 components: - type: Transform pos: 22.5,2.5 @@ -33816,7 +34532,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Телекомы - - uid: 4896 + - uid: 4903 components: - type: Transform rot: 1.5707963267948966 rad @@ -33827,7 +34543,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Северная РНД - - uid: 4897 + - uid: 4904 components: - type: Transform rot: 1.5707963267948966 rad @@ -33840,7 +34556,7 @@ entities: id: Артефакты - proto: SurveillanceWirelessCameraMovableConstructed entities: - - uid: 4898 + - uid: 4905 components: - type: Transform rot: 1.5707963267948966 rad @@ -33848,264 +34564,264 @@ entities: parent: 2 - proto: Table entities: - - uid: 4899 + - uid: 4906 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 2 - - uid: 4900 + - uid: 4907 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 2 - - uid: 4901 + - uid: 4908 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 - - uid: 4902 + - uid: 4909 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 2 - - uid: 4903 + - uid: 4910 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 2 - - uid: 4904 + - uid: 4911 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 2 - - uid: 4905 + - uid: 4912 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 parent: 2 - - uid: 4906 + - uid: 4913 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 4907 + - uid: 4914 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - - uid: 4908 + - uid: 4915 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,4.5 parent: 2 - - uid: 4909 + - uid: 4916 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 4910 + - uid: 4917 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 4911 + - uid: 4918 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,12.5 parent: 2 - - uid: 4912 + - uid: 4919 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 2 - - uid: 4913 + - uid: 4920 components: - type: Transform pos: 1.5,17.5 parent: 2 - - uid: 4914 + - uid: 4921 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 4915 + - uid: 4922 components: - type: Transform pos: -0.5,17.5 parent: 2 - - uid: 4916 + - uid: 4923 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 4917 + - uid: 4924 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,25.5 parent: 2 - - uid: 4918 + - uid: 4925 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,25.5 parent: 2 - - uid: 4919 + - uid: 4926 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,25.5 parent: 2 - - uid: 4920 + - uid: 4927 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,25.5 parent: 2 - - uid: 4921 + - uid: 4928 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,27.5 parent: 2 - - uid: 4922 + - uid: 4929 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,27.5 parent: 2 - - uid: 4923 + - uid: 4930 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 - - uid: 4924 + - uid: 4931 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,30.5 parent: 2 - - uid: 4925 + - uid: 4932 components: - type: Transform pos: 3.5,30.5 parent: 2 - - uid: 4926 + - uid: 4933 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 4927 + - uid: 4934 components: - type: Transform pos: -9.5,20.5 parent: 2 - - uid: 4928 + - uid: 4935 components: - type: Transform pos: -10.5,20.5 parent: 2 - - uid: 4929 + - uid: 4936 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,25.5 parent: 2 - - uid: 4930 + - uid: 4937 components: - type: Transform pos: 0.5,28.5 parent: 2 - - uid: 4931 + - uid: 4938 components: - type: Transform pos: -0.5,28.5 parent: 2 - - uid: 4932 + - uid: 4939 components: - type: Transform pos: 1.5,28.5 parent: 2 - - uid: 4933 + - uid: 4940 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 4934 + - uid: 4941 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 4935 + - uid: 4942 components: - type: Transform pos: 27.5,10.5 parent: 2 - - uid: 4936 + - uid: 4943 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 4937 + - uid: 4944 components: - type: Transform pos: 34.5,18.5 parent: 2 - - uid: 4938 + - uid: 4945 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,14.5 parent: 2 - - uid: 4939 + - uid: 4946 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,14.5 parent: 2 - - uid: 4940 + - uid: 4947 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,14.5 parent: 2 - - uid: 4941 + - uid: 4948 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,14.5 parent: 2 - - uid: 4942 + - uid: 4949 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,14.5 parent: 2 - - uid: 4943 + - uid: 4950 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 4944 + - uid: 4951 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,12.5 parent: 2 - - uid: 4945 + - uid: 4952 components: - type: Transform rot: 1.5707963267948966 rad @@ -34113,57 +34829,57 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 4946 + - uid: 4953 components: - type: Transform pos: -1.5,9.5 parent: 2 - - uid: 4947 + - uid: 4954 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 4948 + - uid: 4955 components: - type: Transform pos: 0.5,9.5 parent: 2 - - uid: 4949 + - uid: 4956 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 2 - - uid: 4950 + - uid: 4957 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 2 - - uid: 4951 + - uid: 4958 components: - type: Transform pos: -2.5,9.5 parent: 2 - - uid: 4952 + - uid: 4959 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,18.5 parent: 2 - - uid: 4953 + - uid: 4960 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,20.5 parent: 2 - - uid: 4954 + - uid: 4961 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,19.5 parent: 2 - - uid: 4955 + - uid: 4962 components: - type: Transform rot: -1.5707963267948966 rad @@ -34171,73 +34887,73 @@ entities: parent: 2 - proto: TableGlass entities: - - uid: 4956 + - uid: 4963 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 - - uid: 4957 + - uid: 4964 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,12.5 parent: 2 - - uid: 4958 + - uid: 4965 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,11.5 parent: 2 - - uid: 4959 + - uid: 4966 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 - - uid: 4960 + - uid: 4967 components: - type: Transform pos: -45.5,13.5 parent: 2 - proto: TablePlasmaGlass entities: - - uid: 4961 + - uid: 4968 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 4962 + - uid: 4969 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,17.5 parent: 2 - - uid: 4963 + - uid: 4970 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,18.5 parent: 2 - - uid: 4964 + - uid: 4971 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,19.5 parent: 2 - - uid: 4965 + - uid: 4972 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,20.5 parent: 2 - - uid: 4966 + - uid: 4973 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,19.5 parent: 2 - - uid: 4967 + - uid: 4974 components: - type: Transform rot: 1.5707963267948966 rad @@ -34245,175 +34961,175 @@ entities: parent: 2 - proto: TableReinforced entities: - - uid: 4968 + - uid: 4975 components: - type: Transform pos: -23.5,9.5 parent: 2 - - uid: 4969 + - uid: 4976 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 4970 + - uid: 4977 components: - type: Transform pos: -23.5,10.5 parent: 2 - - uid: 4971 + - uid: 4978 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 2 - - uid: 4972 + - uid: 4979 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,17.5 parent: 2 - - uid: 4973 + - uid: 4980 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 - - uid: 4974 + - uid: 4981 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,26.5 parent: 2 - - uid: 4975 + - uid: 4982 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,27.5 parent: 2 - - uid: 4976 + - uid: 4983 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,9.5 parent: 2 - - uid: 4977 + - uid: 4984 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,9.5 parent: 2 - - uid: 4978 + - uid: 4985 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,13.5 parent: 2 - - uid: 4979 + - uid: 4986 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,13.5 parent: 2 - - uid: 4980 + - uid: 4987 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,12.5 parent: 2 - - uid: 4981 + - uid: 4988 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 - - uid: 4982 + - uid: 4989 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 2 - - uid: 4983 + - uid: 4990 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 - - uid: 4984 + - uid: 4991 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 - - uid: 4985 + - uid: 4992 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-0.5 parent: 2 - - uid: 4986 + - uid: 4993 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,0.5 parent: 2 - - uid: 4987 + - uid: 4994 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,2.5 parent: 2 - - uid: 4988 + - uid: 4995 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 - - uid: 4989 + - uid: 4996 components: - type: Transform pos: 33.5,8.5 parent: 2 - - uid: 4990 + - uid: 4997 components: - type: Transform pos: 28.5,25.5 parent: 2 - - uid: 4991 + - uid: 4998 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,8.5 parent: 2 - - uid: 4992 + - uid: 4999 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,8.5 parent: 2 - - uid: 4993 + - uid: 5000 components: - type: Transform pos: 26.5,28.5 parent: 2 - - uid: 4994 + - uid: 5001 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,25.5 parent: 2 - - uid: 4995 + - uid: 5002 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,25.5 parent: 2 - - uid: 4996 + - uid: 5003 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - uid: 4997 + - uid: 5004 components: - type: Transform rot: 1.5707963267948966 rad @@ -34421,21 +35137,21 @@ entities: parent: 2 - proto: TableReinforcedGlass entities: - - uid: 4998 + - uid: 5005 components: - type: Transform pos: -10.5,28.5 parent: 2 - proto: TechDiskComputerCircuitboard entities: - - uid: 4999 + - uid: 5006 components: - type: Transform pos: 35.755306,0.025244638 parent: 2 - proto: TelecomServer entities: - - uid: 5000 + - uid: 5007 components: - type: MetaData desc: ДА КАК ОНИ ПОСМЕЛИ ПРОЛИТЬ ПИВО НА СЕРВЕР!!! @@ -34444,58 +35160,58 @@ entities: parent: 2 - proto: TelecomServerFilled entities: - - uid: 5001 + - uid: 5008 components: - type: Transform pos: 21.5,3.5 parent: 2 - proto: TeslaCoil entities: - - uid: 5002 + - uid: 5009 components: - type: Transform pos: -30.5,20.5 parent: 2 - - uid: 5003 + - uid: 5010 components: - type: Transform pos: -29.5,20.5 parent: 2 - - uid: 5004 + - uid: 5011 components: - type: Transform pos: -28.5,20.5 parent: 2 - proto: TeslaGenerator entities: - - uid: 5005 + - uid: 5012 components: - type: Transform pos: -27.5,17.5 parent: 2 - proto: TeslaGroundingRod entities: - - uid: 5006 + - uid: 5013 components: - type: Transform pos: -27.5,20.5 parent: 2 - proto: TimerTrigger entities: - - uid: 5007 + - uid: 5014 components: - type: Transform pos: 40.809715,5.4732556 parent: 2 - proto: TintedWindow entities: - - uid: 5008 + - uid: 5015 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 - - uid: 5009 + - uid: 5016 components: - type: Transform rot: 3.141592653589793 rad @@ -34503,102 +35219,102 @@ entities: parent: 2 - proto: TobaccoSeeds entities: - - uid: 5010 + - uid: 5017 components: - type: Transform pos: -0.7378148,18.126163 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 5011 + - uid: 5018 components: - type: Transform pos: -8.473778,4.3542447 parent: 2 - - uid: 5012 + - uid: 5019 components: - type: Transform pos: -9.458382,8.623088 parent: 2 - - uid: 5013 + - uid: 5020 components: - type: Transform pos: -29.792294,9.651786 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 5014 + - uid: 5021 components: - type: Transform pos: -10.599007,8.576164 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 5015 + - uid: 5022 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 5016 + - uid: 5023 components: - type: Transform pos: -9.989632,8.435392 parent: 2 - - uid: 5017 + - uid: 5024 components: - type: Transform pos: -29.839169,9.323661 parent: 2 - - uid: 5018 + - uid: 5025 components: - type: Transform pos: 3.522872,30.522102 parent: 2 - proto: ToyFigurineBotanist entities: - - uid: 5019 + - uid: 5026 components: - type: Transform pos: -0.27105713,18.783321 parent: 2 - proto: ToyFigurineCaptain entities: - - uid: 5020 + - uid: 5027 components: - type: Transform pos: 7.790422,25.975096 parent: 2 - proto: ToyFigurineCargoTech entities: - - uid: 5021 + - uid: 5028 components: - type: Transform pos: -17.640661,25.475079 parent: 2 - proto: ToyFigurineCentcomIntern entities: - - uid: 5022 + - uid: 5029 components: - type: Transform pos: -2.135971,25.58708 parent: 2 - proto: ToyFigurineChef entities: - - uid: 5023 + - uid: 5030 components: - type: Transform pos: 1.5908093,12.695832 parent: 2 - proto: ToyFigurineChemist entities: - - uid: 5024 + - uid: 5031 components: - type: Transform pos: -41.503487,19.7883 parent: 2 - proto: ToyFigurineChiefEngineer entities: - - uid: 5025 + - uid: 5032 components: - type: MetaData desc: Место проживание всех старших инженеров. @@ -34614,21 +35330,21 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 5026 + - uid: 5033 components: - type: Transform pos: -6.135707,3.415514 parent: 2 - proto: ToyFigurineDetective entities: - - uid: 5027 + - uid: 5034 components: - type: Transform pos: 11.395057,17.778774 parent: 2 - proto: ToyFigurineGreytider entities: - - uid: 5028 + - uid: 5035 components: - type: MetaData desc: Это Исмаил Семечков. Он очень жадный. Помогите ему найти все секреты этой станции! @@ -34636,14 +35352,14 @@ entities: - type: Transform pos: -3.1506069,-0.18314934 parent: 2 - - uid: 5029 + - uid: 5036 components: - type: Transform pos: -18.212269,5.374864 parent: 2 - proto: ToyFigurineHeadOfSecurity entities: - - uid: 5030 + - uid: 5037 components: - type: Transform pos: 12.858925,19.59998 @@ -34659,146 +35375,146 @@ entities: - type: InsideEntityStorage - proto: ToyFigurineJanitor entities: - - uid: 5031 + - uid: 5038 components: - type: Transform pos: 20.304739,19.763783 parent: 2 - proto: ToyFigurineLawyer entities: - - uid: 5032 + - uid: 5039 components: - type: Transform pos: 9.579356,10.461696 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 5033 + - uid: 5040 components: - type: Transform pos: -38.493214,17.591747 parent: 2 - proto: ToyFigurineMime entities: - - uid: 2207 + - uid: 2215 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 5034 + - uid: 5041 components: - type: Transform pos: -6.1571856,2.9184942 parent: 2 - proto: ToyFigurineNukie entities: - - uid: 5035 + - uid: 5042 components: - type: Transform pos: 9.412467,0.87898195 parent: 2 - proto: ToyFigurineNukieCommander entities: - - uid: 5036 + - uid: 5043 components: - type: Transform pos: -9.805278,5.480295 parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 5037 + - uid: 5044 components: - type: Transform pos: -40.854877,11.703461 parent: 2 - proto: ToyFigurinePassenger entities: - - uid: 5038 + - uid: 5045 components: - type: Transform pos: -3.1779282,0.19152021 parent: 2 - proto: ToyFigurineQuartermaster entities: - - uid: 5039 + - uid: 5046 components: - type: Transform pos: -10.4803505,28.582703 parent: 2 - proto: ToyFigurineResearchDirector entities: - - uid: 5040 + - uid: 5047 components: - type: Transform pos: 33.793056,8.821354 parent: 2 - proto: ToyFigurineScientist entities: - - uid: 5041 + - uid: 5048 components: - type: Transform pos: 26.903763,9.615849 parent: 2 - proto: ToyFigurineSecurity entities: - - uid: 5042 + - uid: 5049 components: - type: Transform pos: 9.108317,0.4905728 parent: 2 - - uid: 5043 + - uid: 5050 components: - type: Transform pos: 9.327067,0.3028773 parent: 2 - - uid: 5044 + - uid: 5051 components: - type: Transform pos: 9.655192,0.3028773 parent: 2 - - uid: 5045 + - uid: 5052 components: - type: Transform pos: 9.952067,0.44364917 parent: 2 - - uid: 5046 + - uid: 5053 components: - type: Transform pos: 31.623281,-0.56897426 parent: 2 - proto: ToyFigurineSlime entities: - - uid: 5047 + - uid: 5054 components: - type: Transform pos: 7.491742,2.9322577 parent: 2 - proto: ToyFigurineSpaceDragon entities: - - uid: 5048 + - uid: 5055 components: - type: Transform pos: -27.304077,-6.5345554 parent: 2 - proto: ToyFigurineThief entities: - - uid: 5049 + - uid: 5056 components: - type: Transform - pos: 12.439941,22.585392 + pos: 18.46296,22.597757 parent: 2 - proto: ToyFigurineWarden entities: - - uid: 5050 + - uid: 5057 components: - type: Transform pos: 11.837042,12.599877 parent: 2 - proto: ToyFigurineWizard entities: - - uid: 5051 + - uid: 5058 components: - type: Transform pos: 16.455046,19.408575 @@ -34814,14 +35530,14 @@ entities: - type: InsideEntityStorage - proto: ToyGriffin entities: - - uid: 5052 + - uid: 5059 components: - type: Transform pos: -12.509647,5.425295 parent: 2 - proto: ToyHammer entities: - - uid: 5053 + - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad @@ -34838,28 +35554,28 @@ entities: - type: InsideEntityStorage - proto: TrashBananaPeel entities: - - uid: 5054 + - uid: 5061 components: - type: Transform pos: -6.742385,3.1210628 parent: 2 - - uid: 5055 + - uid: 5062 components: - type: Transform pos: -6.35176,3.136704 parent: 2 - proto: TrashMimanaPeel entities: - - uid: 2208 + - uid: 2216 components: - type: Transform - parent: 2199 + parent: 2207 - type: Physics canCollide: False - type: InsideEntityStorage - proto: UniversalIDCard entities: - - uid: 5056 + - uid: 5063 components: - type: MetaData desc: Сломаная ID карта ассистента которая была перекрашена. Вех! @@ -34871,181 +35587,181 @@ entities: - Access - proto: UraniumReinforcedWindowDirectional entities: - - uid: 5057 + - uid: 5064 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,25.5 parent: 2 - - uid: 5058 + - uid: 5065 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,25.5 parent: 2 - - uid: 5059 + - uid: 5066 components: - type: Transform pos: 26.5,25.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 5060 + - uid: 5067 components: - type: Transform pos: 32.56568,14.635744 parent: 2 - proto: VendingMachineBooze entities: - - uid: 5061 + - uid: 5068 components: - type: Transform pos: -2.5,8.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 5062 + - uid: 5069 components: - type: Transform pos: -39.5,16.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 5063 + - uid: 5070 components: - type: Transform pos: 4.5,-1.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 5064 + - uid: 5071 components: - type: Transform pos: 4.5,2.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 5065 + - uid: 5072 components: - type: Transform pos: -3.5,13.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 5066 + - uid: 5073 components: - type: Transform pos: -27.5,10.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 5067 + - uid: 5074 components: - type: Transform pos: -23.5,14.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 5068 + - uid: 5075 components: - type: Transform pos: -37.5,11.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 5069 + - uid: 5076 components: - type: Transform pos: -2.5,20.5 parent: 2 - proto: VendingMachineRestockChemVend entities: - - uid: 5070 + - uid: 5077 components: - type: Transform pos: -41.669235,20.654251 parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 5071 + - uid: 5078 components: - type: Transform pos: 34.5,14.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 5072 + - uid: 5079 components: - type: Transform pos: 35.5,14.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 5073 + - uid: 5080 components: - type: Transform pos: -22.5,25.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 5074 + - uid: 5081 components: - type: Transform pos: 26.5,19.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 5075 + - uid: 5082 components: - type: Transform pos: 10.5,18.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 5076 + - uid: 5083 components: - type: Transform pos: 4.5,15.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 5077 + - uid: 5084 components: - type: Transform pos: -25.5,12.5 parent: 2 - - uid: 5078 + - uid: 5085 components: - type: Transform pos: -37.5,6.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 5079 + - uid: 5086 components: - type: Transform pos: -28.5,25.5 parent: 2 - - uid: 5080 + - uid: 5087 components: - type: Transform pos: -27.5,15.5 parent: 2 - - uid: 5081 + - uid: 5088 components: - type: Transform pos: -12.5,16.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 5082 + - uid: 5089 components: - type: Transform pos: 29.5,12.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 5083 + - uid: 5090 components: - type: Transform rot: -1.5707963267948966 rad @@ -35053,3530 +35769,3533 @@ entities: parent: 2 - proto: VendingMachineYouTool entities: - - uid: 5084 + - uid: 5091 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 5085 + - uid: 5092 components: - type: Transform pos: -23.5,12.5 parent: 2 - proto: WallmountTelescreen entities: - - uid: 5086 + - uid: 5093 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 - - uid: 5087 + - uid: 5094 components: - type: Transform pos: -2.5,27.5 parent: 2 - proto: WallReinforced entities: - - uid: 291 + - uid: 5095 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,29.5 parent: 2 - - uid: 5088 + - uid: 5096 components: - type: Transform pos: -38.5,19.5 parent: 2 - - uid: 5089 + - uid: 5097 components: - type: Transform pos: 21.5,4.5 parent: 2 - - uid: 5090 + - uid: 5098 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,30.5 parent: 2 - - uid: 5091 + - uid: 5099 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,30.5 parent: 2 - - uid: 5092 + - uid: 5100 components: - type: Transform pos: 20.5,3.5 parent: 2 - - uid: 5093 + - uid: 5101 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,24.5 parent: 2 - - uid: 5094 + - uid: 5102 components: - type: Transform pos: 20.5,1.5 parent: 2 - - uid: 5095 + - uid: 5103 components: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 5096 + - uid: 5104 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,28.5 parent: 2 - - uid: 5097 + - uid: 5105 components: - type: Transform pos: -8.5,29.5 parent: 2 - - uid: 5098 + - uid: 5106 components: - type: Transform pos: -9.5,29.5 parent: 2 - - uid: 5099 + - uid: 5107 components: - type: Transform pos: -10.5,29.5 parent: 2 - - uid: 5100 + - uid: 5108 components: - type: Transform pos: -7.5,29.5 parent: 2 - - uid: 5101 + - uid: 5109 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,25.5 parent: 2 - - uid: 5102 + - uid: 5110 components: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 5103 + - uid: 5111 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 5104 + - uid: 5112 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 - - uid: 5105 + - uid: 5113 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 - - uid: 5106 + - uid: 5114 components: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 5107 + - uid: 5115 components: - type: Transform pos: 10.5,19.5 parent: 2 - - uid: 5108 + - uid: 5116 components: - type: Transform pos: 13.5,18.5 parent: 2 - - uid: 5109 + - uid: 5117 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 - - uid: 5110 + - uid: 5118 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,16.5 parent: 2 - - uid: 5111 + - uid: 5119 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,18.5 parent: 2 - - uid: 5112 + - uid: 5120 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,15.5 parent: 2 - - uid: 5113 + - uid: 5121 components: - type: Transform pos: -24.5,32.5 parent: 2 - - uid: 5114 + - uid: 5122 components: - type: Transform pos: 14.5,19.5 parent: 2 - - uid: 5115 + - uid: 5123 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 5116 + - uid: 5124 components: - type: Transform pos: 14.5,20.5 parent: 2 - - uid: 5117 + - uid: 5125 components: - type: Transform pos: 14.5,10.5 parent: 2 - - uid: 5118 + - uid: 5126 components: - type: Transform pos: -26.5,32.5 parent: 2 - - uid: 5119 + - uid: 5127 components: - type: Transform pos: 13.5,20.5 parent: 2 - - uid: 5120 + - uid: 5128 components: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 5121 + - uid: 5129 components: - type: Transform pos: -29.5,28.5 parent: 2 - - uid: 5122 + - uid: 5130 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 - - uid: 5123 + - uid: 5131 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,16.5 parent: 2 - - uid: 5124 + - uid: 5132 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 2 - - uid: 5125 + - uid: 5133 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 - - uid: 5126 + - uid: 5134 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 - - uid: 5127 + - uid: 5135 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 - - uid: 5128 + - uid: 5136 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 - - uid: 5129 + - uid: 5137 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 2 - - uid: 5130 + - uid: 5138 components: - type: Transform pos: -7.5,0.5 parent: 2 - - uid: 5131 + - uid: 5139 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 5132 + - uid: 5140 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 5133 + - uid: 5141 components: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 5134 + - uid: 5142 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 5135 + - uid: 5143 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 5136 + - uid: 5144 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 5137 + - uid: 5145 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 5138 + - uid: 5146 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 5139 + - uid: 5147 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 5140 + - uid: 5148 components: - type: Transform pos: -7.5,1.5 parent: 2 - - uid: 5141 + - uid: 5149 components: - type: Transform pos: -7.5,2.5 parent: 2 - - uid: 5142 + - uid: 5150 components: - type: Transform pos: -7.5,3.5 parent: 2 - - uid: 5143 + - uid: 5151 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,4.5 parent: 2 - - uid: 5144 + - uid: 5152 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 5145 + - uid: 5153 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 5146 + - uid: 5154 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 5147 + - uid: 5155 components: - type: Transform pos: 8.5,0.5 parent: 2 - - uid: 5148 + - uid: 5156 components: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 5149 + - uid: 5157 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 5150 - components: - - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 5151 + - uid: 5159 components: - type: Transform pos: -8.5,3.5 parent: 2 - - uid: 5152 + - uid: 5160 components: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 5153 + - uid: 5161 components: - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 5154 + - uid: 5162 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 5155 + - uid: 5163 components: - type: Transform pos: -7.5,6.5 parent: 2 - - uid: 5156 + - uid: 5164 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 5157 + - uid: 5165 components: - type: Transform pos: -8.5,7.5 parent: 2 - - uid: 5158 + - uid: 5166 components: - type: Transform pos: -9.5,7.5 parent: 2 - - uid: 5159 + - uid: 5167 components: - type: Transform pos: -10.5,7.5 parent: 2 - - uid: 5160 + - uid: 5168 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 5161 + - uid: 5169 components: - type: Transform pos: -11.5,4.5 parent: 2 - - uid: 5162 + - uid: 5170 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 5163 + - uid: 5171 components: - type: Transform pos: -11.5,6.5 parent: 2 - - uid: 5164 + - uid: 5172 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 5165 + - uid: 5173 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 5166 + - uid: 5174 components: - type: Transform pos: 11.5,8.5 parent: 2 - - uid: 5167 + - uid: 5175 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 5168 + - uid: 5176 components: - type: Transform pos: 8.5,8.5 parent: 2 - - uid: 5169 + - uid: 5177 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 5170 + - uid: 5178 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,10.5 parent: 2 - - uid: 5171 + - uid: 5179 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,11.5 parent: 2 - - uid: 5172 + - uid: 5180 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 2 - - uid: 5173 + - uid: 5181 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,25.5 parent: 2 - - uid: 5174 + - uid: 5182 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,24.5 parent: 2 - - uid: 5175 + - uid: 5183 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,24.5 parent: 2 - - uid: 5176 + - uid: 5184 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 2 - - uid: 5177 + - uid: 5185 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,24.5 parent: 2 - - uid: 5178 + - uid: 5186 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,24.5 parent: 2 - - uid: 5179 + - uid: 5187 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,24.5 parent: 2 - - uid: 5180 + - uid: 5188 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 - - uid: 5181 + - uid: 5189 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,21.5 parent: 2 - - uid: 5182 + - uid: 5190 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,24.5 parent: 2 - - uid: 5183 + - uid: 5191 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,24.5 parent: 2 - - uid: 5184 + - uid: 5192 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,24.5 parent: 2 - - uid: 5185 + - uid: 5193 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,25.5 parent: 2 - - uid: 5186 + - uid: 5194 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,26.5 parent: 2 - - uid: 5187 + - uid: 5195 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 - - uid: 5188 + - uid: 5196 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 - - uid: 5189 + - uid: 5197 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,28.5 parent: 2 - - uid: 5190 + - uid: 5198 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,25.5 parent: 2 - - uid: 5191 + - uid: 5199 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,26.5 parent: 2 - - uid: 5192 + - uid: 5200 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,27.5 parent: 2 - - uid: 5193 + - uid: 5201 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,28.5 parent: 2 - - uid: 5194 + - uid: 5202 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,29.5 parent: 2 - - uid: 5195 + - uid: 5203 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,29.5 parent: 2 - - uid: 5196 + - uid: 5204 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,30.5 parent: 2 - - uid: 5197 + - uid: 5205 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,30.5 parent: 2 - - uid: 5198 + - uid: 5206 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,30.5 parent: 2 - - uid: 5199 + - uid: 5207 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,19.5 parent: 2 - - uid: 5200 + - uid: 5208 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,25.5 parent: 2 - - uid: 5201 + - uid: 5209 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,25.5 parent: 2 - - uid: 5202 + - uid: 5210 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,26.5 parent: 2 - - uid: 5203 + - uid: 5211 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,25.5 parent: 2 - - uid: 5204 + - uid: 5212 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,26.5 parent: 2 - - uid: 5205 + - uid: 5213 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,27.5 parent: 2 - - uid: 5206 + - uid: 5214 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,28.5 parent: 2 - - uid: 5207 + - uid: 5215 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,28.5 parent: 2 - - uid: 5208 + - uid: 5216 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 - - uid: 5209 + - uid: 5217 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 2 - - uid: 5210 + - uid: 5218 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,30.5 parent: 2 - - uid: 5211 + - uid: 5219 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 2 - - uid: 5212 + - uid: 5220 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,29.5 parent: 2 - - uid: 5213 + - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,32.5 parent: 2 - - uid: 5214 + - uid: 5222 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 2 - - uid: 5215 + - uid: 5223 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 - - uid: 5216 + - uid: 5224 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,20.5 parent: 2 - - uid: 5217 + - uid: 5225 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,24.5 parent: 2 - - uid: 5218 + - uid: 5226 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,18.5 parent: 2 - - uid: 5219 + - uid: 5227 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,17.5 parent: 2 - - uid: 5220 + - uid: 5228 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,16.5 parent: 2 - - uid: 5221 + - uid: 5229 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 5222 + - uid: 5230 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,8.5 parent: 2 - - uid: 5223 + - uid: 5231 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,20.5 parent: 2 - - uid: 5224 + - uid: 5232 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 - - uid: 5225 + - uid: 5233 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 - - uid: 5226 + - uid: 5234 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,15.5 parent: 2 - - uid: 5227 + - uid: 5235 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,21.5 parent: 2 - - uid: 5228 + - uid: 5236 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 5229 + - uid: 5237 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 5230 + - uid: 5238 components: - type: Transform pos: -11.5,20.5 parent: 2 - - uid: 5231 + - uid: 5239 components: - type: Transform pos: -11.5,19.5 parent: 2 - - uid: 5232 + - uid: 5240 components: - type: Transform pos: -12.5,19.5 parent: 2 - - uid: 5233 + - uid: 5241 components: - type: Transform pos: -13.5,19.5 parent: 2 - - uid: 5234 + - uid: 5242 components: - type: Transform pos: -13.5,18.5 parent: 2 - - uid: 5235 + - uid: 5243 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 5236 + - uid: 5244 components: - type: Transform pos: -13.5,9.5 parent: 2 - - uid: 5237 + - uid: 5245 components: - type: Transform pos: -13.5,10.5 parent: 2 - - uid: 5238 + - uid: 5246 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 5239 + - uid: 5247 components: - type: Transform pos: 11.5,10.5 parent: 2 - - uid: 5240 + - uid: 5248 components: - type: Transform pos: 11.5,9.5 parent: 2 - - uid: 5241 + - uid: 5249 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 - - uid: 5242 + - uid: 5250 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,21.5 parent: 2 - - uid: 5243 + - uid: 5251 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,21.5 parent: 2 - - uid: 5244 + - uid: 5252 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,21.5 parent: 2 - - uid: 5245 + - uid: 5253 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,21.5 parent: 2 - - uid: 5246 + - uid: 5254 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,21.5 parent: 2 - - uid: 5247 + - uid: 5255 components: - type: Transform pos: -21.5,24.5 parent: 2 - - uid: 5248 + - uid: 5256 components: - type: Transform pos: -29.5,24.5 parent: 2 - - uid: 5249 + - uid: 5257 components: - type: Transform pos: -22.5,24.5 parent: 2 - - uid: 5250 + - uid: 5258 components: - type: Transform pos: -23.5,24.5 parent: 2 - - uid: 5251 + - uid: 5259 components: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 5252 + - uid: 5260 components: - type: Transform pos: -27.5,24.5 parent: 2 - - uid: 5253 + - uid: 5261 components: - type: Transform pos: -29.5,26.5 parent: 2 - - uid: 5254 + - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,24.5 parent: 2 - - uid: 5255 + - uid: 5263 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,24.5 parent: 2 - - uid: 5256 + - uid: 5264 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,21.5 parent: 2 - - uid: 5257 + - uid: 5265 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 5258 + - uid: 5266 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,24.5 parent: 2 - - uid: 5259 + - uid: 5267 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,25.5 parent: 2 - - uid: 5260 + - uid: 5268 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,26.5 parent: 2 - - uid: 5261 + - uid: 5269 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,27.5 parent: 2 - - uid: 5262 + - uid: 5270 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,24.5 parent: 2 - - uid: 5263 + - uid: 5271 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,25.5 parent: 2 - - uid: 5264 + - uid: 5272 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,26.5 parent: 2 - - uid: 5265 + - uid: 5273 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,27.5 parent: 2 - - uid: 5266 + - uid: 5274 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,28.5 parent: 2 - - uid: 5267 + - uid: 5275 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,28.5 parent: 2 - - uid: 5268 + - uid: 5276 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,28.5 parent: 2 - - uid: 5269 + - uid: 5277 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,28.5 parent: 2 - - uid: 5270 + - uid: 5278 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,29.5 parent: 2 - - uid: 5271 + - uid: 5279 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,30.5 parent: 2 - - uid: 5272 + - uid: 5280 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,31.5 parent: 2 - - uid: 5273 + - uid: 5281 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,32.5 parent: 2 - - uid: 5274 + - uid: 5282 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,29.5 parent: 2 - - uid: 5275 + - uid: 5283 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,30.5 parent: 2 - - uid: 5276 + - uid: 5284 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,31.5 parent: 2 - - uid: 5277 + - uid: 5285 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,32.5 parent: 2 - - uid: 5278 + - uid: 5286 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 5279 + - uid: 5287 components: - type: Transform pos: -35.5,33.5 parent: 2 - - uid: 5280 + - uid: 5288 components: - type: Transform pos: -34.5,33.5 parent: 2 - - uid: 5281 + - uid: 5289 components: - type: Transform pos: -33.5,33.5 parent: 2 - - uid: 5282 + - uid: 5290 components: - type: Transform pos: -32.5,33.5 parent: 2 - - uid: 5283 + - uid: 5291 components: - type: Transform pos: -31.5,33.5 parent: 2 - - uid: 5284 + - uid: 5292 components: - type: Transform pos: -30.5,33.5 parent: 2 - - uid: 5285 + - uid: 5293 components: - type: Transform pos: -29.5,29.5 parent: 2 - - uid: 5286 + - uid: 5294 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 5287 + - uid: 5295 components: - type: Transform pos: -21.5,27.5 parent: 2 - - uid: 5288 + - uid: 5296 components: - type: Transform pos: -21.5,28.5 parent: 2 - - uid: 5289 + - uid: 5297 components: - type: Transform pos: -21.5,29.5 parent: 2 - - uid: 5290 + - uid: 5298 components: - type: Transform pos: -24.5,29.5 parent: 2 - - uid: 5291 + - uid: 5299 components: - type: Transform pos: -26.5,29.5 parent: 2 - - uid: 5292 + - uid: 5300 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,29.5 parent: 2 - - uid: 5293 + - uid: 5301 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,21.5 parent: 2 - - uid: 5294 + - uid: 5302 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 - - uid: 5295 + - uid: 5303 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,16.5 parent: 2 - - uid: 5296 + - uid: 5304 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,15.5 parent: 2 - - uid: 5297 + - uid: 5305 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 5298 + - uid: 5306 components: - type: Transform pos: -26.5,19.5 parent: 2 - - uid: 5299 + - uid: 5307 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 5300 + - uid: 5308 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,19.5 parent: 2 - - uid: 5301 + - uid: 5309 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,20.5 parent: 2 - - uid: 5302 + - uid: 5310 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 5303 + - uid: 5311 components: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 5304 + - uid: 5312 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,16.5 parent: 2 - - uid: 5305 + - uid: 5313 components: - type: Transform pos: -26.5,18.5 parent: 2 - - uid: 5306 + - uid: 5314 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 5307 + - uid: 5315 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 5308 + - uid: 5316 components: - type: Transform pos: -26.5,21.5 parent: 2 - - uid: 5309 + - uid: 5317 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 5310 + - uid: 5318 components: - type: Transform pos: -28.5,21.5 parent: 2 - - uid: 5311 + - uid: 5319 components: - type: Transform pos: -29.5,21.5 parent: 2 - - uid: 5312 + - uid: 5320 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 5313 + - uid: 5321 components: - type: Transform pos: -31.5,20.5 parent: 2 - - uid: 5314 + - uid: 5322 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 5315 + - uid: 5323 components: - type: Transform pos: -31.5,18.5 parent: 2 - - uid: 5316 + - uid: 5324 components: - type: Transform pos: -31.5,17.5 parent: 2 - - uid: 5317 + - uid: 5325 components: - type: Transform pos: -31.5,16.5 parent: 2 - - uid: 5318 + - uid: 5326 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,16.5 parent: 2 - - uid: 5319 + - uid: 5327 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 5320 + - uid: 5328 components: - type: Transform pos: -22.5,8.5 parent: 2 - - uid: 5321 + - uid: 5329 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 5322 + - uid: 5330 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 5323 + - uid: 5331 components: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 5324 + - uid: 5332 components: - type: Transform pos: -30.5,7.5 parent: 2 - - uid: 5325 + - uid: 5333 components: - type: Transform pos: -29.5,7.5 parent: 2 - - uid: 5326 + - uid: 5334 components: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 5327 + - uid: 5335 components: - type: Transform pos: -26.5,7.5 parent: 2 - - uid: 5328 + - uid: 5336 components: - type: Transform pos: -22.5,11.5 parent: 2 - - uid: 5329 + - uid: 5337 components: - type: Transform pos: -26.5,8.5 parent: 2 - - uid: 5330 + - uid: 5338 components: - type: Transform pos: -26.5,9.5 parent: 2 - - uid: 5331 + - uid: 5339 components: - type: Transform pos: -26.5,10.5 parent: 2 - - uid: 5332 + - uid: 5340 components: - type: Transform pos: -26.5,11.5 parent: 2 - - uid: 5333 + - uid: 5341 components: - type: Transform pos: -38.5,21.5 parent: 2 - - uid: 5334 + - uid: 5342 components: - type: Transform pos: -36.5,24.5 parent: 2 - - uid: 5335 + - uid: 5343 components: - type: Transform pos: -37.5,24.5 parent: 2 - - uid: 5336 + - uid: 5344 components: - type: Transform pos: -38.5,24.5 parent: 2 - - uid: 5337 + - uid: 5345 components: - type: Transform pos: -31.5,6.5 parent: 2 - - uid: 5338 + - uid: 5346 components: - type: Transform pos: -31.5,3.5 parent: 2 - - uid: 5339 + - uid: 5347 components: - type: Transform pos: -30.5,2.5 parent: 2 - - uid: 5340 + - uid: 5348 components: - type: Transform pos: -31.5,2.5 parent: 2 - - uid: 5341 + - uid: 5349 components: - type: Transform pos: -34.5,7.5 parent: 2 - - uid: 5342 + - uid: 5350 components: - type: Transform pos: -35.5,2.5 parent: 2 - - uid: 5343 + - uid: 5351 components: - type: Transform pos: -34.5,10.5 parent: 2 - - uid: 5344 + - uid: 5352 components: - type: Transform pos: -35.5,3.5 parent: 2 - - uid: 5345 + - uid: 5353 components: - type: Transform pos: -35.5,6.5 parent: 2 - - uid: 5346 + - uid: 5354 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 5347 + - uid: 5355 components: - type: Transform pos: -33.5,2.5 parent: 2 - - uid: 5348 + - uid: 5356 components: - type: Transform pos: -34.5,2.5 parent: 2 - - uid: 5349 + - uid: 5357 components: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 5350 + - uid: 5358 components: - type: Transform pos: -36.5,7.5 parent: 2 - - uid: 5351 + - uid: 5359 components: - type: Transform pos: -37.5,7.5 parent: 2 - - uid: 5352 + - uid: 5360 components: - type: Transform pos: -38.5,7.5 parent: 2 - - uid: 5353 + - uid: 5361 components: - type: Transform pos: -30.5,-0.5 parent: 2 - - uid: 5354 + - uid: 5362 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-4.5 parent: 2 - - uid: 5355 + - uid: 5363 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-4.5 parent: 2 - - uid: 5356 + - uid: 5364 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 5357 + - uid: 5365 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 - - uid: 5358 + - uid: 5366 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 - - uid: 5359 + - uid: 5367 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 - - uid: 5360 + - uid: 5368 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,0.5 parent: 2 - - uid: 5361 + - uid: 5369 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,6.5 parent: 2 - - uid: 5362 + - uid: 5370 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-4.5 parent: 2 - - uid: 5363 + - uid: 5371 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 5364 + - uid: 5372 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-4.5 parent: 2 - - uid: 5365 + - uid: 5373 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-2.5 parent: 2 - - uid: 5366 + - uid: 5374 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-4.5 parent: 2 - - uid: 5367 + - uid: 5375 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,5.5 parent: 2 - - uid: 5368 + - uid: 5376 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,4.5 parent: 2 - - uid: 5369 + - uid: 5377 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,4.5 parent: 2 - - uid: 5370 + - uid: 5378 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,3.5 parent: 2 - - uid: 5371 + - uid: 5379 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,2.5 parent: 2 - - uid: 5372 + - uid: 5380 components: - type: Transform pos: -30.5,-3.5 parent: 2 - - uid: 5373 + - uid: 5381 components: - type: Transform pos: -31.5,-3.5 parent: 2 - - uid: 5374 + - uid: 5382 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 5375 + - uid: 5383 components: - type: Transform pos: -33.5,-3.5 parent: 2 - - uid: 5376 + - uid: 5384 components: - type: Transform pos: -34.5,-3.5 parent: 2 - - uid: 5377 + - uid: 5385 components: - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 5378 + - uid: 5386 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,1.5 parent: 2 - - uid: 5379 + - uid: 5387 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,0.5 parent: 2 - - uid: 5380 + - uid: 5388 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 - - uid: 5381 + - uid: 5389 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-4.5 parent: 2 - - uid: 5382 + - uid: 5390 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-4.5 parent: 2 - - uid: 5383 + - uid: 5391 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-4.5 parent: 2 - - uid: 5384 + - uid: 5392 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-4.5 parent: 2 - - uid: 5385 + - uid: 5393 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-4.5 parent: 2 - - uid: 5386 + - uid: 5394 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,6.5 parent: 2 - - uid: 5387 + - uid: 5395 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,5.5 parent: 2 - - uid: 5388 + - uid: 5396 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,20.5 parent: 2 - - uid: 5389 + - uid: 5397 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,15.5 parent: 2 - - uid: 5390 + - uid: 5398 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,10.5 parent: 2 - - uid: 5391 + - uid: 5399 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,10.5 parent: 2 - - uid: 5392 + - uid: 5400 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,10.5 parent: 2 - - uid: 5393 + - uid: 5401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,27.5 parent: 2 - - uid: 5394 + - uid: 5402 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 5395 + - uid: 5403 components: - type: Transform pos: -23.5,11.5 parent: 2 - - uid: 5396 + - uid: 5404 components: - type: Transform pos: 19.5,19.5 parent: 2 - - uid: 5397 + - uid: 5405 components: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 5398 + - uid: 5406 components: - type: Transform pos: 19.5,13.5 parent: 2 - - uid: 5399 + - uid: 5407 components: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 5400 + - uid: 5408 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 5401 + - uid: 5409 components: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 5402 + - uid: 5410 components: - type: Transform pos: 19.5,12.5 parent: 2 - - uid: 5403 + - uid: 5411 components: - type: Transform pos: 19.5,9.5 parent: 2 - - uid: 5404 + - uid: 5412 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 5405 + - uid: 5413 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 5406 + - uid: 5414 components: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 5407 + - uid: 5415 components: - type: Transform pos: 22.5,4.5 parent: 2 - - uid: 5408 + - uid: 5416 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 5409 + - uid: 5417 components: - type: Transform pos: 22.5,23.5 parent: 2 - - uid: 5410 + - uid: 5418 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 5411 + - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,23.5 parent: 2 - - uid: 5412 + - uid: 5420 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,23.5 parent: 2 - - uid: 5413 + - uid: 5421 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,23.5 parent: 2 - - uid: 5414 + - uid: 5422 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 5415 + - uid: 5423 components: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 5416 + - uid: 5424 components: - type: Transform pos: 39.5,24.5 parent: 2 - - uid: 5417 + - uid: 5425 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 5418 + - uid: 5426 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 5419 + - uid: 5427 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 5420 + - uid: 5428 components: - type: Transform pos: 42.5,23.5 parent: 2 - - uid: 5421 + - uid: 5429 components: - type: Transform pos: 42.5,22.5 parent: 2 - - uid: 5422 + - uid: 5430 components: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 5423 + - uid: 5431 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 5424 + - uid: 5432 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 5425 + - uid: 5433 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 5426 + - uid: 5434 components: - type: Transform pos: 39.5,20.5 parent: 2 - - uid: 5427 + - uid: 5435 components: - type: Transform pos: 39.5,21.5 parent: 2 - - uid: 5428 + - uid: 5436 components: - type: Transform pos: 25.5,4.5 parent: 2 - - uid: 5429 + - uid: 5437 components: - type: Transform pos: 26.5,4.5 parent: 2 - - uid: 5430 + - uid: 5438 components: - type: Transform pos: 27.5,4.5 parent: 2 - - uid: 5431 + - uid: 5439 components: - type: Transform pos: 28.5,4.5 parent: 2 - - uid: 5432 + - uid: 5440 components: - type: Transform pos: 29.5,4.5 parent: 2 - - uid: 5433 + - uid: 5441 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 5434 + - uid: 5442 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 5435 + - uid: 5443 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 5436 + - uid: 5444 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 5437 + - uid: 5445 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 5438 + - uid: 5446 components: - type: Transform pos: 32.5,7.5 parent: 2 - - uid: 5439 + - uid: 5447 components: - type: Transform pos: 33.5,7.5 parent: 2 - - uid: 5440 + - uid: 5448 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 5441 + - uid: 5449 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 5442 + - uid: 5450 components: - type: Transform pos: 36.5,13.5 parent: 2 - - uid: 5443 + - uid: 5451 components: - type: Transform pos: 33.5,13.5 parent: 2 - - uid: 5444 + - uid: 5452 components: - type: Transform pos: 32.5,13.5 parent: 2 - - uid: 5445 + - uid: 5453 components: - type: Transform pos: 34.5,13.5 parent: 2 - - uid: 5446 + - uid: 5454 components: - type: Transform pos: 35.5,13.5 parent: 2 - - uid: 5447 + - uid: 5455 components: - type: Transform pos: 36.5,12.5 parent: 2 - - uid: 5448 + - uid: 5456 components: - type: Transform pos: 36.5,11.5 parent: 2 - - uid: 5449 + - uid: 5457 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 5450 + - uid: 5458 components: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 5451 + - uid: 5459 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 5452 + - uid: 5460 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 5453 + - uid: 5461 components: - type: Transform pos: 32.5,11.5 parent: 2 - - uid: 5454 + - uid: 5462 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 5455 + - uid: 5463 components: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 5456 + - uid: 5464 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 5457 + - uid: 5465 components: - type: Transform pos: 35.5,11.5 parent: 2 - - uid: 5458 + - uid: 5466 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,4.5 parent: 2 - - uid: 5459 + - uid: 5467 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,4.5 parent: 2 - - uid: 5460 + - uid: 5468 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 - - uid: 5461 + - uid: 5469 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,4.5 parent: 2 - - uid: 5462 + - uid: 5470 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,5.5 parent: 2 - - uid: 5463 + - uid: 5471 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,6.5 parent: 2 - - uid: 5464 + - uid: 5472 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,7.5 parent: 2 - - uid: 5465 + - uid: 5473 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,8.5 parent: 2 - - uid: 5466 + - uid: 5474 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,8.5 parent: 2 - - uid: 5467 + - uid: 5475 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,8.5 parent: 2 - - uid: 5468 + - uid: 5476 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 - - uid: 5469 + - uid: 5477 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,11.5 parent: 2 - - uid: 5470 + - uid: 5478 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,12.5 parent: 2 - - uid: 5471 + - uid: 5479 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,13.5 parent: 2 - - uid: 5472 + - uid: 5480 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,15.5 parent: 2 - - uid: 5473 + - uid: 5481 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,16.5 parent: 2 - - uid: 5474 + - uid: 5482 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,17.5 parent: 2 - - uid: 5475 + - uid: 5483 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,9.5 parent: 2 - - uid: 5476 + - uid: 5484 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 - - uid: 5477 + - uid: 5485 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,11.5 parent: 2 - - uid: 5478 + - uid: 5486 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 - - uid: 5479 + - uid: 5487 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 - - uid: 5480 + - uid: 5488 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,15.5 parent: 2 - - uid: 5481 + - uid: 5489 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,16.5 parent: 2 - - uid: 5482 + - uid: 5490 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,17.5 parent: 2 - - uid: 5483 + - uid: 5491 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,18.5 parent: 2 - - uid: 5484 + - uid: 5492 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,19.5 parent: 2 - - uid: 5485 + - uid: 5493 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,13.5 parent: 2 - - uid: 5486 + - uid: 5494 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,13.5 parent: 2 - - uid: 5487 + - uid: 5495 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,13.5 parent: 2 - - uid: 5488 + - uid: 5496 components: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 5489 + - uid: 5497 components: - type: Transform pos: 25.5,2.5 parent: 2 - - uid: 5490 + - uid: 5498 components: - type: Transform pos: 25.5,1.5 parent: 2 - - uid: 5491 + - uid: 5499 components: - type: Transform pos: 25.5,0.5 parent: 2 - - uid: 5492 + - uid: 5500 components: - type: Transform pos: 25.5,-0.5 parent: 2 - - uid: 5493 + - uid: 5501 components: - type: Transform pos: 25.5,-1.5 parent: 2 - - uid: 5494 + - uid: 5502 components: - type: Transform pos: 26.5,-1.5 parent: 2 - - uid: 5495 + - uid: 5503 components: - type: Transform pos: 27.5,-1.5 parent: 2 - - uid: 5496 + - uid: 5504 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 5497 + - uid: 5505 components: - type: Transform pos: 36.5,2.5 parent: 2 - - uid: 5498 + - uid: 5506 components: - type: Transform pos: 36.5,1.5 parent: 2 - - uid: 5499 + - uid: 5507 components: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 5500 + - uid: 5508 components: - type: Transform pos: 36.5,-0.5 parent: 2 - - uid: 5501 + - uid: 5509 components: - type: Transform pos: 36.5,-1.5 parent: 2 - - uid: 5502 + - uid: 5510 components: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 5503 + - uid: 5511 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 5504 + - uid: 5512 components: - type: Transform pos: 33.5,-1.5 parent: 2 - - uid: 5505 + - uid: 5513 components: - type: Transform pos: 28.5,-1.5 parent: 2 - - uid: 5506 + - uid: 5514 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 5507 + - uid: 5515 components: - type: Transform pos: 25.5,25.5 parent: 2 - - uid: 5508 + - uid: 5516 components: - type: Transform pos: 25.5,26.5 parent: 2 - - uid: 5509 + - uid: 5517 components: - type: Transform pos: 25.5,27.5 parent: 2 - - uid: 5510 + - uid: 5518 components: - type: Transform pos: 36.5,25.5 parent: 2 - - uid: 5511 + - uid: 5519 components: - type: Transform pos: 36.5,24.5 parent: 2 - - uid: 5512 + - uid: 5520 components: - type: Transform pos: 36.5,26.5 parent: 2 - - uid: 5513 + - uid: 5521 components: - type: Transform pos: 36.5,27.5 parent: 2 - - uid: 5514 + - uid: 5522 components: - type: Transform pos: 25.5,28.5 parent: 2 - - uid: 5515 + - uid: 5523 components: - type: Transform pos: 25.5,29.5 parent: 2 - - uid: 5516 + - uid: 5524 components: - type: Transform pos: 36.5,28.5 parent: 2 - - uid: 5517 + - uid: 5525 components: - type: Transform pos: 36.5,29.5 parent: 2 - - uid: 5518 + - uid: 5526 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 5519 + - uid: 5527 components: - type: Transform pos: 27.5,1.5 parent: 2 - - uid: 5520 + - uid: 5528 components: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 5521 + - uid: 5529 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 5522 + - uid: 5530 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,29.5 parent: 2 - - uid: 5523 + - uid: 5531 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,29.5 parent: 2 - - uid: 5524 + - uid: 5532 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,29.5 parent: 2 - - uid: 5525 + - uid: 5533 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,10.5 parent: 2 - - uid: 5526 + - uid: 5534 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,10.5 parent: 2 - - uid: 5527 + - uid: 5535 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,11.5 parent: 2 - - uid: 5528 + - uid: 5536 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,12.5 parent: 2 - - uid: 5529 + - uid: 5537 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,14.5 parent: 2 - - uid: 5530 + - uid: 5538 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,15.5 parent: 2 - - uid: 5531 + - uid: 5539 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 - - uid: 5532 + - uid: 5540 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,17.5 parent: 2 - - uid: 5533 + - uid: 5541 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,18.5 parent: 2 - - uid: 5534 + - uid: 5542 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 - - uid: 5535 + - uid: 5543 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,20.5 parent: 2 - - uid: 5536 + - uid: 5544 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,21.5 parent: 2 - - uid: 5537 + - uid: 5545 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,21.5 parent: 2 - - uid: 5538 + - uid: 5546 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,21.5 parent: 2 - - uid: 5539 + - uid: 5547 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,21.5 parent: 2 - - uid: 5540 + - uid: 5548 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,10.5 parent: 2 - - uid: 5541 + - uid: 5549 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,10.5 parent: 2 - - uid: 5542 + - uid: 5550 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,29.5 parent: 2 - - uid: 5543 + - uid: 5551 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,29.5 parent: 2 - - uid: 5544 + - uid: 5552 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 - - uid: 5545 + - uid: 5553 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 - - uid: 5546 + - uid: 5554 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,25.5 parent: 2 - - uid: 5547 + - uid: 5555 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,26.5 parent: 2 - - uid: 5548 + - uid: 5556 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,27.5 parent: 2 - - uid: 5549 + - uid: 5557 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,28.5 parent: 2 - - uid: 5550 + - uid: 5558 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,30.5 parent: 2 - - uid: 5551 + - uid: 5559 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,30.5 parent: 2 - - uid: 5552 + - uid: 5560 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,30.5 parent: 2 - - uid: 5553 + - uid: 5561 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,29.5 parent: 2 - - uid: 5554 + - uid: 5562 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,28.5 parent: 2 - - uid: 5555 + - uid: 5563 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,23.5 parent: 2 - - uid: 5556 + - uid: 5564 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,29.5 parent: 2 - - uid: 5557 + - uid: 5565 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,20.5 parent: 2 - - uid: 5558 + - uid: 5566 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,20.5 parent: 2 - - uid: 5559 + - uid: 5567 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,24.5 parent: 2 - - uid: 5560 + - uid: 5568 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2 - - uid: 5561 + - uid: 5569 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 - - uid: 5562 + - uid: 5570 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,24.5 parent: 2 - - uid: 5563 + - uid: 5571 components: - type: Transform pos: 20.5,4.5 parent: 2 - - uid: 5564 - components: - - type: Transform - pos: 10.5,4.5 - parent: 2 - - uid: 5565 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 5566 + - uid: 5574 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,10.5 parent: 2 - - uid: 5567 + - uid: 5575 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,10.5 parent: 2 - - uid: 5568 + - uid: 5576 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,10.5 parent: 2 - - uid: 5569 + - uid: 5577 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 - - uid: 5570 + - uid: 5578 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,14.5 parent: 2 - - uid: 5571 + - uid: 5579 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,14.5 parent: 2 - - uid: 5572 + - uid: 5580 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,14.5 parent: 2 - - uid: 5573 + - uid: 5581 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,14.5 parent: 2 - - uid: 5574 + - uid: 5582 components: - type: Transform pos: 21.5,1.5 parent: 2 - - uid: 5575 + - uid: 5583 components: - type: Transform pos: 22.5,1.5 parent: 2 - - uid: 5576 + - uid: 5584 components: - type: Transform pos: 23.5,1.5 parent: 2 - - uid: 5577 + - uid: 5585 components: - type: Transform pos: 24.5,1.5 parent: 2 - - uid: 5578 + - uid: 5586 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,4.5 parent: 2 - - uid: 5579 + - uid: 5587 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 2 - - uid: 5580 + - uid: 5588 components: - type: Transform pos: 9.5,2.5 parent: 2 - - uid: 5581 + - uid: 5589 components: - type: Transform pos: 10.5,2.5 parent: 2 - - uid: 5582 + - uid: 5590 components: - type: Transform pos: 11.5,2.5 parent: 2 - proto: WallSolid entities: - - uid: 5583 + - uid: 5158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - uid: 5591 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,8.5 parent: 2 - - uid: 5584 + - uid: 5592 components: - type: Transform pos: -14.5,24.5 parent: 2 - - uid: 5585 + - uid: 5593 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,24.5 parent: 2 - - uid: 5586 + - uid: 5594 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,24.5 parent: 2 - - uid: 5587 + - uid: 5595 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,21.5 parent: 2 - - uid: 5588 + - uid: 5596 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,21.5 parent: 2 - - uid: 5589 + - uid: 5597 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,15.5 parent: 2 - - uid: 5590 + - uid: 5598 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,13.5 parent: 2 - - uid: 5591 + - uid: 5599 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,9.5 parent: 2 - - uid: 5592 + - uid: 5600 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,21.5 parent: 2 - - uid: 5593 + - uid: 5601 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,21.5 parent: 2 - - uid: 5594 + - uid: 5602 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,21.5 parent: 2 - - uid: 5595 + - uid: 5603 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,21.5 parent: 2 - - uid: 5596 + - uid: 5604 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,11.5 parent: 2 - - uid: 5597 + - uid: 5605 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,12.5 parent: 2 - - uid: 5598 + - uid: 5606 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,13.5 parent: 2 - - uid: 5599 + - uid: 5607 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,14.5 parent: 2 - - uid: 5600 + - uid: 5608 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,15.5 parent: 2 - - uid: 5601 + - uid: 5609 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,16.5 parent: 2 - - uid: 5602 + - uid: 5610 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,20.5 parent: 2 - - uid: 5603 + - uid: 5611 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,15.5 parent: 2 - - uid: 5604 + - uid: 5612 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,16.5 parent: 2 - - uid: 5605 + - uid: 5613 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,16.5 parent: 2 - - uid: 5606 + - uid: 5614 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,16.5 parent: 2 - - uid: 5607 + - uid: 5615 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,23.5 parent: 2 - - uid: 5608 + - uid: 5616 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,23.5 parent: 2 - - uid: 5609 + - uid: 5617 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,23.5 parent: 2 - - uid: 5610 + - uid: 5618 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,23.5 parent: 2 - - uid: 5611 + - uid: 5619 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,23.5 parent: 2 - - uid: 5612 + - uid: 5620 components: - type: Transform pos: -17.5,24.5 parent: 2 - - uid: 5613 + - uid: 5621 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,24.5 parent: 2 - - uid: 5614 + - uid: 5622 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-1.5 parent: 2 - - uid: 5615 + - uid: 5623 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 2 - - uid: 5616 + - uid: 5624 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 2 - - uid: 5617 + - uid: 5625 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 2 - - uid: 5618 + - uid: 5626 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 2 - - uid: 5619 + - uid: 5627 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 - - uid: 5620 + - uid: 5628 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 2 - - uid: 5621 + - uid: 5629 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 2 - - uid: 5622 + - uid: 5630 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 2 - - uid: 5623 + - uid: 5631 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 2 - - uid: 5624 + - uid: 5632 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 - - uid: 5625 + - uid: 5633 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 2 - - uid: 5626 + - uid: 5634 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,0.5 parent: 2 - - uid: 5627 + - uid: 5635 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 - - uid: 5628 + - uid: 5636 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 5629 + - uid: 5637 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 2 - - uid: 5630 + - uid: 5638 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 - - uid: 5631 + - uid: 5639 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 - - uid: 5632 + - uid: 5640 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 2 - - uid: 5633 + - uid: 5641 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 2 - - uid: 5634 + - uid: 5642 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 5635 + - uid: 5643 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 5636 + - uid: 5644 components: - type: Transform pos: -3.5,7.5 parent: 2 - - uid: 5637 + - uid: 5645 components: - type: Transform pos: -3.5,8.5 parent: 2 - - uid: 5638 + - uid: 5646 components: - type: Transform pos: -4.5,8.5 parent: 2 - - uid: 5639 + - uid: 5647 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 5640 + - uid: 5648 components: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 5641 + - uid: 5649 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 5642 + - uid: 5650 components: - type: Transform pos: 5.5,12.5 parent: 2 - - uid: 5643 + - uid: 5651 components: - type: Transform pos: 5.5,13.5 parent: 2 - - uid: 5644 + - uid: 5652 components: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 5645 + - uid: 5653 components: - type: Transform pos: -4.5,12.5 parent: 2 - - uid: 5646 + - uid: 5654 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 5647 + - uid: 5655 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 5648 + - uid: 5656 components: - type: Transform pos: -3.5,14.5 parent: 2 - - uid: 5649 + - uid: 5657 components: - type: Transform pos: -2.5,14.5 parent: 2 - - uid: 5650 + - uid: 5658 components: - type: Transform pos: -1.5,14.5 parent: 2 - - uid: 5651 + - uid: 5659 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 5652 + - uid: 5660 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 5653 + - uid: 5661 components: - type: Transform pos: 2.5,14.5 parent: 2 - - uid: 5654 + - uid: 5662 components: - type: Transform pos: -7.5,8.5 parent: 2 - - uid: 5655 + - uid: 5663 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 2 - - uid: 5656 + - uid: 5664 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 - - uid: 5657 + - uid: 5665 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 2 - - uid: 5658 + - uid: 5666 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 2 - - uid: 5659 + - uid: 5667 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,20.5 parent: 2 - - uid: 5660 + - uid: 5668 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,20.5 parent: 2 - - uid: 5661 + - uid: 5669 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,21.5 parent: 2 - - uid: 5662 + - uid: 5670 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,20.5 parent: 2 - - uid: 5663 + - uid: 5671 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,20.5 parent: 2 - - uid: 5664 + - uid: 5672 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,21.5 parent: 2 - - uid: 5665 + - uid: 5673 components: - type: Transform pos: -7.5,9.5 parent: 2 - - uid: 5666 + - uid: 5674 components: - type: Transform pos: -7.5,10.5 parent: 2 - - uid: 5667 + - uid: 5675 components: - type: Transform pos: -7.5,11.5 parent: 2 - - uid: 5668 + - uid: 5676 components: - type: Transform pos: -7.5,12.5 parent: 2 - - uid: 5669 + - uid: 5677 components: - type: Transform pos: -7.5,21.5 parent: 2 - - uid: 5670 + - uid: 5678 components: - type: Transform pos: -7.5,20.5 parent: 2 - - uid: 5671 + - uid: 5679 components: - type: Transform pos: -7.5,19.5 parent: 2 - - uid: 5672 + - uid: 5680 components: - type: Transform pos: -7.5,18.5 parent: 2 - - uid: 5673 + - uid: 5681 components: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 5674 + - uid: 5682 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 5675 + - uid: 5683 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 5676 + - uid: 5684 components: - type: Transform pos: -9.5,21.5 parent: 2 - - uid: 5677 + - uid: 5685 components: - type: Transform pos: -10.5,21.5 parent: 2 - - uid: 5678 + - uid: 5686 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 5679 + - uid: 5687 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 5680 + - uid: 5688 components: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 5681 + - uid: 5689 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 5682 + - uid: 5690 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 5683 + - uid: 5691 components: - type: Transform pos: 22.5,13.5 parent: 2 - - uid: 5684 + - uid: 5692 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 5685 + - uid: 5693 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 5686 + - uid: 5694 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 5687 + - uid: 5695 components: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 5688 + - uid: 5696 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 5689 + - uid: 5697 components: - type: Transform pos: 22.5,21.5 parent: 2 - - uid: 5690 + - uid: 5698 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 5691 + - uid: 5699 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 5692 + - uid: 5700 components: - type: Transform pos: 22.5,19.5 parent: 2 - - uid: 5693 + - uid: 5701 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 5694 + - uid: 5702 components: - type: Transform pos: 22.5,12.5 parent: 2 - - uid: 5695 + - uid: 5703 components: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 5696 + - uid: 5704 components: - type: Transform pos: 25.5,7.5 parent: 2 - - uid: 5697 + - uid: 5705 components: - type: Transform pos: 26.5,7.5 parent: 2 - - uid: 5698 + - uid: 5706 components: - type: Transform pos: 27.5,7.5 parent: 2 - - uid: 5699 + - uid: 5707 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 5700 + - uid: 5708 components: - type: Transform pos: 29.5,7.5 parent: 2 - - uid: 5701 + - uid: 5709 components: - type: Transform pos: 25.5,8.5 parent: 2 - - uid: 5702 + - uid: 5710 components: - type: Transform pos: 25.5,12.5 parent: 2 - - uid: 5703 + - uid: 5711 components: - type: Transform pos: 25.5,13.5 parent: 2 - - uid: 5704 + - uid: 5712 components: - type: Transform pos: 25.5,14.5 parent: 2 - - uid: 5705 + - uid: 5713 components: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 5706 + - uid: 5714 components: - type: Transform pos: 25.5,17.5 parent: 2 - - uid: 5707 + - uid: 5715 components: - type: Transform pos: 25.5,19.5 parent: 2 - - uid: 5708 + - uid: 5716 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 5709 + - uid: 5717 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 5710 + - uid: 5718 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 5711 + - uid: 5719 components: - type: Transform pos: 28.5,20.5 parent: 2 - - uid: 5712 + - uid: 5720 components: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 5713 + - uid: 5721 components: - type: Transform pos: 32.5,20.5 parent: 2 - - uid: 5714 + - uid: 5722 components: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 5715 + - uid: 5723 components: - type: Transform pos: 34.5,20.5 parent: 2 - - uid: 5716 + - uid: 5724 components: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 5717 + - uid: 5725 components: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 5718 + - uid: 5726 components: - type: Transform pos: 36.5,19.5 parent: 2 - - uid: 5719 + - uid: 5727 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 5720 + - uid: 5728 components: - type: Transform pos: 36.5,15.5 parent: 2 - - uid: 5721 + - uid: 5729 components: - type: Transform pos: 36.5,14.5 parent: 2 - - uid: 5722 + - uid: 5730 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,7.5 parent: 2 - - uid: 5723 + - uid: 5731 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 - - uid: 5724 + - uid: 5732 components: - type: Transform pos: 29.5,26.5 parent: 2 - - uid: 5725 + - uid: 5733 components: - type: Transform pos: 28.5,26.5 parent: 2 - - uid: 5726 + - uid: 5734 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,11.5 parent: 2 - - uid: 5727 + - uid: 5735 components: - type: Transform rot: 3.141592653589793 rad @@ -38584,7 +39303,7 @@ entities: parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 5728 + - uid: 5736 components: - type: Transform rot: -1.5707963267948966 rad @@ -38592,7 +39311,7 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 5729 + - uid: 5737 components: - type: Transform rot: 1.5707963267948966 rad @@ -38600,7 +39319,7 @@ entities: parent: 2 - proto: WarningO2 entities: - - uid: 5730 + - uid: 5738 components: - type: Transform rot: 1.5707963267948966 rad @@ -38608,7 +39327,7 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 5731 + - uid: 5739 components: - type: MetaData name: Станция @@ -38618,89 +39337,89 @@ entities: parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 5732 + - uid: 5740 components: - type: Transform pos: 0.5,20.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 5733 + - uid: 5741 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,25.5 parent: 2 - - uid: 5734 + - uid: 5742 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,10.5 parent: 2 - - uid: 5735 + - uid: 5743 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,28.5 parent: 2 - - uid: 5736 + - uid: 5744 components: - type: Transform pos: 11.5,13.5 parent: 2 - - uid: 5737 + - uid: 5745 components: - type: Transform pos: 11.5,17.5 parent: 2 - proto: WeaponCrusherGlaive entities: - - uid: 5738 + - uid: 5746 components: - type: Transform pos: -25.486744,27.305542 parent: 2 - proto: WeaponLaserCarbine entities: - - uid: 5739 + - uid: 5747 components: - type: Transform pos: 11.527663,19.590162 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 5740 + - uid: 5748 components: - type: Transform pos: 11.444903,19.848011 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 5741 + - uid: 5749 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 5742 + - uid: 5750 components: - type: Transform pos: 41.5,5.5 parent: 2 - proto: Windoor entities: - - uid: 5743 + - uid: 5751 components: - type: Transform pos: -37.5,18.5 parent: 2 - proto: WindoorBarLocked entities: - - uid: 5744 + - uid: 5752 components: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 5745 + - uid: 5753 components: - type: Transform rot: 3.141592653589793 rad @@ -38708,7 +39427,7 @@ entities: parent: 2 - proto: WindoorCaptainLocked entities: - - uid: 5746 + - uid: 5754 components: - type: Transform rot: 3.141592653589793 rad @@ -38716,19 +39435,19 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 5747 + - uid: 5755 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,8.5 parent: 2 - - uid: 5748 + - uid: 5756 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 - - uid: 5749 + - uid: 5757 components: - type: Transform rot: 1.5707963267948966 rad @@ -38736,13 +39455,13 @@ entities: parent: 2 - proto: WindoorSecureArmoryLocked entities: - - uid: 5750 + - uid: 5758 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,19.5 parent: 2 - - uid: 5751 + - uid: 5759 components: - type: Transform rot: 1.5707963267948966 rad @@ -38750,20 +39469,20 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 5752 + - uid: 5760 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,24.5 parent: 2 - - uid: 5753 + - uid: 5761 components: - type: Transform pos: -16.5,24.5 parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 5754 + - uid: 5762 components: - type: Transform rot: -1.5707963267948966 rad @@ -38771,25 +39490,25 @@ entities: parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 5755 + - uid: 5763 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,0.5 parent: 2 - - uid: 5756 + - uid: 5764 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,2.5 parent: 2 - - uid: 5757 + - uid: 5765 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 - - uid: 5758 + - uid: 5766 components: - type: Transform rot: -1.5707963267948966 rad @@ -38797,30 +39516,30 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 5759 + - uid: 5767 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,8.5 parent: 2 - - uid: 5760 + - uid: 5768 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,8.5 parent: 2 - - uid: 5761 + - uid: 5769 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,15.5 parent: 2 - - uid: 5762 + - uid: 5770 components: - type: Transform pos: -27.5,9.5 parent: 2 - - uid: 5763 + - uid: 5771 components: - type: Transform rot: 1.5707963267948966 rad @@ -38828,19 +39547,19 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 5764 + - uid: 5772 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 2 - - uid: 5765 + - uid: 5773 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,11.5 parent: 2 - - uid: 5766 + - uid: 5774 components: - type: Transform rot: 1.5707963267948966 rad @@ -38848,13 +39567,13 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 5767 + - uid: 5775 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,10.5 parent: 2 - - uid: 5768 + - uid: 5776 components: - type: Transform rot: 1.5707963267948966 rad @@ -38862,30 +39581,30 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 5769 + - uid: 5777 components: - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 5770 + - uid: 5778 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,10.5 parent: 2 - - uid: 5771 + - uid: 5779 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,17.5 parent: 2 - - uid: 5772 + - uid: 5780 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,25.5 parent: 2 - - uid: 5773 + - uid: 5781 components: - type: Transform rot: 3.141592653589793 rad @@ -38893,7 +39612,7 @@ entities: parent: 2 - proto: WindoorSecureUranium entities: - - uid: 5774 + - uid: 5782 components: - type: Transform rot: 1.5707963267948966 rad @@ -38901,210 +39620,210 @@ entities: parent: 2 - proto: Window entities: - - uid: 5775 + - uid: 5783 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 2 - - uid: 5776 + - uid: 5784 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 2 - - uid: 5777 + - uid: 5785 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 2 - - uid: 5778 + - uid: 5786 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 2 - - uid: 5779 + - uid: 5787 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 2 - - uid: 5780 + - uid: 5788 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 5781 + - uid: 5789 components: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 5782 + - uid: 5790 components: - type: Transform pos: 1.5,7.5 parent: 2 - - uid: 5783 + - uid: 5791 components: - type: Transform pos: 0.5,7.5 parent: 2 - - uid: 5784 + - uid: 5792 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 5785 + - uid: 5793 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 5786 + - uid: 5794 components: - type: Transform pos: -2.5,7.5 parent: 2 - - uid: 5787 + - uid: 5795 components: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 5788 + - uid: 5796 components: - type: Transform pos: -4.5,11.5 parent: 2 - - uid: 5789 + - uid: 5797 components: - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 5790 + - uid: 5798 components: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 5791 + - uid: 5799 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 2 - - uid: 5792 + - uid: 5800 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 - - uid: 5793 + - uid: 5801 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,17.5 parent: 2 - - uid: 5794 + - uid: 5802 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,19.5 parent: 2 - - uid: 5795 + - uid: 5803 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,21.5 parent: 2 - - uid: 5796 + - uid: 5804 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 - - uid: 5797 + - uid: 5805 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 - - uid: 5798 + - uid: 5806 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,21.5 parent: 2 - - uid: 5799 + - uid: 5807 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,21.5 parent: 2 - - uid: 5800 + - uid: 5808 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,21.5 parent: 2 - - uid: 5801 + - uid: 5809 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,21.5 parent: 2 - - uid: 5802 + - uid: 5810 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,17.5 parent: 2 - - uid: 5803 + - uid: 5811 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,19.5 parent: 2 - - uid: 5804 + - uid: 5812 components: - type: Transform pos: 26.5,13.5 parent: 2 - - uid: 5805 + - uid: 5813 components: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 5806 + - uid: 5814 components: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 5807 + - uid: 5815 components: - type: Transform pos: 29.5,13.5 parent: 2 - proto: WindowDirectional entities: - - uid: 5808 + - uid: 5816 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 - - uid: 5809 + - uid: 5817 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,12.5 parent: 2 - - uid: 5810 + - uid: 5818 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,13.5 parent: 2 - - uid: 5811 + - uid: 5819 components: - type: Transform rot: 3.141592653589793 rad @@ -39112,187 +39831,187 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 5812 + - uid: 5820 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 2 - - uid: 5813 + - uid: 5821 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 2 - - uid: 5814 + - uid: 5822 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 - - uid: 5815 + - uid: 5823 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 5816 + - uid: 5824 components: - type: Transform pos: 41.5,11.5 parent: 2 - - uid: 5817 + - uid: 5825 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,12.5 parent: 2 - - uid: 5818 + - uid: 5826 components: - type: Transform pos: 9.5,16.5 parent: 2 - - uid: 5819 + - uid: 5827 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 - - uid: 5820 + - uid: 5828 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,10.5 parent: 2 - - uid: 5821 + - uid: 5829 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 5822 + - uid: 5830 components: - type: Transform pos: -35.5,11.5 parent: 2 - - uid: 5823 + - uid: 5831 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 2 - - uid: 5824 + - uid: 5832 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,3.5 parent: 2 - - uid: 5825 + - uid: 5833 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,8.5 parent: 2 - - uid: 5826 + - uid: 5834 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 - - uid: 5827 + - uid: 5835 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,14.5 parent: 2 - - uid: 5828 + - uid: 5836 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,11.5 parent: 2 - - uid: 5829 + - uid: 5837 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,9.5 parent: 2 - - uid: 5830 + - uid: 5838 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,9.5 parent: 2 - - uid: 5831 + - uid: 5839 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,9.5 parent: 2 - - uid: 5832 + - uid: 5840 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,9.5 parent: 2 - - uid: 5833 + - uid: 5841 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 - - uid: 5834 + - uid: 5842 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - uid: 5835 + - uid: 5843 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 - - uid: 5836 + - uid: 5844 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 - - uid: 5837 + - uid: 5845 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,12.5 parent: 2 - - uid: 5838 + - uid: 5846 components: - type: Transform pos: 42.5,11.5 parent: 2 - - uid: 5839 + - uid: 5847 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 5840 + - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 2 - - uid: 5841 + - uid: 5849 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 2 - - uid: 5842 + - uid: 5850 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 2 - - uid: 5843 + - uid: 5851 components: - type: Transform rot: 3.141592653589793 rad @@ -39300,12 +40019,12 @@ entities: parent: 2 - proto: Wirecutter entities: - - uid: 5844 + - uid: 5852 components: - type: Transform pos: -8.473778,6.450178 parent: 2 - - uid: 5845 + - uid: 5853 components: - type: Transform rot: 3.141592653589793 rad @@ -39313,7 +40032,7 @@ entities: parent: 2 - proto: Wrench entities: - - uid: 5846 + - uid: 5854 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index f83c5019f73f33..ae2783e643d2cd 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -34699,18 +34699,6 @@ entities: - type: Transform pos: 4.5698934,-180.42856 parent: 2 -- proto: chem_master - entities: - - uid: 3116 - components: - - type: Transform - pos: 5.5,-165.5 - parent: 2 - - uid: 3117 - components: - - type: Transform - pos: 7.5,-167.5 - parent: 2 - proto: ChemDispenser entities: - uid: 3112 @@ -34730,6 +34718,18 @@ entities: - type: Transform pos: 4.5,-167.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 3116 + components: + - type: Transform + pos: 5.5,-165.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 7.5,-167.5 + parent: 2 - proto: ChessBoard entities: - uid: 12938 @@ -36687,6 +36687,14 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-316.5 parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 6661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-300.5 + parent: 2 - proto: ComputerSalvageExpedition entities: - uid: 8873 @@ -54872,11 +54880,15 @@ entities: - uid: 4565 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4566 components: - type: Transform @@ -55133,11 +55145,15 @@ entities: - uid: 4664 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4665 components: - type: Transform @@ -61359,11 +61375,15 @@ entities: - uid: 14873 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 5.5,-109.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 14892 components: - type: Transform @@ -63407,15 +63427,23 @@ entities: - uid: 11927 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 11930 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -19.5,-263.5 parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12412 components: - type: Transform @@ -63559,11 +63587,15 @@ entities: - uid: 838 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-157.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 855 components: - type: Transform @@ -63601,6 +63633,7 @@ entities: - uid: 884 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 2 @@ -63609,6 +63642,9 @@ entities: - 12935 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 905 components: - type: Transform @@ -63620,11 +63656,15 @@ entities: - uid: 921 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 954 components: - type: Transform @@ -63639,6 +63679,7 @@ entities: - uid: 977 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 2 @@ -63647,13 +63688,20 @@ entities: - 13109 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1004 components: - type: Transform + anchored: False pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1057 components: - type: Transform @@ -63665,11 +63713,15 @@ entities: - uid: 1123 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1138 components: - type: Transform @@ -63734,14 +63786,19 @@ entities: - uid: 1373 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1375 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -2.5,-189.5 parent: 2 @@ -63750,6 +63807,9 @@ entities: - 14727 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1382 components: - type: Transform @@ -63772,10 +63832,14 @@ entities: - uid: 1769 components: - type: Transform + anchored: False pos: 0.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1806 components: - type: Transform @@ -63829,10 +63893,14 @@ entities: - uid: 3040 components: - type: Transform + anchored: False pos: 0.5,-184.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3110 components: - type: Transform @@ -63844,14 +63912,19 @@ entities: - uid: 3333 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3351 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 4.5,-81.5 parent: 2 @@ -63860,14 +63933,21 @@ entities: - 13147 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3352 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -4.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3371 components: - type: Transform @@ -63892,11 +63972,15 @@ entities: - uid: 3373 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -3.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3374 components: - type: Transform @@ -63927,11 +64011,15 @@ entities: - uid: 3393 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3403 components: - type: Transform @@ -63965,10 +64053,14 @@ entities: - uid: 3438 components: - type: Transform + anchored: False pos: -3.5,-107.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3451 components: - type: Transform @@ -63999,6 +64091,7 @@ entities: - uid: 3474 components: - type: Transform + anchored: False pos: -6.5,-113.5 parent: 2 - type: DeviceNetwork @@ -64006,9 +64099,13 @@ entities: - 13161 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3475 components: - type: Transform + anchored: False pos: -6.5,-116.5 parent: 2 - type: DeviceNetwork @@ -64016,9 +64113,13 @@ entities: - 13161 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3476 components: - type: Transform + anchored: False pos: -6.5,-119.5 parent: 2 - type: DeviceNetwork @@ -64026,9 +64127,13 @@ entities: - 13168 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3477 components: - type: Transform + anchored: False pos: -6.5,-122.5 parent: 2 - type: DeviceNetwork @@ -64036,6 +64141,9 @@ entities: - 13168 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3478 components: - type: Transform @@ -64060,10 +64168,14 @@ entities: - uid: 3481 components: - type: Transform + anchored: False pos: 0.5,-130.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3482 components: - type: Transform @@ -64097,6 +64209,7 @@ entities: - uid: 3650 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 5.5,-138.5 parent: 2 @@ -64105,9 +64218,13 @@ entities: - 13182 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4016 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-136.5 parent: 2 @@ -64116,25 +64233,37 @@ entities: - 13176 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4018 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 3.5,-138.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4020 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4031 components: - type: Transform + anchored: False pos: -4.5,-136.5 parent: 2 - type: DeviceNetwork @@ -64142,6 +64271,9 @@ entities: - 13187 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4033 components: - type: Transform @@ -64195,6 +64327,7 @@ entities: - uid: 4202 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 15.5,-256.5 parent: 2 @@ -64203,6 +64336,9 @@ entities: - 15292 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4234 components: - type: Transform @@ -64225,11 +64361,15 @@ entities: - uid: 4558 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 3.5,-152.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4559 components: - type: Transform @@ -64274,6 +64414,7 @@ entities: - uid: 4950 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 17.5,-248.5 parent: 2 @@ -64282,6 +64423,9 @@ entities: - 15292 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4967 components: - type: Transform @@ -64320,6 +64464,7 @@ entities: - uid: 5082 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 4.5,-189.5 parent: 2 @@ -64328,9 +64473,13 @@ entities: - 13241 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5083 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-194.5 parent: 2 @@ -64339,6 +64488,9 @@ entities: - 13249 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5108 components: - type: Transform @@ -64364,6 +64516,7 @@ entities: - uid: 5121 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -2.5,-202.5 parent: 2 @@ -64372,6 +64525,9 @@ entities: - 13252 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5126 components: - type: Transform @@ -64418,11 +64574,15 @@ entities: - uid: 5161 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-221.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5163 components: - type: Transform @@ -64442,13 +64602,18 @@ entities: - uid: 5199 components: - type: Transform + anchored: False pos: 0.5,-228.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5251 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-178.5 parent: 2 @@ -64457,9 +64622,13 @@ entities: - 13211 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5260 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 3.5,-175.5 parent: 2 @@ -64468,9 +64637,13 @@ entities: - 8201 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5261 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -1.5,-175.5 parent: 2 @@ -64479,6 +64652,9 @@ entities: - 13213 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5288 components: - type: Transform @@ -64490,11 +64666,15 @@ entities: - uid: 5293 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -2.5,-163.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5302 components: - type: Transform @@ -64517,6 +64697,7 @@ entities: - uid: 6036 components: - type: Transform + anchored: False pos: 0.5,-34.5 parent: 2 - type: DeviceNetwork @@ -64525,6 +64706,9 @@ entities: - 13109 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 6727 components: - type: Transform @@ -64552,6 +64736,7 @@ entities: - uid: 6915 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 @@ -64560,6 +64745,9 @@ entities: - 13105 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 7504 components: - type: Transform @@ -64571,11 +64759,15 @@ entities: - uid: 7506 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 7769 components: - type: Transform @@ -64587,19 +64779,27 @@ entities: - uid: 8066 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -2.5,-260.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8070 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -2.5,-243.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8071 components: - type: Transform @@ -64614,17 +64814,25 @@ entities: - uid: 8113 components: - type: Transform + anchored: False pos: 0.5,-238.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8123 components: - type: Transform + anchored: False pos: 0.5,-211.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8157 components: - type: Transform @@ -64636,6 +64844,7 @@ entities: - uid: 8314 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 8.5,-248.5 parent: 2 @@ -64644,6 +64853,9 @@ entities: - 15280 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8431 components: - type: Transform @@ -64663,6 +64875,7 @@ entities: - uid: 10658 components: - type: Transform + anchored: False pos: -6.5,-338.5 parent: 2 - type: DeviceNetwork @@ -64670,6 +64883,9 @@ entities: - 5925 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 10811 components: - type: Transform @@ -64689,10 +64905,14 @@ entities: - uid: 10976 components: - type: Transform + anchored: False pos: 7.5,-337.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12142 components: - type: Transform @@ -64731,6 +64951,7 @@ entities: - uid: 12333 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 5.5,-273.5 parent: 2 @@ -64739,9 +64960,13 @@ entities: - 13322 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12341 components: - type: Transform + anchored: False pos: 0.5,-274.5 parent: 2 - type: DeviceNetwork @@ -64749,14 +64974,21 @@ entities: - 13317 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12345 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 2.5,-284.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12349 components: - type: Transform @@ -64768,6 +65000,7 @@ entities: - uid: 12356 components: - type: Transform + anchored: False pos: 0.5,-286.5 parent: 2 - type: DeviceNetwork @@ -64775,6 +65008,9 @@ entities: - 13333 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12362 components: - type: Transform @@ -64808,6 +65044,7 @@ entities: - uid: 12428 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -4.5,-315.5 parent: 2 @@ -64816,6 +65053,9 @@ entities: - 13374 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12429 components: - type: Transform @@ -64827,6 +65067,7 @@ entities: - uid: 12430 components: - type: Transform + anchored: False pos: 0.5,-318.5 parent: 2 - type: DeviceNetwork @@ -64834,6 +65075,9 @@ entities: - 13370 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12470 components: - type: Transform @@ -64918,28 +65162,41 @@ entities: - uid: 12637 components: - type: Transform + anchored: False pos: 0.5,-292.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12641 components: - type: Transform + anchored: False pos: 0.5,-324.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12652 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -0.5,-327.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12705 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 0.5,-297.5 parent: 2 @@ -64948,6 +65205,9 @@ entities: - 13358 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12718 components: - type: Transform @@ -64959,6 +65219,7 @@ entities: - uid: 12754 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 0.5,-356.5 parent: 2 @@ -64967,16 +65228,24 @@ entities: - 13421 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12895 components: - type: Transform + anchored: False pos: 0.5,-344.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12897 components: - type: Transform + anchored: False pos: 0.5,-340.5 parent: 2 - type: DeviceNetwork @@ -64984,9 +65253,13 @@ entities: - 11906 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12898 components: - type: Transform + anchored: False pos: 0.5,-329.5 parent: 2 - type: DeviceNetwork @@ -64995,13 +65268,20 @@ entities: - 11906 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12918 components: - type: Transform + anchored: False pos: 0.5,-351.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12920 components: - type: Transform @@ -65121,17 +65401,25 @@ entities: - uid: 13077 components: - type: Transform + anchored: False pos: -3.5,-368.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13079 components: - type: Transform + anchored: False pos: 4.5,-368.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13145 components: - type: Transform @@ -65145,6 +65433,7 @@ entities: - uid: 13207 components: - type: Transform + anchored: False pos: 0.5,-167.5 parent: 2 - type: DeviceNetwork @@ -65152,6 +65441,9 @@ entities: - 13209 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13237 components: - type: Transform @@ -65275,6 +65567,7 @@ entities: - uid: 15284 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-254.5 parent: 2 @@ -65283,6 +65576,9 @@ entities: - 15282 - type: AtmosPipeColor color: '#0335FCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 16679 components: - type: Transform @@ -65360,6 +65656,7 @@ entities: - uid: 747 components: - type: Transform + anchored: False pos: 2.5,-6.5 parent: 2 - type: DeviceNetwork @@ -65367,6 +65664,9 @@ entities: - 13080 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 751 components: - type: Transform @@ -65410,6 +65710,7 @@ entities: - uid: 1155 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 2 @@ -65418,9 +65719,13 @@ entities: - 13109 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1191 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -0.5,-34.5 parent: 2 @@ -65430,6 +65735,9 @@ entities: - 13109 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 1201 components: - type: Transform @@ -65554,6 +65862,7 @@ entities: - uid: 1825 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 2 @@ -65562,6 +65871,9 @@ entities: - 12935 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 2797 components: - type: Transform @@ -65584,8 +65896,12 @@ entities: - uid: 3120 components: - type: Transform + anchored: False pos: 1.5,-167.5 parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3261 components: - type: Transform @@ -65765,6 +66081,7 @@ entities: - uid: 3600 components: - type: Transform + anchored: False pos: -0.5,-120.5 parent: 2 - type: DeviceNetwork @@ -65772,9 +66089,13 @@ entities: - 13165 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3603 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -0.5,-123.5 parent: 2 @@ -65783,6 +66104,9 @@ entities: - 13168 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3608 components: - type: Transform @@ -65797,11 +66121,15 @@ entities: - uid: 3622 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 6.5,-110.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3623 components: - type: Transform @@ -65838,11 +66166,15 @@ entities: - uid: 3637 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 4.5,-108.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3647 components: - type: Transform @@ -65900,11 +66232,15 @@ entities: - uid: 3982 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 7.5,-135.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 3993 components: - type: Transform @@ -65993,6 +66329,7 @@ entities: - uid: 4508 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 4.5,-88.5 parent: 2 @@ -66001,6 +66338,9 @@ entities: - 13146 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 4509 components: - type: Transform @@ -66100,6 +66440,7 @@ entities: - uid: 5072 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 @@ -66108,6 +66449,9 @@ entities: - 13249 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5073 components: - type: Transform @@ -66141,19 +66485,27 @@ entities: - uid: 5179 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 4.5,-229.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5185 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5188 components: - type: Transform @@ -66165,19 +66517,27 @@ entities: - uid: 5189 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -3.5,-220.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5190 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 0.5,-220.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5225 components: - type: Transform @@ -66188,6 +66548,7 @@ entities: - uid: 5252 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 @@ -66196,9 +66557,13 @@ entities: - 13211 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5275 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -1.5,-174.5 parent: 2 @@ -66207,6 +66572,9 @@ entities: - 13213 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 5277 components: - type: Transform @@ -66267,6 +66635,7 @@ entities: - uid: 7476 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 16.5,-256.5 parent: 2 @@ -66275,6 +66644,9 @@ entities: - 15292 - type: AtmosPipeColor color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 7563 components: - type: Transform @@ -66285,6 +66657,7 @@ entities: - uid: 7776 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 18.5,-249.5 parent: 2 @@ -66293,6 +66666,9 @@ entities: - 15292 - type: AtmosPipeColor color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 7823 components: - type: Transform @@ -66326,6 +66702,7 @@ entities: - uid: 8089 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 8.5,-256.5 parent: 2 @@ -66334,6 +66711,9 @@ entities: - 15280 - type: AtmosPipeColor color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 8091 components: - type: Transform @@ -66385,12 +66765,16 @@ entities: - uid: 11912 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -5.5,-361.5 parent: 2 - type: DeviceNetwork deviceLists: - 13421 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12134 components: - type: Transform @@ -66459,6 +66843,7 @@ entities: - uid: 12340 components: - type: Transform + anchored: False pos: 1.5,-274.5 parent: 2 - type: DeviceNetwork @@ -66466,9 +66851,13 @@ entities: - 13317 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12355 components: - type: Transform + anchored: False pos: -0.5,-286.5 parent: 2 - type: DeviceNetwork @@ -66476,6 +66865,9 @@ entities: - 13333 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12375 components: - type: Transform @@ -66531,6 +66923,7 @@ entities: - uid: 12530 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 0.5,-319.5 parent: 2 @@ -66539,6 +66932,9 @@ entities: - 13370 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12564 components: - type: Transform @@ -66578,6 +66974,7 @@ entities: - uid: 12704 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 0.5,-298.5 parent: 2 @@ -66586,6 +66983,9 @@ entities: - 13358 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12721 components: - type: Transform @@ -66624,14 +67024,19 @@ entities: - uid: 12812 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12813 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -4.5,-344.5 parent: 2 @@ -66640,9 +67045,13 @@ entities: - 13402 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12896 components: - type: Transform + anchored: False pos: 1.5,-329.5 parent: 2 - type: DeviceNetwork @@ -66651,6 +67060,9 @@ entities: - 11906 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 12914 components: - type: Transform @@ -66693,6 +67105,7 @@ entities: - uid: 13040 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -6.5,-363.5 parent: 2 @@ -66701,9 +67114,13 @@ entities: - 13421 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13041 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 7.5,-363.5 parent: 2 @@ -66712,9 +67129,13 @@ entities: - 13421 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13053 components: - type: Transform + anchored: False pos: 0.5,-365.5 parent: 2 - type: DeviceNetwork @@ -66722,14 +67143,21 @@ entities: - 13429 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13055 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 0.5,-367.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13067 components: - type: Transform @@ -66755,6 +67183,7 @@ entities: - uid: 13081 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 3.5,-361.5 parent: 2 @@ -66763,9 +67192,13 @@ entities: - 13421 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13082 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -2.5,-361.5 parent: 2 @@ -66774,6 +67207,9 @@ entities: - 13421 - type: AtmosPipeColor color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 13088 components: - type: Transform @@ -66830,6 +67266,7 @@ entities: - uid: 15283 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -0.5,-257.5 parent: 2 @@ -66838,14 +67275,21 @@ entities: - 15282 - type: AtmosPipeColor color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 16999 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: -5.5,-248.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 17001 components: - type: Transform @@ -74248,7 +74692,7 @@ entities: pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -134384.86 + secondsUntilStateChange: -134439.94 state: Closing - uid: 11796 components: @@ -80145,12 +80589,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-207.5 parent: 2 - - uid: 6882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-300.5 - parent: 2 - uid: 7791 components: - type: Transform @@ -86125,7 +86563,7 @@ entities: - type: Transform pos: 3.2005093,-101.69577 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 1025 components: @@ -90101,11 +90539,6 @@ entities: - type: Transform pos: 1.2603997,-187.48691 parent: 2 - - uid: 6661 - components: - - type: Transform - pos: -9.413958,-300.49924 - parent: 2 - uid: 15265 components: - type: Transform @@ -90167,11 +90600,6 @@ entities: - type: Transform pos: 7.516703,-56.70343 parent: 2 - - uid: 6883 - components: - - type: Transform - pos: -9.6328745,-300.19412 - parent: 2 - uid: 8681 components: - type: Transform diff --git a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml index b9d45f0f960ab6..7ef8a8262d60bd 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml @@ -158,6 +158,9 @@ - id: WeaponTurretXeno prob: 0.01 orGroup: Weapons + - id: WeaponRifleFoam + prob: 0.03 + orGroup: Weapons #clothing - id: ClothingUniformJumpsuitFamilyGuy prob: 0.05 @@ -385,3 +388,12 @@ - id: WeakKudzu prob: 0.01 orGroup: NotUseful + - id: MagazineFoamBox + prob: 0.001 + orGroup: NotUseful + - id: BoxDonkSoftBox + prob: 0.008 + orGroup: NotUseful + - id: GrenadeFoamDart + prob: 0.001 + orGroup: NotUseful \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/Catalog/Fills/Items/misc.yml index 543cd604a2fb0b..816f3ba8d49b90 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/misc.yml @@ -1,12 +1,32 @@ - type: entity id: ClothingShoesBootsCombatFilled - parent: ClothingShoesBootsCombat - suffix: Filled - components: - - type: ContainerFill - containers: - item: - - CombatKnife + parent: + - ClothingShoesBootsCombat + - ClothingShoesBootsSecFilled + +- type: entity + id: ClothingShoesBootsJackFilled + parent: + - ClothingShoesBootsJack + - ClothingShoesBootsSecFilled + +- type: entity + id: ClothingShoesBootsWinterSecFilled + parent: + - ClothingShoesBootsWinterSec + - ClothingShoesBootsSecFilled + +- type: entity + id: ClothingShoesBootsCowboyBlackFilled + parent: + - ClothingShoesBootsCowboyBlack + - ClothingShoesBootsSecFilled + +- type: entity + id: ClothingShoesHighheelBootsFilled + parent: + - ClothingShoesHighheelBoots + - ClothingShoesBootsSecFilled - type: entity id: ClothingShoesBootsMercFilled diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml index c91eb1ef2ed2ef..9757b14e58e037 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml @@ -8,3 +8,4 @@ PowerCellMedium: 5 ClothingHandsGlovesColorYellow: 6 BoxInflatable: 2 + ClothingHeadHatCone: 4 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index 9dabc2d61b4cf7..48c096b199c0d6 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -19,10 +19,8 @@ ClothingOuterWinterSec: 2 ClothingOuterArmorBasic: 2 ClothingNeckScarfStripedRed: 3 - ClothingOuterArmorBasicSlim: 2 + ClothingOuterArmorBasicSlim: 2 ClothingEyesBlindfold: 1 ClothingShoesBootsCombat: 1 ClothingShoesBootsWinterSec: 2 - ClothingShoesBootsCowboyBlack: 1 - ClothingHeadHatCowboyBlack: 1 - ClothingUniformHECU: 1 + ClothingUniformHECU: 1 # Starshine diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 995ec2c34f617b..5ef44b6b548dfb 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -1413,6 +1413,17 @@ categories: - UplinkWearables +- type: listing + id: UplinkHardsuitCarp + name: uplink-hardsuit-carp-name + description: uplink-hardsuit-carp-desc + icon: { sprite: /Textures/Clothing/OuterClothing/Suits/carpsuit.rsi, state: icon } + productEntity: ClothingOuterHardsuitCarp + cost: + Telecrystal: 4 + categories: + - UplinkWearables + - type: listing id: UplinkHardsuitSyndie name: uplink-hardsuit-syndie-name diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 68d44baead21ea..0748df4100fb82 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -337,3 +337,15 @@ Poison: 0.0 Radiation: 0.0 Caustic: 0.0 + +- type: damageModifierSet + id: Xenomorhp + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + Shock: 0 + Cold: 0 + Heat: 1.5 + Poison: 0.0 + Radiation: 0.1 diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/base_clothingeyes.yml b/Resources/Prototypes/Entities/Clothing/Eyes/base_clothingeyes.yml index 7fdd304b326adf..33cde7afb38d0d 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/base_clothingeyes.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/base_clothingeyes.yml @@ -14,3 +14,42 @@ tags: - Clothing - WhitelistChameleon + +- type: entity + parent: [ClothingEyesBase, BaseFoldable] + id: ClothingHeadEyeBaseFlippable + abstract: true + components: + - type: Appearance + - type: FlippableClothingVisuals + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: fold-flip-verb + foldVerbText: fold-flip-verb + - type: FoldableClothing + - type: Sprite + layers: + - map: [ "unfoldedLayer" ] + state: icon + - map: ["foldedLayer"] + state: icon + visible: false + scale: -1,1 + +- type: entity + parent: ClothingHeadEyeBaseFlippable + id: ClothingHeadEyeBaseFlipped + suffix: flipped + abstract: true + components: + - type: Foldable + folded: true + - type: Sprite + layers: + - map: [ "unfoldedLayer" ] + state: icon + visible: false + - map: ["foldedLayer"] + state: icon + visible: true + scale: -1,1 diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index c74a60e8fc450a..0c7fc5b2a1fca4 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -220,7 +220,7 @@ suffix: Syndicate - type: entity - parent: ClothingEyesHudMedical + parent: [ClothingEyesHudMedical, ClothingHeadEyeBaseFlippable] id: ClothingEyesEyepatchHudMedical name: medical hud eyepatch description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. For true patriots. @@ -231,7 +231,12 @@ sprite: Clothing/Eyes/Hud/medpatch.rsi - type: entity - parent: ClothingEyesHudSecurity + parent: [ClothingEyesEyepatchHudMedical, ClothingHeadEyeBaseFlipped] + id: ClothingEyesEyepatchHudMedicalFlipped + name: medical hud eyepatch + +- type: entity + parent: [ClothingEyesHudSecurity, ClothingHeadEyeBaseFlippable] id: ClothingEyesEyepatchHudSecurity name: security hud eyepatch description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. For true patriots. @@ -242,7 +247,12 @@ sprite: Clothing/Eyes/Hud/secpatch.rsi - type: entity - parent: ClothingEyesHudBeer + parent: [ClothingEyesEyepatchHudSecurity, ClothingHeadEyeBaseFlipped] + id: ClothingEyesEyepatchHudSecurityFlipped + name: security hud eyepatch + +- type: entity + parent: [ClothingEyesHudBeer, ClothingHeadEyeBaseFlippable] id: ClothingEyesEyepatchHudBeer name: beer hud eyepatch description: A pair of sunHud outfitted with apparatus to scan reagents, as well as providing an innate understanding of liquid viscosity while in motion. For true patriots. @@ -253,7 +263,12 @@ sprite: Clothing/Eyes/Hud/beerpatch.rsi - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesEyepatchHudBeer, ClothingHeadEyeBaseFlipped] + id: ClothingEyesEyepatchHudBeerFlipped + name: beer hud eyepatch + +- type: entity + parent: [ClothingEyesHudDiagnostic, ClothingHeadEyeBaseFlippable] id: ClothingEyesEyepatchHudDiag name: diagnostic hud eyepatch description: A heads-up display capable of analyzing the integrity and status of robotics and exosuits. Made out of see-borg-ium. @@ -262,7 +277,8 @@ sprite: Clothing/Eyes/Hud/diagpatch.rsi - type: Clothing sprite: Clothing/Eyes/Hud/diagpatch.rsi - - type: ShowHealthBars - damageContainers: - - Inorganic - - Silicon + +- type: entity + parent: [ClothingEyesEyepatchHudDiag, ClothingHeadEyeBaseFlipped] + id: ClothingEyesEyepatchHudDiagFlipped + name: diagnostic hud eyepatch diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml index 06ff3471727f55..075ccae1c49d80 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/misc.yml @@ -1,16 +1,3 @@ -- type: entity - parent: ClothingEyesBase - id: ClothingEyesEyepatch - name: eyepatch - description: Yarr. - components: - - type: Sprite - sprite: Clothing/Eyes/Misc/eyepatch.rsi - - type: Clothing - sprite: Clothing/Eyes/Misc/eyepatch.rsi - - type: EyeProtection - protectionTime: 5 - - type: entity parent: ClothingEyesBase id: ClothingEyesBlindfold @@ -26,3 +13,21 @@ graph: Blindfold node: blindfold - type: FlashImmunity + +- type: entity + parent: ClothingHeadEyeBaseFlippable + id: ClothingEyesEyepatch + name: eyepatch + description: Yarr. + components: + - type: Sprite + sprite: Clothing/Eyes/Misc/eyepatch.rsi + - type: Clothing + sprite: Clothing/Eyes/Misc/eyepatch.rsi + - type: EyeProtection + protectionTime: 5 + +- type: entity + parent: [ClothingEyesEyepatch, ClothingHeadEyeBaseFlipped] + id: ClothingEyesEyepatchFlipped + suffix: flipped diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 617729c70def3b..f5ace2a26e459e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -294,6 +294,10 @@ - type: ContainerContainer containers: storagebase: !type:Container + - type: PilotedClothing + pilotWhitelist: + tags: + - ChefPilot - type: Tag tags: - Clothing @@ -539,6 +543,8 @@ - type: Appearance - type: AddAccentClothing accent: RussianAccent + - type: RussianAccent + - type: AccentWearerNameClothing - type: Foldable canFoldInsideContainer: true - type: FoldableClothing diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 85c705c82d6858..41fdb290bd4103 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -206,6 +206,22 @@ slots: - Hair +- type: entity + parent: ClothingHeadHatHoodCarp + id: ClothingHeadHelmetHardsuitCarp + noSpawn: true + components: + - type: PressureProtection + highPressureMultiplier: 0.6 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.2 + - type: BreathMask + # this is on the hood so you only fool the fish if you wear the whole set + # wear carp suit and security helmet, they'll know you are fake + - type: FactionClothing + faction: Dragon + - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodMoth diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index ccf6f09b19400c..79c116b3cad3c9 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -257,3 +257,16 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + +- type: entity + parent: ClothingOuterSuitCarp + id: ClothingOuterHardsuitCarp + suffix: Hardsuit, DO NOT MAP + components: + - type: PressureProtection + highPressureMultiplier: 0.6 + lowPressureMultiplier: 1000 + - type: TemperatureProtection + coefficient: 0.01 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCarp diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml index 169bcf8b30d6dc..e85e13b35a77f8 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml @@ -53,6 +53,16 @@ - Knife - Sidearm +- type: entity + abstract: true + id: ClothingShoesBootsSecFilled + suffix: Filled + components: + - type: ContainerFill + containers: + item: + - CombatKnife + - type: entity abstract: true parent: ClothingShoesBaseButcherable diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index 26c6f75db9a9b7..fe6897d3f91cd1 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -145,7 +145,7 @@ sprite: Clothing/Shoes/Boots/winterbootssci.rsi - type: entity - parent: ClothingShoesBaseWinterBoots + parent: [ClothingShoesBaseWinterBoots, ClothingShoesMilitaryBase] id: ClothingShoesBootsWinterSec name: security winter boots components: diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index e80ed74305c6de..d934a8b97e1364 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -81,7 +81,7 @@ price: 3000 - type: entity - parent: ClothingShoesBase + parent: [ClothingShoesBootsMag, BaseJetpack] id: ClothingShoesBootsMagSyndie name: blood-red magboots description: Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. @@ -106,27 +106,9 @@ moles: - 0.153853429 # oxygen - 0.153853429 # nitrogen - - type: ActivatableUI - key: enum.SharedGasTankUiKey.Key - - type: UserInterface - interfaces: - enum.SharedGasTankUiKey.Key: - type: GasTankBoundUserInterface - - type: Explosive - explosionType: Default - maxIntensity: 20 - - type: Jetpack - moleUsage: 0.00085 - - type: CanMoveInAir - - type: InputMover - toParent: true - - type: MovementSpeedModifier - weightlessAcceleration: 1 - weightlessFriction: 0.3 - weightlessModifier: 1.2 - - type: Tag - tags: - - WhitelistChameleon + - type: Item + sprite: null + size: Normal - type: entity id: ActionBaseToggleMagboots diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index 5a52e09bf2d3d7..19768f8dc236b6 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -294,6 +294,15 @@ - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_bighorn +- type: marking + id: LizardHornsDemonic + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: horns_demonic + - type: marking id: LizardHornsKoboldEars bodyPart: HeadTop diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 0c686522de094d..67d0cddbc63288 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -228,9 +228,20 @@ deviceNetId: Wireless receiveFrequencyId: CyborgControl transmitFrequencyId: RoboticsConsole + - type: OnUseTimerTrigger + delay: 10 + examinable: false + beepSound: + path: /Audio/Effects/Cargo/buzz_two.ogg + params: + volume: -4 + # prevent any funnies if someone makes a cyborg item... + - type: AutomatedTimer + - type: ExplodeOnTrigger # explosion does most of its damage in the center and less at the edges - type: Explosive explosionType: Minibomb + deleteAfterExplosion: false # let damage threshold gib the borg totalIntensity: 30 intensitySlope: 20 maxIntensity: 20 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 9bef397f9d2dc6..cf4ab298135391 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1625,6 +1625,7 @@ tags: - Trash - VimPilot + - ChefPilot - Mouse - Meat - type: Respirator @@ -2230,7 +2231,7 @@ solution: melee generated: reagents: - - ReagentId: Toxin + - ReagentId: Mechanotoxin Quantity: 1 - type: MeleeChemicalInjector transferAmount: 0.75 @@ -3178,6 +3179,7 @@ - type: Tag tags: - VimPilot + - ChefPilot - Trash - Hamster - Meat diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 3a77dbab4c98d7..10bc7861fac38e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -15,7 +15,7 @@ true - type: NpcFactionMember factions: - - SimpleHostile + - Dragon - type: Sprite drawdepth: Mobs sprite: Mobs/Aliens/Carps/space.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 4bd71f898db17f..d318c606adfc2d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -79,14 +79,14 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: Label - originalName: jug - type: Tag tags: - ChemDispensable - type: entity parent: Jug - name: jug (carbon) + name: jug + suffix: carbon id: JugCarbon noSpawn: true components: @@ -101,7 +101,8 @@ - type: entity parent: Jug - name: jug (iodine) + name: jug + suffix: iodine id: JugIodine noSpawn: true components: @@ -116,7 +117,8 @@ - type: entity parent: Jug - name: jug (fluorine) + name: jug + suffix: fluorine id: JugFluorine noSpawn: true components: @@ -131,7 +133,8 @@ - type: entity parent: Jug - name: jug (chlorine) + name: jug + suffix: chlorine id: JugChlorine noSpawn: true components: @@ -146,7 +149,8 @@ - type: entity parent: Jug - name: jug (aluminium) + name: jug + suffix: aluminium id: JugAluminium noSpawn: true components: @@ -161,7 +165,8 @@ - type: entity parent: Jug - name: jug (phosphorus) + name: jug + suffix: phosphorus id: JugPhosphorus noSpawn: true components: @@ -176,7 +181,8 @@ - type: entity parent: Jug - name: jug (sulfur) + name: jug + suffix: sulfur id: JugSulfur noSpawn: true components: @@ -191,7 +197,8 @@ - type: entity parent: Jug - name: jug (silicon) + name: jug + suffix: silicon id: JugSilicon noSpawn: true components: @@ -206,7 +213,8 @@ - type: entity parent: Jug - name: jug (hydrogen) + name: jug + suffix: hydrogen id: JugHydrogen noSpawn: true components: @@ -221,7 +229,8 @@ - type: entity parent: Jug - name: jug (lithium) + name: jug + suffix: lithium id: JugLithium noSpawn: true components: @@ -236,7 +245,8 @@ - type: entity parent: Jug - name: jug (sodium) + name: jug + suffix: sodium id: JugSodium noSpawn: true components: @@ -251,7 +261,8 @@ - type: entity parent: Jug - name: jug (potassium) + name: jug + suffix: potassium id: JugPotassium noSpawn: true components: @@ -266,7 +277,8 @@ - type: entity parent: Jug - name: jug (radium) + name: jug + suffix: radium id: JugRadium noSpawn: true components: @@ -281,7 +293,8 @@ - type: entity parent: Jug - name: jug (iron) + name: jug + suffix: iron id: JugIron noSpawn: true components: @@ -296,7 +309,8 @@ - type: entity parent: Jug - name: jug (copper) + name: jug + suffix: copper id: JugCopper noSpawn: true components: @@ -311,7 +325,8 @@ - type: entity parent: Jug - name: jug (gold) + name: jug + suffix: gold id: JugGold noSpawn: true components: @@ -326,7 +341,8 @@ - type: entity parent: Jug - name: jug (mercury) + name: jug + suffix: mercury id: JugMercury noSpawn: true components: @@ -341,7 +357,8 @@ - type: entity parent: Jug - name: jug (silver) + name: jug + suffix: silver id: JugSilver noSpawn: true components: @@ -356,7 +373,8 @@ - type: entity parent: Jug - name: jug (ethanol) + name: jug + suffix: ethanol id: JugEthanol noSpawn: true components: @@ -371,7 +389,8 @@ - type: entity parent: Jug - name: jug (sugar) + name: jug + suffix: sugar id: JugSugar noSpawn: true components: @@ -386,7 +405,8 @@ - type: entity parent: Jug - name: jug (nitrogen) + name: jug + suffix: nitrogen id: JugNitrogen noSpawn: true components: @@ -401,7 +421,8 @@ - type: entity parent: Jug - name: jug (oxygen) + name: jug + suffix: oxygen id: JugOxygen noSpawn: true components: @@ -416,7 +437,8 @@ - type: entity parent: Jug - name: jug (Plant-B-Gone) + name: jug + suffix: Plant-B-Gone id: JugPlantBGone noSpawn: true components: @@ -431,7 +453,8 @@ - type: entity parent: Jug - name: jug (welding fuel) + name: jug + suffix: welding fuel id: JugWeldingFuel noSpawn: true components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/toy.yml new file mode 100644 index 00000000000000..babbc2648f71aa --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/toy.yml @@ -0,0 +1,12 @@ +- type: entity + parent: MagazineLightRifleBox # It goes in a saw, its funny. + id: MagazineFoamBox + name: ammunition box (foam) + components: + - type: BallisticAmmoProvider + mayTransfer: true + whitelist: + tags: + - BulletFoam + proto: BulletFoam + capacity: 100 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml index 34a39c1583eb70..9b6c288e378664 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml @@ -4,12 +4,30 @@ name: foam dart parent: BaseItem components: - - type: Tag - tags: - - BulletFoam - - Trash - - type: Ammo - - type: Sprite - sprite: Objects/Fun/toys.rsi - layers: - - state: foamdart + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + vertices: + - -0.05,-0.15 + - -0.05,0.25 + - 0.05,-0.15 + - 0.05,0.25 + density: 20 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + - type: Tag + tags: + - BulletFoam + - Trash + - type: Ammo + - type: Sprite + sprite: Objects/Fun/toys.rsi + layers: + - state: foamdart + - type: EmbeddableProjectile + removalTime: .2 + - type: ThrowingAngle + angle: 180 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 5f4f53f196ece4..1ca50aacf5eec1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -190,171 +190,32 @@ zeroVisible: true - type: Appearance -## Starshine - -- type: entity - name: Lecter - parent: WeaponRifleLecter - id: WeaponRifleLecterRubber - suffix: Non-lethal - components: - - type: ItemSlots - slots: - gun_magazine: - name: Magazine - startingItem: MagazineRifleRubber - insertSound: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg - ejectSound: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg - priority: 2 - whitelist: - tags: - - MagazineRifle - gun_chamber: - name: Chamber - startingItem: CartridgeRifleRubber - priority: 1 - whitelist: - tags: - - CartridgeRifle - -- type: entity - name: KR51 - parent: BaseWeaponRifle - id: WeaponRifleKR51 - description: Silent automatic rifle. Uses .25 caseless ammo - components: - - type: Sprite - sprite: Objects/Weapons/Guns/Rifles/kr51.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-0 - map: ["enum.GunVisualLayers.Mag"] - - type: Gun - fireRate: 5 - soundGunshot: - path: /Audio/Weapons/Guns/Gunshots/heavy_shot_suppressed.ogg - params: - volume: -2 - - type: ChamberMagazineAmmoProvider - - type: ItemSlots - slots: - gun_magazine: - name: Magazine - startingItem: MagazineCaselessRifleShort - insertSound: /Audio/Weapons/Guns/MagIn/hpistol_magin.ogg - ejectSound: /Audio/Weapons/Guns/MagOut/hpistol_magout.ogg - priority: 2 - whitelist: - tags: - - MagazineCaselessRifle - gun_chamber: - name: Chamber - startingItem: CartridgeCaselessRifle - priority: 1 - whitelist: - tags: - - CartridgeCaselessRifle - - type: ContainerContainer - containers: - gun_magazine: !type:ContainerSlot - gun_chamber: !type:ContainerSlot - - type: MagazineVisuals - magState: mag - steps: 1 - zeroVisible: true - - type: Appearance - - type: entity - name: ASH9 - parent: BaseWeaponRifle - id: WeaponRifleAsh9 - description: Silent automatic rifle. Uses .25 caseless ammo + name: Foam Force Astro Ace + parent: [BaseWeaponShotgun, BaseGunWieldable] + id: WeaponRifleFoam + description: A premium foam rifle of the highest quality. Its plastic feels rugged, and its mechanisms sturdy. components: - type: Sprite - sprite: Objects/Weapons/Guns/Rifles/ash9.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-0 - map: ["enum.GunVisualLayers.Mag"] - - type: Gun - fireRate: 5 - soundGunshot: - path: /Audio/Weapons/Guns/Gunshots/ash9.ogg - - type: ChamberMagazineAmmoProvider - - type: ItemSlots - slots: - gun_magazine: - name: Magazine - startingItem: MagazineUniversal - insertSound: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg - ejectSound: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg - priority: 2 - whitelist: - tags: - - MagazineUniversal - gun_chamber: - name: Chamber - startingItem: CartridgeCaselessUniversalPT1 - priority: 1 - whitelist: - tags: - - CartridgeUniversal - - type: ContainerContainer - containers: - gun_magazine: !type:ContainerSlot - gun_chamber: !type:ContainerSlot - - type: MagazineVisuals - magState: mag - steps: 1 - zeroVisible: true - - type: Appearance - -- type: entity - name: VSSK14 - parent: BaseWeaponRifle - id: WeaponSniperVssk14 - description: A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo. - components: - - type: Sprite - sprite: Objects/Weapons/Guns/Snipers/vssk.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-0 - map: ["enum.GunVisualLayers.Mag"] + sprite: Objects/Weapons/Guns/Rifles/foam_rifle.rsi - type: Clothing - sprite: Objects/Weapons/Guns/Snipers/vssk.rsi + sprite: Objects/Weapons/Guns/Rifles/foam_rifle.rsi + - type: Item + sprite: Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi + - type: BallisticAmmoProvider + whitelist: + tags: + - BulletFoam + capacity: 10 + proto: BulletFoam + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun - fireRate: 1 + fireRate: 2 + selectedMode: SemiAuto + availableModes: + - SemiAuto soundGunshot: - path: /Audio/Weapons/Guns/Gunshots/vssk14.ogg - - type: ChamberMagazineAmmoProvider - - type: ItemSlots - slots: - gun_magazine: - name: Magazine - startingItem: MagazineUniversal - insertSound: /Audio/Weapons/Guns/MagIn/vssk_magin.ogg - ejectSound: /Audio/Weapons/Guns/MagOut/vssk_magout.ogg - priority: 2 - whitelist: - tags: - - MagazineUniversal - gun_chamber: - name: Chamber - startingItem: CartridgeCaselessUniversalPT1 - priority: 1 - whitelist: - tags: - - CartridgeUniversal - - type: ContainerContainer - containers: - gun_magazine: !type:ContainerSlot - gun_chamber: !type:ContainerSlot - - type: MagazineVisuals - magState: mag - steps: 1 - zeroVisible: true - - type: Appearance + path: /Audio/Effects/thunk.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/empty.ogg + clumsyProof: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index 6bd119e8d3c09a..4bc71b60e66eba 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -242,3 +242,22 @@ - type: ContainerContainer containers: cluster-payload: !type:Container + +- type: entity + parent: GrenadeShrapnel + id: GrenadeFoamDart + name: foam dart grenade + description: Releases a bothersome spray of foam darts that cause severe welching. + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/foamdart.rsi + layers: + - state: icon + map: ["Base"] + - state: primed + map: ["enum.TriggerVisualLayers.Base"] + - type: ClusterGrenade + fillPrototype: BulletFoam + maxGrenadesCount: 30 + grenadeType: enum.GrenadeType.Throw + velocity: 70 diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 6a1abdfbe3dc8b..8a0d6c40030403 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -4,12 +4,6 @@ components: - type: StationData -- type: entity - id: BaseRandomStation - abstract: true - components: - - type: StationRandomTransform - - type: entity id: BaseStationCargo abstract: true diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 7e650d536f224e..ab885b03e53727 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -25,7 +25,6 @@ - BaseStationSiliconLawCrewsimov - BaseStationAllEventsEligible - BaseStationNanotrasen - - BaseRandomStation noSpawn: true components: - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml index b79c0e62131786..1309060bac1487 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml @@ -73,6 +73,7 @@ orGroup: dressermainloot - id: ClothingUniformJumpskirtColorPink prob: 0.05 + orGroup: dresserthirdloot - id: ClothingUniformJumpsuitLoungewear prob: 0.05 orGroup: dressermainloot diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index 4dc879b0f6a38a..d82370ba0d6cfd 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -24,10 +24,10 @@ conveyor: shape: !type:PolygonShape vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 + - -0.49,-0.49 + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 layer: - Impassable - MidImpassable diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 9038ea75a8092f..8432f2f40cd0c8 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -300,20 +300,6 @@ maxDuration: 120 - type: PowerGridCheckRule -- type: entity - id: RandomSentience - parent: BaseGameRule - components: - - type: StationEvent - weight: 6 - duration: 1 - maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it - startAudio: - path: /Audio/Announcements/sentience.ogg - params: - volume: -4 - - type: RandomSentienceRule - - type: entity parent: BaseGameRule id: SolarFlare @@ -604,3 +590,22 @@ maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it weight: 5 - type: MobReplacementRule + +- type: entity + id: XenomorphMigration + parent: BaseStationEventShortDelay + components: + - type: StationEvent + earliestStart: 30 + startAnnouncement: station-event-vent-creatures-start-announcement + startAudio: # Starshine + path: /Audio/Starshine/Announcements/lifesigns.ogg + params: + volume: -4 + weight: 6 + minimumPlayers: 15 + duration: 60 + - type: VentCrittersRule + specialEntries: + - id: SpawnPointGhostXenoHunter + prob: 0.00001 diff --git a/Resources/Prototypes/GameRules/meteorswarms.yml b/Resources/Prototypes/GameRules/meteorswarms.yml index 70dd5265b04495..b85032f0564c52 100644 --- a/Resources/Prototypes/GameRules/meteorswarms.yml +++ b/Resources/Prototypes/GameRules/meteorswarms.yml @@ -4,6 +4,7 @@ components: - type: GameRule minPlayers: 25 + cancelPresetOnTooFewPlayers: false - type: MeteorScheduler - type: weightedRandomEntity diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml index a9c7352ed8236e..e3ac371ebde343 100644 --- a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -70,7 +70,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 3,1 - strippingWindowPos: 2,3 + strippingWindowPos: 1,5 displayName: Belt - name: back slotTexture: back @@ -79,7 +79,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 3,0 - strippingWindowPos: 0,3 + strippingWindowPos: 0,5 displayName: Back - name: pocket4 @@ -89,7 +89,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 2,4 - strippingWindowPos: 1,5 + strippingWindowPos: 2,3 displayName: Pocket 4 - name: pocket3 slotTexture: web @@ -98,7 +98,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 0,4 - strippingWindowPos: 0,5 + strippingWindowPos: 0,3 displayName: Pocket 3 - name: outerClothing slotTexture: suit diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/musician.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/musician.yml index c26da03628eae5..486ff25d47c725 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/musician.yml @@ -6,4 +6,4 @@ - type: startingGear id: MusicianWintercoat equipment: - outerClothing: ClothingOuterWinterMusician \ No newline at end of file + outerClothing: ClothingOuterWinterMusician diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml index 321cc46feb5623..dfce25809f838c 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml @@ -187,6 +187,15 @@ equipment: shoes: ClothingShoesBootsCombatFilled +- type: loadout + id: JackBoots + equipment: JackBoots + +- type: startingGear + id: JackBoots + equipment: + shoes: ClothingShoesBootsJackFilled + - type: loadout id: SecurityWinterBoots equipment: SecurityWinterBoots @@ -194,7 +203,7 @@ - type: startingGear id: SecurityWinterBoots equipment: - shoes: ClothingShoesBootsWinterSec + shoes: ClothingShoesBootsWinterSecFilled # PDA - type: loadout diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/instruments.yml b/Resources/Prototypes/Loadouts/Miscellaneous/instruments.yml new file mode 100644 index 00000000000000..5b7e46151fe9f6 --- /dev/null +++ b/Resources/Prototypes/Loadouts/Miscellaneous/instruments.yml @@ -0,0 +1,280 @@ +# Instruments +- type: loadout + id: Glockenspiel + equipment: Glockenspiel + +- type: startingGear + id: Glockenspiel + storage: + back: + - GlockenspielInstrument + +- type: loadout + id: MusicBox + equipment: MusicBox + +- type: startingGear + id: MusicBox + storage: + back: + - MusicBoxInstrument + +- type: loadout + id: Xylophone + equipment: Xylophone + +- type: startingGear + id: Xylophone + storage: + back: + - XylophoneInstrument + +- type: loadout + id: Microphone + equipment: Microphone + +- type: startingGear + id: Microphone + storage: + back: + - MicrophoneInstrument + +- type: loadout + id: Synthesizer + equipment: Synthesizer + +- type: startingGear + id: Synthesizer + storage: + back: + - SynthesizerInstrument + +- type: loadout + id: Kalimba + equipment: Kalimba + +- type: startingGear + id: Kalimba + storage: + back: + - KalimbaInstrument + +- type: loadout + id: Woodblock + equipment: Woodblock + +- type: startingGear + id: Woodblock + storage: + back: + - WoodblockInstrument + +- type: loadout + id: ElectricGuitar + equipment: ElectricGuitar + +- type: startingGear + id: ElectricGuitar + storage: + back: + - ElectricGuitarInstrument + +- type: loadout + id: BassGuitar + equipment: BassGuitar + +- type: startingGear + id: BassGuitar + storage: + back: + - BassGuitarInstrument + +- type: loadout + id: RockGuitar + equipment: RockGuitar + +- type: startingGear + id: RockGuitar + storage: + back: + - RockGuitarInstrument + +- type: loadout + id: AcousticGuitar + equipment: AcousticGuitar + +- type: startingGear + id: AcousticGuitar + storage: + back: + - AcousticGuitarInstrument + +- type: loadout + id: Banjo + equipment: Banjo + +- type: startingGear + id: Banjo + storage: + back: + - BanjoInstrument + +- type: loadout + id: Violin + equipment: Violin + +- type: startingGear + id: Violin + storage: + back: + - ViolinInstrument + +- type: loadout + id: Viola + equipment: Viola + +- type: startingGear + id: Viola + storage: + back: + - ViolaInstrument + +- type: loadout + id: Cello + equipment: Cello + +- type: startingGear + id: Cello + storage: + back: + - CelloInstrument + +- type: loadout + id: Trumpet + equipment: Trumpet + +- type: startingGear + id: Trumpet + storage: + back: + - TrumpetInstrument + +- type: loadout + id: Trombone + equipment: Trombone + +- type: startingGear + id: Trombone + storage: + back: + - TromboneInstrument + +- type: loadout + id: FrenchHorn + equipment: FrenchHorn + +- type: startingGear + id: FrenchHorn + storage: + back: + - FrenchHornInstrument + +- type: loadout + id: Euphonium + equipment: Euphonium + +- type: startingGear + id: Euphonium + storage: + back: + - EuphoniumInstrument + +- type: loadout + id: Saxophone + equipment: Saxophone + +- type: startingGear + id: Saxophone + storage: + back: + - SaxophoneInstrument + +- type: loadout + id: Accordion + equipment: Accordion + +- type: startingGear + id: Accordion + storage: + back: + - AccordionInstrument + +- type: loadout + id: Harmonica + equipment: Harmonica + +- type: startingGear + id: Harmonica + storage: + back: + - HarmonicaInstrument + +- type: loadout + id: Clarinet + equipment: Clarinet + +- type: startingGear + id: Clarinet + storage: + back: + - ClarinetInstrument + +- type: loadout + id: Flute + equipment: Flute + +- type: startingGear + id: Flute + storage: + back: + - FluteInstrument + +- type: loadout + id: Recorder + equipment: Recorder + +- type: startingGear + id: Recorder + storage: + back: + - RecorderInstrument + +- type: loadout + id: PanFlute + equipment: PanFlute + +- type: startingGear + id: PanFlute + storage: + back: + - PanFluteInstrument + +- type: loadout + id: Ocarina + equipment: Ocarina + +- type: startingGear + id: Ocarina + storage: + back: + - OcarinaInstrument + +- type: loadout + id: Bagpipe + equipment: Bagpipe + +- type: startingGear + id: Bagpipe + storage: + back: + - BagpipeInstrument diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index b4add4af333a9a..b4625f2ba8d0cc 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -404,7 +404,6 @@ - type: loadoutGroup id: MimeMask name: loadout-group-mime-mask - minLimit: 0 loadouts: - MimeMask - MimeMaskSad @@ -439,6 +438,41 @@ loadouts: - MusicianWintercoat +- type: loadoutGroup + id: Instruments + name: loadout-group-instruments + minLimit: 0 + maxLimit: 2 + loadouts: + - Glockenspiel + - MusicBox + - Xylophone + - Microphone + - Synthesizer + - Kalimba + - Woodblock + - ElectricGuitar + - BassGuitar + - RockGuitar + - AcousticGuitar + - Banjo + - Violin + - Viola + - Cello + - Trumpet + - Trombone + - FrenchHorn + - Euphonium + - Saxophone + - Accordion + - Harmonica + - Clarinet + - Flute + - Recorder + - PanFlute + - Ocarina + - Bagpipe + # Cargo - type: loadoutGroup id: QuartermasterHead @@ -891,6 +925,7 @@ name: loadout-group-security-shoes loadouts: - CombatBoots + - JackBoots - SecurityWinterBoots - type: loadoutGroup diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 41871df9f057fb..dcfcfec19edcba 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -163,6 +163,7 @@ - MusicianOuterClothing - Glasses - Trinkets + - Instruments # Cargo - type: roleLoadout diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index 9723503959a586..d6fdbd34d1dff0 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -50,7 +50,6 @@ Detective: [ 1, 1 ] SecurityCadet: [ 4, 4 ] Lawyer: [ 2, 2 ] - Brigmedic: [ 1, 1 ] #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] @@ -60,5 +59,3 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] - #centcom - BlueShield: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index 412e1b46569fad..7197165ce1fe67 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -2,6 +2,8 @@ id: Europa mapName: 'Europa' mapPath: /Maps/europa.yml + maxRandomOffset: 0 + randomRotation: false minPlayers: 0 maxPlayers: 40 stations: @@ -10,9 +12,6 @@ components: - type: StationBiome biome: Snow - - type: StationRandomTransform - enableStationRotation: false - maxStationOffset: null - type: StationNameSetup mapNameTemplate: '{0} Europa {1}' nameGenerator: diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index 2d267566b86e82..32ad8d576c24c7 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -51,7 +51,6 @@ Detective: [ 1, 1 ] SecurityCadet: [ 4, 4 ] Lawyer: [ 2, 2 ] - Brigmedic: [ 1, 1 ] # Starshine #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] @@ -61,5 +60,3 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] - #centcom - Starshine - BlueShield: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/metastation.yml b/Resources/Prototypes/Maps/metastation.yml index 63169a89089e76..92e1b27f7e6c53 100644 --- a/Resources/Prototypes/Maps/metastation.yml +++ b/Resources/Prototypes/Maps/metastation.yml @@ -2,7 +2,7 @@ id: MetaStation mapName: 'TG Meta Station' mapPath: /Maps/metastation.yml - minPlayers: 0 + minPlayers: 15 stations: Meta: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index 2a8c4007b03aba..b94fdbc05d189f 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -48,8 +48,6 @@ Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] Lawyer: [ 1, 1 ] - Brigmedic: [ 1, 1 ] - ShuttlePilot: [1, 1] #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 2, 2 ] @@ -60,5 +58,3 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Borg: [ 2, 2 ] - #centcom - BlueShield: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index 5a8e478e780600..7f7c8222c875cc 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -50,7 +50,6 @@ Detective: [ 1, 1 ] SecurityOfficer: [ 7, 7 ] SecurityCadet: [ 2, 4 ] - Brigmedic: [ 1, 1 ] #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] @@ -62,5 +61,3 @@ Musician: [ 2, 2 ] Boxer: [ 1, 1 ] Reporter: [ 1, 1 ] - #centcom - BlueShield: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 0c14663b7fa5a3..b844636bf8315f 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -47,8 +47,6 @@ Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] Lawyer: [ 1, 1 ] - Brigmedic: [ 1, 1 ] # Starshine - ShuttlePilot: [1, 1] # Starshine #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 2, 2 ] @@ -59,5 +57,3 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Borg: [ 1 , 1 ] - #centcom - Starshine - BlueShield: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 7f24fcdd677188..a93c4558885cc1 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -2,14 +2,14 @@ id: Train mapName: 'Train' mapPath: /Maps/train.yml + maxRandomOffset: 0 + randomRotation: false minPlayers: 10 maxPlayers: 50 stations: Train: stationProto: StandardNanotrasenStation components: - - type: StationRandomTransform - enableStationRotation: false - type: StationNameSetup mapNameTemplate: 'Train "Sentipode" {0}-{1}' nameGenerator: diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml index a9d6953dc1f873..3d4ad7e0ff3ff2 100644 --- a/Resources/Prototypes/Reagents/fun.yml +++ b/Resources/Prototypes/Reagents/fun.yml @@ -333,7 +333,7 @@ - !type:HealthChange damage: types: - Poison: 0.25 + Poison: 0.10 - !type:Emote emote: Weh showInChat: true diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index a8cfa454cf7dc4..7f4ebc1a75176b 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -663,25 +663,45 @@ - !type:SatiateHunger factor: -6 -## Starshine - +# inspired by the spider neurotoxin GsMtx-4 +# poisons non-spiders and slows you down at high doses - type: reagent - id: liveSlime - name: reagent-name-live-slime + id: Mechanotoxin + name: reagent-name-mechanotoxin group: Toxins - desc: reagent-desc-live-slime - flavor: slimy - color: "#000000" - physicalDesc: reagent-physical-desc-gloopy - plantMetabolism: - - !type:PlantAdjustToxins - amount: 10 - - !type:PlantAdjustHealth - amount: -5 + desc: reagent-desc-mechanotoxin + flavor: sweet + color: "#00b408" + physicalDesc: reagent-physical-desc-nondescript metabolisms: Poison: + metabolismRate: 0.2 # Slower metabolism so it can build up over time for slowdown effects: - !type:HealthChange + conditions: + - !type:OrganType + type: Arachnid + shouldHave: false damage: types: - Poison: 9 + Poison: 1.6 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Mechanotoxin + min: 2 + - !type:OrganType + type: Arachnid + shouldHave: false + walkSpeedModifier: 0.8 + sprintSpeedModifier: 0.8 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Mechanotoxin + min: 4 + - !type:OrganType + type: Arachnid + shouldHave: false + walkSpeedModifier: 0.4 + sprintSpeedModifier: 0.4 diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml index 4b508c907d7894..58335ba52dd459 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml @@ -25,5 +25,3 @@ storage: back: - BoxSurvival - - AcousticGuitarInstrument - - SaxophoneInstrument \ No newline at end of file diff --git a/Resources/Prototypes/Starshine/Actions/PNV.yml b/Resources/Prototypes/Starshine/Actions/PNV.yml new file mode 100644 index 00000000000000..1842ea8bf536e7 --- /dev/null +++ b/Resources/Prototypes/Starshine/Actions/PNV.yml @@ -0,0 +1,12 @@ +- type: entity + id: SwitchNightVision + name: switch night vision + description: Switches night vision + noSpawn: true + components: + - type: InstantAction + useDelay: 2.5 + icon: + sprite: Clothing/Eyes/Glasses/ninjavisor.rsi + state: icon + event: !type:NVInstantActionEvent diff --git a/Resources/Prototypes/Starshine/Entities/Mobs/NPCs/xenomorph.yml b/Resources/Prototypes/Starshine/Entities/Mobs/NPCs/xenomorph.yml new file mode 100644 index 00000000000000..48fea5bf908445 --- /dev/null +++ b/Resources/Prototypes/Starshine/Entities/Mobs/NPCs/xenomorph.yml @@ -0,0 +1,82 @@ +# Hacky for the stress test so don't even consider adding to this +- type: entity + name: Hunter + id: MobXenoHunter + parent: MobXeno + components: + - type: MovementSpeedModifier + baseWalkSpeed : 3.5 + baseSprintSpeed : 6.5 + - type: Tool + speed: 1.5 + - type: Hands + - type: ComplexInteraction + - type: Sprite + sprite: Starshine/Mobs/Aliens/Xeno/hunter.rsi + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.4 + density: 1000 + mask: + - MobMask + layer: + - MobLayer + - type: MobThresholds + thresholds: + 0: Alive + 150: Dead + - type: SlowOnDamage + speedModifierThresholds: + 120: 0.7 + - type: Damageable + damageModifierSet: Xenomorhp + - type: Stamina + critThreshold: 400 + - type: MeleeWeapon + altDisarm: false + damage: + types: + Slash: 20 + Structural: 20 + - type: StaminaDamageOnHit + damage: 40 + - type: Puller + needsHands: false + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xenomorph-hunter-name + description: ghost-role-information-xenomorph-hunter-description + rules: ghost-role-information-xenomorph-hunter-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: TypingIndicator + proto: alien + - type: Temperature + heatDamageThreshold: 360 + coldDamageThreshold: -150 + currentTemperature: 310.15 + - type: NoSlip + - type: Perishable #Ummmm the acid kills a lot of the bacteria or something + molsPerSecondPerUnitMass: 0.0005 + - type: Speech + speechVerb: LargeMob + - type: PassiveDamage # Around 15 damage a minute healed + allowedStates: + - Alive + damageCap: 150 + damage: + types: + Heat: -0.25 + Bloodloss: -0.1 + groups: + Brute: -0.25 + - type: NightVision + isToggle: true + color: "#808080" + playSoundOn: false diff --git a/Resources/Prototypes/Starshine/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Starshine/Entities/Objects/Weapons/Guns/Rifles/rifles.yml new file mode 100644 index 00000000000000..ec5a4bb7b28d71 --- /dev/null +++ b/Resources/Prototypes/Starshine/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -0,0 +1,166 @@ +- type: entity + name: Lecter + parent: WeaponRifleLecter + id: WeaponRifleLecterRubber + suffix: Non-lethal + components: + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazineRifleRubber + insertSound: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg + priority: 2 + whitelist: + tags: + - MagazineRifle + gun_chamber: + name: Chamber + startingItem: CartridgeRifleRubber + priority: 1 + whitelist: + tags: + - CartridgeRifle + +- type: entity + name: KR51 + parent: BaseWeaponRifle + id: WeaponRifleKR51 + description: Silent automatic rifle. Uses .25 caseless ammo + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Rifles/kr51.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: Gun + fireRate: 5 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/heavy_shot_suppressed.ogg + params: + volume: -2 + - type: ChamberMagazineAmmoProvider + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazineCaselessRifleShort + insertSound: /Audio/Weapons/Guns/MagIn/hpistol_magin.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/hpistol_magout.ogg + priority: 2 + whitelist: + tags: + - MagazineCaselessRifle + gun_chamber: + name: Chamber + startingItem: CartridgeCaselessRifle + priority: 1 + whitelist: + tags: + - CartridgeCaselessRifle + - type: ContainerContainer + containers: + gun_magazine: !type:ContainerSlot + gun_chamber: !type:ContainerSlot + - type: MagazineVisuals + magState: mag + steps: 1 + zeroVisible: true + - type: Appearance + +- type: entity + name: ASH9 + parent: BaseWeaponRifle + id: WeaponRifleAsh9 + description: Silent automatic rifle. Uses .25 caseless ammo + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Rifles/ash9.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: Gun + fireRate: 5 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/ash9.ogg + - type: ChamberMagazineAmmoProvider + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazineUniversal + insertSound: /Audio/Weapons/Guns/MagIn/ltrifle_magin.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/ltrifle_magout.ogg + priority: 2 + whitelist: + tags: + - MagazineUniversal + gun_chamber: + name: Chamber + startingItem: CartridgeCaselessUniversalPT1 + priority: 1 + whitelist: + tags: + - CartridgeUniversal + - type: ContainerContainer + containers: + gun_magazine: !type:ContainerSlot + gun_chamber: !type:ContainerSlot + - type: MagazineVisuals + magState: mag + steps: 1 + zeroVisible: true + - type: Appearance + +- type: entity + name: VSSK14 + parent: BaseWeaponRifle + id: WeaponSniperVssk14 + description: A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Snipers/vssk.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: Clothing + sprite: Objects/Weapons/Guns/Snipers/vssk.rsi + - type: Gun + fireRate: 1 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/vssk14.ogg + - type: ChamberMagazineAmmoProvider + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazineUniversal + insertSound: /Audio/Weapons/Guns/MagIn/vssk_magin.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/vssk_magout.ogg + priority: 2 + whitelist: + tags: + - MagazineUniversal + gun_chamber: + name: Chamber + startingItem: CartridgeCaselessUniversalPT1 + priority: 1 + whitelist: + tags: + - CartridgeUniversal + - type: ContainerContainer + containers: + gun_magazine: !type:ContainerSlot + gun_chamber: !type:ContainerSlot + - type: MagazineVisuals + magState: mag + steps: 1 + zeroVisible: true + - type: Appearance diff --git a/Resources/Prototypes/Starshine/Entities/Spawners/ghost_roles.yml b/Resources/Prototypes/Starshine/Entities/Spawners/ghost_roles.yml new file mode 100644 index 00000000000000..a993ae17cff748 --- /dev/null +++ b/Resources/Prototypes/Starshine/Entities/Spawners/ghost_roles.yml @@ -0,0 +1,20 @@ +- type: entity + id: SpawnPointGhostXenoHunter + name: ghost role spawn point + suffix: xenomorph hunter + parent: MarkerBase + components: + - type: GhostRole + name: ghost-role-information-xenomorph-hunter-name + description: ghost-role-information-xenomorph-hunter-description + rules: ghost-role-information-xenomorph-hunter-rules + raffle: + settings: default + - type: GhostRoleMobSpawner + prototype: MobXenoHunter + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Starshine/Mobs/Aliens/Xeno/hunter.rsi + state: running diff --git a/Resources/Prototypes/Starshine/Reagents/fun.yml b/Resources/Prototypes/Starshine/Reagents/fun.yml index 8cf2740aae7a41..61aa314c03abb2 100644 --- a/Resources/Prototypes/Starshine/Reagents/fun.yml +++ b/Resources/Prototypes/Starshine/Reagents/fun.yml @@ -13,7 +13,7 @@ - !type:HealthChange damage: types: - Poison: 0.25 + Poison: 0.10 - !type:Emote emote: Buzzing showInChat: true diff --git a/Resources/Prototypes/Starshine/Reagents/toxins.yml b/Resources/Prototypes/Starshine/Reagents/toxins.yml new file mode 100644 index 00000000000000..90632184445da4 --- /dev/null +++ b/Resources/Prototypes/Starshine/Reagents/toxins.yml @@ -0,0 +1,20 @@ +- type: reagent + id: liveSlime + name: reagent-name-live-slime + group: Toxins + desc: reagent-desc-live-slime + flavor: slimy + color: "#000000" + physicalDesc: reagent-physical-desc-gloopy + plantMetabolism: + - !type:PlantAdjustToxins + amount: 10 + - !type:PlantAdjustHealth + amount: -5 + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Poison: 9 diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index c43fd573125007..8e75b5cc33ec46 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -124,6 +124,10 @@ collection: FemaleCry Weh: collection: Weh + Gasp: + collection: FemaleGasp + DefaultDeathgasp: + collection: FemaleDeathGasp Buzzing: path: /Audio/Voice/Moth/moth_scream.ogg diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index ae074fe7411173..c553276175182c 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -7,6 +7,7 @@ description: survival-description rules: - RampingStationEventScheduler + - GameRuleMeteorScheduler - BasicRoundstartVariation - type: gamePreset @@ -20,6 +21,7 @@ - Revolutionary - Zombie - RampingStationEventScheduler + - GameRuleMeteorScheduler - type: gamePreset id: Extended @@ -44,6 +46,7 @@ description: greenshift-description rules: - BasicRoundstartVariation + - GameRuleMeteorScheduler - type: gamePreset id: Secret diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 24849fa2c3c004..216a8a04b1a943 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -394,6 +394,10 @@ - type: Tag id: Chicken +# Allowed to control someone wearing a Chef's hat if inside their hat. +- type: Tag + id: ChefPilot + - type: Tag id: ChemDispensable # container that can go into the chem dispenser diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_demonic.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_demonic.png new file mode 100644 index 00000000000000..63181ea08fa414 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_demonic.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json index 3770a771d8ea1f..bb12e3bf037897 100644 --- a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github). Frills neckfull come from: https://github.com/Bubberstation/Bubberstation/commit/8bc6b83404803466a560b694bf22ef3c0ac266a2", + "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore, Bighorn and Demonic are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github). Frills neckfull come from: https://github.com/Bubberstation/Bubberstation/commit/8bc6b83404803466a560b694bf22ef3c0ac266a2", "size": { "x": 32, "y": 32 @@ -581,6 +581,10 @@ "name": "horns_bighorn", "directions": 4 }, + { + "name": "horns_demonic", + "directions": 4 + }, { "name": "horns_kobold_ears", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/icon.png new file mode 100644 index 00000000000000..b986e22665025a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/meta.json new file mode 100644 index 00000000000000..ba5198513b6377 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation at https://github.com/goonstation/goonstation/pull/13630", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/primed.png new file mode 100644 index 00000000000000..0d8b9b7a97b190 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/foamdart.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/bolt-open.png new file mode 100644 index 00000000000000..7a11eab654ed59 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..ec34a1b9ea1074 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000000..ec34a1b9ea1074 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/icon.png new file mode 100644 index 00000000000000..ba597a85909b2c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/meta.json new file mode 100644 index 00000000000000..ceffec91b5067f --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b and modified from the foam force poster by IProduceWidgets (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-left.png new file mode 100644 index 00000000000000..931a8ef973260a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-right.png new file mode 100644 index 00000000000000..570f8be130ba97 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/meta.json new file mode 100644 index 00000000000000..b89b33c08ffe9b --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b sprite created from foam force poster by IProduceWidgets (github)", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000000..3526954b4e2d7e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000000..297ae7a752a649 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/foam_rifle_inhand_64x.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 3add3a471b6fa3..3e793381d0fa8e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -22,4 +22,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/crit.png b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/crit.png new file mode 100644 index 00000000000000..79edd21d5d24fb Binary files /dev/null and b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/crit.png differ diff --git a/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/dead.png b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/dead.png new file mode 100644 index 00000000000000..79edd21d5d24fb Binary files /dev/null and b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/dead.png differ diff --git a/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/meta.json b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/meta.json new file mode 100644 index 00000000000000..4ffd8e933d970b --- /dev/null +++ b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Colonial Marines at commit https://gitlab.com/cmdevs/colonial-warfare/-/commit/f6b3c61fcbfe73a3f0f92edd5fc441ef845017e5 Sprites centered by metalgearsloth", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "running", + "directions": 4 + }, + { + "name": "walking", + "directions": 4 + }, + { + "name": "dead" + }, + { + "name": "sleeping" + }, + { + "name": "crit" + } + ] +} diff --git a/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/running.png b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/running.png new file mode 100644 index 00000000000000..1d2d1df7c5b880 Binary files /dev/null and b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/running.png differ diff --git a/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/sleeping.png b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/sleeping.png new file mode 100644 index 00000000000000..a0e0aadadfa04a Binary files /dev/null and b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/sleeping.png differ diff --git a/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/walking.png b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/walking.png new file mode 100644 index 00000000000000..1d2d1df7c5b880 Binary files /dev/null and b/Resources/Textures/Starshine/Mobs/Aliens/Xeno/hunter.rsi/walking.png differ diff --git a/RobustToolbox b/RobustToolbox index 2fa83181e2f447..bf8054b181392e 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 2fa83181e2f4472120fe280f4598197f436faf22 +Subproject commit bf8054b181392ec9a7eb9f4fea94f66837ed4a71 diff --git a/run-localization.bat b/run-localization.bat new file mode 100644 index 00000000000000..a8e2e8e336a995 --- /dev/null +++ b/run-localization.bat @@ -0,0 +1,6 @@ +@echo off +cd Resources/Prototypes +python ../../Tools/ss14_ru/yamlextractor.py +pause +python ../../Tools/ss14_ru/keyfinder.py +pause